bundle.css 109 KB

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