bundle.css 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789
  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::before {
  999. content: "";
  1000. display: block;
  1001. width: 80%;
  1002. margin-top: 0.6rem;
  1003. margin-bottom: 1rem;
  1004. border-bottom: black solid 1px;
  1005. }
  1006. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers,
  1007. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file {
  1008. border: none;
  1009. }
  1010. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers:hover,
  1011. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file:hover {
  1012. background-color: white !important;
  1013. }
  1014. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers .field__items .field__item,
  1015. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file .field__items .field__item {
  1016. text-transform: uppercase;
  1017. padding-bottom: 0rem;
  1018. padding-left: 0.6rem;
  1019. padding-right: 0.6rem;
  1020. border: solid black 1px;
  1021. margin-bottom: 1rem;
  1022. background-color: rgb(255, 255, 255);
  1023. font-size: 0.9rem;
  1024. width: fit-content;
  1025. }
  1026. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--name-field-fichiers .field__items .field__item:hover,
  1027. aside.layout-sidebar-second .view-current-user-doc-profile .profile--type--collaborateur .field--type-file .field__items .field__item:hover {
  1028. background-color: #fdc300;
  1029. }
  1030. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage,
  1031. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement,
  1032. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier {
  1033. text-transform: uppercase;
  1034. display: flex;
  1035. flex-direction: column;
  1036. }
  1037. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1),
  1038. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1),
  1039. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) {
  1040. display: flex;
  1041. align-items: center;
  1042. flex-direction: row;
  1043. }
  1044. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1) .field__item .paragraph--type--dossier,
  1045. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1) .field__item .paragraph--type--dossier,
  1046. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1) .field__item .paragraph--type--dossier {
  1047. padding-left: 10%;
  1048. }
  1049. 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,
  1050. 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,
  1051. 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 {
  1052. text-transform: none;
  1053. border: none;
  1054. padding-left: 10%;
  1055. }
  1056. 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),
  1057. 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),
  1058. 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) {
  1059. display: none;
  1060. }
  1061. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-de-pilotage > div:nth-child(1)::before,
  1062. aside.layout-sidebar-second .view-current-user-doc-profile .field--name-field-dossier-evenement > div:nth-child(1)::before,
  1063. aside.layout-sidebar-second .view-current-user-doc-profile .paragraph--type--dossier > div:nth-child(1)::before {
  1064. content: url("../../dist/images/noun-file-6880430.svg");
  1065. display: inline-flex;
  1066. width: 40px;
  1067. height: auto;
  1068. padding-right: 1rem;
  1069. align-items: center;
  1070. }
  1071. aside.layout-sidebar-second footer.view-footer {
  1072. margin-top: 3rem;
  1073. text-transform: uppercase;
  1074. border: solid black 1px;
  1075. background-color: rgb(255, 255, 255);
  1076. font-size: 0.9rem;
  1077. width: fit-content;
  1078. font-weight: 400;
  1079. padding-top: 0;
  1080. align-self: left;
  1081. margin-left: 1rem;
  1082. }
  1083. @media (max-width: 891px) {
  1084. aside.layout-sidebar-second footer.view-footer {
  1085. font-size: 1rem;
  1086. }
  1087. }
  1088. aside.layout-sidebar-second footer.view-footer p {
  1089. margin: 0;
  1090. padding: 0.3rem;
  1091. }
  1092. aside.layout-sidebar-second footer.view-footer :hover {
  1093. background-color: #fdc300;
  1094. }
  1095. aside.layout-sidebar-second footer.view-footer p {
  1096. padding-left: 0.6rem;
  1097. padding-right: 0.6rem;
  1098. }
  1099. .field--name-field-dossier-de-pilotage > div:nth-child(2) > div:nth-child(1) > div:nth-child(2):hover {
  1100. background-color: none !important;
  1101. }
  1102. /* Slider */
  1103. .slick-loading .slick-list {
  1104. background: #fff url("./ajax-loader.gif") center center no-repeat;
  1105. }
  1106. /* Icons */
  1107. @font-face {
  1108. font-family: "slick";
  1109. src: url("./fonts/slick.eot");
  1110. 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");
  1111. font-weight: normal;
  1112. font-style: normal;
  1113. }
  1114. /* Arrows */
  1115. .slick-prev,
  1116. .slick-next {
  1117. position: absolute;
  1118. display: block;
  1119. z-index: 9;
  1120. line-height: 0px;
  1121. font-size: 0px;
  1122. cursor: pointer;
  1123. background: transparent;
  1124. color: transparent;
  1125. top: 18%;
  1126. -webkit-transform: translate(0, -50%);
  1127. -ms-transform: translate(0, -50%);
  1128. transform: translate(0, -50%);
  1129. padding: 0;
  1130. border: none;
  1131. outline: none;
  1132. }
  1133. .slick-prev:hover, .slick-prev:focus,
  1134. .slick-next:hover,
  1135. .slick-next:focus {
  1136. outline: none;
  1137. background: transparent;
  1138. color: transparent;
  1139. }
  1140. .slick-prev:hover:before, .slick-prev:focus:before,
  1141. .slick-next:hover:before,
  1142. .slick-next:focus:before {
  1143. opacity: 1;
  1144. }
  1145. .slick-prev.slick-disabled:before,
  1146. .slick-next.slick-disabled:before {
  1147. opacity: 0.25;
  1148. }
  1149. .slick-prev:before,
  1150. .slick-next:before {
  1151. font-family: "slick";
  1152. color: rgb(153, 147, 174);
  1153. opacity: 0.4;
  1154. -webkit-font-smoothing: antialiased;
  1155. -moz-osx-font-smoothing: grayscale;
  1156. }
  1157. .slick-prev {
  1158. left: 2%;
  1159. padding-left: 4rem;
  1160. }
  1161. [dir=rtl] .slick-prev {
  1162. left: auto;
  1163. right: 200px;
  1164. }
  1165. .slick-prev:before {
  1166. content: url("../../dist/images/moyennes_fleches_prev.svg");
  1167. }
  1168. [dir=rtl] .slick-prev:before {
  1169. content: url("../../dist/images/moyennes_fleches_prev.svg");
  1170. }
  1171. .slick-next {
  1172. right: 270px;
  1173. }
  1174. [dir=rtl] .slick-next {
  1175. left: -25px;
  1176. right: auto;
  1177. }
  1178. .slick-next:before {
  1179. content: url("../../dist/images/moyennes_fleches_next.svg");
  1180. }
  1181. [dir=rtl] .slick-next:before {
  1182. content: url("../../dist/images/moyennes_fleches_next.svg");
  1183. }
  1184. /* Dots */
  1185. .slick-dotted.slick-slider {
  1186. margin-bottom: 30px;
  1187. }
  1188. .slick-dots {
  1189. position: absolute;
  1190. bottom: -60px;
  1191. list-style: none;
  1192. display: block;
  1193. text-align: center;
  1194. padding: 0;
  1195. margin: 0;
  1196. width: 100%;
  1197. }
  1198. .slick-dots li {
  1199. position: relative;
  1200. display: inline-block;
  1201. height: 20px;
  1202. width: 20px;
  1203. margin: 0 5px;
  1204. padding: 0;
  1205. cursor: pointer;
  1206. }
  1207. .slick-dots li button {
  1208. border: 0;
  1209. background: transparent;
  1210. display: block;
  1211. height: 50px;
  1212. width: 50px;
  1213. outline: none;
  1214. line-height: 0px;
  1215. font-size: 0px;
  1216. color: transparent;
  1217. padding: 5px;
  1218. cursor: pointer;
  1219. }
  1220. .slick-dots li button:hover, .slick-dots li button:focus {
  1221. outline: none;
  1222. }
  1223. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  1224. opacity: 1;
  1225. }
  1226. .slick-dots li button:before {
  1227. position: absolute;
  1228. top: 0;
  1229. left: 0;
  1230. content: "•";
  1231. width: 50px;
  1232. height: 50px;
  1233. font-family: "slick";
  1234. font-size: 40px;
  1235. line-height: 20px;
  1236. text-align: center;
  1237. color: black;
  1238. opacity: 0.25;
  1239. -webkit-font-smoothing: antialiased;
  1240. -moz-osx-font-smoothing: grayscale;
  1241. }
  1242. .slick-dots li.slick-active button:before {
  1243. color: black;
  1244. opacity: 0.4;
  1245. }
  1246. /* Slider */
  1247. .slick-slider {
  1248. position: relative;
  1249. display: block;
  1250. box-sizing: border-box;
  1251. -webkit-touch-callout: none;
  1252. -webkit-user-select: none;
  1253. -khtml-user-select: none;
  1254. -moz-user-select: none;
  1255. -ms-user-select: none;
  1256. user-select: none;
  1257. -ms-touch-action: pan-y;
  1258. touch-action: pan-y;
  1259. -webkit-tap-highlight-color: transparent;
  1260. }
  1261. .slick-list {
  1262. position: relative;
  1263. overflow: hidden;
  1264. display: block;
  1265. margin: 0;
  1266. padding: 0;
  1267. }
  1268. .slick-list:focus {
  1269. outline: none;
  1270. }
  1271. .slick-list.dragging {
  1272. cursor: pointer;
  1273. cursor: hand;
  1274. }
  1275. .slick-slider .slick-track,
  1276. .slick-slider .slick-list {
  1277. -webkit-transform: translate3d(0, 0, 0);
  1278. -moz-transform: translate3d(0, 0, 0);
  1279. -ms-transform: translate3d(0, 0, 0);
  1280. -o-transform: translate3d(0, 0, 0);
  1281. transform: translate3d(0, 0, 0);
  1282. }
  1283. .slick-track {
  1284. position: relative;
  1285. left: 0;
  1286. top: 0;
  1287. display: block;
  1288. margin-left: auto;
  1289. margin-right: auto;
  1290. }
  1291. .slick-track:before, .slick-track:after {
  1292. content: "";
  1293. display: table;
  1294. }
  1295. .slick-track:after {
  1296. clear: both;
  1297. }
  1298. .slick-loading .slick-track {
  1299. visibility: hidden;
  1300. }
  1301. .slick-slide {
  1302. float: left;
  1303. height: 100%;
  1304. min-height: 1px;
  1305. display: none;
  1306. }
  1307. [dir=rtl] .slick-slide {
  1308. float: right;
  1309. }
  1310. .slick-slide img {
  1311. display: block;
  1312. }
  1313. .slick-slide.slick-loading img {
  1314. display: none;
  1315. }
  1316. .slick-slide.dragging img {
  1317. pointer-events: none;
  1318. }
  1319. .slick-initialized .slick-slide {
  1320. display: block;
  1321. }
  1322. .slick-loading .slick-slide {
  1323. visibility: hidden;
  1324. }
  1325. .slick-vertical .slick-slide {
  1326. display: block;
  1327. height: auto;
  1328. border: 1px solid transparent;
  1329. }
  1330. .slick-arrow.slick-hidden {
  1331. display: none;
  1332. }
  1333. .view-actus > .slick-arrow,
  1334. .view-sites > .slick-arrow {
  1335. background-image: radial-gradient(white, transparent);
  1336. border-radius: 50%;
  1337. padding: 0.8rem;
  1338. padding-bottom: 1.8rem;
  1339. padding-top: 1.8rem;
  1340. width: 120px;
  1341. height: auto;
  1342. top: 50%;
  1343. }
  1344. .view-actus > .slick-arrow.slick-next,
  1345. .view-sites > .slick-arrow.slick-next {
  1346. padding-right: 0rem;
  1347. right: 8%;
  1348. }
  1349. .view-actus > .slick-arrow.slick-prev,
  1350. .view-sites > .slick-arrow.slick-prev {
  1351. padding-left: 0rem;
  1352. }
  1353. .infos-content {
  1354. position: relative;
  1355. display: flex;
  1356. flex-direction: column;
  1357. border: solid #fdc300 1px;
  1358. background-color: rgb(255, 255, 255);
  1359. padding: 1rem;
  1360. height: fit-content;
  1361. width: 100%;
  1362. position: relative;
  1363. right: 5%;
  1364. margin-bottom: 30px;
  1365. }
  1366. .infos-content h1 {
  1367. order: 2;
  1368. font-size: 1.5rem;
  1369. font-weight: 600;
  1370. margin: 0;
  1371. }
  1372. .infos-content h2 {
  1373. order: 2;
  1374. margin: 0;
  1375. font-size: 1.5rem;
  1376. font-weight: 600;
  1377. padding: 0;
  1378. }
  1379. .infos-content .field--name-field-sous-titre {
  1380. order: 3;
  1381. font-size: 1.5rem;
  1382. }
  1383. .infos-content .field--name-field-date {
  1384. order: 4;
  1385. font-weight: 900;
  1386. }
  1387. .infos-content .field--name-field-type-d-actualite {
  1388. order: 1;
  1389. text-transform: uppercase;
  1390. font-size: 0.8rem;
  1391. }
  1392. .infos-content .field--name-field-site {
  1393. order: 5;
  1394. background-color: rgb(153, 147, 174);
  1395. color: white;
  1396. border-radius: 50px;
  1397. width: fit-content;
  1398. padding: 0 0.9rem 0.3rem 0.9rem;
  1399. margin-top: 0.5rem;
  1400. }
  1401. .infos-content .field--name-field-site .field__item {
  1402. display: inline;
  1403. color: white;
  1404. font-weight: 900;
  1405. font-size: 0.8rem;
  1406. }
  1407. .infos-content .field--name-field-site .field__item a:visited {
  1408. color: white;
  1409. }
  1410. .infos-content .field--name-field-site .field__item a:link {
  1411. color: white;
  1412. }
  1413. .infos-content ul.links {
  1414. order: 6;
  1415. display: none;
  1416. }
  1417. .links-content .field--name-field-liens {
  1418. padding: 0.5rem;
  1419. }
  1420. .links-content .field--name-field-liens .field__items .field__item ::after {
  1421. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  1422. padding-left: 0.5rem;
  1423. padding-right: 0.5rem;
  1424. }
  1425. .links-content .field--name-field-fichiers,
  1426. .links-content .field--name-field-fichier {
  1427. width: fit-content;
  1428. padding: 0.5rem;
  1429. padding-right: 0.8rem;
  1430. }
  1431. .links-content .field--name-field-fichiers .file--mime-application-pdf a,
  1432. .links-content .field--name-field-fichier .file--mime-application-pdf a {
  1433. text-transform: uppercase;
  1434. }
  1435. .links-content .field--name-field-fichiers span:nth-of-type(2),
  1436. .links-content .field--name-field-fichier span:nth-of-type(2) {
  1437. display: none;
  1438. }
  1439. .field--name-field-node-link .field__item ::after {
  1440. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  1441. padding-left: 0.5rem;
  1442. padding-right: 0.5rem;
  1443. }
  1444. /* themes/custom/reha/assets/css/menu-burger-auto.css */
  1445. .rb-sr {
  1446. position: absolute !important;
  1447. width: 1px;
  1448. height: 1px;
  1449. padding: 0;
  1450. margin: -1px;
  1451. overflow: hidden;
  1452. clip: rect(0, 0, 0, 0);
  1453. clip-path: inset(50%);
  1454. white-space: nowrap;
  1455. border: 0;
  1456. }
  1457. /* Bouton burger */
  1458. .rb-toggle {
  1459. display: inline-flex;
  1460. align-items: center;
  1461. justify-content: center;
  1462. gap: 0.5rem;
  1463. border: 1px solid #ddd;
  1464. background: #fff;
  1465. color: #111;
  1466. border-radius: 0.75rem;
  1467. padding: 0.6rem 0.8rem;
  1468. cursor: pointer;
  1469. }
  1470. /* Icône */
  1471. .rb-burger {
  1472. display: inline-flex;
  1473. flex-direction: column;
  1474. gap: 6px;
  1475. }
  1476. .rb-line {
  1477. width: 22px;
  1478. height: 2px;
  1479. background: currentColor;
  1480. display: block;
  1481. transition: transform 0.2s ease, opacity 0.2s ease;
  1482. }
  1483. /* Anim "X" */
  1484. .rb-toggle.is-active .rb-line:nth-child(1) {
  1485. transform: translateY(8px) rotate(45deg);
  1486. }
  1487. .rb-toggle.is-active .rb-line:nth-child(2) {
  1488. opacity: 0;
  1489. }
  1490. .rb-toggle.is-active .rb-line:nth-child(3) {
  1491. transform: translateY(-8px) rotate(-45deg);
  1492. }
  1493. /* Liste (mobile) */
  1494. #main-nav.rb-list {
  1495. list-style: none;
  1496. padding: 0;
  1497. margin: 0.75rem 0 0 0;
  1498. display: grid;
  1499. gap: 0.25rem;
  1500. }
  1501. #main-nav.rb-list a {
  1502. display: block;
  1503. padding: 0.75rem 1rem;
  1504. border-radius: 0.5rem;
  1505. text-decoration: none;
  1506. background: #fff;
  1507. color: #111;
  1508. }
  1509. #main-nav.rb-list a:focus-visible {
  1510. outline: 2px solid #5b9aff;
  1511. outline-offset: 2px;
  1512. }
  1513. /* Desktop / tablette */
  1514. @media (min-width: 768px) {
  1515. .rb-toggle {
  1516. display: none;
  1517. }
  1518. #main-nav.rb-list {
  1519. display: flex;
  1520. gap: 0.5rem;
  1521. margin-top: 0;
  1522. }
  1523. #main-nav.rb-list a {
  1524. background: transparent;
  1525. padding: 0.5rem 0.75rem;
  1526. }
  1527. #main-nav.rb-list a:hover {
  1528. text-decoration: underline;
  1529. }
  1530. }
  1531. /* Impression : menu toujours visible */
  1532. @media print {
  1533. .rb-toggle {
  1534. display: none !important;
  1535. }
  1536. #main-nav.rb-list {
  1537. display: block !important;
  1538. }
  1539. }
  1540. /* 1) Garantir que l’attribut hidden cache bien l’élément,
  1541. même si un autre CSS met un display:... */
  1542. #main-nav[hidden] {
  1543. display: none !important;
  1544. }
  1545. /* 2) Fallback ultra simple : on cache le menu en mobile,
  1546. et on l’affiche quand le bouton est actif.
  1547. (Le JS insère le bouton juste AVANT le <ul>, donc l’adjacence fonctionne) */
  1548. @media (max-width: 767px) {
  1549. #main-nav.rb-list {
  1550. display: none !important;
  1551. }
  1552. .rb-toggle.is-active + #main-nav.rb-list {
  1553. display: grid !important;
  1554. }
  1555. }
  1556. /* --- Empêcher le menu d'impacter la mise en page du header (mobile) --- */
  1557. @media (max-width: 767.98px) {
  1558. /* Le conteneur nav sert d'ancre pour le positionnement absolu */
  1559. #block-reha-navigationprincipale {
  1560. position: relative;
  1561. overflow: visible; /* au cas où un parent a overflow:hidden */
  1562. /* optionnel : si le header a text-align:center et que tu veux
  1563. que le bouton reste à gauche, décommente la ligne suivante */
  1564. /* text-align: initial; */
  1565. }
  1566. /* Par défaut, menu masqué quand le bouton n'est pas actif */
  1567. #block-reha-navigationprincipale .rb-toggle + #main-nav.rb-list {
  1568. display: none !important;
  1569. }
  1570. /* Quand on ouvre: on montre le menu en position absolue, hors du flux */
  1571. #block-reha-navigationprincipale .rb-toggle.is-active + #main-nav.rb-list {
  1572. display: grid !important;
  1573. }
  1574. /* Sortir le UL du flux et de tout align center, en overlay sous la barre */
  1575. #block-reha-navigationprincipale #main-nav.rb-list {
  1576. position: absolute;
  1577. top: 100%; /* juste sous la barre de nav */
  1578. left: 0;
  1579. right: 0; /* pleine largeur du nav */
  1580. z-index: 1000;
  1581. text-align: left; /* ignore tout text-align:center parent */
  1582. margin: 0;
  1583. padding: 0.5rem;
  1584. background: #fff;
  1585. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  1586. }
  1587. #block-reha-navigationprincipale #main-nav.rb-list a {
  1588. display: block;
  1589. }
  1590. }
  1591. /* --- Desktop : on remet le menu dans le flux normal --- */
  1592. @media (min-width: 768px) {
  1593. #block-reha-navigationprincipale #main-nav.rb-list {
  1594. position: static;
  1595. box-shadow: none;
  1596. padding: 0;
  1597. }
  1598. }
  1599. #popup-overlay {
  1600. display: none;
  1601. position: fixed;
  1602. top: 0;
  1603. left: 0;
  1604. width: 100%;
  1605. height: 100%;
  1606. background: rgba(0, 0, 0, 0.7);
  1607. justify-content: center;
  1608. align-items: center;
  1609. z-index: 9999;
  1610. }
  1611. #popup-overlay img {
  1612. max-width: 90%;
  1613. max-height: 90%;
  1614. border-radius: 8px;
  1615. box-shadow: 0 0 20px #000;
  1616. }
  1617. #popup-overlay .popup-close {
  1618. position: absolute;
  1619. top: 20px;
  1620. right: 30px;
  1621. color: white;
  1622. font-size: 40px;
  1623. font-weight: bold;
  1624. cursor: pointer;
  1625. }
  1626. /*pages*/
  1627. .home-page-layout-content {
  1628. width: 100%;
  1629. }
  1630. .home-page-layout-content .layout-content .layout--onecol {
  1631. width: 90%;
  1632. margin: auto;
  1633. font-size: 1.3rem;
  1634. font-weight: 400;
  1635. font-style: normal;
  1636. }
  1637. .home-page-layout-content .layout-content .layout--onecol h4 {
  1638. font-size: 5rem;
  1639. font-weight: normal;
  1640. margin: 0;
  1641. }
  1642. .home-page-layout-content .layout-content .layout--onecol h5 {
  1643. font-size: 5rem;
  1644. font-weight: 900;
  1645. margin: 0;
  1646. line-height: 0.6;
  1647. }
  1648. @media (max-width: 891px) {
  1649. .home-page-layout-content .layout-content .layout--onecol h5 {
  1650. font-size: 4rem;
  1651. line-height: 0.9;
  1652. }
  1653. }
  1654. @media (max-width: 520px) {
  1655. .home-page-layout-content .layout-content .layout--onecol h5 {
  1656. font-size: 3rem;
  1657. }
  1658. }
  1659. .home-page-layout-content .layout-content .layout--onecol img {
  1660. height: auto;
  1661. padding-top: 2rem;
  1662. padding-bottom: 2rem;
  1663. }
  1664. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1665. display: grid;
  1666. grid-column: repeat(2, 1fr);
  1667. }
  1668. @media (max-width: 891px) {
  1669. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1670. display: flex;
  1671. flex-direction: column;
  1672. }
  1673. }
  1674. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 {
  1675. margin-bottom: 2rem;
  1676. }
  1677. @media (max-width: 500px) {
  1678. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 img {
  1679. width: -moz-available;
  1680. }
  1681. }
  1682. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1683. display: none !important;
  1684. grid-column: 1;
  1685. grid-row: 2/span 2;
  1686. width: 80%;
  1687. border: solid #fdc300 1px;
  1688. background-color: rgb(255, 255, 255);
  1689. font-weight: 800;
  1690. padding: 2rem;
  1691. margin-right: 1rem;
  1692. }
  1693. @media (max-width: 891px) {
  1694. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1695. font-size: 4rem;
  1696. }
  1697. }
  1698. @media (max-width: 520px) {
  1699. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1700. font-size: 3rem;
  1701. }
  1702. }
  1703. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1704. font-size: 5rem;
  1705. font-weight: 900;
  1706. margin: 0;
  1707. line-height: 0.6;
  1708. }
  1709. @media (max-width: 891px) {
  1710. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1711. font-size: 4rem;
  1712. line-height: 0.9;
  1713. }
  1714. }
  1715. @media (max-width: 520px) {
  1716. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1717. font-size: 3rem;
  1718. }
  1719. }
  1720. .home-page-layout-content .layout-content .layout--onecol .block-region-content img {
  1721. height: auto;
  1722. padding-top: 2rem;
  1723. padding-bottom: 2rem;
  1724. }
  1725. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1726. display: grid;
  1727. grid-template-rows: repeat(8, 1fr);
  1728. }
  1729. @media (max-width: 891px) {
  1730. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1731. display: flex;
  1732. flex-direction: column;
  1733. }
  1734. }
  1735. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-block-content3d4d153c-9da8-49e2-be7a-d2245f5716ee {
  1736. grid-row: 1/span 3;
  1737. }
  1738. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 {
  1739. grid-row: 2/span 6;
  1740. margin-bottom: 2rem;
  1741. }
  1742. @media (max-width: 500px) {
  1743. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 img {
  1744. width: -moz-available;
  1745. }
  1746. }
  1747. .user--register h1 {
  1748. font-size: 3rem !important;
  1749. font-weight: 600;
  1750. }
  1751. @media (max-width: 500px) {
  1752. .user--register h1 {
  1753. font-size: 2.5rem !important;
  1754. }
  1755. }
  1756. .user--register .form-item {
  1757. margin-bottom: 2rem;
  1758. }
  1759. .user--register label {
  1760. font-weight: 800;
  1761. }
  1762. .user--register .description {
  1763. text-transform: lowercase;
  1764. font-style: italic;
  1765. }
  1766. .user--register .password-strength .password-strength__meter {
  1767. width: 250px;
  1768. }
  1769. .user--register .password-suggestions {
  1770. text-transform: lowercase;
  1771. font-style: italic;
  1772. font-size: 0.8rem;
  1773. }
  1774. .user--register #edit-pass--description {
  1775. display: none;
  1776. }
  1777. @media (max-width: 891px) {
  1778. .mes-operations {
  1779. width: 70%;
  1780. margin-left: 2rem;
  1781. }
  1782. }
  1783. @media (max-width: 500px) {
  1784. .mes-operations {
  1785. width: 90%;
  1786. }
  1787. }
  1788. .mes-operations .views-row {
  1789. width: 80%;
  1790. padding-bottom: 1rem;
  1791. border-bottom: 1px solid black;
  1792. }
  1793. .mes-operations .views-row .node-type-operation footer {
  1794. display: none;
  1795. }
  1796. .mes-operations .views-row .node-type-operation .field--label-above div:first-child {
  1797. font-weight: 800;
  1798. }
  1799. .mes-operations .views-row .node-type-operation p {
  1800. margin: 0;
  1801. }
  1802. .mes-operations .views-row .node-type-operation .field--label-above {
  1803. margin-bottom: 1rem;
  1804. }
  1805. .mes-operations .views-row .node-type-operation .field--type-file {
  1806. border: none;
  1807. background-color: inherit;
  1808. text-transform: none;
  1809. padding: 0;
  1810. }
  1811. .mes-operations .views-row .views-field {
  1812. margin-bottom: 1.5rem;
  1813. }
  1814. .mes-operations .views-row .views-field-edit-node {
  1815. display: none !important;
  1816. }
  1817. .mes-operations div.views-element-container div footer {
  1818. background-color: white;
  1819. border: solid black 1px;
  1820. text-transform: uppercase;
  1821. padding: 1rem;
  1822. width: fit-content;
  1823. margin-top: 2rem;
  1824. font-weight: 400;
  1825. display: none !important;
  1826. }
  1827. .mes-operations div.views-element-container div footer p {
  1828. margin: 0;
  1829. }
  1830. .mes-operations div.views-element-container div footer:hover {
  1831. background-color: #fdc300;
  1832. }
  1833. #block-reha-contenudelapageprincipale .node-operation-form {
  1834. width: 45%;
  1835. }
  1836. @media (max-width: 891px) {
  1837. #block-reha-contenudelapageprincipale .node-operation-form {
  1838. width: 70%;
  1839. margin-left: 2rem;
  1840. }
  1841. }
  1842. #block-reha-contenudelapageprincipale .node-operation-form #edit-title-wrapper input {
  1843. width: 100%;
  1844. }
  1845. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper {
  1846. background-color: rgba(153, 147, 174, 0) !important;
  1847. border: none;
  1848. padding: 0;
  1849. }
  1850. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper label {
  1851. order: 1;
  1852. font-weight: 800;
  1853. }
  1854. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .description {
  1855. text-transform: lowercase;
  1856. order: 2;
  1857. font-style: italic;
  1858. }
  1859. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  1860. order: 3;
  1861. margin-top: 1rem;
  1862. }
  1863. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper {
  1864. background-color: rgba(153, 147, 174, 0) !important;
  1865. border: none;
  1866. padding: 0;
  1867. margin-top: 1rem;
  1868. }
  1869. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper label {
  1870. order: 1;
  1871. font-weight: 800;
  1872. display: flex;
  1873. }
  1874. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  1875. content: url(../images/noun-information-55404.svg);
  1876. padding-left: 1rem;
  1877. cursor: pointer;
  1878. }
  1879. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .description {
  1880. text-transform: lowercase;
  1881. order: 2;
  1882. font-style: italic;
  1883. width: 100%;
  1884. }
  1885. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  1886. display: none;
  1887. }
  1888. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  1889. display: none;
  1890. }
  1891. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  1892. order: 3;
  1893. margin-top: 1rem;
  1894. text-transform: lowercase;
  1895. }
  1896. #block-reha-contenudelapageprincipale .node-operation-form label {
  1897. font-weight: 800;
  1898. }
  1899. #block-reha-contenudelapageprincipale .node-operation-form .form-wrapper {
  1900. margin-bottom: 1rem;
  1901. margin-top: 1rem;
  1902. }
  1903. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-0-value {
  1904. width: 100%;
  1905. }
  1906. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address input {
  1907. width: 100%;
  1908. }
  1909. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1910. display: flex;
  1911. flex-direction: row;
  1912. width: 100%;
  1913. margin-right: 0;
  1914. justify-content: space-between;
  1915. }
  1916. @media (max-width: 891px) {
  1917. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1918. flex-direction: column;
  1919. }
  1920. }
  1921. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 input {
  1922. width: 100%;
  1923. }
  1924. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 .form-item {
  1925. display: flex;
  1926. flex-direction: column;
  1927. margin-right: 0;
  1928. }
  1929. #block-reha-contenudelapageprincipale .node-operation-form .form-item {
  1930. display: flex;
  1931. flex-direction: column;
  1932. }
  1933. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-wrapper {
  1934. margin-bottom: 2rem;
  1935. }
  1936. #block-reha-contenudelapageprincipale .node-operation-form .counter {
  1937. font-style: italic;
  1938. }
  1939. #block-reha-contenudelapageprincipale .form-managed-file {
  1940. text-transform: lowercase;
  1941. }
  1942. #block-reha-contenudelapageprincipale .file--application-pdf {
  1943. text-transform: lowercase;
  1944. }
  1945. #block-reha-contenudelapageprincipale .messages--error {
  1946. text-transform: lowercase;
  1947. }
  1948. 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 {
  1949. display: none;
  1950. }
  1951. #edit-field-dossier-de-candidature-0--description {
  1952. text-transform: none !important;
  1953. }
  1954. #edit-field-dossier-de-candidature-0--description .depth1 {
  1955. font-weight: 800;
  1956. }
  1957. #edit-field-dossier-de-candidature-0--description .depth2 {
  1958. font-weight: 400;
  1959. }
  1960. #edit-field-dossier-de-candidature-0--description .depth3 {
  1961. text-decoration: none !important;
  1962. }
  1963. .user--edit label {
  1964. font-weight: 800;
  1965. }
  1966. .user--edit .password-strength {
  1967. width: fit-content;
  1968. }
  1969. .user--edit .description {
  1970. font-style: italic;
  1971. }
  1972. .user--edit .form-item {
  1973. margin-bottom: 1rem;
  1974. width: 70%;
  1975. }
  1976. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1977. width: 45%;
  1978. }
  1979. @media (max-width: 891px) {
  1980. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1981. width: 70%;
  1982. margin-left: 2rem;
  1983. }
  1984. }
  1985. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-title-wrapper input {
  1986. width: 100%;
  1987. }
  1988. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper {
  1989. background-color: rgba(153, 147, 174, 0) !important;
  1990. border: none;
  1991. padding: 0;
  1992. }
  1993. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper label {
  1994. order: 1;
  1995. font-weight: 800;
  1996. }
  1997. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .description {
  1998. text-transform: lowercase;
  1999. order: 2;
  2000. font-style: italic;
  2001. }
  2002. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  2003. order: 3;
  2004. margin-top: 1rem;
  2005. }
  2006. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper {
  2007. background-color: rgba(153, 147, 174, 0) !important;
  2008. border: none;
  2009. padding: 0;
  2010. margin-top: 1rem;
  2011. }
  2012. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper label {
  2013. order: 1;
  2014. font-weight: 800;
  2015. display: flex;
  2016. }
  2017. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  2018. content: url(../images/noun-information-55404.svg);
  2019. padding-left: 1rem;
  2020. cursor: pointer;
  2021. }
  2022. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .description {
  2023. text-transform: lowercase;
  2024. order: 2;
  2025. font-style: italic;
  2026. width: 100%;
  2027. }
  2028. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  2029. display: none;
  2030. }
  2031. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  2032. display: none;
  2033. }
  2034. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  2035. order: 3;
  2036. margin-top: 1rem;
  2037. text-transform: lowercase;
  2038. }
  2039. #block-reha-contenudelapageprincipale #node-operation-edit-form label {
  2040. font-weight: 800;
  2041. }
  2042. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-wrapper {
  2043. margin-bottom: 1rem;
  2044. margin-top: 1rem;
  2045. }
  2046. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-0-value {
  2047. width: 100%;
  2048. }
  2049. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper summary {
  2050. display: none;
  2051. }
  2052. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address input {
  2053. width: 100%;
  2054. }
  2055. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 {
  2056. display: flex;
  2057. flex-direction: row;
  2058. width: 100%;
  2059. margin-right: 0;
  2060. justify-content: space-between;
  2061. }
  2062. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 input {
  2063. width: 100%;
  2064. }
  2065. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 .form-item {
  2066. display: flex;
  2067. flex-direction: column;
  2068. margin-right: 0;
  2069. }
  2070. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-item {
  2071. display: flex;
  2072. flex-direction: column;
  2073. }
  2074. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-wrapper {
  2075. margin-bottom: 2rem;
  2076. }
  2077. #block-reha-contenudelapageprincipale #node-operation-edit-form .counter {
  2078. font-style: italic;
  2079. }
  2080. #block-reha-contenudelapageprincipale .form-managed-file {
  2081. text-transform: lowercase;
  2082. }
  2083. #block-reha-contenudelapageprincipale .file--application-pdf {
  2084. text-transform: lowercase;
  2085. }
  2086. #block-reha-contenudelapageprincipale .messages--error {
  2087. text-transform: lowercase;
  2088. }
  2089. 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 {
  2090. display: none;
  2091. }
  2092. #edit-field-dossier-de-candidature-0--description {
  2093. text-transform: none !important;
  2094. }
  2095. #edit-field-dossier-de-candidature-0--description .depth1 {
  2096. font-weight: 800;
  2097. }
  2098. #edit-field-dossier-de-candidature-0--description .depth2 {
  2099. font-weight: 400;
  2100. }
  2101. #edit-field-dossier-de-candidature-0--description .depth3 {
  2102. text-decoration: none !important;
  2103. }
  2104. .page--contacts div.contacts-full section.titre {
  2105. display: none;
  2106. }
  2107. .config_pages--type--mentions-legales {
  2108. width: 70%;
  2109. }
  2110. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2111. border: solid #fdc300 1px;
  2112. background-color: rgb(255, 255, 255);
  2113. font-weight: 1000;
  2114. padding: 2rem;
  2115. margin-right: 1rem;
  2116. width: 16vw;
  2117. margin-left: 12%;
  2118. padding-top: 1rem;
  2119. padding-left: 2rem;
  2120. padding-bottom: 5rem;
  2121. }
  2122. @media (max-width: 891px) {
  2123. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2124. margin-bottom: 1rem;
  2125. margin-top: 2rem;
  2126. width: 50%;
  2127. }
  2128. }
  2129. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de p {
  2130. margin: 0;
  2131. font-size: 1.3rem;
  2132. }
  2133. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de strong {
  2134. font-size: 1.5rem;
  2135. }
  2136. .home-page-layout-content .block-views-blocksites-block-1 {
  2137. top: -44px;
  2138. position: relative;
  2139. }
  2140. @media (max-width: 891px) {
  2141. .home-page-layout-content .block-views-blocksites-block-1 .views-row {
  2142. margin-left: 1.8rem;
  2143. margin-right: 1.8rem;
  2144. }
  2145. }
  2146. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site {
  2147. width: 70%;
  2148. height: 30vw;
  2149. margin: auto;
  2150. }
  2151. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2152. background-color: white;
  2153. display: flex;
  2154. flex-direction: row;
  2155. margin: auto;
  2156. height: 100%;
  2157. }
  2158. @media (max-width: 1400px) {
  2159. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2160. width: 100%;
  2161. display: flex;
  2162. flex-direction: row;
  2163. }
  2164. }
  2165. @media (max-width: 891px) {
  2166. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2167. width: 100%;
  2168. display: flex;
  2169. flex-direction: column;
  2170. }
  2171. }
  2172. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2173. order: 1;
  2174. width: 70%;
  2175. height: 100%;
  2176. }
  2177. @media (max-width: 900px) {
  2178. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2179. width: 100%;
  2180. }
  2181. }
  2182. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image {
  2183. height: 100%;
  2184. }
  2185. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items {
  2186. height: 100%;
  2187. }
  2188. .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 {
  2189. display: flex;
  2190. flex-direction: column;
  2191. align-items: flex-end;
  2192. position: relative;
  2193. height: 100%;
  2194. }
  2195. .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 {
  2196. height: 100%;
  2197. width: 100%;
  2198. }
  2199. .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 {
  2200. height: 100%;
  2201. width: 100%;
  2202. object-fit: fill;
  2203. }
  2204. @media (max-width: 1500px) {
  2205. .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 {
  2206. width: 100%;
  2207. }
  2208. }
  2209. .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 {
  2210. position: absolute;
  2211. font-style: italic;
  2212. margin: 0;
  2213. width: 20vw;
  2214. z-index: 900;
  2215. right: -20vw;
  2216. bottom: 0px;
  2217. }
  2218. @media (max-width: 900px) {
  2219. .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 {
  2220. left: 0;
  2221. top: 0;
  2222. width: 100%;
  2223. }
  2224. }
  2225. .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 {
  2226. margin: 0;
  2227. padding-left: 1rem;
  2228. padding-bottom: 1rem;
  2229. }
  2230. @media (max-width: 900px) {
  2231. .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 {
  2232. font-size: 0.8rem;
  2233. }
  2234. }
  2235. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2236. background-color: rgb(255, 255, 255);
  2237. order: 2;
  2238. display: flex;
  2239. flex-direction: column;
  2240. margin: auto;
  2241. padding: 1rem;
  2242. z-index: 99;
  2243. position: relative;
  2244. justify-content: center;
  2245. }
  2246. @media (max-width: 891px) {
  2247. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2248. width: auto;
  2249. height: auto;
  2250. display: flex;
  2251. margin: auto;
  2252. margin-bottom: 2rem;
  2253. margin-top: 2rem;
  2254. }
  2255. }
  2256. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2257. display: none;
  2258. }
  2259. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2260. order: 3;
  2261. margin: 0;
  2262. font-size: 1.6rem;
  2263. font-weight: 1000;
  2264. }
  2265. @media (max-width: 891px) {
  2266. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2267. font-size: 1.2rem;
  2268. line-height: 1.3rem;
  2269. }
  2270. }
  2271. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2272. order: 1;
  2273. display: flex;
  2274. flex-direction: row;
  2275. align-items: end;
  2276. padding-bottom: 0.5rem;
  2277. }
  2278. .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 {
  2279. order: 1;
  2280. text-transform: uppercase;
  2281. font-size: 0.9rem;
  2282. display: inline-flex;
  2283. }
  2284. .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 {
  2285. content: "|";
  2286. padding-left: 1rem;
  2287. padding-right: 1rem;
  2288. }
  2289. .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 {
  2290. order: 3;
  2291. font-size: 1rem;
  2292. }
  2293. .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 {
  2294. display: flex;
  2295. }
  2296. .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 {
  2297. display: flex;
  2298. }
  2299. .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 {
  2300. margin: 0;
  2301. display: inline-flex;
  2302. }
  2303. .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 {
  2304. order: 2;
  2305. }
  2306. .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 {
  2307. order: 1;
  2308. text-transform: capitalize;
  2309. margin-right: 0.5rem;
  2310. }
  2311. .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 {
  2312. display: none;
  2313. }
  2314. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2315. order: 4;
  2316. font-size: 1.2rem;
  2317. padding-top: 0.5rem;
  2318. }
  2319. .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 {
  2320. display: flex;
  2321. flex-direction: row;
  2322. flex-wrap: wrap;
  2323. }
  2324. .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 {
  2325. display: inline;
  2326. }
  2327. .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 {
  2328. content: ",";
  2329. padding-right: 0.5rem;
  2330. }
  2331. .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 {
  2332. content: "";
  2333. }
  2334. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 {
  2335. width: fit-content;
  2336. margin: auto;
  2337. z-index: 99;
  2338. margin-top: 1rem;
  2339. margin-bottom: 4rem;
  2340. }
  2341. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 .field--type-link {
  2342. padding-left: 0.5rem;
  2343. padding-right: 0.3rem;
  2344. padding-bottom: 0.3rem;
  2345. padding-top: 0.3rem;
  2346. }
  2347. .page-sitespilotes h1 {
  2348. width: 80%;
  2349. margin: auto;
  2350. font-weight: 1000;
  2351. }
  2352. .page-sitespilotes .view-display-id-page_1 {
  2353. width: 80%;
  2354. margin: auto;
  2355. display: flex;
  2356. flex-direction: row;
  2357. flex-wrap: wrap;
  2358. align-items: baseline;
  2359. justify-content: space-between;
  2360. }
  2361. @media (max-width: 1200px) {
  2362. .page-sitespilotes .view-display-id-page_1 {
  2363. justify-content: flex-start;
  2364. }
  2365. }
  2366. .page-sitespilotes .view-display-id-page_1 article {
  2367. padding-bottom: 0.7rem;
  2368. }
  2369. .page-sitespilotes .view-display-id-page_1 .views-row {
  2370. width: 28%;
  2371. padding: 1rem;
  2372. }
  2373. @media (max-width: 1200px) {
  2374. .page-sitespilotes .view-display-id-page_1 .views-row {
  2375. width: 40%;
  2376. }
  2377. }
  2378. @media (max-width: 810px) {
  2379. .page-sitespilotes .view-display-id-page_1 .views-row {
  2380. width: 100%;
  2381. }
  2382. }
  2383. .page-sitespilotes .view-display-id-page_1 .views-row:hover {
  2384. transform: scale(1.05);
  2385. transition: 0.3s transform ease, 0.3s box-shadow ease;
  2386. }
  2387. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site {
  2388. background-color: white;
  2389. }
  2390. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site {
  2391. display: flex;
  2392. flex-direction: column;
  2393. }
  2394. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site {
  2395. order: 1;
  2396. }
  2397. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image {
  2398. max-width: 100%;
  2399. }
  2400. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image img {
  2401. width: 100%;
  2402. object-fit: cover;
  2403. max-height: 200px;
  2404. }
  2405. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site {
  2406. background-color: rgb(255, 255, 255);
  2407. order: 2;
  2408. display: flex;
  2409. flex-direction: column;
  2410. padding-left: 1rem;
  2411. padding-right: 1rem;
  2412. padding-top: 0.5rem;
  2413. }
  2414. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2415. display: none;
  2416. }
  2417. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2418. order: 2;
  2419. margin: 0;
  2420. font-size: 1.4rem;
  2421. font-weight: 900;
  2422. line-height: 1;
  2423. padding-bottom: 0.8rem;
  2424. }
  2425. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2426. order: 1;
  2427. display: flex;
  2428. flex-direction: row;
  2429. align-items: end;
  2430. padding-bottom: 0.5rem;
  2431. }
  2432. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2433. order: 1;
  2434. text-transform: uppercase;
  2435. font-size: 0.8rem;
  2436. display: inline-flex;
  2437. }
  2438. .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 {
  2439. content: "|";
  2440. padding-left: 1rem;
  2441. padding-right: 1rem;
  2442. }
  2443. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2444. order: 3;
  2445. font-size: 0.9rem;
  2446. }
  2447. .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 {
  2448. display: flex;
  2449. }
  2450. .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 {
  2451. margin: 0;
  2452. display: inline-flex;
  2453. }
  2454. .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 {
  2455. order: 2;
  2456. }
  2457. .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 {
  2458. order: 1;
  2459. text-transform: capitalize;
  2460. margin-right: 0.5rem;
  2461. }
  2462. .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 {
  2463. display: none;
  2464. }
  2465. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2466. order: 4;
  2467. font-size: 1rem;
  2468. }
  2469. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2470. display: flex;
  2471. flex-direction: row;
  2472. flex-wrap: wrap;
  2473. }
  2474. .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 {
  2475. display: inline;
  2476. }
  2477. .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 {
  2478. content: ",";
  2479. padding-right: 0.5rem;
  2480. }
  2481. .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 {
  2482. content: "";
  2483. }
  2484. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links {
  2485. order: 5;
  2486. text-transform: uppercase;
  2487. padding: 0;
  2488. margin: 0;
  2489. border: none;
  2490. padding-bottom: 1rem;
  2491. padding-top: 3rem;
  2492. display: inline-flex;
  2493. }
  2494. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links::after {
  2495. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2496. padding-left: 0.5rem;
  2497. }
  2498. .page-sitespilotes .view-display-id-page_1 footer {
  2499. background-color: transparent;
  2500. text-transform: none !important;
  2501. z-index: 100;
  2502. }
  2503. .page-sitespilotes .view-display-id-page_1 footer p {
  2504. font-size: 2rem;
  2505. padding-left: 1rem;
  2506. font-weight: 1000;
  2507. }
  2508. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 {
  2509. display: flex;
  2510. flex-direction: row;
  2511. flex-wrap: wrap;
  2512. align-items: baseline;
  2513. justify-content: space-between;
  2514. }
  2515. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row {
  2516. width: 28%;
  2517. padding: 1rem;
  2518. }
  2519. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row:hover {
  2520. transform: none;
  2521. }
  2522. @media (max-width: 810px) {
  2523. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row {
  2524. width: 100%;
  2525. }
  2526. }
  2527. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site {
  2528. margin: auto;
  2529. display: flex;
  2530. flex-direction: column;
  2531. width: 100%;
  2532. background-color: transparent;
  2533. }
  2534. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site {
  2535. background-color: transparent;
  2536. order: 2;
  2537. display: flex;
  2538. flex-direction: column;
  2539. padding-left: 1rem;
  2540. padding-right: 1rem;
  2541. padding-right: 1rem;
  2542. }
  2543. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 {
  2544. order: 2;
  2545. margin: 0;
  2546. font-size: 1.4rem;
  2547. font-weight: 900;
  2548. line-height: 1;
  2549. }
  2550. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 a {
  2551. cursor: default !important;
  2552. pointer-events: none;
  2553. }
  2554. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row {
  2555. order: 1;
  2556. display: flex;
  2557. flex-direction: row;
  2558. align-items: center;
  2559. padding-bottom: 0.5rem;
  2560. }
  2561. .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 {
  2562. order: 1;
  2563. text-transform: uppercase;
  2564. font-size: 0.8rem;
  2565. font-weight: 400;
  2566. display: flex;
  2567. align-items: center;
  2568. }
  2569. .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 {
  2570. content: "SITE";
  2571. padding-right: 0.5rem;
  2572. }
  2573. .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 {
  2574. content: "|";
  2575. padding-left: 1rem;
  2576. padding-right: 1rem;
  2577. }
  2578. .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 {
  2579. order: 3;
  2580. }
  2581. .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 {
  2582. padding-left: 0;
  2583. margin: 0;
  2584. display: inline-flex;
  2585. font-size: 0.9rem;
  2586. font-weight: 500 !important;
  2587. }
  2588. .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 {
  2589. order: 2;
  2590. }
  2591. .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 {
  2592. order: 1;
  2593. text-transform: capitalize;
  2594. margin-right: 0.5rem;
  2595. }
  2596. .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 {
  2597. display: none;
  2598. }
  2599. .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 {
  2600. order: 4;
  2601. text-transform: capitalize;
  2602. font-weight: 400;
  2603. font-size: 1rem;
  2604. }
  2605. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links {
  2606. order: 5;
  2607. text-transform: uppercase;
  2608. padding: 0;
  2609. margin: 0;
  2610. border: none;
  2611. padding-bottom: 2rem;
  2612. padding-top: 0.9rem;
  2613. display: inline-flex;
  2614. }
  2615. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links::after {
  2616. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2617. padding-left: 0.5rem;
  2618. }
  2619. .block-page-title-block {
  2620. padding-left: 1rem;
  2621. }
  2622. .block-page-title-block h1 {
  2623. font-weight: 1000;
  2624. }
  2625. .block-views-blockactus-block-1 {
  2626. background-color: white;
  2627. padding-bottom: 3rem;
  2628. }
  2629. .block-views-blockactus-block-1 h2 {
  2630. width: 80%;
  2631. font-size: 2rem;
  2632. font-weight: 900;
  2633. margin-left: 10%;
  2634. padding-top: 1rem;
  2635. text-align: center;
  2636. margin-bottom: 4rem;
  2637. }
  2638. .block-views-blockactus-block-1 .view-id-actus {
  2639. width: 100%;
  2640. margin: auto;
  2641. }
  2642. .block-views-blockactus-block-1 .view-id-actus .views-row {
  2643. width: 30vw !important;
  2644. margin-left: 1rem;
  2645. }
  2646. @media (max-width: 1200px) {
  2647. .block-views-blockactus-block-1 .view-id-actus .views-row {
  2648. width: 50vw !important;
  2649. }
  2650. }
  2651. .block-views-blockactus-block-1 .view-id-actus .views-row:first-of-type {
  2652. padding-left: 15%;
  2653. }
  2654. @media (max-width: 1200px) {
  2655. .block-views-blockactus-block-1 .view-id-actus .views-row:first-of-type {
  2656. padding-left: 16%;
  2657. }
  2658. }
  2659. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite {
  2660. width: 100%;
  2661. height: 100%;
  2662. }
  2663. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu {
  2664. display: flex;
  2665. flex-direction: column;
  2666. }
  2667. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu p.field__item {
  2668. display: none;
  2669. }
  2670. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2671. width: 75%;
  2672. height: 250px;
  2673. right: 10%;
  2674. position: relative;
  2675. }
  2676. @media (max-width: 1200px) {
  2677. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2678. max-height: 150px;
  2679. }
  2680. }
  2681. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image {
  2682. height: 100%;
  2683. }
  2684. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items {
  2685. height: 100%;
  2686. }
  2687. .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 {
  2688. width: 100%;
  2689. height: 100%;
  2690. }
  2691. .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 {
  2692. width: 100%;
  2693. height: auto;
  2694. object-fit: cover;
  2695. height: 100%;
  2696. }
  2697. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content {
  2698. height: fit-content;
  2699. width: 100%;
  2700. }
  2701. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h1 {
  2702. display: none;
  2703. }
  2704. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h2 {
  2705. width: 100% !important;
  2706. margin-left: 0;
  2707. padding-top: 0.5rem;
  2708. font-weight: 600;
  2709. font-size: 1.3rem;
  2710. text-align: left !important;
  2711. }
  2712. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-sous-titre {
  2713. padding-top: 0 rem;
  2714. font-size: 1.2rem;
  2715. }
  2716. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-date {
  2717. padding-top: 0.5rem;
  2718. }
  2719. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .body-content {
  2720. display: none;
  2721. }
  2722. .block-views-blockactus-block-1 .view-id-actus .slick-dots {
  2723. position: relative;
  2724. bottom: 0;
  2725. }
  2726. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2727. left: 35px;
  2728. }
  2729. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2730. left: 90vw;
  2731. }
  2732. @media (max-width: 1400px) {
  2733. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2734. left: 0vw;
  2735. }
  2736. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2737. left: 85vw;
  2738. }
  2739. }
  2740. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2741. width: 60%;
  2742. margin: auto;
  2743. padding-top: 3rem;
  2744. overflow: hidden;
  2745. text-overflow: ellipsis;
  2746. font-size: 1.3rem;
  2747. /* Masquer tous les paragraphes après le premier */
  2748. }
  2749. @media (max-width: 891px) {
  2750. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2751. width: 80%;
  2752. padding-top: 3rem;
  2753. }
  2754. }
  2755. .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 {
  2756. display: none;
  2757. }
  2758. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 {
  2759. width: fit-content;
  2760. margin: auto;
  2761. z-index: 99;
  2762. position: relative;
  2763. margin-top: 2rem;
  2764. margin-bottom: 4rem;
  2765. }
  2766. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link {
  2767. padding-left: 0.5rem;
  2768. padding-right: 0.3rem;
  2769. padding-bottom: 0.3rem;
  2770. padding-top: 0.3rem;
  2771. }
  2772. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link .field__item::after {
  2773. content: url("../dist/images/noun-arrow-1569918-black.svg");
  2774. }
  2775. .page-programme .layout__region--first {
  2776. position: relative;
  2777. }
  2778. .page-programme .layout__region--first .block-region-first {
  2779. padding-left: 3rem;
  2780. display: flex;
  2781. justify-content: flex-end;
  2782. position: fixed;
  2783. top: 10rem;
  2784. }
  2785. .page-programme .layout__region--first .block-region-first > .block-block-content {
  2786. width: 100%;
  2787. }
  2788. .page-programme .layout__region--first .block-region-first > .block-block-content ul {
  2789. padding-left: 0;
  2790. padding-right: 30%;
  2791. }
  2792. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a {
  2793. display: flex;
  2794. flex-direction: column;
  2795. padding-bottom: 0.6rem;
  2796. padding-top: 0.6rem;
  2797. }
  2798. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a::after {
  2799. content: "";
  2800. width: 25%;
  2801. margin-top: 0.6rem;
  2802. border-bottom: #fdc300 solid 1px;
  2803. }
  2804. .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 {
  2805. font-weight: 800;
  2806. }
  2807. .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 {
  2808. content: "";
  2809. width: 25%;
  2810. margin-top: 0.6rem;
  2811. border-bottom: #fdc300 solid 2px;
  2812. }
  2813. @media (max-width: 810px) {
  2814. .page-programme .layout__region--first .block-region-first {
  2815. display: none;
  2816. }
  2817. }
  2818. .page-programme .block-region-second h2 {
  2819. font-weight: 1000;
  2820. font-size: 1.8rem;
  2821. }
  2822. .page-programme .block-region-second .block-views-blockhome-block-1 {
  2823. width: 80%;
  2824. font-size: 1.2rem;
  2825. }
  2826. @media (max-width: 810px) {
  2827. .page-programme .block-region-second .block-views-blockhome-block-1 {
  2828. width: 100%;
  2829. }
  2830. }
  2831. .page-programme .block-region-second .view-display-id-block_1 {
  2832. margin: 0;
  2833. width: 80%;
  2834. padding-top: 1rem;
  2835. }
  2836. @media (max-width: 810px) {
  2837. .page-programme .block-region-second .view-display-id-block_1 {
  2838. width: 100%;
  2839. }
  2840. }
  2841. .page-programme .block-region-second .block-config-pages-block {
  2842. margin: 0;
  2843. width: 80%;
  2844. padding-top: 1rem;
  2845. }
  2846. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2847. width: 100%;
  2848. padding-bottom: 3rem;
  2849. height: 205px;
  2850. display: flex;
  2851. flex-direction: column;
  2852. flex-wrap: wrap;
  2853. justify-content: center;
  2854. align-content: baseline;
  2855. }
  2856. @media (max-width: 810px) {
  2857. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2858. display: flex;
  2859. flex-direction: column;
  2860. }
  2861. }
  2862. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .paragraph--type--partenaire > * {
  2863. flex: 1 1 80px;
  2864. }
  2865. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-logo {
  2866. width: fit-content;
  2867. padding-right: 1rem;
  2868. }
  2869. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-nom {
  2870. font-weight: 900;
  2871. font-size: 1.2rem;
  2872. }
  2873. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-texte .field__item p strong {
  2874. background-color: none;
  2875. }
  2876. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-lien {
  2877. background-color: none;
  2878. }
  2879. .page-node-site .block-region-first .block-entity-fieldnodefield-fichiers {
  2880. width: 80%;
  2881. margin: auto;
  2882. }
  2883. .page-node-site .region-content {
  2884. display: grid;
  2885. grid-template-columns: repeat(8 1fr);
  2886. grid-template-rows: repeat(3 auto);
  2887. }
  2888. .page-node-site .region-content #block-reha-prevnextblock {
  2889. display: flex;
  2890. flex-direction: row;
  2891. width: 70%;
  2892. grid-column: 1/span 8;
  2893. grid-row: 1;
  2894. z-index: 97;
  2895. height: fit-content;
  2896. justify-content: space-between;
  2897. margin: auto;
  2898. }
  2899. .page-node-site .region-content #block-reha-prevnextblock .next-site {
  2900. border: none;
  2901. padding: 0.5rem 1rem;
  2902. margin-left: auto;
  2903. }
  2904. .page-node-site .region-content #block-reha-prevnextblock .next-site ::after {
  2905. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2906. padding-left: 0.5rem;
  2907. padding-top: 0.1rem;
  2908. }
  2909. .page-node-site .region-content #block-reha-prevnextblock .prev-site {
  2910. border: none;
  2911. padding: 0.5rem 1rem;
  2912. }
  2913. .page-node-site .region-content #block-reha-prevnextblock .prev-site ::before {
  2914. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2915. display: inline-block;
  2916. transform: rotate(180deg);
  2917. padding-left: 0.5rem;
  2918. }
  2919. .page-node-site .region-content #block-reha-titredepage {
  2920. display: none;
  2921. }
  2922. .page-node-site .region-content #block-reha-contenudelapageprincipale {
  2923. padding-top: 2rem;
  2924. padding-bottom: 3rem;
  2925. grid-column: 1/span 8;
  2926. grid-row: 2;
  2927. }
  2928. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site {
  2929. margin: auto;
  2930. display: flex;
  2931. flex-direction: column;
  2932. }
  2933. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site {
  2934. background-color: white;
  2935. height: 520px;
  2936. width: fit-content;
  2937. display: flex;
  2938. flex-direction: row;
  2939. margin: auto;
  2940. }
  2941. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site {
  2942. height: 520px;
  2943. width: 771px;
  2944. order: 1;
  2945. }
  2946. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image {
  2947. width: 100%;
  2948. margin: auto;
  2949. }
  2950. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-dots {
  2951. z-index: 999;
  2952. bottom: -40px;
  2953. }
  2954. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list {
  2955. padding: 0 !important;
  2956. }
  2957. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item {
  2958. display: flex;
  2959. flex-direction: column;
  2960. align-items: flex-start;
  2961. }
  2962. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item img {
  2963. height: 520px;
  2964. width: auto;
  2965. object-fit: contain;
  2966. }
  2967. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote {
  2968. font-style: italic;
  2969. margin: 0;
  2970. padding-top: 0.5rem;
  2971. font-size: 0.8rem;
  2972. }
  2973. .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 {
  2974. margin: 0;
  2975. }
  2976. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  2977. background-color: rgb(255, 255, 255);
  2978. width: 20vw;
  2979. order: 2;
  2980. display: flex;
  2981. flex-direction: column;
  2982. margin: auto;
  2983. padding: 1rem;
  2984. z-index: 99;
  2985. position: relative;
  2986. justify-content: center;
  2987. }
  2988. @media (max-width: 891px) {
  2989. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  2990. width: auto;
  2991. }
  2992. }
  2993. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h1 {
  2994. order: 3;
  2995. margin: 0;
  2996. font-size: 1.8rem;
  2997. font-weight: 900;
  2998. }
  2999. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h2 {
  3000. order: 3;
  3001. margin: 0;
  3002. font-size: 1.3rem;
  3003. font-weight: 900;
  3004. }
  3005. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row {
  3006. order: 1;
  3007. display: flex;
  3008. flex-direction: row;
  3009. align-items: end;
  3010. padding-bottom: 0.5rem;
  3011. }
  3012. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  3013. order: 1;
  3014. text-transform: uppercase;
  3015. font-size: 1rem;
  3016. display: inline-flex;
  3017. }
  3018. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  3019. content: "|";
  3020. padding-left: 1rem;
  3021. padding-right: 1rem;
  3022. }
  3023. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  3024. order: 3;
  3025. font-size: 1.2rem;
  3026. }
  3027. .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 {
  3028. display: flex;
  3029. }
  3030. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  3031. margin: 0;
  3032. display: inline-flex;
  3033. }
  3034. .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 {
  3035. order: 2;
  3036. }
  3037. .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 {
  3038. order: 1;
  3039. text-transform: capitalize;
  3040. margin-right: 0.5rem;
  3041. }
  3042. .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 {
  3043. display: none;
  3044. }
  3045. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-date-de-construction {
  3046. order: 5;
  3047. font-size: 1.2rem;
  3048. }
  3049. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  3050. order: 4;
  3051. padding-top: 0.5rem;
  3052. font-size: 1.2rem;
  3053. }
  3054. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  3055. display: flex;
  3056. flex-direction: row;
  3057. flex-wrap: wrap;
  3058. }
  3059. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  3060. display: inline;
  3061. }
  3062. .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 {
  3063. content: ",";
  3064. padding-right: 0.5rem;
  3065. }
  3066. .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 {
  3067. content: "";
  3068. }
  3069. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links {
  3070. order: 5;
  3071. text-transform: uppercase;
  3072. padding: 0;
  3073. margin: 0;
  3074. border: none;
  3075. padding-bottom: 2rem;
  3076. padding-top: 0.9rem;
  3077. display: inline-flex;
  3078. }
  3079. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links::after {
  3080. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  3081. padding-left: 0.5rem;
  3082. }
  3083. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site {
  3084. order: 3;
  3085. padding-top: 6rem;
  3086. position: relative;
  3087. width: 70%;
  3088. margin: auto;
  3089. font-size: 1.3rem;
  3090. display: flex;
  3091. flex-direction: row-reverse;
  3092. justify-content: space-between;
  3093. }
  3094. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .summary-content {
  3095. width: 75%;
  3096. }
  3097. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content {
  3098. width: 15%;
  3099. margin-top: 1.5rem;
  3100. }
  3101. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field--type-file {
  3102. border: none;
  3103. margin-bottom: 1rem;
  3104. background-color: transparent;
  3105. }
  3106. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item {
  3107. padding: 0.5rem;
  3108. border: solid black 1px;
  3109. margin-bottom: 1rem;
  3110. background-color: rgb(255, 255, 255);
  3111. font-size: 0.9rem;
  3112. }
  3113. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item > * {
  3114. text-transform: uppercase;
  3115. }
  3116. .page-ressources h1 {
  3117. width: 80%;
  3118. margin: auto;
  3119. font-weight: 1000;
  3120. }
  3121. .page-ressources .view-ressources {
  3122. display: flex;
  3123. flex-direction: row;
  3124. flex-wrap: wrap;
  3125. justify-content: space-between;
  3126. padding: 2rem;
  3127. width: 80%;
  3128. margin: auto;
  3129. }
  3130. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 {
  3131. width: 100%;
  3132. margin: auto;
  3133. display: grid;
  3134. grid-template-columns: repeat(8, 1fr);
  3135. grid-template-rows: repeat(3, 1fr);
  3136. padding: 1rem;
  3137. height: fit-content;
  3138. max-height: 17rem;
  3139. padding-bottom: 5rem;
  3140. }
  3141. @media (max-width: 450px) {
  3142. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 {
  3143. display: flex;
  3144. flex-direction: column;
  3145. margin-bottom: 6rem;
  3146. }
  3147. }
  3148. .page-ressources .view-ressources #views-exposed-form-ressources-page-1::before {
  3149. content: "FILTRER :";
  3150. grid-column: 1;
  3151. grid-row: 1;
  3152. display: block;
  3153. line-height: 5;
  3154. }
  3155. @media (max-width: 450px) {
  3156. .page-ressources .view-ressources #views-exposed-form-ressources-page-1::before {
  3157. line-height: 3;
  3158. }
  3159. }
  3160. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item, .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-actions {
  3161. padding-bottom: 0.5rem;
  3162. align-self: end;
  3163. }
  3164. @media (max-width: 450px) {
  3165. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item, .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-actions {
  3166. align-self: auto;
  3167. }
  3168. }
  3169. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-combine {
  3170. grid-column: 1/span 8;
  3171. grid-row: 2;
  3172. }
  3173. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .js-form-item-field-site-target-id {
  3174. grid-column: 1/span 4;
  3175. grid-row: 3;
  3176. width: 45%;
  3177. }
  3178. @media (max-width: 450px) {
  3179. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .js-form-item-field-site-target-id {
  3180. width: 100%;
  3181. }
  3182. }
  3183. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-themes-target-id {
  3184. grid-column: 3/span 4;
  3185. grid-row: 3;
  3186. width: 45%;
  3187. }
  3188. @media (max-width: 450px) {
  3189. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-themes-target-id {
  3190. width: 100%;
  3191. }
  3192. }
  3193. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-type-de-ressource-target-id {
  3194. width: 45%;
  3195. grid-column: 5/span 6;
  3196. grid-row: 3;
  3197. }
  3198. @media (max-width: 450px) {
  3199. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-type-de-ressource-target-id {
  3200. width: 100%;
  3201. }
  3202. }
  3203. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-select {
  3204. background: white;
  3205. border: solid gray 1px;
  3206. height: 2.5rem;
  3207. padding-left: 1rem;
  3208. padding-right: 1rem;
  3209. }
  3210. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions {
  3211. grid-column: 7/span 8;
  3212. grid-row: 3;
  3213. height: 2.5rem;
  3214. }
  3215. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions .form-submit {
  3216. margin: 0;
  3217. height: 2.5rem;
  3218. }
  3219. .page-ressources .view-ressources article {
  3220. padding-bottom: 0 !important;
  3221. }
  3222. .page-ressources .view-ressources .views-row {
  3223. width: 30%;
  3224. display: flex !important;
  3225. flex-direction: column;
  3226. background-color: rgb(255, 255, 255);
  3227. margin-bottom: 6rem;
  3228. }
  3229. .page-ressources .view-ressources .views-row:hover {
  3230. transform: scale(1.05);
  3231. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3232. }
  3233. @media (max-width: 450px) {
  3234. .page-ressources .view-ressources .views-row {
  3235. width: 100%;
  3236. margin-bottom: 3rem;
  3237. }
  3238. }
  3239. .page-ressources .view-ressources .views-row .node-type-ressource {
  3240. width: 100%;
  3241. display: flex !important;
  3242. flex-direction: column-reverse;
  3243. padding-top: 0;
  3244. }
  3245. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource {
  3246. order: 1;
  3247. width: 100%;
  3248. margin: auto;
  3249. margin-left: auto;
  3250. height: 15rem;
  3251. margin-left: 0;
  3252. }
  3253. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image {
  3254. height: 100%;
  3255. }
  3256. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items {
  3257. height: 100%;
  3258. }
  3259. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item {
  3260. height: 100%;
  3261. }
  3262. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item img {
  3263. height: 100%;
  3264. object-fit: cover;
  3265. max-width: 100%;
  3266. width: 100% !important;
  3267. }
  3268. .page-ressources .view-ressources .views-row .node-type-ressource .body-content {
  3269. display: none;
  3270. }
  3271. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content {
  3272. display: flex;
  3273. flex-direction: column;
  3274. background-color: transparent !important;
  3275. right: 0;
  3276. margin-bottom: 0;
  3277. border: none;
  3278. margin-left: 0 !important;
  3279. width: auto;
  3280. }
  3281. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h1 {
  3282. display: none;
  3283. }
  3284. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h2 {
  3285. order: 2;
  3286. margin: 0;
  3287. font-size: 1.2rem;
  3288. font-weight: 500;
  3289. line-height: 1.8rem;
  3290. }
  3291. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-sous-titre {
  3292. order: 3;
  3293. font-size: 1rem;
  3294. padding-top: 0.3rem;
  3295. }
  3296. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-auteur {
  3297. order: 4;
  3298. font-weight: 900;
  3299. padding-top: 0.5rem;
  3300. padding-bottom: 1rem;
  3301. font-size: 0.8rem;
  3302. }
  3303. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3304. order: 1;
  3305. text-transform: uppercase;
  3306. font-size: 0.7rem;
  3307. }
  3308. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource a {
  3309. pointer-events: none;
  3310. }
  3311. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site {
  3312. order: 5;
  3313. background-color: rgb(153, 147, 174);
  3314. color: white;
  3315. border-radius: 50px;
  3316. width: fit-content;
  3317. padding: 0.2rem 0.9rem;
  3318. margin-top: 1rem;
  3319. }
  3320. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site .field__item {
  3321. display: inline;
  3322. }
  3323. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site a {
  3324. color: white;
  3325. font-weight: 900;
  3326. font-size: 0.8rem;
  3327. vertical-align: top;
  3328. }
  3329. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content ul.links {
  3330. order: 6;
  3331. display: none;
  3332. }
  3333. .page-ressources .view-ressources .pagination {
  3334. width: 100%;
  3335. }
  3336. .node-type-ressource {
  3337. display: grid;
  3338. grid-template-columns: 1fr repeat(3, 1fr) 1fr;
  3339. grid-template-rows: repeat(2, auto);
  3340. padding-top: 3rem;
  3341. }
  3342. .node-type-ressource .image-ressource {
  3343. grid-row: 1;
  3344. grid-column: 2;
  3345. margin-right: 2rem;
  3346. }
  3347. .node-type-ressource .image-ressource img {
  3348. height: 400px;
  3349. width: auto;
  3350. }
  3351. .node-type-ressource .infos-content {
  3352. grid-row: 1;
  3353. grid-column: 3/span 4;
  3354. margin-left: 2rem;
  3355. border: none;
  3356. background-color: transparent;
  3357. }
  3358. .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3359. text-transform: uppercase;
  3360. font-size: 1rem;
  3361. order: 1;
  3362. }
  3363. .node-type-ressource .infos-content h1 {
  3364. order: 2;
  3365. font-size: 2rem;
  3366. font-weight: 400;
  3367. }
  3368. .node-type-ressource .infos-content .field--name-field-sous-titre {
  3369. font-size: 1.3rem;
  3370. order: 3;
  3371. }
  3372. .node-type-ressource .infos-content .field--name-field-auteur {
  3373. font-weight: 800;
  3374. font-size: 1.3rem;
  3375. order: 4;
  3376. padding-top: 1rem;
  3377. }
  3378. .node-type-ressource .infos-content .field--name-field-site {
  3379. background-color: rgb(153, 147, 174);
  3380. border-radius: 50px;
  3381. width: fit-content;
  3382. padding: 0.2rem 0.9rem;
  3383. margin-top: 1rem;
  3384. order: 5;
  3385. }
  3386. .node-type-ressource .infos-content .field--name-field-site a {
  3387. color: white;
  3388. font-weight: 900;
  3389. font-size: 0.8rem;
  3390. vertical-align: top;
  3391. }
  3392. .node-type-ressource .body-content {
  3393. grid-row: 2;
  3394. grid-column: 2/span 3;
  3395. width: 100%;
  3396. margin-top: 2rem;
  3397. }
  3398. .node-type-ressource .body-content .field--name-field-fichiers {
  3399. width: fit-content;
  3400. }
  3401. .node-type-ressource .body-content .links-content {
  3402. margin-top: 2rem;
  3403. position: relative;
  3404. left: -10%;
  3405. width: 25%;
  3406. }
  3407. .page-actualites .block-page-title-block {
  3408. width: 75%;
  3409. margin: auto;
  3410. }
  3411. .page-actualites .view-actus {
  3412. padding-top: 3rem;
  3413. padding-bottom: 6rem;
  3414. width: 80%;
  3415. margin: auto;
  3416. display: flex;
  3417. flex-direction: row;
  3418. flex-wrap: wrap;
  3419. align-items: baseline;
  3420. justify-content: space-between;
  3421. }
  3422. @media (max-width: 891px) {
  3423. .page-actualites .view-actus {
  3424. flex-direction: column;
  3425. width: 90%;
  3426. }
  3427. }
  3428. .page-actualites .view-actus .views-row {
  3429. width: 28%;
  3430. padding: 1rem;
  3431. }
  3432. @media (max-width: 891px) {
  3433. .page-actualites .view-actus .views-row {
  3434. width: 95%;
  3435. margin: auto;
  3436. padding: 0;
  3437. }
  3438. }
  3439. .page-actualites .view-actus .views-row:hover {
  3440. transform: scale(1.05);
  3441. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3442. }
  3443. .page-actualites .view-actus .views-row .node-type-actualite {
  3444. width: 30vw !important;
  3445. }
  3446. @media (max-width: 891px) {
  3447. .page-actualites .view-actus .views-row .node-type-actualite {
  3448. width: 100% !important;
  3449. }
  3450. }
  3451. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu {
  3452. flex-direction: column;
  3453. }
  3454. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite {
  3455. width: 90%;
  3456. margin: auto;
  3457. }
  3458. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite img {
  3459. width: 100%;
  3460. height: 15rem;
  3461. object-fit: cover;
  3462. }
  3463. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content {
  3464. height: fit-content;
  3465. width: 100%;
  3466. margin: auto;
  3467. top: -0.5rem;
  3468. }
  3469. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h1 {
  3470. display: none;
  3471. }
  3472. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h2 {
  3473. margin-left: 0;
  3474. padding-top: 0.2rem;
  3475. font-weight: 600;
  3476. }
  3477. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3478. padding-top: 0 rem;
  3479. font-size: 1.2rem;
  3480. }
  3481. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3482. padding-top: 0.2rem;
  3483. }
  3484. .node-type-actualite {
  3485. width: 100vw;
  3486. }
  3487. .node-type-actualite .entete_actu {
  3488. display: flex;
  3489. flex-direction: row;
  3490. width: 75%;
  3491. margin: auto;
  3492. align-items: center;
  3493. }
  3494. @media (max-width: 891px) {
  3495. .node-type-actualite .entete_actu {
  3496. flex-direction: column;
  3497. width: 100%;
  3498. }
  3499. }
  3500. .node-type-actualite .entete_actu .image-actualite {
  3501. width: 50%;
  3502. height: 100%;
  3503. }
  3504. @media (max-width: 900px) {
  3505. .node-type-actualite .entete_actu .image-actualite {
  3506. width: 80%;
  3507. height: 100% !important;
  3508. }
  3509. }
  3510. .node-type-actualite .entete_actu .image-actualite img {
  3511. width: 100%;
  3512. height: auto;
  3513. object-fit: contain;
  3514. }
  3515. .node-type-actualite .entete_actu .infos-content {
  3516. width: 30%;
  3517. right: 5%;
  3518. }
  3519. @media (max-width: 900px) {
  3520. .node-type-actualite .entete_actu .infos-content {
  3521. width: 50%;
  3522. height: fit-content;
  3523. }
  3524. .node-type-actualite .entete_actu .infos-content h1 {
  3525. font-size: 1.2rem;
  3526. }
  3527. .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3528. font-size: 1rem;
  3529. }
  3530. .node-type-actualite .entete_actu .infos-content .field--name-field-site .field__item {
  3531. font-size: 0.7rem;
  3532. }
  3533. .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3534. font-size: 0.6rem;
  3535. }
  3536. }
  3537. .node-type-actualite .body-content .summary-content {
  3538. width: 60%;
  3539. margin: auto;
  3540. }
  3541. @media (max-width: 891px) {
  3542. .node-type-actualite .body-content .summary-content {
  3543. width: 80%;
  3544. }
  3545. }
  3546. .node-type-actualite .body-content .links-content {
  3547. width: 15%;
  3548. margin-left: 12.5%;
  3549. }
  3550. @media (max-width: 891px) {
  3551. .node-type-actualite .body-content .links-content {
  3552. width: 80%;
  3553. }
  3554. .node-type-actualite .body-content .links-content .field--name-field-fichiers {
  3555. width: fit-content;
  3556. }
  3557. }
  3558. .page-mon-espace-de-travail {
  3559. /* On cache le texte mais on le garde accessible */
  3560. /* On crée l’icône "i" */
  3561. /* Tooltip : on réaffiche le vrai texte stocké */
  3562. /* Affichage au survol */
  3563. }
  3564. .page-mon-espace-de-travail .layout-content {
  3565. padding-bottom: 3rem;
  3566. width: 80%;
  3567. margin-left: 8%;
  3568. }
  3569. .page-mon-espace-de-travail .layout-content #block-reha-titredepage {
  3570. text-align: center;
  3571. }
  3572. .page-mon-espace-de-travail .layout-content .field--type-file {
  3573. background-color: transparent;
  3574. border: none;
  3575. }
  3576. .page-mon-espace-de-travail .layout-content .js-form-type-textfield {
  3577. flex-direction: row;
  3578. align-content: center;
  3579. }
  3580. .page-mon-espace-de-travail .layout-content .js-form-type-textfield label {
  3581. margin-right: 1rem;
  3582. }
  3583. .page-mon-espace-de-travail .description {
  3584. font-style: italic;
  3585. text-transform: none;
  3586. }
  3587. .page-mon-espace-de-travail .paragraph-top .paragraph-type {
  3588. display: none;
  3589. }
  3590. .page-mon-espace-de-travail summary {
  3591. text-transform: none;
  3592. font-weight: 800;
  3593. font-size: 1.2rem;
  3594. }
  3595. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper,
  3596. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper {
  3597. border-top: solid 1px black;
  3598. margin-top: 2rem;
  3599. }
  3600. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper h4,
  3601. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper h4 {
  3602. margin: 0;
  3603. margin-top: 2rem;
  3604. padding-left: 0;
  3605. }
  3606. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper #field-dossier-values--2,
  3607. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper #field-dossier-values--2 {
  3608. padding-left: 4rem;
  3609. }
  3610. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper .field-multiple-drag,
  3611. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper .field-multiple-drag {
  3612. border-left: solid black 1px;
  3613. }
  3614. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-0-subform-field-fichiers-table {
  3615. display: none;
  3616. }
  3617. .page-mon-espace-de-travail .paragraph-type--dossier {
  3618. background-color: white;
  3619. }
  3620. .page-mon-espace-de-travail .paragraph-type--dossier h4 {
  3621. display: none;
  3622. }
  3623. .page-mon-espace-de-travail .description {
  3624. position: relative;
  3625. display: inline-block;
  3626. color: transparent; /* rend le texte invisible */
  3627. font-size: 0; /* supprime l'espace du texte */
  3628. }
  3629. .page-mon-espace-de-travail .description::before {
  3630. content: "i";
  3631. display: inline-block;
  3632. width: 20px;
  3633. height: 20px;
  3634. line-height: 20px;
  3635. border-radius: 50%;
  3636. background-color: #333;
  3637. color: #fff;
  3638. text-align: center;
  3639. font-weight: bold;
  3640. font-size: 14px;
  3641. cursor: pointer;
  3642. font-family: Arial, sans-serif;
  3643. }
  3644. .page-mon-espace-de-travail .description::after {
  3645. content: attr(data-text); /* On va injecter le texte via un attribut */
  3646. visibility: hidden;
  3647. opacity: 0;
  3648. width: 250px;
  3649. background-color: #333;
  3650. color: #fff;
  3651. text-align: left;
  3652. border-radius: 6px;
  3653. padding: 8px;
  3654. position: absolute;
  3655. z-index: 1;
  3656. top: 120%;
  3657. left: 50%;
  3658. transform: translateX(-50%);
  3659. transition: opacity 0.3s;
  3660. font-size: 13px;
  3661. line-height: 1.4;
  3662. pointer-events: none;
  3663. }
  3664. .page-mon-espace-de-travail .description:hover::after {
  3665. visibility: visible;
  3666. opacity: 1;
  3667. }
  3668. .page-mon-espace-de-travail .js-form-type-managed-file label:after {
  3669. content: " :";
  3670. }
  3671. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3672. text-transform: uppercase;
  3673. font-size: 0.9rem;
  3674. font-weight: 400;
  3675. }
  3676. @media (max-width: 891px) {
  3677. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3678. font-size: 1rem;
  3679. }
  3680. }
  3681. .page-mon-espace-de-travail .paragraphs-add-wrapper p {
  3682. margin: 0;
  3683. padding: 0.3rem;
  3684. }
  3685. .page-mon-espace-de-travail .paragraphs-add-wrapper :hover {
  3686. background-color: #fdc300;
  3687. }
  3688. .field--name-field-dossier-de-pilotage h4 ::after {
  3689. content: "";
  3690. border-top: solid 1px black;
  3691. }