bundle.css 111 KB

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