bundle.css 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936
  1. @charset "UTF-8";
  2. /*reha*/
  3. /*global*/
  4. /* Colors used for REHA */
  5. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file, .layout-sidebar-first #block-reha-phase1 footer, #edit-field-telephone-0-phone, .form-submit, .views-field-edit-user, .views-field-edit-node, .links, .field--type-file, .field--type-link,
  6. .next-site,
  7. .prev-site, .page-programme .field--type-link {
  8. text-transform: uppercase;
  9. padding-bottom: 0rem;
  10. padding-left: 0.6rem;
  11. padding-right: 0.6rem;
  12. border: solid black 1px;
  13. margin-bottom: 1rem;
  14. background-color: rgb(255, 255, 255);
  15. font-size: 0.9rem;
  16. }
  17. @media (max-width: 891px) {
  18. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file, #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file, .layout-sidebar-first #block-reha-phase1 footer, #edit-field-telephone-0-phone, .form-submit, .views-field-edit-user, .views-field-edit-node, .links, .field--type-file, .field--type-link,
  19. .next-site,
  20. .prev-site, .page-programme .field--type-link {
  21. font-size: 1rem;
  22. }
  23. }
  24. .page-programme .field--type-link {
  25. width: fit-content;
  26. padding: 0.3rem;
  27. background-color: transparent;
  28. }
  29. .field--type-link,
  30. .next-site,
  31. .prev-site {
  32. width: fit-content;
  33. }
  34. .bouton {
  35. background-color: rgb(255, 255, 255) !important;
  36. border: none !important;
  37. cursor: pointer;
  38. }
  39. .views-field-edit-node {
  40. width: fit-content;
  41. margin-top: 1rem;
  42. }
  43. .views-field-edit-user {
  44. width: fit-content;
  45. margin-top: 1rem;
  46. }
  47. .views-field-edit-user:hover {
  48. background-color: #fdc300;
  49. }
  50. #edit-unlock {
  51. display: none;
  52. }
  53. .views-field-edit-node:hover,
  54. .field--name-field-lien:hover,
  55. #edit-submit:hover,
  56. .form-submit:hover,
  57. .field--type-link:hover,
  58. .field--type-file:hover {
  59. background-color: #fdc300;
  60. }
  61. .mailto {
  62. text-decoration: underline;
  63. }
  64. /*marianne*/
  65. @font-face {
  66. font-family: "Marianne";
  67. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  68. font-weight: 300;
  69. font-style: normal;
  70. }
  71. @font-face {
  72. font-family: "Marianne";
  73. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  74. font-weight: 300;
  75. font-style: italic;
  76. }
  77. @font-face {
  78. font-family: "Marianne";
  79. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  80. font-weight: 400;
  81. font-style: normal;
  82. }
  83. @font-face {
  84. font-family: "Marianne";
  85. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  86. font-weight: 400;
  87. font-style: italic;
  88. }
  89. @font-face {
  90. font-family: "Marianne";
  91. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  92. font-weight: 600;
  93. font-style: normal;
  94. }
  95. @font-face {
  96. font-family: "Marianne";
  97. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  98. font-weight: 600;
  99. font-style: italic;
  100. }
  101. @font-face {
  102. font-family: "Marianne";
  103. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  104. font-weight: 800;
  105. font-style: normal;
  106. }
  107. @font-face {
  108. font-family: "Marianne";
  109. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  110. font-weight: 800;
  111. font-style: italic;
  112. }
  113. @font-face {
  114. font-family: "Marianne";
  115. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  116. font-weight: 900;
  117. font-style: normal;
  118. }
  119. @font-face {
  120. font-family: "Marianne";
  121. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  122. font-weight: 900;
  123. font-style: italic;
  124. }
  125. @font-face {
  126. font-family: "Marianne";
  127. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  128. font-weight: 1000;
  129. font-style: normal;
  130. }
  131. @font-face {
  132. font-family: "Marianne";
  133. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  134. font-weight: 1000;
  135. font-style: italic;
  136. }
  137. /*Font Awesome*/
  138. @font-face {
  139. font-family: "Font Awesome";
  140. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  141. font-weight: 400;
  142. font-style: normal;
  143. }
  144. .layout-container {
  145. position: relative;
  146. width: 100vw;
  147. background-color: rgba(153, 147, 174, 0.1);
  148. font-family: "Marianne", sans-serif;
  149. font-weight: 400;
  150. font-style: normal;
  151. top: 0%;
  152. left: 0%;
  153. overflow: hidden;
  154. display: flex;
  155. flex-flow: row wrap;
  156. -webkit-user-select: none;
  157. -webkit-touch-callout: none;
  158. -moz-user-select: none;
  159. -ms-user-select: none;
  160. user-select: none;
  161. }
  162. .layout-container header {
  163. flex: 0 0 100%;
  164. }
  165. .layout-container footer {
  166. flex: 0 0 100%;
  167. z-index: 101;
  168. }
  169. .layout-content {
  170. position: relative;
  171. top: 110px;
  172. order: 2;
  173. padding-top: 3rem;
  174. padding-bottom: 6rem;
  175. width: 80%;
  176. margin: auto;
  177. min-height: 100vh;
  178. }
  179. @media (max-width: 891px) {
  180. .layout-content {
  181. width: 90%;
  182. }
  183. }
  184. @media (max-width: 500px) {
  185. .layout-content {
  186. padding-top: 2rem;
  187. }
  188. }
  189. .layout-content .layout__region--first {
  190. flex: 0 1 25%;
  191. }
  192. .layout-content .layout__region--second {
  193. flex: 0 1 75%;
  194. }
  195. @media (max-width: 810px) {
  196. .layout-content .layout__region--second {
  197. flex: 0 1 90%;
  198. margin: auto;
  199. }
  200. }
  201. .layout-content .layout__region--second.view-id-home {
  202. margin: 0;
  203. }
  204. aside.layout-sidebar-first {
  205. width: 20%;
  206. order: 1;
  207. margin-top: 5rem;
  208. margin-left: 10%;
  209. margin-right: 1rem;
  210. }
  211. @media (max-width: 891px) {
  212. aside.layout-sidebar-first {
  213. margin-left: 5%;
  214. margin-top: 9rem;
  215. }
  216. }
  217. @media (max-width: 500px) {
  218. aside.layout-sidebar-first {
  219. width: 80%;
  220. margin-top: 3rem;
  221. }
  222. }
  223. aside.layout-sidebar-second {
  224. position: absolute;
  225. top: 0;
  226. right: 0;
  227. background-color: #fff;
  228. height: 300vh;
  229. padding: 1em;
  230. z-index: 100;
  231. }
  232. main {
  233. width: 100%;
  234. display: flex;
  235. flex-direction: row;
  236. position: relative;
  237. }
  238. @media (max-width: 500px) {
  239. main {
  240. flex-direction: column;
  241. }
  242. }
  243. .main-content {
  244. margin-top: 7rem;
  245. }
  246. p {
  247. background-color: transparent;
  248. }
  249. ul {
  250. list-style-type: none;
  251. }
  252. a {
  253. text-decoration: none;
  254. }
  255. :link {
  256. color: black;
  257. }
  258. :visited {
  259. color: black;
  260. }
  261. html.js body {
  262. margin: 0 !important;
  263. }
  264. html.js body div.dialog-off-canvas-main-canvas div.layout-container {
  265. margin: 0 !important;
  266. }
  267. svg.mailto {
  268. display: none;
  269. }
  270. svg.ext {
  271. display: none;
  272. }
  273. p, div {
  274. cursor: default !important;
  275. }
  276. @media (max-width: 800px) {
  277. header #block-reha-logoministere {
  278. padding-left: 2rem;
  279. }
  280. }
  281. /*partials*/
  282. header[role=banner] {
  283. display: block;
  284. height: 120px;
  285. background-color: rgb(255, 255, 255);
  286. z-index: 101;
  287. width: 100vw;
  288. max-width: 100vw;
  289. position: fixed;
  290. top: 0;
  291. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  292. }
  293. @media (max-width: 800px) {
  294. header[role=banner] {
  295. width: 800px;
  296. }
  297. }
  298. header[role=banner] .region-header {
  299. display: inline-grid;
  300. align-items: center;
  301. grid-template-columns: repeat(10, 1fr);
  302. }
  303. @media (max-width: 891px) {
  304. header[role=banner] .region-header {
  305. display: flex;
  306. flex-direction: row;
  307. justify-content: space-between;
  308. }
  309. }
  310. header[role=banner] .region-header #block-reha-logoministere {
  311. grid-column: 1;
  312. width: 135px;
  313. min-width: 100px;
  314. padding-left: 80px;
  315. height: 100%;
  316. }
  317. header[role=banner] .region-header #block-reha-logoministere img {
  318. max-width: 100%;
  319. object-fit: contain;
  320. }
  321. @media (max-width: 891px) {
  322. header[role=banner] .region-header #block-reha-logoministere {
  323. padding-left: 3%;
  324. padding-top: 0%;
  325. width: 80px;
  326. }
  327. }
  328. header[role=banner] .region-header #block-reha-logoreha {
  329. grid-column: 2;
  330. height: 110px;
  331. padding-left: 1rem;
  332. }
  333. @media (max-width: 891px) {
  334. header[role=banner] .region-header #block-reha-logoreha {
  335. height: fit-content;
  336. padding-left: 0;
  337. }
  338. }
  339. header[role=banner] .region-header #block-reha-logoreha .field--name-field-logo .field__item img {
  340. max-height: 92px;
  341. width: auto;
  342. }
  343. @media (max-width: 891px) {
  344. header[role=banner] .region-header #block-reha-logoreha .field--name-field-logo .field__item img {
  345. max-height: 60px;
  346. }
  347. }
  348. header[role=banner] .region-header #block-reha-navigationprincipale {
  349. grid-column: 3/span 6;
  350. }
  351. @media (max-width: 891px) {
  352. header[role=banner] .region-header #block-reha-navigationprincipale {
  353. padding-left: 1rem;
  354. }
  355. }
  356. header[role=banner] .region-header #block-reha-navigationprincipale ul {
  357. display: flex;
  358. flex-direction: row;
  359. justify-content: space-evenly;
  360. }
  361. @media (max-width: 1100px) {
  362. header[role=banner] .region-header #block-reha-navigationprincipale ul {
  363. width: fit-content;
  364. }
  365. }
  366. header[role=banner] .region-header #block-reha-navigationprincipale ul li.has-active {
  367. text-decoration: underline;
  368. font-weight: 1000;
  369. }
  370. header[role=banner] .region-header #block-reha-navigationprincipale ul li a {
  371. font-weight: 800;
  372. }
  373. header[role=banner] .region-header #block-reha-navigationprincipale ul li a.is-active {
  374. text-decoration: underline;
  375. font-weight: 1000;
  376. }
  377. header[role=banner] .region-header #block-reha-navigationprincipale ul li a:hover {
  378. text-decoration: underline;
  379. }
  380. header[role=banner] .region-header #block-reha-navigationprincipale ul > li a.active {
  381. text-decoration: underline;
  382. font-weight: 1000;
  383. }
  384. header[role=banner] .region-header #block-reha-connexionutilisateur {
  385. grid-column: 9;
  386. display: flex;
  387. flex-direction: column;
  388. height: fit-content;
  389. }
  390. @media (max-width: 891px) {
  391. header[role=banner] .region-header #block-reha-connexionutilisateur {
  392. padding-left: 1rem;
  393. }
  394. }
  395. header[role=banner] .region-header #block-reha-connexionutilisateur .bouton-connexion :before {
  396. content: url(../images/noun-contact-2495375.svg);
  397. }
  398. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion {
  399. height: 0; /* Hauteur initiale à 0 pour créer l'effet de glissement vers le bas */
  400. width: 100%;
  401. position: relative;
  402. }
  403. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full {
  404. display: none;
  405. right: -235px;
  406. top: 36px;
  407. position: absolute;
  408. background-color: rgb(255, 255, 255);
  409. width: 550px;
  410. height: 200vh;
  411. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  412. clip-path: inset(0px -10px -10px -10px);
  413. padding: 5% 10% 5% 5%;
  414. }
  415. @media (max-width: 891px) {
  416. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full {
  417. top: 50px;
  418. right: -250px;
  419. width: 500px;
  420. height: fit-content;
  421. }
  422. }
  423. @media (max-width: 500px) {
  424. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full {
  425. top: 55px;
  426. right: -90px;
  427. width: 400px;
  428. height: fit-content;
  429. }
  430. }
  431. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full .titre {
  432. width: 90%;
  433. position: relative;
  434. }
  435. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full .titre ::after {
  436. position: relative;
  437. left: 430px;
  438. }
  439. @media (max-width: 500px) {
  440. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full .titre ::after {
  441. left: 325px;
  442. }
  443. }
  444. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form {
  445. width: 80%;
  446. display: flex;
  447. flex-direction: column;
  448. align-items: start;
  449. padding-left: 2.5rem;
  450. }
  451. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form .form-item-persistent-login {
  452. flex-direction: row-reverse;
  453. }
  454. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form .form-item-persistent-login #edit-persistent-login {
  455. width: fit-content;
  456. }
  457. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full #user-login-form .form-item-persistent-login label {
  458. flex-grow: 0;
  459. }
  460. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul {
  461. font-size: 1.2rem;
  462. width: 70%;
  463. display: flex;
  464. flex-direction: column;
  465. margin-top: 0;
  466. margin-bottom: 4rem;
  467. padding-bottom: 4rem;
  468. }
  469. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul .create-account-link {
  470. display: none;
  471. }
  472. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul .request-password-link {
  473. margin-bottom: 4rem;
  474. font-size: 1rem;
  475. }
  476. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul .request-password-link:hover {
  477. text-decoration: #fdc300 underline;
  478. }
  479. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul li p {
  480. font-style: italic;
  481. font-size: 0.9rem;
  482. padding-top: 1rem;
  483. }
  484. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:first-of-type {
  485. border-bottom: 1px solid black;
  486. }
  487. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type {
  488. display: none;
  489. }
  490. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a {
  491. text-transform: uppercase;
  492. padding: 1rem;
  493. border: solid black 1px;
  494. margin-bottom: 1rem;
  495. background-color: rgb(255, 255, 255);
  496. }
  497. @media (max-width: 891px) {
  498. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a {
  499. font-size: 1rem;
  500. }
  501. }
  502. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a p {
  503. font-style: italic;
  504. }
  505. header[role=banner] .region-header #block-reha-connexionutilisateur .connexion .connexion-full ul:last-of-type a:hover {
  506. background-color: #fdc300;
  507. }
  508. header[role=banner] .region-header #block-reha-config-pages {
  509. grid-column: 10;
  510. display: flex;
  511. flex-direction: column;
  512. height: fit-content;
  513. }
  514. header[role=banner] .region-header #block-reha-config-pages .bouton-contact {
  515. padding-right: 4rem;
  516. padding-left: 1rem;
  517. }
  518. header[role=banner] .region-header #block-reha-config-pages .bouton-contact ::before {
  519. content: url(../images/noun-letter-1064628.svg);
  520. padding-right: 1rem;
  521. }
  522. header[role=banner] .region-header #block-reha-config-pages .contacts {
  523. height: 0; /* Hauteur initiale à 0 pour créer l'effet de glissement vers le bas */
  524. width: 100%;
  525. }
  526. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full {
  527. display: none;
  528. background-color: rgb(255, 255, 255);
  529. position: absolute;
  530. right: 0%;
  531. top: 110px;
  532. width: 550px;
  533. padding-left: 3.5rem;
  534. padding-top: 1rem;
  535. height: 200vh;
  536. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  537. clip-path: inset(0px -10px -10px -10px);
  538. }
  539. @media (max-width: 891px) {
  540. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full {
  541. right: 0px;
  542. top: 100%;
  543. width: 500px;
  544. padding-left: 0;
  545. padding-top: 1rem;
  546. height: fit-content;
  547. }
  548. }
  549. @media (max-width: 500px) {
  550. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full {
  551. width: 100%;
  552. width: -moz-available; /* For Mozzila */
  553. width: -webkit-fill-available; /* For Chrome */
  554. width: stretch; /* Unprefixed */
  555. }
  556. }
  557. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre {
  558. padding-right: 2rem;
  559. padding-left: 3rem;
  560. }
  561. @media (max-width: 500px) {
  562. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre {
  563. padding-left: 1.5rem;
  564. }
  565. }
  566. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre ::after {
  567. left: 290px;
  568. }
  569. @media (max-width: 891px) {
  570. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre ::after {
  571. left: 242px;
  572. }
  573. }
  574. @media (max-width: 500px) {
  575. header[role=banner] .region-header #block-reha-config-pages .contacts .contacts-full .titre ::after {
  576. left: 150px;
  577. }
  578. }
  579. header[role=banner] .region-header #block-reha-config-pages .contacts .field__item {
  580. display: flex;
  581. flex-direction: column;
  582. padding-left: 3rem;
  583. }
  584. @media (max-width: 891px) {
  585. header[role=banner] .region-header #block-reha-config-pages .contacts .field__item {
  586. padding-bottom: 2rem;
  587. }
  588. }
  589. @media (max-width: 500px) {
  590. header[role=banner] .region-header #block-reha-config-pages .contacts .field__item {
  591. padding-left: 2rem;
  592. padding-bottom: 2rem;
  593. padding-right: 1.5rem;
  594. }
  595. }
  596. header[role=banner] #block-reha-views-block-current-user-block-block-1 {
  597. grid-column: 9;
  598. width: auto;
  599. display: flex;
  600. flex-direction: column;
  601. height: fit-content;
  602. }
  603. header[role=banner] #block-reha-views-block-current-user-block-block-1 .bouton-connected h2 {
  604. font-size: 1rem;
  605. color: black;
  606. display: flex;
  607. flex-direction: column;
  608. flex-wrap: nowrap;
  609. }
  610. header[role=banner] #block-reha-views-block-current-user-block-block-1 .bouton-connected :before {
  611. content: url(../images/noun-contact-2495375.svg);
  612. padding-right: 1rem;
  613. }
  614. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected {
  615. height: 0; /* Hauteur initiale à 0 pour créer l'effet de glissement vers le bas */
  616. width: 100%;
  617. position: relative;
  618. }
  619. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full {
  620. display: none;
  621. right: -40%;
  622. position: absolute;
  623. background-color: rgb(255, 255, 255);
  624. width: 550px;
  625. height: 200vh;
  626. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  627. clip-path: inset(0px -10px -10px -10px);
  628. padding: 5% 10% 110px 20%;
  629. }
  630. @media (max-width: 450px) {
  631. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full {
  632. width: 90vw;
  633. }
  634. }
  635. @media (max-width: 500px) {
  636. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full .titre {
  637. font-size: 1.4rem;
  638. }
  639. }
  640. @media (max-width: 500px) {
  641. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full .titre ::after {
  642. left: 50px;
  643. }
  644. }
  645. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer {
  646. font-weight: 400;
  647. font-size: 1rem;
  648. margin-top: 2rem;
  649. border-top: 1px solid black;
  650. padding-top: 1.5rem;
  651. }
  652. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul {
  653. width: 45%;
  654. display: flex;
  655. flex-direction: column-reverse;
  656. padding-left: 0;
  657. }
  658. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li:first-of-type {
  659. margin-top: 4rem;
  660. border-bottom: 1px solid black;
  661. }
  662. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li {
  663. width: fit-content;
  664. text-transform: uppercase;
  665. padding: 1rem;
  666. border: solid black 1px;
  667. margin-bottom: 1rem;
  668. background-color: rgb(255, 255, 255);
  669. }
  670. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li:hover {
  671. background-color: #fdc300;
  672. }
  673. header[role=banner] #block-reha-views-block-current-user-block-block-1 .connected .connected-full footer ul li.addoperation {
  674. display: none;
  675. }
  676. .bouton {
  677. align-self: flex-end;
  678. width: fit-content;
  679. }
  680. @media (max-width: 891px) {
  681. .bouton {
  682. font-size: 0.1rem;
  683. color: white;
  684. padding-right: 0 !important;
  685. }
  686. }
  687. .bouton h2 {
  688. text-transform: lowercase;
  689. display: inline-flex;
  690. font-size: 0.001rem;
  691. color: white;
  692. }
  693. @media (max-width: 891px) {
  694. .bouton h2 {
  695. font-size: 0rem;
  696. color: white;
  697. padding-right: 0 !important;
  698. }
  699. }
  700. .titre {
  701. font-weight: 800;
  702. font-size: 1.8rem;
  703. display: flex;
  704. justify-content: space-between;
  705. align-items: center;
  706. }
  707. .titre::after {
  708. content: url(../images/noun-cross-1151731.svg);
  709. cursor: pointer;
  710. }
  711. footer {
  712. background-color: rgb(255, 255, 255);
  713. padding-top: 3rem;
  714. font-family: "Marianne";
  715. font-weight: 800;
  716. font-size: 1.1rem;
  717. text-transform: lowercase;
  718. }
  719. footer div {
  720. display: flex;
  721. flex-direction: row;
  722. }
  723. @media (max-width: 891px) {
  724. footer div {
  725. flex-wrap: wrap;
  726. }
  727. }
  728. @media (max-width: 520px) {
  729. footer div {
  730. flex-direction: column;
  731. }
  732. }
  733. footer h2 {
  734. font-size: 1.1rem;
  735. }
  736. footer section:not(:first-of-type) {
  737. border-left: #fdc300 solid 2px;
  738. padding-left: 2rem;
  739. }
  740. @media (max-width: 891px) {
  741. footer section:not(:first-of-type) {
  742. margin-left: 1rem;
  743. margin-right: 1rem;
  744. border-left: #fdc300 solid 2px;
  745. }
  746. }
  747. @media (max-width: 520px) {
  748. footer section:not(:first-of-type) {
  749. margin-left: 1rem;
  750. margin-right: 1rem;
  751. border-left: none;
  752. border-top: #fdc300 solid 2px;
  753. }
  754. }
  755. footer section:not(:last-of-type) {
  756. padding-right: 5rem;
  757. }
  758. @media (max-width: 891px) {
  759. footer section:not(:last-of-type) {
  760. padding-right: 0;
  761. }
  762. }
  763. @media (max-width: 520px) {
  764. footer section:not(:last-of-type) {
  765. padding-right: 0;
  766. }
  767. }
  768. footer section:last-of-type {
  769. padding-right: 5rem;
  770. }
  771. @media (max-width: 891px) {
  772. footer section:last-of-type {
  773. border-top: #fdc300 solid 2px;
  774. border-left: none;
  775. }
  776. }
  777. #footer-left {
  778. margin-left: 10%;
  779. }
  780. @media (max-width: 891px) {
  781. #footer-left {
  782. margin-left: 1rem;
  783. padding-left: 2rem;
  784. width: 40%;
  785. }
  786. }
  787. @media (max-width: 520px) {
  788. #footer-left {
  789. width: 100%;
  790. margin-left: 1rem;
  791. padding-left: 2rem;
  792. }
  793. }
  794. #footer-left div {
  795. display: flex;
  796. flex-direction: column;
  797. }
  798. #footer-left div #block-reha-pieddepage ul {
  799. padding-left: 0;
  800. }
  801. #footer-left div #block-reha-logoreha-3 {
  802. display: none;
  803. }
  804. #footer-left div .social-media-links--platforms {
  805. display: flex;
  806. flex-direction: row;
  807. }
  808. #footer-left div .social-media-links--platforms svg.ext {
  809. display: none;
  810. }
  811. @media (max-width: 891px) {
  812. #footer-middle {
  813. width: 40%;
  814. }
  815. }
  816. @media (max-width: 520px) {
  817. #footer-middle {
  818. width: 100%;
  819. margin-right: 1rem;
  820. }
  821. }
  822. #footer-middle #block-reha-operateurduprogramme {
  823. display: flex;
  824. flex-direction: column;
  825. }
  826. #footer-middle #block-reha-operateurduprogramme img {
  827. max-width: 150px;
  828. height: fit-content;
  829. max-height: 100px;
  830. object-fit: contain;
  831. padding: 1rem;
  832. }
  833. #footer-right #block-reha-config-pages-2 {
  834. display: flex;
  835. flex-direction: column;
  836. }
  837. #footer-right #block-reha-config-pages-2 .field--name-field-partenaires .field__items {
  838. display: flex;
  839. flex-direction: row;
  840. flex-wrap: wrap;
  841. }
  842. #footer-right #block-reha-config-pages-2 .field--name-field-partenaires .field__items img {
  843. max-width: 120px;
  844. height: fit-content;
  845. max-height: 115px;
  846. object-fit: contain;
  847. }
  848. .form-item {
  849. display: flex;
  850. flex-direction: column;
  851. }
  852. label {
  853. padding-bottom: 0.5rem;
  854. }
  855. input {
  856. height: 2rem;
  857. width: 50%;
  858. }
  859. @media (max-width: 500px) {
  860. input {
  861. width: 90%;
  862. }
  863. }
  864. .description {
  865. width: 50%;
  866. }
  867. @media (max-width: 500px) {
  868. .description {
  869. width: 90%;
  870. }
  871. }
  872. .form-submit {
  873. text-transform: uppercase;
  874. font-size: 0.9rem;
  875. font-weight: 400;
  876. font-family: "Marianne", sans-serif;
  877. width: fit-content;
  878. }
  879. @media (max-width: 891px) {
  880. .form-submit {
  881. font-size: 1rem;
  882. }
  883. }
  884. #user-login-form {
  885. padding-left: 2rem;
  886. }
  887. #user-login-form .form-item {
  888. flex-direction: row;
  889. padding-bottom: 1rem;
  890. padding-left: 0.2;
  891. width: 80%;
  892. flex-wrap: wrap;
  893. }
  894. #user-login-form .form-item label {
  895. padding-right: 0.5rem;
  896. flex: 1 1 auto;
  897. }
  898. #user-login-form .form-item .description {
  899. width: 100%;
  900. font-style: italic;
  901. font-size: 0.8rem;
  902. padding-top: 0.5rem;
  903. }
  904. #edit-persistent-login {
  905. height: 1.5rem;
  906. }
  907. h4 {
  908. text-align: start;
  909. padding-left: 10%;
  910. font-size: 2rem;
  911. }
  912. .layout-sidebar-first #block-reha-phase1 {
  913. border: solid #fdc300 1px;
  914. font-weight: 800;
  915. padding: 1rem;
  916. width: 80%;
  917. }
  918. @media (max-width: 891px) {
  919. .layout-sidebar-first #block-reha-phase1 {
  920. width: 100%;
  921. }
  922. }
  923. .layout-sidebar-first #block-reha-phase1 h2 {
  924. margin-top: 0;
  925. margin-bottom: 0;
  926. text-transform: lowercase;
  927. font-weight: 1000;
  928. line-height: 1rem;
  929. font-size: 1.5rem;
  930. }
  931. .layout-sidebar-first #block-reha-phase1 p {
  932. font-size: 1.5rem;
  933. line-height: 1.8rem;
  934. margin-top: 0.8rem;
  935. }
  936. .layout-sidebar-first #block-reha-phase1 footer {
  937. width: fit-content;
  938. }
  939. aside.layout-sidebar-second {
  940. box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 4px;
  941. z-index: 100;
  942. padding-left: 2rem;
  943. transform: translateX(0%);
  944. transition: transform 0.35s;
  945. }
  946. aside.layout-sidebar-second.close {
  947. transform: translateX(85%); /* Par défaut ouvert */
  948. transition: transform 0.35s;
  949. }
  950. aside.layout-sidebar-second.close:hover {
  951. background-color: #fdc300;
  952. }
  953. aside.layout-sidebar-second h2 {
  954. transform: translateX(-48%) translateY(25vh) rotate(-90deg);
  955. text-transform: uppercase;
  956. font-weight: 400;
  957. cursor: pointer;
  958. padding-top: 2rem;
  959. padding-bottom: 2rem;
  960. text-align: start;
  961. }
  962. aside.layout-sidebar-second h2::before {
  963. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  964. display: inline-block;
  965. transform: translateY(5px) rotate(90deg);
  966. }
  967. aside.layout-sidebar-second h2.__close::before {
  968. content: url("../../dist/images/noun-arrow-1569918-black-left.svg");
  969. display: inline-block;
  970. transform: translateY(2px) rotate(90deg);
  971. }
  972. aside.layout-sidebar-second .view-current-user-doc-profile {
  973. margin: 0 6rem;
  974. display: flex;
  975. flex-direction: column;
  976. }
  977. aside.layout-sidebar-second .view-current-user-doc-profile header {
  978. box-shadow: none;
  979. }
  980. aside.layout-sidebar-second .view-current-user-doc-profile .view-curent-user-site-dossier {
  981. width: fit-content;
  982. margin-bottom: 2rem;
  983. }
  984. aside.layout-sidebar-second .view-current-user-doc-profile .view-curent-user-site-dossier .views-field-title {
  985. font-size: 2rem;
  986. font-weight: 900;
  987. display: flex;
  988. flex-direction: column-reverse;
  989. margin-bottom: 3rem;
  990. }
  991. aside.layout-sidebar-second .view-current-user-doc-profile .view-curent-user-site-dossier .views-field-title::after {
  992. content: url(../images/noun-cross-1151731.svg);
  993. cursor: pointer;
  994. width: fit-content;
  995. display: block;
  996. align-self: flex-end;
  997. }
  998. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur {
  999. overflow-y: scroll;
  1000. height: 450px;
  1001. }
  1002. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur::before {
  1003. content: "";
  1004. display: block;
  1005. width: 80%;
  1006. margin-top: 0.6rem;
  1007. margin-bottom: 1rem;
  1008. border-bottom: black solid 1px;
  1009. }
  1010. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers,
  1011. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file {
  1012. border: none;
  1013. }
  1014. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers:hover,
  1015. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file:hover {
  1016. background-color: white !important;
  1017. }
  1018. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers .field__items .field__item,
  1019. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file .field__items .field__item {
  1020. text-transform: uppercase;
  1021. padding-bottom: 0rem;
  1022. padding-left: 0.6rem;
  1023. padding-right: 0.6rem;
  1024. border: solid black 1px;
  1025. margin-bottom: 1rem;
  1026. background-color: rgb(255, 255, 255);
  1027. font-size: 0.9rem;
  1028. width: fit-content;
  1029. }
  1030. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers .field__items .field__item:hover,
  1031. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file .field__items .field__item:hover {
  1032. background-color: #fdc300;
  1033. }
  1034. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage,
  1035. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement,
  1036. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier {
  1037. text-transform: uppercase;
  1038. display: flex;
  1039. flex-direction: column;
  1040. }
  1041. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1),
  1042. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1),
  1043. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) {
  1044. display: flex;
  1045. align-items: center;
  1046. flex-direction: row;
  1047. }
  1048. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier,
  1049. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier,
  1050. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier {
  1051. padding-left: 10%;
  1052. }
  1053. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers,
  1054. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers,
  1055. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers {
  1056. text-transform: none;
  1057. border: none;
  1058. padding-left: 10%;
  1059. }
  1060. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers span:nth-of-type(2),
  1061. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers span:nth-of-type(2),
  1062. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier .field--name-field-fichiers span:nth-of-type(2) {
  1063. display: none;
  1064. }
  1065. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1)::before,
  1066. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1)::before,
  1067. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1)::before {
  1068. content: url("../../dist/images/noun-file-6880430.svg");
  1069. display: inline-flex;
  1070. width: 40px;
  1071. height: auto;
  1072. padding-right: 1rem;
  1073. align-items: center;
  1074. }
  1075. aside.layout-sidebar-second footer.view-footer {
  1076. margin-top: 3rem;
  1077. text-transform: uppercase;
  1078. border: solid black 1px;
  1079. background-color: rgb(255, 255, 255);
  1080. font-size: 0.9rem;
  1081. width: fit-content;
  1082. font-weight: 400;
  1083. padding-top: 0;
  1084. align-self: left;
  1085. margin-left: 1rem;
  1086. }
  1087. @media (max-width: 891px) {
  1088. aside.layout-sidebar-second footer.view-footer {
  1089. font-size: 1rem;
  1090. }
  1091. }
  1092. aside.layout-sidebar-second footer.view-footer p {
  1093. margin: 0;
  1094. padding: 0.3rem;
  1095. }
  1096. aside.layout-sidebar-second footer.view-footer :hover {
  1097. background-color: #fdc300;
  1098. }
  1099. aside.layout-sidebar-second footer.view-footer p {
  1100. padding-left: 0.6rem;
  1101. padding-right: 0.6rem;
  1102. }
  1103. .field--name-field-dossier-de-pilotage > div:nth-child(2) > div:nth-child(1) > div:nth-child(2):hover {
  1104. background-color: none !important;
  1105. }
  1106. /* Slider */
  1107. .slick-loading .slick-list {
  1108. background: #fff url("./ajax-loader.gif") center center no-repeat;
  1109. }
  1110. /* Icons */
  1111. @font-face {
  1112. font-family: "slick";
  1113. src: url("./fonts/slick.eot");
  1114. src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  1115. font-weight: normal;
  1116. font-style: normal;
  1117. }
  1118. /* Arrows */
  1119. .slick-prev,
  1120. .slick-next {
  1121. position: absolute;
  1122. display: block;
  1123. z-index: 9;
  1124. line-height: 0px;
  1125. font-size: 0px;
  1126. cursor: pointer;
  1127. background: transparent;
  1128. color: transparent;
  1129. top: 18%;
  1130. -webkit-transform: translate(0, -50%);
  1131. -ms-transform: translate(0, -50%);
  1132. transform: translate(0, -50%);
  1133. padding: 0;
  1134. border: none;
  1135. outline: none;
  1136. }
  1137. .slick-prev:hover, .slick-prev:focus,
  1138. .slick-next:hover,
  1139. .slick-next:focus {
  1140. outline: none;
  1141. background: transparent;
  1142. color: transparent;
  1143. }
  1144. .slick-prev:hover:before, .slick-prev:focus:before,
  1145. .slick-next:hover:before,
  1146. .slick-next:focus:before {
  1147. opacity: 1;
  1148. }
  1149. .slick-prev.slick-disabled:before,
  1150. .slick-next.slick-disabled:before {
  1151. opacity: 0.25;
  1152. }
  1153. .slick-prev:before,
  1154. .slick-next:before {
  1155. font-family: "slick";
  1156. color: rgb(153, 147, 174);
  1157. opacity: 0.4;
  1158. -webkit-font-smoothing: antialiased;
  1159. -moz-osx-font-smoothing: grayscale;
  1160. }
  1161. .slick-prev {
  1162. left: 2%;
  1163. padding-left: 4rem;
  1164. }
  1165. [dir=rtl] .slick-prev {
  1166. left: auto;
  1167. right: 200px;
  1168. }
  1169. .slick-prev:before {
  1170. content: url("../../dist/images/moyennes_fleches_prev.svg");
  1171. }
  1172. [dir=rtl] .slick-prev:before {
  1173. content: url("../../dist/images/moyennes_fleches_prev.svg");
  1174. }
  1175. .slick-next {
  1176. right: 270px;
  1177. }
  1178. [dir=rtl] .slick-next {
  1179. left: -25px;
  1180. right: auto;
  1181. }
  1182. .slick-next:before {
  1183. content: url("../../dist/images/moyennes_fleches_next.svg");
  1184. }
  1185. [dir=rtl] .slick-next:before {
  1186. content: url("../../dist/images/moyennes_fleches_next.svg");
  1187. }
  1188. /* Dots */
  1189. .slick-dotted.slick-slider {
  1190. margin-bottom: 30px;
  1191. }
  1192. .slick-dots {
  1193. position: absolute;
  1194. bottom: -60px;
  1195. list-style: none;
  1196. display: block;
  1197. text-align: center;
  1198. padding: 0;
  1199. margin: 0;
  1200. width: 100%;
  1201. }
  1202. .slick-dots li {
  1203. position: relative;
  1204. display: inline-block;
  1205. height: 20px;
  1206. width: 20px;
  1207. margin: 0 5px;
  1208. padding: 0;
  1209. cursor: pointer;
  1210. }
  1211. .slick-dots li button {
  1212. border: 0;
  1213. background: transparent;
  1214. display: block;
  1215. height: 50px;
  1216. width: 50px;
  1217. outline: none;
  1218. line-height: 0px;
  1219. font-size: 0px;
  1220. color: transparent;
  1221. padding: 5px;
  1222. cursor: pointer;
  1223. }
  1224. .slick-dots li button:hover, .slick-dots li button:focus {
  1225. outline: none;
  1226. }
  1227. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  1228. opacity: 1;
  1229. }
  1230. .slick-dots li button:before {
  1231. position: absolute;
  1232. top: 0;
  1233. left: 0;
  1234. content: "•";
  1235. width: 50px;
  1236. height: 50px;
  1237. font-family: "slick";
  1238. font-size: 40px;
  1239. line-height: 20px;
  1240. text-align: center;
  1241. color: black;
  1242. opacity: 0.25;
  1243. -webkit-font-smoothing: antialiased;
  1244. -moz-osx-font-smoothing: grayscale;
  1245. }
  1246. .slick-dots li.slick-active button:before {
  1247. color: black;
  1248. opacity: 0.4;
  1249. }
  1250. /* Slider */
  1251. .slick-slider {
  1252. position: relative;
  1253. display: block;
  1254. box-sizing: border-box;
  1255. -webkit-touch-callout: none;
  1256. -webkit-user-select: none;
  1257. -khtml-user-select: none;
  1258. -moz-user-select: none;
  1259. -ms-user-select: none;
  1260. user-select: none;
  1261. -ms-touch-action: pan-y;
  1262. touch-action: pan-y;
  1263. -webkit-tap-highlight-color: transparent;
  1264. }
  1265. .slick-list {
  1266. position: relative;
  1267. overflow: hidden;
  1268. display: block;
  1269. margin: 0;
  1270. padding: 0;
  1271. }
  1272. .slick-list:focus {
  1273. outline: none;
  1274. }
  1275. .slick-list.dragging {
  1276. cursor: pointer;
  1277. cursor: hand;
  1278. }
  1279. .slick-slider .slick-track,
  1280. .slick-slider .slick-list {
  1281. -webkit-transform: translate3d(0, 0, 0);
  1282. -moz-transform: translate3d(0, 0, 0);
  1283. -ms-transform: translate3d(0, 0, 0);
  1284. -o-transform: translate3d(0, 0, 0);
  1285. transform: translate3d(0, 0, 0);
  1286. }
  1287. .slick-track {
  1288. position: relative;
  1289. left: 0;
  1290. top: 0;
  1291. display: block;
  1292. margin-left: auto;
  1293. margin-right: auto;
  1294. }
  1295. .slick-track:before, .slick-track:after {
  1296. content: "";
  1297. display: table;
  1298. }
  1299. .slick-track:after {
  1300. clear: both;
  1301. }
  1302. .slick-loading .slick-track {
  1303. visibility: hidden;
  1304. }
  1305. .slick-slide {
  1306. float: left;
  1307. height: 100%;
  1308. min-height: 1px;
  1309. display: none;
  1310. }
  1311. [dir=rtl] .slick-slide {
  1312. float: right;
  1313. }
  1314. .slick-slide img {
  1315. display: block;
  1316. }
  1317. .slick-slide.slick-loading img {
  1318. display: none;
  1319. }
  1320. .slick-slide.dragging img {
  1321. pointer-events: none;
  1322. }
  1323. .slick-initialized .slick-slide {
  1324. display: block;
  1325. }
  1326. .slick-loading .slick-slide {
  1327. visibility: hidden;
  1328. }
  1329. .slick-vertical .slick-slide {
  1330. display: block;
  1331. height: auto;
  1332. border: 1px solid transparent;
  1333. }
  1334. .slick-arrow.slick-hidden {
  1335. display: none;
  1336. }
  1337. .view-actus > .slick-arrow,
  1338. .view-sites > .slick-arrow {
  1339. background-image: radial-gradient(white, transparent);
  1340. border-radius: 50%;
  1341. padding: 0.8rem;
  1342. padding-bottom: 1.8rem;
  1343. padding-top: 1.8rem;
  1344. width: 120px;
  1345. height: auto;
  1346. top: 50%;
  1347. }
  1348. .view-actus > .slick-arrow.slick-next,
  1349. .view-sites > .slick-arrow.slick-next {
  1350. padding-right: 0rem;
  1351. right: 8%;
  1352. }
  1353. .view-actus > .slick-arrow.slick-prev,
  1354. .view-sites > .slick-arrow.slick-prev {
  1355. padding-left: 0rem;
  1356. }
  1357. .infos-content {
  1358. position: relative;
  1359. display: flex;
  1360. flex-direction: column;
  1361. border: solid #fdc300 1px;
  1362. background-color: rgb(255, 255, 255);
  1363. padding: 1rem;
  1364. height: fit-content;
  1365. width: 100%;
  1366. position: relative;
  1367. right: 5%;
  1368. margin-bottom: 30px;
  1369. }
  1370. .infos-content h1 {
  1371. order: 2;
  1372. font-size: 1.5rem;
  1373. font-weight: 600;
  1374. margin: 0;
  1375. }
  1376. .infos-content h2 {
  1377. order: 2;
  1378. margin: 0;
  1379. font-size: 1.5rem;
  1380. font-weight: 600;
  1381. padding: 0;
  1382. }
  1383. .infos-content .field--name-field-sous-titre {
  1384. order: 3;
  1385. font-size: 1.5rem;
  1386. }
  1387. .infos-content .field--name-field-date {
  1388. order: 4;
  1389. font-weight: 900;
  1390. }
  1391. .infos-content .field--name-field-type-d-actualite {
  1392. order: 1;
  1393. text-transform: uppercase;
  1394. font-size: 0.8rem;
  1395. }
  1396. .infos-content .field--name-field-site {
  1397. order: 5;
  1398. background-color: rgb(153, 147, 174);
  1399. color: white;
  1400. border-radius: 50px;
  1401. width: fit-content;
  1402. padding: 0 0.9rem 0.3rem 0.9rem;
  1403. margin-top: 0.5rem;
  1404. }
  1405. .infos-content .field--name-field-site .field__item {
  1406. display: inline;
  1407. color: white;
  1408. font-weight: 900;
  1409. font-size: 0.8rem;
  1410. }
  1411. .infos-content .field--name-field-site .field__item a:visited {
  1412. color: white;
  1413. }
  1414. .infos-content .field--name-field-site .field__item a:link {
  1415. color: white;
  1416. }
  1417. .infos-content ul.links {
  1418. order: 6;
  1419. display: none;
  1420. }
  1421. .links-content .field--name-field-liens {
  1422. padding: 0.5rem;
  1423. }
  1424. .links-content .field--name-field-liens .field__items .field__item ::after {
  1425. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  1426. padding-left: 0.5rem;
  1427. padding-right: 0.5rem;
  1428. }
  1429. .links-content .field--name-field-fichiers,
  1430. .links-content .field--name-field-fichier {
  1431. width: fit-content;
  1432. padding: 0.5rem;
  1433. padding-right: 0.8rem;
  1434. }
  1435. .links-content .field--name-field-fichiers .file--mime-application-pdf a,
  1436. .links-content .field--name-field-fichier .file--mime-application-pdf a {
  1437. text-transform: uppercase;
  1438. }
  1439. .links-content .field--name-field-fichiers span:nth-of-type(2),
  1440. .links-content .field--name-field-fichier span:nth-of-type(2) {
  1441. display: none;
  1442. }
  1443. .field--name-field-node-link .field__item ::after {
  1444. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  1445. padding-left: 0.5rem;
  1446. padding-right: 0.5rem;
  1447. }
  1448. /* themes/custom/reha/assets/css/menu-burger-auto.css */
  1449. .rb-sr {
  1450. position: absolute !important;
  1451. width: 1px;
  1452. height: 1px;
  1453. padding: 0;
  1454. margin: -1px;
  1455. overflow: hidden;
  1456. clip: rect(0, 0, 0, 0);
  1457. clip-path: inset(50%);
  1458. white-space: nowrap;
  1459. border: 0;
  1460. }
  1461. /* Bouton burger */
  1462. .rb-toggle {
  1463. display: inline-flex;
  1464. align-items: center;
  1465. justify-content: center;
  1466. gap: 0.5rem;
  1467. border: 1px solid #ddd;
  1468. background: #fff;
  1469. color: #111;
  1470. border-radius: 0.75rem;
  1471. padding: 0.6rem 0.8rem;
  1472. cursor: pointer;
  1473. }
  1474. /* Icône */
  1475. .rb-burger {
  1476. display: inline-flex;
  1477. flex-direction: column;
  1478. gap: 6px;
  1479. }
  1480. .rb-line {
  1481. width: 22px;
  1482. height: 2px;
  1483. background: currentColor;
  1484. display: block;
  1485. transition: transform 0.2s ease, opacity 0.2s ease;
  1486. }
  1487. /* Anim "X" */
  1488. .rb-toggle.is-active .rb-line:nth-child(1) {
  1489. transform: translateY(8px) rotate(45deg);
  1490. }
  1491. .rb-toggle.is-active .rb-line:nth-child(2) {
  1492. opacity: 0;
  1493. }
  1494. .rb-toggle.is-active .rb-line:nth-child(3) {
  1495. transform: translateY(-8px) rotate(-45deg);
  1496. }
  1497. /* Liste (mobile) */
  1498. #main-nav.rb-list {
  1499. list-style: none;
  1500. padding: 0;
  1501. margin: 0.75rem 0 0 0;
  1502. display: grid;
  1503. gap: 0.25rem;
  1504. }
  1505. #main-nav.rb-list a {
  1506. display: block;
  1507. padding: 0.75rem 1rem;
  1508. border-radius: 0.5rem;
  1509. text-decoration: none;
  1510. background: #fff;
  1511. color: #111;
  1512. }
  1513. #main-nav.rb-list a:focus-visible {
  1514. outline: 2px solid #5b9aff;
  1515. outline-offset: 2px;
  1516. }
  1517. /* Desktop / tablette */
  1518. @media (min-width: 768px) {
  1519. .rb-toggle {
  1520. display: none;
  1521. }
  1522. #main-nav.rb-list {
  1523. display: flex;
  1524. gap: 0.5rem;
  1525. margin-top: 0;
  1526. }
  1527. #main-nav.rb-list a {
  1528. background: transparent;
  1529. padding: 0.5rem 0.75rem;
  1530. }
  1531. #main-nav.rb-list a:hover {
  1532. text-decoration: underline;
  1533. }
  1534. }
  1535. /* Impression : menu toujours visible */
  1536. @media print {
  1537. .rb-toggle {
  1538. display: none !important;
  1539. }
  1540. #main-nav.rb-list {
  1541. display: block !important;
  1542. }
  1543. }
  1544. /* 1) Garantir que l’attribut hidden cache bien l’élément,
  1545. même si un autre CSS met un display:... */
  1546. #main-nav[hidden] {
  1547. display: none !important;
  1548. }
  1549. /* 2) Fallback ultra simple : on cache le menu en mobile,
  1550. et on l’affiche quand le bouton est actif.
  1551. (Le JS insère le bouton juste AVANT le <ul>, donc l’adjacence fonctionne) */
  1552. @media (max-width: 767px) {
  1553. #main-nav.rb-list {
  1554. display: none !important;
  1555. }
  1556. .rb-toggle.is-active + #main-nav.rb-list {
  1557. display: grid !important;
  1558. }
  1559. }
  1560. /* --- Empêcher le menu d'impacter la mise en page du header (mobile) --- */
  1561. @media (max-width: 767.98px) {
  1562. /* Le conteneur nav sert d'ancre pour le positionnement absolu */
  1563. #block-reha-navigationprincipale {
  1564. position: relative;
  1565. overflow: visible; /* au cas où un parent a overflow:hidden */
  1566. /* optionnel : si le header a text-align:center et que tu veux
  1567. que le bouton reste à gauche, décommente la ligne suivante */
  1568. /* text-align: initial; */
  1569. }
  1570. /* Par défaut, menu masqué quand le bouton n'est pas actif */
  1571. #block-reha-navigationprincipale .rb-toggle + #main-nav.rb-list {
  1572. display: none !important;
  1573. }
  1574. /* Quand on ouvre: on montre le menu en position absolue, hors du flux */
  1575. #block-reha-navigationprincipale .rb-toggle.is-active + #main-nav.rb-list {
  1576. display: grid !important;
  1577. }
  1578. /* Sortir le UL du flux et de tout align center, en overlay sous la barre */
  1579. #block-reha-navigationprincipale #main-nav.rb-list {
  1580. position: absolute;
  1581. top: 100%; /* juste sous la barre de nav */
  1582. left: 0;
  1583. right: 0; /* pleine largeur du nav */
  1584. z-index: 1000;
  1585. text-align: left; /* ignore tout text-align:center parent */
  1586. margin: 0;
  1587. padding: 0.5rem;
  1588. background: #fff;
  1589. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  1590. }
  1591. #block-reha-navigationprincipale #main-nav.rb-list a {
  1592. display: block;
  1593. }
  1594. }
  1595. /* --- Desktop : on remet le menu dans le flux normal --- */
  1596. @media (min-width: 768px) {
  1597. #block-reha-navigationprincipale #main-nav.rb-list {
  1598. position: static;
  1599. box-shadow: none;
  1600. padding: 0;
  1601. }
  1602. }
  1603. #popup-overlay {
  1604. display: none;
  1605. position: fixed;
  1606. top: 0;
  1607. left: 0;
  1608. width: 100%;
  1609. height: 100%;
  1610. background: rgba(0, 0, 0, 0.7);
  1611. justify-content: center;
  1612. align-items: center;
  1613. z-index: 9999;
  1614. }
  1615. #popup-overlay img {
  1616. max-width: 90%;
  1617. max-height: 90%;
  1618. border-radius: 8px;
  1619. box-shadow: 0 0 20px #000;
  1620. }
  1621. #popup-overlay .popup-close {
  1622. position: absolute;
  1623. top: 20px;
  1624. right: 30px;
  1625. color: white;
  1626. font-size: 40px;
  1627. font-weight: bold;
  1628. cursor: pointer;
  1629. }
  1630. /*pages*/
  1631. .home-page-layout-content {
  1632. width: 100%;
  1633. }
  1634. .home-page-layout-content html.js body div.dialog-off-canvas-main-canvas div.layout-container.page-programme main div.layout-content.home-page-layout-content div.region.region-content div#block-reha-contenudelapageprincipale.block.block-system.block-system-main-block div.layout.layout--twocol div.layout__region.layout__region--second div.block-region-second div#block-68d3a66ddd9e0.views-element-container.block.block-views.block-views-blockhome-block-1 div div.view.view-home.view-id-home.view-display-id-block_1.js-view-dom-id-9b892eac21901d3d6c0fe35b0d4b62f445e840215a121bd4e47434241241aac9 div.views-row div.views-field.views-field-body div.field-content p img.align-center {
  1635. height: auto !important;
  1636. }
  1637. .home-page-layout-content #block-68d3a6672c807,
  1638. .home-page-layout-content #block-68d3a6672d33a,
  1639. .home-page-layout-content #block-68d3a6672d464 {
  1640. display: none !important;
  1641. }
  1642. .home-page-layout-content .layout-content .layout--onecol {
  1643. width: 90%;
  1644. margin: auto;
  1645. font-size: 1.3rem;
  1646. font-weight: 400;
  1647. font-style: normal;
  1648. }
  1649. .home-page-layout-content .layout-content .layout--onecol h4 {
  1650. font-size: 5rem;
  1651. font-weight: normal;
  1652. margin: 0;
  1653. }
  1654. .home-page-layout-content .layout-content .layout--onecol h5 {
  1655. font-size: 5rem;
  1656. font-weight: 900;
  1657. margin: 0;
  1658. line-height: 0.6;
  1659. }
  1660. @media (max-width: 891px) {
  1661. .home-page-layout-content .layout-content .layout--onecol h5 {
  1662. font-size: 4rem;
  1663. line-height: 0.9;
  1664. }
  1665. }
  1666. @media (max-width: 520px) {
  1667. .home-page-layout-content .layout-content .layout--onecol h5 {
  1668. font-size: 3rem;
  1669. }
  1670. }
  1671. .home-page-layout-content .layout-content .layout--onecol img {
  1672. height: auto;
  1673. padding-top: 2rem;
  1674. padding-bottom: 2rem;
  1675. }
  1676. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1677. display: grid;
  1678. grid-column: repeat(2, 1fr);
  1679. }
  1680. @media (max-width: 891px) {
  1681. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1682. display: flex;
  1683. flex-direction: column;
  1684. }
  1685. }
  1686. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 {
  1687. margin-bottom: 2rem;
  1688. }
  1689. @media (max-width: 500px) {
  1690. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 img {
  1691. width: -moz-available;
  1692. }
  1693. }
  1694. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1695. display: none !important;
  1696. grid-column: 1;
  1697. grid-row: 2/span 2;
  1698. width: 80%;
  1699. border: solid #fdc300 1px;
  1700. background-color: rgb(255, 255, 255);
  1701. font-weight: 800;
  1702. padding: 2rem;
  1703. margin-right: 1rem;
  1704. }
  1705. @media (max-width: 891px) {
  1706. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1707. font-size: 4rem;
  1708. }
  1709. }
  1710. @media (max-width: 520px) {
  1711. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1712. font-size: 3rem;
  1713. }
  1714. }
  1715. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1716. font-size: 5rem;
  1717. font-weight: 900;
  1718. margin: 0;
  1719. line-height: 0.6;
  1720. }
  1721. @media (max-width: 891px) {
  1722. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1723. font-size: 4rem;
  1724. line-height: 0.9;
  1725. }
  1726. }
  1727. @media (max-width: 520px) {
  1728. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1729. font-size: 3rem;
  1730. }
  1731. }
  1732. .home-page-layout-content .layout-content .layout--onecol .block-region-content img {
  1733. height: auto;
  1734. padding-top: 2rem;
  1735. padding-bottom: 2rem;
  1736. }
  1737. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1738. display: grid;
  1739. grid-template-rows: repeat(8, 1fr);
  1740. }
  1741. @media (max-width: 891px) {
  1742. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1743. display: flex;
  1744. flex-direction: column;
  1745. }
  1746. }
  1747. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-block-content3d4d153c-9da8-49e2-be7a-d2245f5716ee {
  1748. grid-row: 1/span 3;
  1749. }
  1750. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 {
  1751. grid-row: 2/span 6;
  1752. margin-bottom: 2rem;
  1753. }
  1754. @media (max-width: 500px) {
  1755. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 img {
  1756. width: -moz-available;
  1757. height: auto;
  1758. }
  1759. }
  1760. .user--register h1 {
  1761. font-size: 3rem !important;
  1762. font-weight: 600;
  1763. }
  1764. @media (max-width: 500px) {
  1765. .user--register h1 {
  1766. font-size: 2.5rem !important;
  1767. }
  1768. }
  1769. .user--register .form-item {
  1770. margin-bottom: 2rem;
  1771. }
  1772. .user--register label {
  1773. font-weight: 800;
  1774. }
  1775. .user--register .description {
  1776. text-transform: lowercase;
  1777. font-style: italic;
  1778. }
  1779. .user--register .password-strength .password-strength__meter {
  1780. width: 250px;
  1781. }
  1782. .user--register .password-suggestions {
  1783. text-transform: lowercase;
  1784. font-style: italic;
  1785. font-size: 0.8rem;
  1786. }
  1787. .user--register #edit-pass--description {
  1788. display: none;
  1789. }
  1790. @media (max-width: 891px) {
  1791. .mes-operations {
  1792. width: 70%;
  1793. margin-left: 2rem;
  1794. }
  1795. }
  1796. @media (max-width: 500px) {
  1797. .mes-operations {
  1798. width: 90%;
  1799. }
  1800. }
  1801. .mes-operations .views-row {
  1802. width: 80%;
  1803. padding-bottom: 1rem;
  1804. border-bottom: 1px solid black;
  1805. }
  1806. .mes-operations .views-row .node-type-operation footer {
  1807. display: none;
  1808. }
  1809. .mes-operations .views-row .node-type-operation .field--label-above div:first-child {
  1810. font-weight: 800;
  1811. }
  1812. .mes-operations .views-row .node-type-operation p {
  1813. margin: 0;
  1814. }
  1815. .mes-operations .views-row .node-type-operation .field--label-above {
  1816. margin-bottom: 1rem;
  1817. }
  1818. .mes-operations .views-row .node-type-operation .field--type-file {
  1819. border: none;
  1820. background-color: inherit;
  1821. text-transform: none;
  1822. padding: 0;
  1823. }
  1824. .mes-operations .views-row .views-field {
  1825. margin-bottom: 1.5rem;
  1826. }
  1827. .mes-operations .views-row .views-field-edit-node {
  1828. display: none !important;
  1829. }
  1830. .mes-operations div.views-element-container div footer {
  1831. background-color: white;
  1832. border: solid black 1px;
  1833. text-transform: uppercase;
  1834. padding: 1rem;
  1835. width: fit-content;
  1836. margin-top: 2rem;
  1837. font-weight: 400;
  1838. display: none !important;
  1839. }
  1840. .mes-operations div.views-element-container div footer p {
  1841. margin: 0;
  1842. }
  1843. .mes-operations div.views-element-container div footer:hover {
  1844. background-color: #fdc300;
  1845. }
  1846. #block-reha-contenudelapageprincipale .node-operation-form {
  1847. width: 45%;
  1848. }
  1849. @media (max-width: 891px) {
  1850. #block-reha-contenudelapageprincipale .node-operation-form {
  1851. width: 70%;
  1852. margin-left: 2rem;
  1853. }
  1854. }
  1855. #block-reha-contenudelapageprincipale .node-operation-form #edit-title-wrapper input {
  1856. width: 100%;
  1857. }
  1858. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper {
  1859. background-color: rgba(153, 147, 174, 0) !important;
  1860. border: none;
  1861. padding: 0;
  1862. }
  1863. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper label {
  1864. order: 1;
  1865. font-weight: 800;
  1866. }
  1867. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .description {
  1868. text-transform: lowercase;
  1869. order: 2;
  1870. font-style: italic;
  1871. }
  1872. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  1873. order: 3;
  1874. margin-top: 1rem;
  1875. }
  1876. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper {
  1877. background-color: rgba(153, 147, 174, 0) !important;
  1878. border: none;
  1879. padding: 0;
  1880. margin-top: 1rem;
  1881. }
  1882. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper label {
  1883. order: 1;
  1884. font-weight: 800;
  1885. display: flex;
  1886. }
  1887. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  1888. content: url(../images/noun-information-55404.svg);
  1889. padding-left: 1rem;
  1890. cursor: pointer;
  1891. }
  1892. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .description {
  1893. text-transform: lowercase;
  1894. order: 2;
  1895. font-style: italic;
  1896. width: 100%;
  1897. }
  1898. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  1899. display: none;
  1900. }
  1901. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  1902. display: none;
  1903. }
  1904. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  1905. order: 3;
  1906. margin-top: 1rem;
  1907. text-transform: lowercase;
  1908. }
  1909. #block-reha-contenudelapageprincipale .node-operation-form label {
  1910. font-weight: 800;
  1911. }
  1912. #block-reha-contenudelapageprincipale .node-operation-form .form-wrapper {
  1913. margin-bottom: 1rem;
  1914. margin-top: 1rem;
  1915. }
  1916. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-0-value {
  1917. width: 100%;
  1918. }
  1919. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address input {
  1920. width: 100%;
  1921. }
  1922. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1923. display: flex;
  1924. flex-direction: row;
  1925. width: 100%;
  1926. margin-right: 0;
  1927. justify-content: space-between;
  1928. }
  1929. @media (max-width: 891px) {
  1930. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1931. flex-direction: column;
  1932. }
  1933. }
  1934. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 input {
  1935. width: 100%;
  1936. }
  1937. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 .form-item {
  1938. display: flex;
  1939. flex-direction: column;
  1940. margin-right: 0;
  1941. }
  1942. #block-reha-contenudelapageprincipale .node-operation-form .form-item {
  1943. display: flex;
  1944. flex-direction: column;
  1945. }
  1946. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-wrapper {
  1947. margin-bottom: 2rem;
  1948. }
  1949. #block-reha-contenudelapageprincipale .node-operation-form .counter {
  1950. font-style: italic;
  1951. }
  1952. #block-reha-contenudelapageprincipale .form-managed-file {
  1953. text-transform: lowercase;
  1954. }
  1955. #block-reha-contenudelapageprincipale .file--application-pdf {
  1956. text-transform: lowercase;
  1957. }
  1958. #block-reha-contenudelapageprincipale .messages--error {
  1959. text-transform: lowercase;
  1960. }
  1961. html.js body.node-type-operation.node-id-7 div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-reha-contenudelapageprincipale.block.block-system.block-system-main-block form#node-operation-edit-form.node-operation-edit-form.node-form div.js-form-item.form-item.js-form-type-vertical-tabs.form-item-.js-form-item-.form-no-label {
  1962. display: none;
  1963. }
  1964. #edit-field-dossier-de-candidature-0--description {
  1965. text-transform: none !important;
  1966. }
  1967. #edit-field-dossier-de-candidature-0--description .depth1 {
  1968. font-weight: 800;
  1969. }
  1970. #edit-field-dossier-de-candidature-0--description .depth2 {
  1971. font-weight: 400;
  1972. }
  1973. #edit-field-dossier-de-candidature-0--description .depth3 {
  1974. text-decoration: none !important;
  1975. }
  1976. .user--edit label {
  1977. font-weight: 800;
  1978. }
  1979. .user--edit .password-strength {
  1980. width: fit-content;
  1981. }
  1982. .user--edit .description {
  1983. font-style: italic;
  1984. }
  1985. .user--edit .form-item {
  1986. margin-bottom: 1rem;
  1987. width: 70%;
  1988. }
  1989. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1990. width: 45%;
  1991. }
  1992. @media (max-width: 891px) {
  1993. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1994. width: 70%;
  1995. margin-left: 2rem;
  1996. }
  1997. }
  1998. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-title-wrapper input {
  1999. width: 100%;
  2000. }
  2001. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper {
  2002. background-color: rgba(153, 147, 174, 0) !important;
  2003. border: none;
  2004. padding: 0;
  2005. }
  2006. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper label {
  2007. order: 1;
  2008. font-weight: 800;
  2009. }
  2010. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .description {
  2011. text-transform: lowercase;
  2012. order: 2;
  2013. font-style: italic;
  2014. }
  2015. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  2016. order: 3;
  2017. margin-top: 1rem;
  2018. }
  2019. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper {
  2020. background-color: rgba(153, 147, 174, 0) !important;
  2021. border: none;
  2022. padding: 0;
  2023. margin-top: 1rem;
  2024. }
  2025. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper label {
  2026. order: 1;
  2027. font-weight: 800;
  2028. display: flex;
  2029. }
  2030. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  2031. content: url(../images/noun-information-55404.svg);
  2032. padding-left: 1rem;
  2033. cursor: pointer;
  2034. }
  2035. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .description {
  2036. text-transform: lowercase;
  2037. order: 2;
  2038. font-style: italic;
  2039. width: 100%;
  2040. }
  2041. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  2042. display: none;
  2043. }
  2044. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  2045. display: none;
  2046. }
  2047. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  2048. order: 3;
  2049. margin-top: 1rem;
  2050. text-transform: lowercase;
  2051. }
  2052. #block-reha-contenudelapageprincipale #node-operation-edit-form label {
  2053. font-weight: 800;
  2054. }
  2055. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-wrapper {
  2056. margin-bottom: 1rem;
  2057. margin-top: 1rem;
  2058. }
  2059. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-0-value {
  2060. width: 100%;
  2061. }
  2062. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper summary {
  2063. display: none;
  2064. }
  2065. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address input {
  2066. width: 100%;
  2067. }
  2068. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 {
  2069. display: flex;
  2070. flex-direction: row;
  2071. width: 100%;
  2072. margin-right: 0;
  2073. justify-content: space-between;
  2074. }
  2075. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 input {
  2076. width: 100%;
  2077. }
  2078. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 .form-item {
  2079. display: flex;
  2080. flex-direction: column;
  2081. margin-right: 0;
  2082. }
  2083. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-item {
  2084. display: flex;
  2085. flex-direction: column;
  2086. }
  2087. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-wrapper {
  2088. margin-bottom: 2rem;
  2089. }
  2090. #block-reha-contenudelapageprincipale #node-operation-edit-form .counter {
  2091. font-style: italic;
  2092. }
  2093. #block-reha-contenudelapageprincipale .form-managed-file {
  2094. text-transform: lowercase;
  2095. }
  2096. #block-reha-contenudelapageprincipale .file--application-pdf {
  2097. text-transform: lowercase;
  2098. }
  2099. #block-reha-contenudelapageprincipale .messages--error {
  2100. text-transform: lowercase;
  2101. }
  2102. html.js body.node-type-operation.node-id-7 div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-reha-contenudelapageprincipale.block.block-system.block-system-main-block form#node-operation-edit-form.node-operation-edit-form.node-form div.js-form-item.form-item.js-form-type-vertical-tabs.form-item-.js-form-item-.form-no-label {
  2103. display: none;
  2104. }
  2105. #edit-field-dossier-de-candidature-0--description {
  2106. text-transform: none !important;
  2107. }
  2108. #edit-field-dossier-de-candidature-0--description .depth1 {
  2109. font-weight: 800;
  2110. }
  2111. #edit-field-dossier-de-candidature-0--description .depth2 {
  2112. font-weight: 400;
  2113. }
  2114. #edit-field-dossier-de-candidature-0--description .depth3 {
  2115. text-decoration: none !important;
  2116. }
  2117. .page--contacts div.contacts-full section.titre {
  2118. display: none;
  2119. }
  2120. .config_pages--type--mentions-legales {
  2121. width: 70%;
  2122. }
  2123. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2124. border: solid #fdc300 1px;
  2125. background-color: rgb(255, 255, 255);
  2126. font-weight: 1000;
  2127. padding: 2rem;
  2128. margin-right: 1rem;
  2129. width: 16vw;
  2130. margin-left: 12%;
  2131. padding-top: 1rem;
  2132. padding-left: 2rem;
  2133. padding-bottom: 5rem;
  2134. }
  2135. @media (max-width: 891px) {
  2136. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2137. width: 36%;
  2138. padding-bottom: 4rem;
  2139. }
  2140. }
  2141. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de p {
  2142. margin: 0;
  2143. font-size: 1.3rem;
  2144. }
  2145. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de strong {
  2146. font-size: 1.5rem;
  2147. }
  2148. .home-page-layout-content .block-views-blocksites-block-1 {
  2149. top: -44px;
  2150. position: relative;
  2151. }
  2152. @media (max-width: 891px) {
  2153. .home-page-layout-content .block-views-blocksites-block-1 {
  2154. top: -44px;
  2155. }
  2156. }
  2157. @media (max-width: 891px) {
  2158. .home-page-layout-content .block-views-blocksites-block-1 .views-row {
  2159. margin-left: 1.8rem;
  2160. margin-right: 1.8rem;
  2161. width: 80vw !important;
  2162. }
  2163. }
  2164. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site {
  2165. width: 70%;
  2166. height: 30vw;
  2167. margin: auto;
  2168. }
  2169. @media (max-width: 891px) {
  2170. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site {
  2171. height: fit-content;
  2172. width: 100%;
  2173. }
  2174. }
  2175. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2176. background-color: white;
  2177. display: flex;
  2178. flex-direction: row;
  2179. margin: auto;
  2180. height: 100%;
  2181. }
  2182. @media (max-width: 1400px) {
  2183. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2184. width: 100%;
  2185. display: flex;
  2186. flex-direction: row;
  2187. }
  2188. }
  2189. @media (max-width: 891px) {
  2190. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2191. width: 100%;
  2192. display: flex;
  2193. flex-direction: column;
  2194. }
  2195. }
  2196. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2197. order: 1;
  2198. width: 70%;
  2199. height: 100%;
  2200. }
  2201. @media (max-width: 900px) {
  2202. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2203. width: 100%;
  2204. max-height: 200px;
  2205. }
  2206. }
  2207. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image {
  2208. height: 100%;
  2209. }
  2210. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items {
  2211. height: 100%;
  2212. }
  2213. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item {
  2214. display: flex;
  2215. flex-direction: column;
  2216. align-items: flex-end;
  2217. position: relative;
  2218. height: 100%;
  2219. }
  2220. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a {
  2221. height: 100%;
  2222. width: 100%;
  2223. }
  2224. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a img {
  2225. height: 100%;
  2226. width: 100%;
  2227. object-fit: fill;
  2228. }
  2229. @media (max-width: 1500px) {
  2230. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a img {
  2231. width: 100%;
  2232. }
  2233. }
  2234. @media (max-width: 900px) {
  2235. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item a img {
  2236. width: 100%;
  2237. max-height: 200px;
  2238. }
  2239. }
  2240. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote {
  2241. position: absolute;
  2242. font-style: italic;
  2243. margin: 0;
  2244. width: 20vw;
  2245. z-index: 900;
  2246. right: -20vw;
  2247. bottom: 0px;
  2248. }
  2249. @media (max-width: 900px) {
  2250. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote {
  2251. left: 0;
  2252. top: 0;
  2253. width: 100%;
  2254. }
  2255. }
  2256. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote p {
  2257. margin: 0;
  2258. padding-left: 1rem;
  2259. padding-bottom: 1rem;
  2260. }
  2261. @media (max-width: 900px) {
  2262. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items .field__item blockquote p {
  2263. font-size: 0.8rem;
  2264. }
  2265. }
  2266. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2267. background-color: rgb(255, 255, 255);
  2268. order: 2;
  2269. display: flex;
  2270. flex-direction: column;
  2271. margin: auto;
  2272. padding: 1rem;
  2273. z-index: 99;
  2274. position: relative;
  2275. justify-content: center;
  2276. }
  2277. @media (max-width: 891px) {
  2278. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2279. width: auto;
  2280. height: auto;
  2281. display: flex;
  2282. margin: auto;
  2283. margin-bottom: 1rem;
  2284. margin-top: 1rem;
  2285. justify-content: left;
  2286. }
  2287. }
  2288. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2289. display: none;
  2290. }
  2291. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2292. order: 3;
  2293. margin: 0;
  2294. font-size: 1.6rem;
  2295. font-weight: 1000;
  2296. }
  2297. @media (max-width: 891px) {
  2298. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2299. font-size: 1.2rem;
  2300. line-height: 1.3rem;
  2301. }
  2302. }
  2303. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2304. order: 1;
  2305. display: flex;
  2306. flex-direction: row;
  2307. align-items: end;
  2308. padding-bottom: 0.5rem;
  2309. }
  2310. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2311. order: 1;
  2312. text-transform: uppercase;
  2313. font-size: 0.9rem;
  2314. display: inline-flex;
  2315. }
  2316. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  2317. content: "|";
  2318. padding-left: 1rem;
  2319. padding-right: 1rem;
  2320. }
  2321. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2322. order: 3;
  2323. font-size: 1rem;
  2324. }
  2325. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2326. display: flex;
  2327. }
  2328. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2329. display: flex;
  2330. }
  2331. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  2332. margin: 0;
  2333. display: inline-flex;
  2334. }
  2335. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .postal-code {
  2336. order: 2;
  2337. }
  2338. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .locality {
  2339. order: 1;
  2340. text-transform: capitalize;
  2341. margin-right: 0.5rem;
  2342. }
  2343. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .country {
  2344. display: none;
  2345. }
  2346. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2347. order: 4;
  2348. font-size: 1.2rem;
  2349. padding-top: 0.5rem;
  2350. }
  2351. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2352. display: flex;
  2353. flex-direction: row;
  2354. flex-wrap: wrap;
  2355. }
  2356. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  2357. display: inline;
  2358. }
  2359. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item::after {
  2360. content: ",";
  2361. padding-right: 0.5rem;
  2362. }
  2363. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__item:last-of-type::after {
  2364. content: "";
  2365. }
  2366. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 {
  2367. width: fit-content;
  2368. margin: auto;
  2369. z-index: 99;
  2370. margin-top: 1rem;
  2371. margin-bottom: 4rem;
  2372. }
  2373. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 .field--type-link {
  2374. padding-left: 0.5rem;
  2375. padding-right: 0.3rem;
  2376. padding-bottom: 0.3rem;
  2377. padding-top: 0.3rem;
  2378. }
  2379. .page-sitespilotes h1 {
  2380. width: 80%;
  2381. margin: auto;
  2382. font-weight: 1000;
  2383. }
  2384. .page-sitespilotes .view-display-id-page_1 {
  2385. width: 80%;
  2386. margin: auto;
  2387. display: flex;
  2388. flex-direction: row;
  2389. flex-wrap: wrap;
  2390. align-items: baseline;
  2391. justify-content: space-between;
  2392. }
  2393. @media (max-width: 1200px) {
  2394. .page-sitespilotes .view-display-id-page_1 {
  2395. justify-content: flex-start;
  2396. }
  2397. }
  2398. .page-sitespilotes .view-display-id-page_1 article {
  2399. padding-bottom: 0.7rem;
  2400. }
  2401. .page-sitespilotes .view-display-id-page_1 .views-row {
  2402. width: 28%;
  2403. padding: 1rem;
  2404. }
  2405. @media (max-width: 1200px) {
  2406. .page-sitespilotes .view-display-id-page_1 .views-row {
  2407. width: 40%;
  2408. }
  2409. }
  2410. @media (max-width: 810px) {
  2411. .page-sitespilotes .view-display-id-page_1 .views-row {
  2412. width: 100%;
  2413. }
  2414. }
  2415. .page-sitespilotes .view-display-id-page_1 .views-row:hover {
  2416. transform: scale(1.05);
  2417. transition: 0.3s transform ease, 0.3s box-shadow ease;
  2418. }
  2419. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site {
  2420. background-color: white;
  2421. }
  2422. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site {
  2423. display: flex;
  2424. flex-direction: column;
  2425. }
  2426. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site {
  2427. order: 1;
  2428. }
  2429. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image {
  2430. max-width: 100%;
  2431. }
  2432. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image img {
  2433. width: 100%;
  2434. object-fit: cover;
  2435. max-height: 200px;
  2436. }
  2437. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site {
  2438. background-color: rgb(255, 255, 255);
  2439. order: 2;
  2440. display: flex;
  2441. flex-direction: column;
  2442. padding-left: 1rem;
  2443. padding-right: 1rem;
  2444. padding-top: 0.5rem;
  2445. }
  2446. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2447. display: none;
  2448. }
  2449. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2450. order: 2;
  2451. margin: 0;
  2452. font-size: 1.4rem;
  2453. font-weight: 900;
  2454. line-height: 1;
  2455. padding-bottom: 0.8rem;
  2456. }
  2457. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2458. order: 1;
  2459. display: flex;
  2460. flex-direction: row;
  2461. align-items: end;
  2462. padding-bottom: 0.5rem;
  2463. }
  2464. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2465. order: 1;
  2466. text-transform: uppercase;
  2467. font-size: 0.8rem;
  2468. display: inline-flex;
  2469. }
  2470. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  2471. content: "|";
  2472. padding-left: 1rem;
  2473. padding-right: 1rem;
  2474. }
  2475. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2476. order: 3;
  2477. font-size: 0.9rem;
  2478. }
  2479. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  2480. display: flex;
  2481. }
  2482. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  2483. margin: 0;
  2484. display: inline-flex;
  2485. }
  2486. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .postal-code {
  2487. order: 2;
  2488. }
  2489. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .locality {
  2490. order: 1;
  2491. text-transform: capitalize;
  2492. margin-right: 0.5rem;
  2493. }
  2494. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .country {
  2495. display: none;
  2496. }
  2497. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2498. order: 4;
  2499. font-size: 1rem;
  2500. }
  2501. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2502. display: flex;
  2503. flex-direction: row;
  2504. flex-wrap: wrap;
  2505. }
  2506. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  2507. display: inline;
  2508. }
  2509. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item::after {
  2510. content: ",";
  2511. padding-right: 0.5rem;
  2512. }
  2513. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__item:last-of-type::after {
  2514. content: "";
  2515. }
  2516. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links {
  2517. order: 5;
  2518. text-transform: uppercase;
  2519. padding: 0;
  2520. margin: 0;
  2521. border: none;
  2522. padding-bottom: 1rem;
  2523. padding-top: 3rem;
  2524. display: inline-flex;
  2525. }
  2526. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links::after {
  2527. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2528. padding-left: 0.5rem;
  2529. }
  2530. .page-sitespilotes .view-display-id-page_1 footer {
  2531. background-color: transparent;
  2532. text-transform: none !important;
  2533. z-index: 100;
  2534. }
  2535. .page-sitespilotes .view-display-id-page_1 footer p {
  2536. font-size: 2rem;
  2537. padding-left: 1rem;
  2538. font-weight: 1000;
  2539. }
  2540. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 {
  2541. display: flex;
  2542. flex-direction: row;
  2543. flex-wrap: wrap;
  2544. align-items: baseline;
  2545. justify-content: space-between;
  2546. }
  2547. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row {
  2548. width: 28%;
  2549. padding: 1rem;
  2550. }
  2551. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row:hover {
  2552. transform: none;
  2553. }
  2554. @media (max-width: 810px) {
  2555. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row {
  2556. width: 100%;
  2557. }
  2558. }
  2559. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site {
  2560. margin: auto;
  2561. display: flex;
  2562. flex-direction: column;
  2563. width: 100%;
  2564. background-color: transparent;
  2565. }
  2566. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site {
  2567. background-color: transparent;
  2568. order: 2;
  2569. display: flex;
  2570. flex-direction: column;
  2571. padding-left: 1rem;
  2572. padding-right: 1rem;
  2573. padding-right: 1rem;
  2574. }
  2575. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 {
  2576. order: 2;
  2577. margin: 0;
  2578. font-size: 1.4rem;
  2579. font-weight: 900;
  2580. line-height: 1;
  2581. }
  2582. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 a {
  2583. cursor: default !important;
  2584. pointer-events: none;
  2585. }
  2586. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row {
  2587. order: 1;
  2588. display: flex;
  2589. flex-direction: row;
  2590. align-items: center;
  2591. padding-bottom: 0.5rem;
  2592. }
  2593. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-lettre-de-site {
  2594. order: 1;
  2595. text-transform: uppercase;
  2596. font-size: 0.8rem;
  2597. font-weight: 400;
  2598. display: flex;
  2599. align-items: center;
  2600. }
  2601. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-lettre-de-site::before {
  2602. content: "SITE";
  2603. padding-right: 0.5rem;
  2604. }
  2605. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-lettre-de-site::after {
  2606. content: "|";
  2607. padding-left: 1rem;
  2608. padding-right: 1rem;
  2609. }
  2610. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site {
  2611. order: 3;
  2612. }
  2613. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address {
  2614. padding-left: 0;
  2615. margin: 0;
  2616. display: inline-flex;
  2617. font-size: 0.9rem;
  2618. font-weight: 500 !important;
  2619. }
  2620. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address .postal-code {
  2621. order: 2;
  2622. }
  2623. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address .locality {
  2624. order: 1;
  2625. text-transform: capitalize;
  2626. margin-right: 0.5rem;
  2627. }
  2628. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row .field--name-field-adresse-site p.address .country {
  2629. display: none;
  2630. }
  2631. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .field--name-field-architecte {
  2632. order: 4;
  2633. text-transform: capitalize;
  2634. font-weight: 400;
  2635. font-size: 1rem;
  2636. }
  2637. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links {
  2638. order: 5;
  2639. text-transform: uppercase;
  2640. padding: 0;
  2641. margin: 0;
  2642. border: none;
  2643. padding-bottom: 2rem;
  2644. padding-top: 0.9rem;
  2645. display: inline-flex;
  2646. }
  2647. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links::after {
  2648. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2649. padding-left: 0.5rem;
  2650. }
  2651. .block-page-title-block {
  2652. padding-left: 1rem;
  2653. }
  2654. .block-page-title-block h1 {
  2655. font-weight: 1000;
  2656. }
  2657. .block-views-blockactus-block-1 {
  2658. background-color: white;
  2659. padding-bottom: 3rem;
  2660. }
  2661. .block-views-blockactus-block-1 h2 {
  2662. width: 80%;
  2663. font-size: 2rem;
  2664. font-weight: 900;
  2665. margin-left: 10%;
  2666. padding-top: 1rem;
  2667. text-align: center;
  2668. margin-bottom: 4rem;
  2669. }
  2670. .block-views-blockactus-block-1 .view-id-actus {
  2671. width: 100%;
  2672. margin: auto;
  2673. padding: 2rem;
  2674. }
  2675. .block-views-blockactus-block-1 .view-id-actus .slick-track {
  2676. padding-left: 7rem;
  2677. }
  2678. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite {
  2679. width: 90%;
  2680. height: 100%;
  2681. margin: auto;
  2682. }
  2683. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu {
  2684. display: flex;
  2685. flex-direction: column;
  2686. }
  2687. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu p.field__item {
  2688. display: none;
  2689. }
  2690. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2691. width: 75%;
  2692. height: 250px;
  2693. right: 10%;
  2694. position: relative;
  2695. }
  2696. @media (max-width: 1200px) {
  2697. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2698. max-height: 150px;
  2699. }
  2700. }
  2701. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image {
  2702. height: 100%;
  2703. }
  2704. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items {
  2705. height: 100%;
  2706. }
  2707. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items .field__item {
  2708. width: 100%;
  2709. height: 100%;
  2710. }
  2711. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items .field__item img {
  2712. width: 100%;
  2713. height: auto;
  2714. object-fit: cover;
  2715. height: 100%;
  2716. }
  2717. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content {
  2718. height: fit-content;
  2719. width: 100%;
  2720. }
  2721. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h1 {
  2722. display: none;
  2723. }
  2724. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h2 {
  2725. width: 100% !important;
  2726. margin-left: 0;
  2727. padding-top: 0.5rem;
  2728. font-weight: 600;
  2729. font-size: 1.3rem;
  2730. text-align: left !important;
  2731. margin-bottom: 0.5rem;
  2732. }
  2733. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-sous-titre {
  2734. padding-top: 0 rem;
  2735. font-size: 1.2rem;
  2736. }
  2737. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-date {
  2738. padding-top: 0.5rem;
  2739. }
  2740. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .body-content {
  2741. display: none;
  2742. }
  2743. .block-views-blockactus-block-1 .view-id-actus .slick-dots {
  2744. position: relative;
  2745. bottom: 0;
  2746. }
  2747. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2748. left: 35px;
  2749. }
  2750. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2751. left: 90vw;
  2752. }
  2753. @media (max-width: 1400px) {
  2754. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2755. left: 0vw;
  2756. }
  2757. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2758. left: 85vw;
  2759. }
  2760. }
  2761. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2762. width: 60%;
  2763. margin: auto;
  2764. padding-top: 3rem;
  2765. overflow: hidden;
  2766. text-overflow: ellipsis;
  2767. font-size: 1.3rem;
  2768. /* Masquer tous les paragraphes après le premier */
  2769. }
  2770. @media (max-width: 891px) {
  2771. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2772. width: 80%;
  2773. padding-top: 3rem;
  2774. }
  2775. }
  2776. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 .field-content p:nth-of-type(n+2), .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 h3, .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 ul {
  2777. display: none;
  2778. }
  2779. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 {
  2780. width: fit-content;
  2781. margin: auto;
  2782. z-index: 99;
  2783. position: relative;
  2784. margin-top: 2rem;
  2785. margin-bottom: 4rem;
  2786. }
  2787. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link {
  2788. padding-left: 0.5rem;
  2789. padding-right: 0.3rem;
  2790. padding-bottom: 0.3rem;
  2791. padding-top: 0.3rem;
  2792. }
  2793. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link .field__item::after {
  2794. content: url("../dist/images/noun-arrow-1569918-black.svg");
  2795. }
  2796. .page-programme .layout__region--first {
  2797. position: relative;
  2798. }
  2799. .page-programme .layout__region--first .block-region-first {
  2800. padding-left: 3rem;
  2801. display: flex;
  2802. justify-content: flex-end;
  2803. position: fixed;
  2804. top: 10rem;
  2805. }
  2806. .page-programme .layout__region--first .block-region-first > .block-block-content {
  2807. width: 100%;
  2808. }
  2809. .page-programme .layout__region--first .block-region-first > .block-block-content ul {
  2810. padding-left: 0;
  2811. padding-right: 30%;
  2812. }
  2813. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a {
  2814. display: flex;
  2815. flex-direction: column;
  2816. padding-bottom: 0.6rem;
  2817. padding-top: 0.6rem;
  2818. }
  2819. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a::after {
  2820. content: "";
  2821. width: 25%;
  2822. margin-top: 0.6rem;
  2823. border-bottom: #fdc300 solid 1px;
  2824. }
  2825. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a:hover, .page-programme .layout__region--first .block-region-first > .block-block-content ul li a.active {
  2826. font-weight: 800;
  2827. }
  2828. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a:hover::after, .page-programme .layout__region--first .block-region-first > .block-block-content ul li a.active::after {
  2829. content: "";
  2830. width: 25%;
  2831. margin-top: 0.6rem;
  2832. border-bottom: #fdc300 solid 2px;
  2833. }
  2834. @media (max-width: 810px) {
  2835. .page-programme .layout__region--first .block-region-first {
  2836. display: none;
  2837. }
  2838. }
  2839. .page-programme .block-region-second h2 {
  2840. font-weight: 1000;
  2841. font-size: 1.8rem;
  2842. }
  2843. .page-programme .block-region-second .block-views-blockhome-block-1 {
  2844. width: 80%;
  2845. font-size: 1.2rem;
  2846. }
  2847. @media (max-width: 810px) {
  2848. .page-programme .block-region-second .block-views-blockhome-block-1 {
  2849. width: 100%;
  2850. }
  2851. }
  2852. .page-programme .block-region-second .view-display-id-block_1 {
  2853. margin: 0;
  2854. width: 80%;
  2855. padding-top: 1rem;
  2856. }
  2857. @media (max-width: 810px) {
  2858. .page-programme .block-region-second .view-display-id-block_1 {
  2859. width: 100%;
  2860. }
  2861. }
  2862. .page-programme .block-region-second .block-config-pages-block {
  2863. margin: 0;
  2864. width: 80%;
  2865. padding-top: 1rem;
  2866. }
  2867. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2868. width: 100%;
  2869. padding-bottom: 3rem;
  2870. height: 205px;
  2871. display: flex;
  2872. flex-direction: column;
  2873. flex-wrap: wrap;
  2874. justify-content: center;
  2875. align-content: baseline;
  2876. }
  2877. @media (max-width: 810px) {
  2878. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2879. display: flex;
  2880. flex-direction: column;
  2881. }
  2882. }
  2883. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .paragraph--type--partenaire > * {
  2884. flex: 1 1 80px;
  2885. }
  2886. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-logo {
  2887. width: fit-content;
  2888. padding-right: 1rem;
  2889. }
  2890. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-nom {
  2891. font-weight: 900;
  2892. font-size: 1.2rem;
  2893. }
  2894. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-texte .field__item p strong {
  2895. background-color: none;
  2896. }
  2897. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-lien {
  2898. background-color: none;
  2899. }
  2900. .page-node-site .block-region-first .block-entity-fieldnodefield-fichiers {
  2901. width: 80%;
  2902. margin: auto;
  2903. }
  2904. .page-node-site .region-content {
  2905. display: grid;
  2906. grid-template-columns: repeat(8 1fr);
  2907. grid-template-rows: repeat(3 auto);
  2908. }
  2909. @media (max-width: 810px) {
  2910. .page-node-site .region-content {
  2911. width: 100vw;
  2912. display: flex;
  2913. flex-direction: column;
  2914. }
  2915. }
  2916. .page-node-site .region-content #block-reha-prevnextblock {
  2917. display: flex;
  2918. flex-direction: row;
  2919. width: 70%;
  2920. grid-column: 1/span 8;
  2921. grid-row: 1;
  2922. z-index: 97;
  2923. height: fit-content;
  2924. justify-content: space-between;
  2925. margin: auto;
  2926. }
  2927. @media (max-width: 810px) {
  2928. .page-node-site .region-content #block-reha-prevnextblock {
  2929. width: 95%;
  2930. }
  2931. }
  2932. @media (max-width: 810px) {
  2933. .page-node-site .region-content #block-reha-prevnextblock span {
  2934. font-size: 0.6rem !important;
  2935. }
  2936. }
  2937. .page-node-site .region-content #block-reha-prevnextblock .next-site {
  2938. border: none;
  2939. padding: 0.5rem 1rem;
  2940. margin-left: auto;
  2941. }
  2942. @media (max-width: 810px) {
  2943. .page-node-site .region-content #block-reha-prevnextblock .next-site {
  2944. padding-top: 0.1rem;
  2945. }
  2946. }
  2947. .page-node-site .region-content #block-reha-prevnextblock .next-site ::after {
  2948. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2949. padding-left: 0.5rem;
  2950. padding-top: 0.1rem;
  2951. }
  2952. .page-node-site .region-content #block-reha-prevnextblock .prev-site {
  2953. border: none;
  2954. padding: 0.5rem 1rem;
  2955. }
  2956. @media (max-width: 810px) {
  2957. .page-node-site .region-content #block-reha-prevnextblock .prev-site {
  2958. padding-top: 0.1rem;
  2959. }
  2960. }
  2961. .page-node-site .region-content #block-reha-prevnextblock .prev-site ::before {
  2962. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2963. display: inline-block;
  2964. transform: rotate(180deg);
  2965. padding-left: 0.5rem;
  2966. }
  2967. .page-node-site .region-content #block-reha-titredepage {
  2968. display: none;
  2969. }
  2970. .page-node-site .region-content #block-reha-contenudelapageprincipale {
  2971. padding-top: 2rem;
  2972. padding-bottom: 3rem;
  2973. grid-column: 1/span 8;
  2974. grid-row: 2;
  2975. }
  2976. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site {
  2977. margin: auto;
  2978. display: flex;
  2979. flex-direction: column;
  2980. }
  2981. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site {
  2982. background-color: white;
  2983. height: 520px;
  2984. width: fit-content;
  2985. display: flex;
  2986. flex-direction: row;
  2987. margin: auto;
  2988. }
  2989. @media (max-width: 810px) {
  2990. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site {
  2991. flex-direction: column;
  2992. height: auto;
  2993. }
  2994. }
  2995. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site {
  2996. height: 520px;
  2997. width: 771px;
  2998. order: 1;
  2999. }
  3000. @media (max-width: 810px) {
  3001. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site {
  3002. height: auto;
  3003. width: 100vw;
  3004. }
  3005. }
  3006. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image {
  3007. width: 100%;
  3008. margin: auto;
  3009. }
  3010. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-dots {
  3011. z-index: 999;
  3012. bottom: -40px;
  3013. }
  3014. @media (max-width: 810px) {
  3015. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-dots {
  3016. width: 100vw;
  3017. }
  3018. }
  3019. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list {
  3020. padding: 0 !important;
  3021. }
  3022. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item {
  3023. display: flex;
  3024. flex-direction: column;
  3025. align-items: flex-start;
  3026. }
  3027. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item img {
  3028. height: 520px;
  3029. width: auto;
  3030. object-fit: contain;
  3031. }
  3032. @media (max-width: 810px) {
  3033. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item img {
  3034. height: auto;
  3035. width: 100vw;
  3036. }
  3037. }
  3038. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote {
  3039. font-style: italic;
  3040. margin: 0;
  3041. padding-top: 0.5rem;
  3042. font-size: 0.8rem;
  3043. }
  3044. @media (max-width: 810px) {
  3045. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote {
  3046. font-size: 0.6rem;
  3047. padding-left: 0.5rem;
  3048. }
  3049. }
  3050. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote p {
  3051. margin: 0;
  3052. }
  3053. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  3054. background-color: rgb(255, 255, 255);
  3055. width: 20vw;
  3056. order: 2;
  3057. display: flex;
  3058. flex-direction: column;
  3059. margin: auto;
  3060. padding: 1rem;
  3061. z-index: 99;
  3062. position: relative;
  3063. justify-content: center;
  3064. }
  3065. @media (max-width: 891px) {
  3066. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  3067. width: auto;
  3068. margin-left: 0rem;
  3069. }
  3070. }
  3071. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h1 {
  3072. order: 3;
  3073. margin: 0;
  3074. font-size: 1.8rem;
  3075. font-weight: 900;
  3076. }
  3077. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h2 {
  3078. order: 3;
  3079. margin: 0;
  3080. font-size: 1.3rem;
  3081. font-weight: 900;
  3082. }
  3083. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row {
  3084. order: 1;
  3085. display: flex;
  3086. flex-direction: row;
  3087. align-items: end;
  3088. padding-bottom: 0.5rem;
  3089. }
  3090. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  3091. order: 1;
  3092. text-transform: uppercase;
  3093. font-size: 1rem;
  3094. display: inline-flex;
  3095. }
  3096. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  3097. content: "|";
  3098. padding-left: 1rem;
  3099. padding-right: 1rem;
  3100. }
  3101. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  3102. order: 3;
  3103. font-size: 1.2rem;
  3104. }
  3105. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .field__item {
  3106. display: flex;
  3107. }
  3108. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  3109. margin: 0;
  3110. display: inline-flex;
  3111. }
  3112. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .postal-code {
  3113. order: 2;
  3114. }
  3115. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .locality {
  3116. order: 1;
  3117. text-transform: capitalize;
  3118. margin-right: 0.5rem;
  3119. }
  3120. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address .country {
  3121. display: none;
  3122. }
  3123. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-date-de-construction {
  3124. order: 5;
  3125. font-size: 1.2rem;
  3126. }
  3127. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  3128. order: 4;
  3129. padding-top: 0.5rem;
  3130. font-size: 1.2rem;
  3131. }
  3132. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  3133. display: flex;
  3134. flex-direction: row;
  3135. flex-wrap: wrap;
  3136. }
  3137. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  3138. display: inline;
  3139. }
  3140. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item::after {
  3141. content: ",";
  3142. padding-right: 0.5rem;
  3143. }
  3144. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__item:last-of-type::after {
  3145. content: "";
  3146. }
  3147. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links {
  3148. order: 5;
  3149. text-transform: uppercase;
  3150. padding: 0;
  3151. margin: 0;
  3152. border: none;
  3153. padding-bottom: 2rem;
  3154. padding-top: 0.9rem;
  3155. display: inline-flex;
  3156. }
  3157. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links::after {
  3158. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  3159. padding-left: 0.5rem;
  3160. }
  3161. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site {
  3162. order: 3;
  3163. padding-top: 6rem;
  3164. position: relative;
  3165. width: 70%;
  3166. margin: auto;
  3167. font-size: 1.3rem;
  3168. display: flex;
  3169. flex-direction: row-reverse;
  3170. justify-content: space-between;
  3171. }
  3172. @media (max-width: 810px) {
  3173. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site {
  3174. width: 100%;
  3175. display: flex;
  3176. flex-direction: column-reverse;
  3177. padding-top: 1rem;
  3178. font-size: 1.1rem;
  3179. }
  3180. }
  3181. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .summary-content {
  3182. width: 75%;
  3183. }
  3184. @media (max-width: 810px) {
  3185. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .summary-content {
  3186. width: 90%;
  3187. padding: 1rem;
  3188. }
  3189. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .summary-content p {
  3190. margin: 0;
  3191. }
  3192. }
  3193. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content {
  3194. width: 15%;
  3195. margin-top: 1.5rem;
  3196. }
  3197. @media (max-width: 810px) {
  3198. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content {
  3199. width: 100%;
  3200. }
  3201. }
  3202. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field--type-file {
  3203. border: none;
  3204. margin-bottom: 1rem;
  3205. background-color: transparent;
  3206. }
  3207. @media (max-width: 810px) {
  3208. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field--type-file {
  3209. margin-bottom: 0;
  3210. }
  3211. }
  3212. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item {
  3213. padding: 0.5rem;
  3214. border: solid black 1px;
  3215. margin-bottom: 1rem;
  3216. background-color: rgb(255, 255, 255);
  3217. font-size: 0.9rem;
  3218. }
  3219. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item > * {
  3220. text-transform: uppercase;
  3221. }
  3222. .page-ressources h1 {
  3223. width: 80%;
  3224. margin: auto;
  3225. font-weight: 1000;
  3226. }
  3227. .page-ressources .view-ressources {
  3228. display: flex;
  3229. flex-direction: row;
  3230. flex-wrap: wrap;
  3231. justify-content: flex-start;
  3232. padding: 2rem;
  3233. width: 80%;
  3234. margin: auto;
  3235. }
  3236. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 {
  3237. width: 100%;
  3238. margin: auto;
  3239. display: grid;
  3240. grid-template-columns: repeat(8, 1fr);
  3241. grid-template-rows: repeat(3, 1fr);
  3242. padding: 1rem;
  3243. height: fit-content;
  3244. max-height: 17rem;
  3245. padding-bottom: 5rem;
  3246. }
  3247. @media (max-width: 450px) {
  3248. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 {
  3249. display: flex;
  3250. flex-direction: column;
  3251. margin-bottom: 6rem;
  3252. }
  3253. }
  3254. .page-ressources .view-ressources #views-exposed-form-ressources-page-1::before {
  3255. content: "FILTRER :";
  3256. grid-column: 1;
  3257. grid-row: 1;
  3258. display: block;
  3259. line-height: 5;
  3260. }
  3261. @media (max-width: 450px) {
  3262. .page-ressources .view-ressources #views-exposed-form-ressources-page-1::before {
  3263. line-height: 3;
  3264. }
  3265. }
  3266. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item, .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-actions {
  3267. padding-bottom: 0.5rem;
  3268. align-self: end;
  3269. }
  3270. @media (max-width: 450px) {
  3271. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item, .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-actions {
  3272. align-self: auto;
  3273. }
  3274. }
  3275. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-combine {
  3276. grid-column: 1/span 8;
  3277. grid-row: 2;
  3278. }
  3279. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .js-form-item-field-site-target-id {
  3280. grid-column: 1/span 4;
  3281. grid-row: 3;
  3282. width: 45%;
  3283. }
  3284. @media (max-width: 450px) {
  3285. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .js-form-item-field-site-target-id {
  3286. width: 100%;
  3287. }
  3288. }
  3289. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-themes-target-id {
  3290. grid-column: 3/span 4;
  3291. grid-row: 3;
  3292. width: 45%;
  3293. }
  3294. @media (max-width: 450px) {
  3295. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-themes-target-id {
  3296. width: 100%;
  3297. }
  3298. }
  3299. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-type-de-ressource-target-id {
  3300. width: 45%;
  3301. grid-column: 5/span 6;
  3302. grid-row: 3;
  3303. }
  3304. @media (max-width: 450px) {
  3305. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-type-de-ressource-target-id {
  3306. width: 100%;
  3307. }
  3308. }
  3309. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-select {
  3310. background: white;
  3311. border: solid gray 1px;
  3312. height: 2.5rem;
  3313. padding-left: 1rem;
  3314. padding-right: 1rem;
  3315. }
  3316. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions {
  3317. grid-column: 7/span 8;
  3318. grid-row: 3;
  3319. height: 2.5rem;
  3320. }
  3321. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions .form-submit {
  3322. margin: 0;
  3323. height: 2.5rem;
  3324. }
  3325. .page-ressources .view-ressources article {
  3326. padding-bottom: 0 !important;
  3327. }
  3328. .page-ressources .view-ressources .views-row {
  3329. width: 30%;
  3330. display: flex !important;
  3331. flex-direction: column;
  3332. background-color: rgb(255, 255, 255);
  3333. margin: 1rem 1rem 6rem 1rem;
  3334. }
  3335. .page-ressources .view-ressources .views-row:hover {
  3336. transform: scale(1.05);
  3337. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3338. }
  3339. @media (max-width: 450px) {
  3340. .page-ressources .view-ressources .views-row {
  3341. width: 100%;
  3342. margin-bottom: 3rem;
  3343. }
  3344. }
  3345. .page-ressources .view-ressources .views-row .node-type-ressource {
  3346. width: 100%;
  3347. display: flex !important;
  3348. flex-direction: column-reverse;
  3349. padding-top: 0;
  3350. }
  3351. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource {
  3352. order: 1;
  3353. width: 100%;
  3354. margin: auto;
  3355. margin-left: auto;
  3356. height: 15rem;
  3357. margin-left: 0;
  3358. }
  3359. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image {
  3360. height: 100%;
  3361. }
  3362. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items {
  3363. height: 100%;
  3364. }
  3365. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item {
  3366. height: 100%;
  3367. }
  3368. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item img {
  3369. height: 100%;
  3370. object-fit: cover;
  3371. max-width: 100%;
  3372. width: 100% !important;
  3373. }
  3374. .page-ressources .view-ressources .views-row .node-type-ressource .body-content {
  3375. display: none;
  3376. }
  3377. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content {
  3378. display: flex;
  3379. flex-direction: column;
  3380. background-color: transparent !important;
  3381. right: 0;
  3382. margin-bottom: 0;
  3383. border: none;
  3384. margin-left: 0 !important;
  3385. width: auto;
  3386. }
  3387. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h1 {
  3388. display: none;
  3389. }
  3390. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h2 {
  3391. order: 2;
  3392. margin: 0;
  3393. font-size: 1.2rem;
  3394. font-weight: 500;
  3395. line-height: 1.8rem;
  3396. }
  3397. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-sous-titre {
  3398. order: 3;
  3399. font-size: 1rem;
  3400. padding-top: 0.3rem;
  3401. }
  3402. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-auteur {
  3403. order: 4;
  3404. font-weight: 900;
  3405. padding-top: 0.5rem;
  3406. padding-bottom: 1rem;
  3407. font-size: 0.8rem;
  3408. }
  3409. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3410. order: 1;
  3411. text-transform: uppercase;
  3412. font-size: 0.7rem;
  3413. }
  3414. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource a {
  3415. pointer-events: none;
  3416. }
  3417. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site {
  3418. order: 5;
  3419. background-color: rgb(153, 147, 174);
  3420. color: white;
  3421. border-radius: 50px;
  3422. width: fit-content;
  3423. padding: 0.2rem 0.9rem;
  3424. margin-top: 1rem;
  3425. }
  3426. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site .field__item {
  3427. display: inline;
  3428. }
  3429. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site a {
  3430. color: white;
  3431. font-weight: 900;
  3432. font-size: 0.8rem;
  3433. vertical-align: top;
  3434. }
  3435. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content ul.links {
  3436. order: 6;
  3437. display: none;
  3438. }
  3439. .page-ressources .view-ressources .pager {
  3440. flex: 0 1 100%;
  3441. }
  3442. .page-ressources .view-ressources .pager ul {
  3443. display: flex;
  3444. justify-content: center;
  3445. }
  3446. .page-ressources .view-ressources .pager ul li {
  3447. margin-right: 1rem;
  3448. }
  3449. .node-type-ressource {
  3450. display: grid;
  3451. grid-template-columns: 1fr repeat(3, 1fr) 1fr;
  3452. grid-template-rows: repeat(2, auto);
  3453. padding-top: 3rem;
  3454. }
  3455. @media (max-width: 510px) {
  3456. .node-type-ressource {
  3457. display: flex;
  3458. flex-direction: column;
  3459. padding-top: 0;
  3460. }
  3461. }
  3462. .node-type-ressource .image-ressource {
  3463. grid-row: 1;
  3464. grid-column: 2;
  3465. margin-right: 2rem;
  3466. }
  3467. @media (max-width: 510px) {
  3468. .node-type-ressource .image-ressource {
  3469. width: 100%;
  3470. }
  3471. }
  3472. @media (max-width: 510px) {
  3473. .node-type-ressource .image-ressource .field__item {
  3474. display: flex;
  3475. width: 100%;
  3476. }
  3477. }
  3478. .node-type-ressource .image-ressource .field__item img {
  3479. height: 400px;
  3480. width: auto;
  3481. }
  3482. @media (max-width: 510px) {
  3483. .node-type-ressource .image-ressource .field__item img {
  3484. margin: auto;
  3485. }
  3486. }
  3487. .node-type-ressource .infos-content {
  3488. grid-row: 1;
  3489. grid-column: 3/span 4;
  3490. margin-left: 2rem;
  3491. border: none;
  3492. background-color: transparent;
  3493. }
  3494. @media (max-width: 510px) {
  3495. .node-type-ressource .infos-content {
  3496. width: 85%;
  3497. }
  3498. }
  3499. .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3500. text-transform: uppercase;
  3501. font-size: 1rem;
  3502. order: 1;
  3503. }
  3504. .node-type-ressource .infos-content h1 {
  3505. order: 2;
  3506. font-size: 2rem;
  3507. font-weight: 400;
  3508. }
  3509. .node-type-ressource .infos-content .field--name-field-sous-titre {
  3510. font-size: 1.3rem;
  3511. order: 3;
  3512. }
  3513. .node-type-ressource .infos-content .field--name-field-auteur {
  3514. font-weight: 800;
  3515. font-size: 1.3rem;
  3516. order: 4;
  3517. padding-top: 1rem;
  3518. }
  3519. .node-type-ressource .infos-content .field--name-field-site {
  3520. background-color: rgb(153, 147, 174);
  3521. border-radius: 50px;
  3522. width: fit-content;
  3523. padding: 0.2rem 0.9rem;
  3524. margin-top: 1rem;
  3525. order: 5;
  3526. }
  3527. .node-type-ressource .infos-content .field--name-field-site a {
  3528. color: white;
  3529. font-weight: 900;
  3530. font-size: 0.8rem;
  3531. vertical-align: top;
  3532. }
  3533. .node-type-ressource .body-content {
  3534. grid-row: 2;
  3535. grid-column: 2/span 3;
  3536. width: 100%;
  3537. margin-top: 2rem;
  3538. }
  3539. @media (max-width: 510px) {
  3540. .node-type-ressource .body-content {
  3541. width: 80%;
  3542. margin: auto;
  3543. }
  3544. }
  3545. .node-type-ressource .body-content .field--name-field-fichiers {
  3546. width: fit-content;
  3547. }
  3548. .node-type-ressource .body-content .links-content {
  3549. margin-top: 2rem;
  3550. position: relative;
  3551. left: -10%;
  3552. width: 25%;
  3553. }
  3554. .page-actualites .block-page-title-block {
  3555. width: 75%;
  3556. margin: auto;
  3557. }
  3558. .page-actualites .view-actus {
  3559. padding-top: 3rem;
  3560. padding-bottom: 6rem;
  3561. width: 80%;
  3562. margin: auto;
  3563. display: flex;
  3564. flex-direction: row;
  3565. flex-wrap: wrap;
  3566. align-items: baseline;
  3567. justify-content: space-between;
  3568. }
  3569. @media (max-width: 891px) {
  3570. .page-actualites .view-actus {
  3571. flex-direction: column;
  3572. width: 90%;
  3573. }
  3574. }
  3575. .page-actualites .view-actus .views-row {
  3576. width: 28%;
  3577. padding: 1rem;
  3578. }
  3579. @media (max-width: 891px) {
  3580. .page-actualites .view-actus .views-row {
  3581. width: 95%;
  3582. margin: auto;
  3583. padding: 0;
  3584. }
  3585. }
  3586. .page-actualites .view-actus .views-row:hover {
  3587. transform: scale(1.05);
  3588. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3589. }
  3590. .page-actualites .view-actus .views-row .node-type-actualite {
  3591. width: 30vw !important;
  3592. }
  3593. @media (max-width: 891px) {
  3594. .page-actualites .view-actus .views-row .node-type-actualite {
  3595. width: 100% !important;
  3596. }
  3597. }
  3598. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu {
  3599. flex-direction: column;
  3600. }
  3601. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite {
  3602. width: 90%;
  3603. margin: auto;
  3604. }
  3605. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite img {
  3606. width: 100%;
  3607. height: 15rem;
  3608. object-fit: cover;
  3609. }
  3610. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content {
  3611. height: fit-content;
  3612. width: 100%;
  3613. margin: auto;
  3614. top: -0.5rem;
  3615. }
  3616. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h1 {
  3617. display: none;
  3618. }
  3619. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h2 {
  3620. margin-left: 0;
  3621. padding-top: 0.2rem;
  3622. font-weight: 600;
  3623. }
  3624. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3625. padding-top: 0 rem;
  3626. font-size: 1.2rem;
  3627. }
  3628. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3629. padding-top: 0.2rem;
  3630. }
  3631. .node-type-actualite {
  3632. width: 100vw;
  3633. }
  3634. .node-type-actualite .entete_actu {
  3635. display: flex;
  3636. flex-direction: row;
  3637. width: 75%;
  3638. margin: auto;
  3639. align-items: center;
  3640. }
  3641. @media (max-width: 891px) {
  3642. .node-type-actualite .entete_actu {
  3643. flex-direction: column;
  3644. width: 100%;
  3645. }
  3646. }
  3647. .node-type-actualite .entete_actu .image-actualite {
  3648. width: 50%;
  3649. height: 100%;
  3650. }
  3651. @media (max-width: 900px) {
  3652. .node-type-actualite .entete_actu .image-actualite {
  3653. width: 80%;
  3654. height: 100% !important;
  3655. }
  3656. }
  3657. .node-type-actualite .entete_actu .image-actualite img {
  3658. width: 100%;
  3659. height: auto;
  3660. object-fit: contain;
  3661. }
  3662. .node-type-actualite .entete_actu .infos-content {
  3663. width: 30%;
  3664. right: 5%;
  3665. }
  3666. @media (max-width: 900px) {
  3667. .node-type-actualite .entete_actu .infos-content {
  3668. width: 50%;
  3669. height: fit-content;
  3670. }
  3671. .node-type-actualite .entete_actu .infos-content h1 {
  3672. font-size: 1.2rem;
  3673. }
  3674. .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3675. font-size: 1rem;
  3676. }
  3677. .node-type-actualite .entete_actu .infos-content .field--name-field-site .field__item {
  3678. font-size: 0.7rem;
  3679. }
  3680. .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3681. font-size: 0.6rem;
  3682. }
  3683. }
  3684. .node-type-actualite .body-content .summary-content {
  3685. width: 60%;
  3686. margin: auto;
  3687. }
  3688. @media (max-width: 891px) {
  3689. .node-type-actualite .body-content .summary-content {
  3690. width: 80%;
  3691. }
  3692. }
  3693. .node-type-actualite .body-content .links-content {
  3694. width: 15%;
  3695. margin-left: 12.5%;
  3696. }
  3697. @media (max-width: 891px) {
  3698. .node-type-actualite .body-content .links-content {
  3699. width: 80%;
  3700. }
  3701. .node-type-actualite .body-content .links-content .field--name-field-fichiers {
  3702. width: fit-content;
  3703. }
  3704. }
  3705. .page-mon-espace-de-travail {
  3706. /* On cache le texte mais on le garde accessible */
  3707. /* On crée l’icône "i" */
  3708. /* Tooltip : on réaffiche le vrai texte stocké */
  3709. /* Affichage au survol */
  3710. }
  3711. .page-mon-espace-de-travail .layout-content {
  3712. padding-bottom: 3rem;
  3713. width: 80%;
  3714. margin-left: 8%;
  3715. }
  3716. .page-mon-espace-de-travail .layout-content #block-reha-titredepage {
  3717. text-align: center;
  3718. }
  3719. .page-mon-espace-de-travail .layout-content .field--type-file {
  3720. background-color: transparent;
  3721. border: none;
  3722. }
  3723. .page-mon-espace-de-travail .layout-content .js-form-type-textfield {
  3724. flex-direction: row;
  3725. align-content: center;
  3726. }
  3727. .page-mon-espace-de-travail .layout-content .js-form-type-textfield label {
  3728. margin-right: 1rem;
  3729. }
  3730. .page-mon-espace-de-travail .description {
  3731. font-style: italic;
  3732. text-transform: none;
  3733. }
  3734. .page-mon-espace-de-travail .paragraph-top .paragraph-type {
  3735. display: none;
  3736. }
  3737. .page-mon-espace-de-travail summary {
  3738. text-transform: none;
  3739. font-weight: 800;
  3740. font-size: 1.2rem;
  3741. }
  3742. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper,
  3743. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper {
  3744. border-top: solid 1px black;
  3745. margin-top: 2rem;
  3746. }
  3747. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper h4,
  3748. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper h4 {
  3749. margin: 0;
  3750. margin-top: 2rem;
  3751. padding-left: 0;
  3752. }
  3753. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper #field-dossier-values--2,
  3754. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper #field-dossier-values--2 {
  3755. padding-left: 4rem;
  3756. }
  3757. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper .field-multiple-drag,
  3758. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper .field-multiple-drag {
  3759. border-left: solid black 1px;
  3760. }
  3761. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-0-subform-field-fichiers-table {
  3762. display: none;
  3763. }
  3764. .page-mon-espace-de-travail .paragraph-type--dossier {
  3765. background-color: white;
  3766. }
  3767. .page-mon-espace-de-travail .paragraph-type--dossier h4 {
  3768. display: none;
  3769. }
  3770. .page-mon-espace-de-travail .description {
  3771. position: relative;
  3772. display: inline-block;
  3773. color: transparent; /* rend le texte invisible */
  3774. font-size: 0; /* supprime l'espace du texte */
  3775. }
  3776. .page-mon-espace-de-travail .description::before {
  3777. content: "i";
  3778. display: inline-block;
  3779. width: 20px;
  3780. height: 20px;
  3781. line-height: 20px;
  3782. border-radius: 50%;
  3783. background-color: #333;
  3784. color: #fff;
  3785. text-align: center;
  3786. font-weight: bold;
  3787. font-size: 14px;
  3788. cursor: pointer;
  3789. font-family: Arial, sans-serif;
  3790. }
  3791. .page-mon-espace-de-travail .description::after {
  3792. content: attr(data-text); /* On va injecter le texte via un attribut */
  3793. visibility: hidden;
  3794. opacity: 0;
  3795. width: 250px;
  3796. background-color: #333;
  3797. color: #fff;
  3798. text-align: left;
  3799. border-radius: 6px;
  3800. padding: 8px;
  3801. position: absolute;
  3802. z-index: 1;
  3803. top: 120%;
  3804. left: 50%;
  3805. transform: translateX(-50%);
  3806. transition: opacity 0.3s;
  3807. font-size: 13px;
  3808. line-height: 1.4;
  3809. pointer-events: none;
  3810. }
  3811. .page-mon-espace-de-travail .description:hover::after {
  3812. visibility: visible;
  3813. opacity: 1;
  3814. }
  3815. .page-mon-espace-de-travail .js-form-type-managed-file label:after {
  3816. content: " :";
  3817. }
  3818. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3819. text-transform: uppercase;
  3820. font-size: 0.9rem;
  3821. font-weight: 400;
  3822. }
  3823. @media (max-width: 891px) {
  3824. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3825. font-size: 1rem;
  3826. }
  3827. }
  3828. .page-mon-espace-de-travail .paragraphs-add-wrapper p {
  3829. margin: 0;
  3830. padding: 0.3rem;
  3831. }
  3832. .page-mon-espace-de-travail .paragraphs-add-wrapper :hover {
  3833. background-color: #fdc300;
  3834. }
  3835. .field--name-field-dossier-de-pilotage h4 ::after {
  3836. content: "";
  3837. border-top: solid 1px black;
  3838. }