bundle.css 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681
  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. /*pages*/
  1589. .home-page-layout-content {
  1590. width: 100%;
  1591. }
  1592. .home-page-layout-content .layout-content .layout--onecol {
  1593. width: 90%;
  1594. margin: auto;
  1595. font-size: 1.3rem;
  1596. font-weight: 400;
  1597. font-style: normal;
  1598. }
  1599. .home-page-layout-content .layout-content .layout--onecol h4 {
  1600. font-size: 5rem;
  1601. font-weight: normal;
  1602. margin: 0;
  1603. }
  1604. .home-page-layout-content .layout-content .layout--onecol h5 {
  1605. font-size: 5rem;
  1606. font-weight: 900;
  1607. margin: 0;
  1608. line-height: 0.6;
  1609. }
  1610. @media (max-width: 891px) {
  1611. .home-page-layout-content .layout-content .layout--onecol h5 {
  1612. font-size: 4rem;
  1613. line-height: 0.9;
  1614. }
  1615. }
  1616. @media (max-width: 520px) {
  1617. .home-page-layout-content .layout-content .layout--onecol h5 {
  1618. font-size: 3rem;
  1619. }
  1620. }
  1621. .home-page-layout-content .layout-content .layout--onecol img {
  1622. height: auto;
  1623. padding-top: 2rem;
  1624. padding-bottom: 2rem;
  1625. }
  1626. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1627. display: grid;
  1628. grid-column: repeat(2, 1fr);
  1629. }
  1630. @media (max-width: 891px) {
  1631. .home-page-layout-content .layout-content .layout--onecol .block-region-content {
  1632. display: flex;
  1633. flex-direction: column;
  1634. }
  1635. }
  1636. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 {
  1637. margin-bottom: 2rem;
  1638. }
  1639. @media (max-width: 500px) {
  1640. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-views-blockhome-block-1 img {
  1641. width: -moz-available;
  1642. }
  1643. }
  1644. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1645. display: none !important;
  1646. grid-column: 1;
  1647. grid-row: 2/span 2;
  1648. width: 80%;
  1649. border: solid #fdc300 1px;
  1650. background-color: rgb(255, 255, 255);
  1651. font-weight: 800;
  1652. padding: 2rem;
  1653. margin-right: 1rem;
  1654. }
  1655. @media (max-width: 891px) {
  1656. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1657. font-size: 4rem;
  1658. }
  1659. }
  1660. @media (max-width: 520px) {
  1661. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-block-content5ae07b35-3c0b-48f5-b51b-f0f0e4c1765f {
  1662. font-size: 3rem;
  1663. }
  1664. }
  1665. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1666. font-size: 5rem;
  1667. font-weight: 900;
  1668. margin: 0;
  1669. line-height: 0.6;
  1670. }
  1671. @media (max-width: 891px) {
  1672. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1673. font-size: 4rem;
  1674. line-height: 0.9;
  1675. }
  1676. }
  1677. @media (max-width: 520px) {
  1678. .home-page-layout-content .layout-content .layout--onecol .block-region-content h5 {
  1679. font-size: 3rem;
  1680. }
  1681. }
  1682. .home-page-layout-content .layout-content .layout--onecol .block-region-content img {
  1683. height: auto;
  1684. padding-top: 2rem;
  1685. padding-bottom: 2rem;
  1686. }
  1687. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1688. display: grid;
  1689. grid-template-rows: repeat(8, 1fr);
  1690. }
  1691. @media (max-width: 891px) {
  1692. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content {
  1693. display: flex;
  1694. flex-direction: column;
  1695. }
  1696. }
  1697. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-block-content3d4d153c-9da8-49e2-be7a-d2245f5716ee {
  1698. grid-row: 1/span 3;
  1699. }
  1700. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 {
  1701. grid-row: 2/span 6;
  1702. margin-bottom: 2rem;
  1703. }
  1704. @media (max-width: 500px) {
  1705. .home-page-layout-content .layout-content .layout--onecol .block-region-content .block-region-content .block-views-blockhome-block-1 img {
  1706. width: -moz-available;
  1707. }
  1708. }
  1709. .user--register h1 {
  1710. font-size: 3rem !important;
  1711. font-weight: 600;
  1712. }
  1713. @media (max-width: 500px) {
  1714. .user--register h1 {
  1715. font-size: 2.5rem !important;
  1716. }
  1717. }
  1718. .user--register .form-item {
  1719. margin-bottom: 2rem;
  1720. }
  1721. .user--register label {
  1722. font-weight: 800;
  1723. }
  1724. .user--register .description {
  1725. text-transform: lowercase;
  1726. font-style: italic;
  1727. }
  1728. .user--register .password-strength .password-strength__meter {
  1729. width: 250px;
  1730. }
  1731. .user--register .password-suggestions {
  1732. text-transform: lowercase;
  1733. font-style: italic;
  1734. font-size: 0.8rem;
  1735. }
  1736. .user--register #edit-pass--description {
  1737. display: none;
  1738. }
  1739. @media (max-width: 891px) {
  1740. .mes-operations {
  1741. width: 70%;
  1742. margin-left: 2rem;
  1743. }
  1744. }
  1745. @media (max-width: 500px) {
  1746. .mes-operations {
  1747. width: 90%;
  1748. }
  1749. }
  1750. .mes-operations .views-row {
  1751. width: 80%;
  1752. padding-bottom: 1rem;
  1753. border-bottom: 1px solid black;
  1754. }
  1755. .mes-operations .views-row .node-type-operation footer {
  1756. display: none;
  1757. }
  1758. .mes-operations .views-row .node-type-operation .field--label-above div:first-child {
  1759. font-weight: 800;
  1760. }
  1761. .mes-operations .views-row .node-type-operation p {
  1762. margin: 0;
  1763. }
  1764. .mes-operations .views-row .node-type-operation .field--label-above {
  1765. margin-bottom: 1rem;
  1766. }
  1767. .mes-operations .views-row .node-type-operation .field--type-file {
  1768. border: none;
  1769. background-color: inherit;
  1770. text-transform: none;
  1771. padding: 0;
  1772. }
  1773. .mes-operations .views-row .views-field {
  1774. margin-bottom: 1.5rem;
  1775. }
  1776. .mes-operations .views-row .views-field-edit-node {
  1777. display: none !important;
  1778. }
  1779. .mes-operations div.views-element-container div footer {
  1780. background-color: white;
  1781. border: solid black 1px;
  1782. text-transform: uppercase;
  1783. padding: 1rem;
  1784. width: fit-content;
  1785. margin-top: 2rem;
  1786. font-weight: 400;
  1787. display: none !important;
  1788. }
  1789. .mes-operations div.views-element-container div footer p {
  1790. margin: 0;
  1791. }
  1792. .mes-operations div.views-element-container div footer:hover {
  1793. background-color: #fdc300;
  1794. }
  1795. #block-reha-contenudelapageprincipale .node-operation-form {
  1796. width: 45%;
  1797. }
  1798. @media (max-width: 891px) {
  1799. #block-reha-contenudelapageprincipale .node-operation-form {
  1800. width: 70%;
  1801. margin-left: 2rem;
  1802. }
  1803. }
  1804. #block-reha-contenudelapageprincipale .node-operation-form #edit-title-wrapper input {
  1805. width: 100%;
  1806. }
  1807. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper {
  1808. background-color: rgba(153, 147, 174, 0) !important;
  1809. border: none;
  1810. padding: 0;
  1811. }
  1812. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper label {
  1813. order: 1;
  1814. font-weight: 800;
  1815. }
  1816. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .description {
  1817. text-transform: lowercase;
  1818. order: 2;
  1819. font-style: italic;
  1820. }
  1821. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  1822. order: 3;
  1823. margin-top: 1rem;
  1824. }
  1825. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper {
  1826. background-color: rgba(153, 147, 174, 0) !important;
  1827. border: none;
  1828. padding: 0;
  1829. margin-top: 1rem;
  1830. }
  1831. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper label {
  1832. order: 1;
  1833. font-weight: 800;
  1834. display: flex;
  1835. }
  1836. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  1837. content: url(../images/noun-information-55404.svg);
  1838. padding-left: 1rem;
  1839. cursor: pointer;
  1840. }
  1841. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .description {
  1842. text-transform: lowercase;
  1843. order: 2;
  1844. font-style: italic;
  1845. width: 100%;
  1846. }
  1847. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  1848. display: none;
  1849. }
  1850. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  1851. display: none;
  1852. }
  1853. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  1854. order: 3;
  1855. margin-top: 1rem;
  1856. text-transform: lowercase;
  1857. }
  1858. #block-reha-contenudelapageprincipale .node-operation-form label {
  1859. font-weight: 800;
  1860. }
  1861. #block-reha-contenudelapageprincipale .node-operation-form .form-wrapper {
  1862. margin-bottom: 1rem;
  1863. margin-top: 1rem;
  1864. }
  1865. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-0-value {
  1866. width: 100%;
  1867. }
  1868. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address input {
  1869. width: 100%;
  1870. }
  1871. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1872. display: flex;
  1873. flex-direction: row;
  1874. width: 100%;
  1875. margin-right: 0;
  1876. justify-content: space-between;
  1877. }
  1878. @media (max-width: 891px) {
  1879. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 {
  1880. flex-direction: column;
  1881. }
  1882. }
  1883. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 input {
  1884. width: 100%;
  1885. }
  1886. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-adresse-0-address-container2 .form-item {
  1887. display: flex;
  1888. flex-direction: column;
  1889. margin-right: 0;
  1890. }
  1891. #block-reha-contenudelapageprincipale .node-operation-form .form-item {
  1892. display: flex;
  1893. flex-direction: column;
  1894. }
  1895. #block-reha-contenudelapageprincipale .node-operation-form #edit-field-commentaire-wrapper {
  1896. margin-bottom: 2rem;
  1897. }
  1898. #block-reha-contenudelapageprincipale .node-operation-form .counter {
  1899. font-style: italic;
  1900. }
  1901. #block-reha-contenudelapageprincipale .form-managed-file {
  1902. text-transform: lowercase;
  1903. }
  1904. #block-reha-contenudelapageprincipale .file--application-pdf {
  1905. text-transform: lowercase;
  1906. }
  1907. #block-reha-contenudelapageprincipale .messages--error {
  1908. text-transform: lowercase;
  1909. }
  1910. 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 {
  1911. display: none;
  1912. }
  1913. #edit-field-dossier-de-candidature-0--description {
  1914. text-transform: none !important;
  1915. }
  1916. #edit-field-dossier-de-candidature-0--description .depth1 {
  1917. font-weight: 800;
  1918. }
  1919. #edit-field-dossier-de-candidature-0--description .depth2 {
  1920. font-weight: 400;
  1921. }
  1922. #edit-field-dossier-de-candidature-0--description .depth3 {
  1923. text-decoration: none !important;
  1924. }
  1925. .user--edit label {
  1926. font-weight: 800;
  1927. }
  1928. .user--edit .password-strength {
  1929. width: fit-content;
  1930. }
  1931. .user--edit .description {
  1932. font-style: italic;
  1933. }
  1934. .user--edit .form-item {
  1935. margin-bottom: 1rem;
  1936. width: 70%;
  1937. }
  1938. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1939. width: 45%;
  1940. }
  1941. @media (max-width: 891px) {
  1942. #block-reha-contenudelapageprincipale #node-operation-edit-form {
  1943. width: 70%;
  1944. margin-left: 2rem;
  1945. }
  1946. }
  1947. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-title-wrapper input {
  1948. width: 100%;
  1949. }
  1950. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper {
  1951. background-color: rgba(153, 147, 174, 0) !important;
  1952. border: none;
  1953. padding: 0;
  1954. }
  1955. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper label {
  1956. order: 1;
  1957. font-weight: 800;
  1958. }
  1959. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .description {
  1960. text-transform: lowercase;
  1961. order: 2;
  1962. font-style: italic;
  1963. }
  1964. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-fiche-candidature-wrapper .form-managed-file {
  1965. order: 3;
  1966. margin-top: 1rem;
  1967. }
  1968. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper {
  1969. background-color: rgba(153, 147, 174, 0) !important;
  1970. border: none;
  1971. padding: 0;
  1972. margin-top: 1rem;
  1973. }
  1974. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper label {
  1975. order: 1;
  1976. font-weight: 800;
  1977. display: flex;
  1978. }
  1979. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--label::after {
  1980. content: url(../images/noun-information-55404.svg);
  1981. padding-left: 1rem;
  1982. cursor: pointer;
  1983. }
  1984. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .description {
  1985. text-transform: lowercase;
  1986. order: 2;
  1987. font-style: italic;
  1988. width: 100%;
  1989. }
  1990. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > br:first-of-type {
  1991. display: none;
  1992. }
  1993. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper #edit-field-dossier-de-candidature-0--description > ul.main {
  1994. display: none;
  1995. }
  1996. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-dossier-de-candidature-wrapper .form-managed-file {
  1997. order: 3;
  1998. margin-top: 1rem;
  1999. text-transform: lowercase;
  2000. }
  2001. #block-reha-contenudelapageprincipale #node-operation-edit-form label {
  2002. font-weight: 800;
  2003. }
  2004. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-wrapper {
  2005. margin-bottom: 1rem;
  2006. margin-top: 1rem;
  2007. }
  2008. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-0-value {
  2009. width: 100%;
  2010. }
  2011. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper summary {
  2012. display: none;
  2013. }
  2014. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address input {
  2015. width: 100%;
  2016. }
  2017. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 {
  2018. display: flex;
  2019. flex-direction: row;
  2020. width: 100%;
  2021. margin-right: 0;
  2022. justify-content: space-between;
  2023. }
  2024. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 input {
  2025. width: 100%;
  2026. }
  2027. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-adresse-wrapper #edit-field-adresse-0-address-container2 .form-item {
  2028. display: flex;
  2029. flex-direction: column;
  2030. margin-right: 0;
  2031. }
  2032. #block-reha-contenudelapageprincipale #node-operation-edit-form .form-item {
  2033. display: flex;
  2034. flex-direction: column;
  2035. }
  2036. #block-reha-contenudelapageprincipale #node-operation-edit-form #edit-field-commentaire-wrapper {
  2037. margin-bottom: 2rem;
  2038. }
  2039. #block-reha-contenudelapageprincipale #node-operation-edit-form .counter {
  2040. font-style: italic;
  2041. }
  2042. #block-reha-contenudelapageprincipale .form-managed-file {
  2043. text-transform: lowercase;
  2044. }
  2045. #block-reha-contenudelapageprincipale .file--application-pdf {
  2046. text-transform: lowercase;
  2047. }
  2048. #block-reha-contenudelapageprincipale .messages--error {
  2049. text-transform: lowercase;
  2050. }
  2051. 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 {
  2052. display: none;
  2053. }
  2054. #edit-field-dossier-de-candidature-0--description {
  2055. text-transform: none !important;
  2056. }
  2057. #edit-field-dossier-de-candidature-0--description .depth1 {
  2058. font-weight: 800;
  2059. }
  2060. #edit-field-dossier-de-candidature-0--description .depth2 {
  2061. font-weight: 400;
  2062. }
  2063. #edit-field-dossier-de-candidature-0--description .depth3 {
  2064. text-decoration: none !important;
  2065. }
  2066. .page--contacts div.contacts-full section.titre {
  2067. display: none;
  2068. }
  2069. .config_pages--type--mentions-legales {
  2070. width: 70%;
  2071. }
  2072. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2073. border: solid #fdc300 1px;
  2074. background-color: rgb(255, 255, 255);
  2075. font-weight: 1000;
  2076. padding: 2rem;
  2077. margin-right: 1rem;
  2078. width: 16vw;
  2079. margin-left: 12%;
  2080. padding-top: 1rem;
  2081. padding-left: 2rem;
  2082. padding-bottom: 5rem;
  2083. }
  2084. @media (max-width: 891px) {
  2085. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de {
  2086. margin-bottom: 1rem;
  2087. margin-top: 2rem;
  2088. width: 50%;
  2089. }
  2090. }
  2091. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de p {
  2092. margin: 0;
  2093. font-size: 1.3rem;
  2094. }
  2095. .home-page-layout-content .block-block-content3bb825b3-ab84-4861-a4f2-2a5e5eed74de strong {
  2096. font-size: 1.5rem;
  2097. }
  2098. .home-page-layout-content .block-views-blocksites-block-1 {
  2099. top: -44px;
  2100. position: relative;
  2101. }
  2102. @media (max-width: 891px) {
  2103. .home-page-layout-content .block-views-blocksites-block-1 .views-row {
  2104. margin-left: 1.8rem;
  2105. margin-right: 1.8rem;
  2106. }
  2107. }
  2108. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site {
  2109. width: 70%;
  2110. height: 30vw;
  2111. margin: auto;
  2112. }
  2113. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2114. background-color: white;
  2115. display: flex;
  2116. flex-direction: row;
  2117. margin: auto;
  2118. height: 100%;
  2119. }
  2120. @media (max-width: 1400px) {
  2121. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2122. width: 100%;
  2123. display: flex;
  2124. flex-direction: row;
  2125. }
  2126. }
  2127. @media (max-width: 891px) {
  2128. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site {
  2129. width: 100%;
  2130. display: flex;
  2131. flex-direction: column;
  2132. }
  2133. }
  2134. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2135. order: 1;
  2136. width: 70%;
  2137. height: 100%;
  2138. }
  2139. @media (max-width: 900px) {
  2140. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site {
  2141. width: 100%;
  2142. }
  2143. }
  2144. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image {
  2145. height: 100%;
  2146. }
  2147. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .image-site .field--type-image .field__items {
  2148. height: 100%;
  2149. }
  2150. .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 {
  2151. display: flex;
  2152. flex-direction: column;
  2153. align-items: flex-end;
  2154. position: relative;
  2155. height: 100%;
  2156. }
  2157. .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 {
  2158. height: 100%;
  2159. width: 100%;
  2160. }
  2161. .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 {
  2162. height: 100%;
  2163. width: 100%;
  2164. object-fit: fill;
  2165. }
  2166. @media (max-width: 1500px) {
  2167. .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 {
  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 .field__items .field__item blockquote {
  2172. position: absolute;
  2173. font-style: italic;
  2174. margin: 0;
  2175. width: 20vw;
  2176. z-index: 900;
  2177. right: -20vw;
  2178. bottom: 0px;
  2179. }
  2180. @media (max-width: 900px) {
  2181. .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 {
  2182. left: 0;
  2183. top: 0;
  2184. width: 100%;
  2185. }
  2186. }
  2187. .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 {
  2188. margin: 0;
  2189. padding-left: 1rem;
  2190. padding-bottom: 1rem;
  2191. }
  2192. @media (max-width: 900px) {
  2193. .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 {
  2194. font-size: 0.8rem;
  2195. }
  2196. }
  2197. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2198. background-color: rgb(255, 255, 255);
  2199. order: 2;
  2200. display: flex;
  2201. flex-direction: column;
  2202. margin: auto;
  2203. padding: 1rem;
  2204. z-index: 99;
  2205. position: relative;
  2206. justify-content: center;
  2207. }
  2208. @media (max-width: 891px) {
  2209. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site {
  2210. width: auto;
  2211. height: auto;
  2212. display: flex;
  2213. margin: auto;
  2214. margin-bottom: 2rem;
  2215. margin-top: 2rem;
  2216. }
  2217. }
  2218. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2219. display: none;
  2220. }
  2221. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2222. order: 3;
  2223. margin: 0;
  2224. font-size: 1.6rem;
  2225. font-weight: 1000;
  2226. }
  2227. @media (max-width: 891px) {
  2228. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2229. font-size: 1.2rem;
  2230. line-height: 1.3rem;
  2231. }
  2232. }
  2233. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2234. order: 1;
  2235. display: flex;
  2236. flex-direction: row;
  2237. align-items: end;
  2238. padding-bottom: 0.5rem;
  2239. }
  2240. .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 {
  2241. order: 1;
  2242. text-transform: uppercase;
  2243. font-size: 0.9rem;
  2244. display: inline-flex;
  2245. }
  2246. .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 {
  2247. content: "|";
  2248. padding-left: 1rem;
  2249. padding-right: 1rem;
  2250. }
  2251. .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 {
  2252. order: 3;
  2253. font-size: 1rem;
  2254. }
  2255. .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 {
  2256. display: flex;
  2257. }
  2258. .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 {
  2259. display: flex;
  2260. }
  2261. .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 {
  2262. margin: 0;
  2263. display: inline-flex;
  2264. }
  2265. .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 {
  2266. order: 2;
  2267. }
  2268. .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 {
  2269. order: 1;
  2270. text-transform: capitalize;
  2271. margin-right: 0.5rem;
  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-adresse-site .address .country {
  2274. display: none;
  2275. }
  2276. .home-page-layout-content .block-views-blocksites-block-1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2277. order: 4;
  2278. font-size: 1.2rem;
  2279. padding-top: 0.5rem;
  2280. }
  2281. .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 {
  2282. display: flex;
  2283. flex-direction: row;
  2284. flex-wrap: wrap;
  2285. }
  2286. .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 {
  2287. display: inline;
  2288. }
  2289. .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 {
  2290. content: ",";
  2291. padding-right: 0.5rem;
  2292. }
  2293. .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 {
  2294. content: "";
  2295. }
  2296. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 {
  2297. width: fit-content;
  2298. margin: auto;
  2299. z-index: 99;
  2300. margin-top: 1rem;
  2301. margin-bottom: 4rem;
  2302. }
  2303. .home-page-layout-content .block-block-content9e601647-144f-4e8e-b9e1-7d744f9141d7 .field--type-link {
  2304. padding-left: 0.5rem;
  2305. padding-right: 0.3rem;
  2306. padding-bottom: 0.3rem;
  2307. padding-top: 0.3rem;
  2308. }
  2309. .page-sitespilotes h1 {
  2310. width: 80%;
  2311. margin: auto;
  2312. font-weight: 1000;
  2313. }
  2314. .page-sitespilotes .view-display-id-page_1 {
  2315. width: 80%;
  2316. margin: auto;
  2317. display: flex;
  2318. flex-direction: row;
  2319. flex-wrap: wrap;
  2320. align-items: baseline;
  2321. justify-content: space-between;
  2322. }
  2323. @media (max-width: 1200px) {
  2324. .page-sitespilotes .view-display-id-page_1 {
  2325. justify-content: flex-start;
  2326. }
  2327. }
  2328. .page-sitespilotes .view-display-id-page_1 article {
  2329. padding-bottom: 0.7rem;
  2330. }
  2331. .page-sitespilotes .view-display-id-page_1 .views-row {
  2332. width: 28%;
  2333. padding: 1rem;
  2334. }
  2335. @media (max-width: 1200px) {
  2336. .page-sitespilotes .view-display-id-page_1 .views-row {
  2337. width: 40%;
  2338. }
  2339. }
  2340. .page-sitespilotes .view-display-id-page_1 .views-row:hover {
  2341. transform: scale(1.05);
  2342. transition: 0.3s transform ease, 0.3s box-shadow ease;
  2343. }
  2344. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site {
  2345. background-color: white;
  2346. }
  2347. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site {
  2348. display: flex;
  2349. flex-direction: column;
  2350. }
  2351. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site {
  2352. order: 1;
  2353. }
  2354. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image {
  2355. max-width: 100%;
  2356. }
  2357. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .image-site .field--name-field-image img {
  2358. width: 100%;
  2359. object-fit: cover;
  2360. max-height: 200px;
  2361. }
  2362. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site {
  2363. background-color: rgb(255, 255, 255);
  2364. order: 2;
  2365. display: flex;
  2366. flex-direction: column;
  2367. padding-left: 1rem;
  2368. padding-right: 1rem;
  2369. padding-top: 0.5rem;
  2370. }
  2371. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h1 {
  2372. display: none;
  2373. }
  2374. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site h2 {
  2375. order: 2;
  2376. margin: 0;
  2377. font-size: 1.4rem;
  2378. font-weight: 900;
  2379. line-height: 1;
  2380. padding-bottom: 0.8rem;
  2381. }
  2382. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row {
  2383. order: 1;
  2384. display: flex;
  2385. flex-direction: row;
  2386. align-items: end;
  2387. padding-bottom: 0.5rem;
  2388. }
  2389. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2390. order: 1;
  2391. text-transform: uppercase;
  2392. font-size: 0.8rem;
  2393. display: inline-flex;
  2394. }
  2395. .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 {
  2396. content: "|";
  2397. padding-left: 1rem;
  2398. padding-right: 1rem;
  2399. }
  2400. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2401. order: 3;
  2402. font-size: 0.9rem;
  2403. }
  2404. .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 {
  2405. display: flex;
  2406. }
  2407. .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 {
  2408. margin: 0;
  2409. display: inline-flex;
  2410. }
  2411. .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 {
  2412. order: 2;
  2413. }
  2414. .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 {
  2415. order: 1;
  2416. text-transform: capitalize;
  2417. margin-right: 0.5rem;
  2418. }
  2419. .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 {
  2420. display: none;
  2421. }
  2422. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2423. order: 4;
  2424. font-size: 1rem;
  2425. }
  2426. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2427. display: flex;
  2428. flex-direction: row;
  2429. flex-wrap: wrap;
  2430. }
  2431. .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 {
  2432. display: inline;
  2433. }
  2434. .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 {
  2435. content: ",";
  2436. padding-right: 0.5rem;
  2437. }
  2438. .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 {
  2439. content: "";
  2440. }
  2441. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links {
  2442. order: 5;
  2443. text-transform: uppercase;
  2444. padding: 0;
  2445. margin: 0;
  2446. border: none;
  2447. padding-bottom: 1rem;
  2448. padding-top: 3rem;
  2449. display: inline-flex;
  2450. }
  2451. .page-sitespilotes .view-display-id-page_1 .views-row .node-type-site .entete_site .infos-content-site ul.links::after {
  2452. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2453. padding-left: 0.5rem;
  2454. }
  2455. .page-sitespilotes .view-display-id-page_1 footer {
  2456. background-color: transparent;
  2457. text-transform: none !important;
  2458. z-index: 100;
  2459. }
  2460. .page-sitespilotes .view-display-id-page_1 footer p {
  2461. font-size: 2rem;
  2462. padding-left: 1rem;
  2463. font-weight: 1000;
  2464. }
  2465. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 {
  2466. display: flex;
  2467. flex-direction: row;
  2468. flex-wrap: wrap;
  2469. align-items: baseline;
  2470. justify-content: space-between;
  2471. }
  2472. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row {
  2473. width: 28%;
  2474. padding: 1rem;
  2475. }
  2476. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row:hover {
  2477. transform: none;
  2478. }
  2479. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site {
  2480. margin: auto;
  2481. display: flex;
  2482. flex-direction: column;
  2483. width: 100%;
  2484. background-color: transparent;
  2485. }
  2486. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site {
  2487. background-color: transparent;
  2488. order: 2;
  2489. display: flex;
  2490. flex-direction: column;
  2491. padding-left: 1rem;
  2492. padding-right: 1rem;
  2493. padding-right: 1rem;
  2494. }
  2495. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 {
  2496. order: 2;
  2497. margin: 0;
  2498. font-size: 1.4rem;
  2499. font-weight: 900;
  2500. line-height: 1;
  2501. }
  2502. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site h2 a {
  2503. cursor: default !important;
  2504. pointer-events: none;
  2505. }
  2506. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site .first-row {
  2507. order: 1;
  2508. display: flex;
  2509. flex-direction: row;
  2510. align-items: center;
  2511. padding-bottom: 0.5rem;
  2512. }
  2513. .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 {
  2514. order: 1;
  2515. text-transform: uppercase;
  2516. font-size: 0.8rem;
  2517. font-weight: 400;
  2518. display: flex;
  2519. align-items: center;
  2520. }
  2521. .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 {
  2522. content: "SITE";
  2523. padding-right: 0.5rem;
  2524. }
  2525. .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 {
  2526. content: "|";
  2527. padding-left: 1rem;
  2528. padding-right: 1rem;
  2529. }
  2530. .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 {
  2531. order: 3;
  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 .field--name-field-adresse-site p.address {
  2534. padding-left: 0;
  2535. margin: 0;
  2536. display: inline-flex;
  2537. font-size: 0.9rem;
  2538. font-weight: 500 !important;
  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-adresse-site p.address .postal-code {
  2541. order: 2;
  2542. }
  2543. .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 {
  2544. order: 1;
  2545. text-transform: capitalize;
  2546. margin-right: 0.5rem;
  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-adresse-site p.address .country {
  2549. display: none;
  2550. }
  2551. .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 {
  2552. order: 4;
  2553. text-transform: capitalize;
  2554. font-weight: 400;
  2555. font-size: 1rem;
  2556. }
  2557. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links {
  2558. order: 5;
  2559. text-transform: uppercase;
  2560. padding: 0;
  2561. margin: 0;
  2562. border: none;
  2563. padding-bottom: 2rem;
  2564. padding-top: 0.9rem;
  2565. display: inline-flex;
  2566. }
  2567. .page-sitespilotes .view-display-id-page_1 footer .view-display-id-block_2 .views-row .node-type-site .infos-content-site ul.links::after {
  2568. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2569. padding-left: 0.5rem;
  2570. }
  2571. .block-page-title-block {
  2572. padding-left: 1rem;
  2573. }
  2574. .block-page-title-block h1 {
  2575. font-weight: 1000;
  2576. }
  2577. .block-views-blockactus-block-1 {
  2578. background-color: white;
  2579. padding-bottom: 3rem;
  2580. }
  2581. .block-views-blockactus-block-1 h2 {
  2582. width: 80%;
  2583. font-size: 2rem;
  2584. font-weight: 900;
  2585. margin-left: 10%;
  2586. padding-top: 1rem;
  2587. text-align: center;
  2588. margin-bottom: 4rem;
  2589. }
  2590. .block-views-blockactus-block-1 .view-id-actus {
  2591. width: 100%;
  2592. margin: auto;
  2593. }
  2594. .block-views-blockactus-block-1 .view-id-actus .views-row {
  2595. width: 30vw !important;
  2596. margin-left: 1rem;
  2597. }
  2598. @media (max-width: 1200px) {
  2599. .block-views-blockactus-block-1 .view-id-actus .views-row {
  2600. width: 50vw !important;
  2601. }
  2602. }
  2603. .block-views-blockactus-block-1 .view-id-actus .views-row:first-of-type {
  2604. padding-left: 15%;
  2605. }
  2606. @media (max-width: 1200px) {
  2607. .block-views-blockactus-block-1 .view-id-actus .views-row:first-of-type {
  2608. padding-left: 16%;
  2609. }
  2610. }
  2611. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite {
  2612. width: 100%;
  2613. height: 100%;
  2614. }
  2615. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu {
  2616. display: flex;
  2617. flex-direction: column;
  2618. }
  2619. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu p.field__item {
  2620. display: none;
  2621. }
  2622. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2623. width: 75%;
  2624. height: 250px;
  2625. right: 10%;
  2626. position: relative;
  2627. }
  2628. @media (max-width: 1200px) {
  2629. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite {
  2630. max-height: 150px;
  2631. }
  2632. }
  2633. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image {
  2634. height: 100%;
  2635. }
  2636. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .image-actualite .field--name-field-image .field__items {
  2637. height: 100%;
  2638. }
  2639. .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 {
  2640. width: 100%;
  2641. height: 100%;
  2642. }
  2643. .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 {
  2644. width: 100%;
  2645. height: auto;
  2646. object-fit: cover;
  2647. height: 100%;
  2648. }
  2649. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content {
  2650. height: fit-content;
  2651. width: 100%;
  2652. }
  2653. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h1 {
  2654. display: none;
  2655. }
  2656. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content h2 {
  2657. width: 100% !important;
  2658. margin-left: 0;
  2659. padding-top: 0.5rem;
  2660. font-weight: 600;
  2661. font-size: 1.3rem;
  2662. }
  2663. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-sous-titre {
  2664. padding-top: 0 rem;
  2665. font-size: 1.2rem;
  2666. }
  2667. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .infos-content .field--name-field-date {
  2668. padding-top: 0.5rem;
  2669. }
  2670. .block-views-blockactus-block-1 .view-id-actus .views-row .node-type-actualite > .entete_actu .body-content {
  2671. display: none;
  2672. }
  2673. .block-views-blockactus-block-1 .view-id-actus .slick-dots {
  2674. position: relative;
  2675. bottom: 0;
  2676. }
  2677. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2678. left: 35px;
  2679. }
  2680. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2681. left: 90vw;
  2682. }
  2683. @media (max-width: 1400px) {
  2684. .block-views-blockactus-block-1 .view-id-actus .slick-prev {
  2685. left: 0vw;
  2686. }
  2687. .block-views-blockactus-block-1 .view-id-actus .slick-next {
  2688. left: 85vw;
  2689. }
  2690. }
  2691. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2692. width: 60%;
  2693. margin: auto;
  2694. padding-top: 3rem;
  2695. overflow: hidden;
  2696. text-overflow: ellipsis;
  2697. font-size: 1.3rem;
  2698. /* Masquer tous les paragraphes après le premier */
  2699. }
  2700. @media (max-width: 891px) {
  2701. .page--home .home-page-layout-content .block-views-blockhome-block-1 .view-display-id-block_1 {
  2702. width: 80%;
  2703. padding-top: 3rem;
  2704. }
  2705. }
  2706. .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 {
  2707. display: none;
  2708. }
  2709. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 {
  2710. width: fit-content;
  2711. margin: auto;
  2712. z-index: 99;
  2713. position: relative;
  2714. margin-top: 2rem;
  2715. margin-bottom: 4rem;
  2716. }
  2717. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link {
  2718. padding-left: 0.5rem;
  2719. padding-right: 0.3rem;
  2720. padding-bottom: 0.3rem;
  2721. padding-top: 0.3rem;
  2722. }
  2723. .page--home .home-page-layout-content .block-block-content793e5016-2b96-4802-9f38-1cd3768775b5 .field--type-link .field__item::after {
  2724. content: url("../dist/images/noun-arrow-1569918-black.svg");
  2725. }
  2726. .page-programme .layout__region--first {
  2727. position: relative;
  2728. }
  2729. .page-programme .layout__region--first .block-region-first {
  2730. padding-left: 3rem;
  2731. display: flex;
  2732. justify-content: flex-end;
  2733. position: fixed;
  2734. top: 10rem;
  2735. }
  2736. .page-programme .layout__region--first .block-region-first > .block-block-content {
  2737. width: 100%;
  2738. }
  2739. .page-programme .layout__region--first .block-region-first > .block-block-content ul {
  2740. padding-left: 0;
  2741. padding-right: 30%;
  2742. }
  2743. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a {
  2744. display: flex;
  2745. flex-direction: column;
  2746. padding-bottom: 0.6rem;
  2747. padding-top: 0.6rem;
  2748. }
  2749. .page-programme .layout__region--first .block-region-first > .block-block-content ul li a::after {
  2750. content: "";
  2751. width: 25%;
  2752. margin-top: 0.6rem;
  2753. border-bottom: #fdc300 solid 1px;
  2754. }
  2755. .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 {
  2756. font-weight: 800;
  2757. }
  2758. .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 {
  2759. content: "";
  2760. width: 25%;
  2761. margin-top: 0.6rem;
  2762. border-bottom: #fdc300 solid 2px;
  2763. }
  2764. .page-programme .block-region-second h2 {
  2765. font-weight: 1000;
  2766. font-size: 1.8rem;
  2767. }
  2768. .page-programme .block-region-second .block-views-blockhome-block-1 {
  2769. width: 80%;
  2770. font-size: 1.2rem;
  2771. }
  2772. .page-programme .block-region-second .view-display-id-block_1 {
  2773. margin: 0;
  2774. width: 80%;
  2775. padding-top: 1rem;
  2776. }
  2777. .page-programme .block-region-second .block-config-pages-block {
  2778. margin: 0;
  2779. width: 80%;
  2780. padding-top: 1rem;
  2781. }
  2782. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2783. width: 100%;
  2784. padding-bottom: 3rem;
  2785. height: 205px;
  2786. display: flex;
  2787. flex-direction: column;
  2788. flex-wrap: wrap;
  2789. justify-content: center;
  2790. align-content: baseline;
  2791. }
  2792. @media (max-width: 810px) {
  2793. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire {
  2794. display: flex;
  2795. flex-direction: column;
  2796. }
  2797. }
  2798. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .paragraph--type--partenaire > * {
  2799. flex: 1 1 80px;
  2800. }
  2801. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-logo {
  2802. width: fit-content;
  2803. padding-right: 1rem;
  2804. }
  2805. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-nom {
  2806. font-weight: 900;
  2807. font-size: 1.2rem;
  2808. }
  2809. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-texte .field__item p strong {
  2810. background-color: none;
  2811. }
  2812. .page-programme .block-region-second .block-config-pages-block .config_pages--partenaires--full .paragraph--type--partenaire .field--name-field-lien {
  2813. background-color: none;
  2814. }
  2815. .page-node-site .block-region-first .block-entity-fieldnodefield-fichiers {
  2816. width: 80%;
  2817. margin: auto;
  2818. }
  2819. .page-node-site .region-content {
  2820. display: grid;
  2821. grid-template-columns: repeat(8 1fr);
  2822. grid-template-rows: repeat(3 auto);
  2823. }
  2824. .page-node-site .region-content #block-reha-prevnextblock {
  2825. display: flex;
  2826. flex-direction: row;
  2827. width: 70%;
  2828. grid-column: 1/span 8;
  2829. grid-row: 1;
  2830. z-index: 97;
  2831. height: fit-content;
  2832. justify-content: space-between;
  2833. margin: auto;
  2834. }
  2835. .page-node-site .region-content #block-reha-prevnextblock .next-site {
  2836. border: none;
  2837. padding: 0.5rem 1rem;
  2838. margin-left: auto;
  2839. }
  2840. .page-node-site .region-content #block-reha-prevnextblock .next-site ::after {
  2841. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2842. padding-left: 0.5rem;
  2843. padding-top: 0.1rem;
  2844. }
  2845. .page-node-site .region-content #block-reha-prevnextblock .prev-site {
  2846. border: none;
  2847. padding: 0.5rem 1rem;
  2848. }
  2849. .page-node-site .region-content #block-reha-prevnextblock .prev-site ::before {
  2850. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  2851. display: inline-block;
  2852. transform: rotate(180deg);
  2853. padding-left: 0.5rem;
  2854. }
  2855. .page-node-site .region-content #block-reha-titredepage {
  2856. display: none;
  2857. }
  2858. .page-node-site .region-content #block-reha-contenudelapageprincipale {
  2859. padding-top: 2rem;
  2860. padding-bottom: 3rem;
  2861. grid-column: 1/span 8;
  2862. grid-row: 2;
  2863. }
  2864. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site {
  2865. margin: auto;
  2866. display: flex;
  2867. flex-direction: column;
  2868. }
  2869. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site {
  2870. background-color: white;
  2871. height: 520px;
  2872. width: fit-content;
  2873. display: flex;
  2874. flex-direction: row;
  2875. margin: auto;
  2876. }
  2877. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site {
  2878. height: 520px;
  2879. width: 771px;
  2880. order: 1;
  2881. }
  2882. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image {
  2883. width: 100%;
  2884. margin: auto;
  2885. }
  2886. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-dots {
  2887. z-index: 999;
  2888. bottom: -40px;
  2889. }
  2890. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list {
  2891. padding: 0 !important;
  2892. }
  2893. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item {
  2894. display: flex;
  2895. flex-direction: column;
  2896. align-items: flex-start;
  2897. }
  2898. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item img {
  2899. height: 520px;
  2900. width: auto;
  2901. object-fit: contain;
  2902. }
  2903. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .image-site .field--name-field-image .slick-list .field__item blockquote {
  2904. font-style: italic;
  2905. margin: 0;
  2906. padding-top: 0.5rem;
  2907. font-size: 0.8rem;
  2908. }
  2909. .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 {
  2910. margin: 0;
  2911. }
  2912. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  2913. background-color: rgb(255, 255, 255);
  2914. width: 20vw;
  2915. order: 2;
  2916. display: flex;
  2917. flex-direction: column;
  2918. margin: auto;
  2919. padding: 1rem;
  2920. z-index: 99;
  2921. position: relative;
  2922. justify-content: center;
  2923. }
  2924. @media (max-width: 891px) {
  2925. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site {
  2926. width: auto;
  2927. }
  2928. }
  2929. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h1 {
  2930. order: 3;
  2931. margin: 0;
  2932. font-size: 1.8rem;
  2933. font-weight: 900;
  2934. }
  2935. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site h2 {
  2936. order: 3;
  2937. margin: 0;
  2938. font-size: 1.3rem;
  2939. font-weight: 900;
  2940. }
  2941. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row {
  2942. order: 1;
  2943. display: flex;
  2944. flex-direction: row;
  2945. align-items: end;
  2946. padding-bottom: 0.5rem;
  2947. }
  2948. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site {
  2949. order: 1;
  2950. text-transform: uppercase;
  2951. font-size: 1rem;
  2952. display: inline-flex;
  2953. }
  2954. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-numero-site::after {
  2955. content: "|";
  2956. padding-left: 1rem;
  2957. padding-right: 1rem;
  2958. }
  2959. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site {
  2960. order: 3;
  2961. font-size: 1.2rem;
  2962. }
  2963. .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 {
  2964. display: flex;
  2965. }
  2966. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .first-row .field--name-field-adresse-site .address {
  2967. margin: 0;
  2968. display: inline-flex;
  2969. }
  2970. .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 {
  2971. order: 2;
  2972. }
  2973. .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 {
  2974. order: 1;
  2975. text-transform: capitalize;
  2976. margin-right: 0.5rem;
  2977. }
  2978. .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 {
  2979. display: none;
  2980. }
  2981. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-date-de-construction {
  2982. order: 5;
  2983. font-size: 1.2rem;
  2984. }
  2985. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte {
  2986. order: 4;
  2987. padding-top: 0.5rem;
  2988. font-size: 1.2rem;
  2989. }
  2990. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items {
  2991. display: flex;
  2992. flex-direction: row;
  2993. flex-wrap: wrap;
  2994. }
  2995. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site .field--name-field-architecte .field__items .field__item {
  2996. display: inline;
  2997. }
  2998. .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 {
  2999. content: ",";
  3000. padding-right: 0.5rem;
  3001. }
  3002. .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 {
  3003. content: "";
  3004. }
  3005. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links {
  3006. order: 5;
  3007. text-transform: uppercase;
  3008. padding: 0;
  3009. margin: 0;
  3010. border: none;
  3011. padding-bottom: 2rem;
  3012. padding-top: 0.9rem;
  3013. display: inline-flex;
  3014. }
  3015. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .entete_site .infos-content-site ul.links::after {
  3016. content: url("../../dist/images/noun-arrow-1569918-black.svg");
  3017. padding-left: 0.5rem;
  3018. }
  3019. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site {
  3020. order: 3;
  3021. padding-top: 6rem;
  3022. position: relative;
  3023. width: 70%;
  3024. margin: auto;
  3025. font-size: 1.3rem;
  3026. display: flex;
  3027. flex-direction: row-reverse;
  3028. justify-content: space-between;
  3029. }
  3030. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .summary-content {
  3031. width: 75%;
  3032. }
  3033. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content {
  3034. width: 15%;
  3035. margin-top: 1.5rem;
  3036. }
  3037. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field--type-file {
  3038. border: none;
  3039. margin-bottom: 1rem;
  3040. background-color: transparent;
  3041. }
  3042. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item {
  3043. padding: 0.5rem;
  3044. border: solid black 1px;
  3045. margin-bottom: 1rem;
  3046. background-color: rgb(255, 255, 255);
  3047. font-size: 0.9rem;
  3048. }
  3049. .page-node-site .region-content #block-reha-contenudelapageprincipale .node-type-site .body-content-site .links-content .field__item > * {
  3050. text-transform: uppercase;
  3051. }
  3052. .page-ressources h1 {
  3053. width: 80%;
  3054. margin: auto;
  3055. font-weight: 1000;
  3056. }
  3057. .page-ressources .view-ressources {
  3058. display: flex;
  3059. flex-direction: row;
  3060. flex-wrap: wrap;
  3061. justify-content: space-between;
  3062. padding: 2rem;
  3063. width: 80%;
  3064. margin: auto;
  3065. }
  3066. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 {
  3067. width: 100%;
  3068. margin: auto;
  3069. display: grid;
  3070. grid-template-columns: repeat(8, 1fr);
  3071. grid-template-rows: repeat(3, 1fr);
  3072. padding: 1rem;
  3073. height: fit-content;
  3074. max-height: 17rem;
  3075. padding-bottom: 5rem;
  3076. }
  3077. .page-ressources .view-ressources #views-exposed-form-ressources-page-1::before {
  3078. content: "FILTRER :";
  3079. grid-column: 1;
  3080. grid-row: 1;
  3081. display: block;
  3082. line-height: 5;
  3083. }
  3084. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item, .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-actions {
  3085. padding-bottom: 0.5rem;
  3086. align-self: end;
  3087. }
  3088. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-combine {
  3089. grid-column: 1/span 8;
  3090. grid-row: 2;
  3091. }
  3092. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .js-form-item-field-site-target-id {
  3093. grid-column: 1/span 4;
  3094. grid-row: 3;
  3095. width: 45%;
  3096. }
  3097. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-themes-target-id {
  3098. grid-column: 3/span 4;
  3099. grid-row: 3;
  3100. width: 45%;
  3101. }
  3102. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-item-field-type-de-ressource-target-id {
  3103. width: 45%;
  3104. grid-column: 5/span 6;
  3105. grid-row: 3;
  3106. }
  3107. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 .form-select {
  3108. background: white;
  3109. border: solid gray 1px;
  3110. height: 2.5rem;
  3111. padding-left: 1rem;
  3112. padding-right: 1rem;
  3113. }
  3114. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions {
  3115. grid-column: 7/span 8;
  3116. grid-row: 3;
  3117. height: 2.5rem;
  3118. }
  3119. .page-ressources .view-ressources #views-exposed-form-ressources-page-1 #edit-actions .form-submit {
  3120. margin: 0;
  3121. height: 2.5rem;
  3122. }
  3123. .page-ressources .view-ressources article {
  3124. padding-bottom: 0 !important;
  3125. }
  3126. .page-ressources .view-ressources .views-row {
  3127. width: 30%;
  3128. display: flex !important;
  3129. flex-direction: column;
  3130. background-color: rgb(255, 255, 255);
  3131. margin-bottom: 6rem;
  3132. }
  3133. .page-ressources .view-ressources .views-row:hover {
  3134. transform: scale(1.05);
  3135. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3136. }
  3137. .page-ressources .view-ressources .views-row .node-type-ressource {
  3138. width: 100%;
  3139. display: flex !important;
  3140. flex-direction: column-reverse;
  3141. padding-top: 0;
  3142. }
  3143. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource {
  3144. order: 1;
  3145. width: 100%;
  3146. margin: auto;
  3147. margin-left: auto;
  3148. height: 15rem;
  3149. margin-left: 0;
  3150. }
  3151. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image {
  3152. height: 100%;
  3153. }
  3154. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items {
  3155. height: 100%;
  3156. }
  3157. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item {
  3158. height: 100%;
  3159. }
  3160. .page-ressources .view-ressources .views-row .node-type-ressource .image-ressource .field--name-field-image .field__items .field__item img {
  3161. height: 100%;
  3162. object-fit: cover;
  3163. max-width: 100%;
  3164. width: 100% !important;
  3165. }
  3166. .page-ressources .view-ressources .views-row .node-type-ressource .body-content {
  3167. display: none;
  3168. }
  3169. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content {
  3170. display: flex;
  3171. flex-direction: column;
  3172. background-color: transparent !important;
  3173. right: 0;
  3174. margin-bottom: 0;
  3175. border: none;
  3176. margin-left: 0 !important;
  3177. width: auto;
  3178. }
  3179. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h1 {
  3180. display: none;
  3181. }
  3182. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content h2 {
  3183. order: 2;
  3184. margin: 0;
  3185. font-size: 1.2rem;
  3186. font-weight: 500;
  3187. line-height: 1.8rem;
  3188. }
  3189. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-sous-titre {
  3190. order: 3;
  3191. font-size: 1rem;
  3192. padding-top: 0.3rem;
  3193. }
  3194. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-auteur {
  3195. order: 4;
  3196. font-weight: 900;
  3197. padding-top: 0.5rem;
  3198. padding-bottom: 1rem;
  3199. font-size: 0.8rem;
  3200. }
  3201. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3202. order: 1;
  3203. text-transform: uppercase;
  3204. font-size: 0.7rem;
  3205. }
  3206. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-type-de-ressource a {
  3207. pointer-events: none;
  3208. }
  3209. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site {
  3210. order: 5;
  3211. background-color: rgb(153, 147, 174);
  3212. color: white;
  3213. border-radius: 50px;
  3214. width: fit-content;
  3215. padding: 0.2rem 0.9rem;
  3216. margin-top: 1rem;
  3217. }
  3218. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site .field__item {
  3219. display: inline;
  3220. }
  3221. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content .field--name-field-site a {
  3222. color: white;
  3223. font-weight: 900;
  3224. font-size: 0.8rem;
  3225. vertical-align: top;
  3226. }
  3227. .page-ressources .view-ressources .views-row .node-type-ressource .infos-content ul.links {
  3228. order: 6;
  3229. display: none;
  3230. }
  3231. .page-ressources .view-ressources .pagination {
  3232. width: 100%;
  3233. }
  3234. .node-type-ressource {
  3235. display: grid;
  3236. grid-template-columns: 1fr repeat(3, 1fr) 1fr;
  3237. grid-template-rows: repeat(2, auto);
  3238. padding-top: 3rem;
  3239. }
  3240. .node-type-ressource .image-ressource {
  3241. grid-row: 1;
  3242. grid-column: 2;
  3243. margin-right: 2rem;
  3244. }
  3245. .node-type-ressource .image-ressource img {
  3246. height: 400px;
  3247. width: auto;
  3248. }
  3249. .node-type-ressource .infos-content {
  3250. grid-row: 1;
  3251. grid-column: 3/span 4;
  3252. margin-left: 2rem;
  3253. border: none;
  3254. background-color: transparent;
  3255. }
  3256. .node-type-ressource .infos-content .field--name-field-type-de-ressource {
  3257. text-transform: uppercase;
  3258. font-size: 1rem;
  3259. order: 1;
  3260. }
  3261. .node-type-ressource .infos-content h1 {
  3262. order: 2;
  3263. }
  3264. .node-type-ressource .infos-content .field--name-field-sous-titre {
  3265. font-size: 2rem;
  3266. order: 3;
  3267. }
  3268. .node-type-ressource .infos-content .field--name-field-auteur {
  3269. font-weight: 800;
  3270. font-size: 1.3rem;
  3271. order: 4;
  3272. }
  3273. .node-type-ressource .infos-content .field--name-field-site {
  3274. background-color: rgb(153, 147, 174);
  3275. border-radius: 50px;
  3276. width: fit-content;
  3277. padding: 0.2rem 0.9rem;
  3278. margin-top: 1rem;
  3279. order: 5;
  3280. }
  3281. .node-type-ressource .infos-content .field--name-field-site a {
  3282. color: white;
  3283. font-weight: 900;
  3284. font-size: 0.8rem;
  3285. vertical-align: top;
  3286. }
  3287. .node-type-ressource .body-content {
  3288. grid-row: 2;
  3289. grid-column: 2/span 3;
  3290. width: 100%;
  3291. margin-top: 2rem;
  3292. }
  3293. .node-type-ressource .body-content .field--name-field-fichiers {
  3294. width: fit-content;
  3295. }
  3296. .node-type-ressource .body-content .links-content {
  3297. margin-top: 2rem;
  3298. position: relative;
  3299. left: -10%;
  3300. width: 25%;
  3301. }
  3302. .page-actualites .block-page-title-block {
  3303. width: 75%;
  3304. margin: auto;
  3305. }
  3306. .page-actualites .view-actus {
  3307. padding-top: 3rem;
  3308. padding-bottom: 6rem;
  3309. width: 80%;
  3310. margin: auto;
  3311. display: flex;
  3312. flex-direction: row;
  3313. flex-wrap: wrap;
  3314. align-items: baseline;
  3315. justify-content: space-between;
  3316. }
  3317. @media (max-width: 891px) {
  3318. .page-actualites .view-actus {
  3319. flex-direction: column;
  3320. width: 100%;
  3321. }
  3322. }
  3323. .page-actualites .view-actus .views-row {
  3324. width: 28%;
  3325. padding: 1rem;
  3326. }
  3327. @media (max-width: 891px) {
  3328. .page-actualites .view-actus .views-row {
  3329. width: 95%;
  3330. margin: auto;
  3331. padding: 0;
  3332. }
  3333. }
  3334. .page-actualites .view-actus .views-row:hover {
  3335. transform: scale(1.05);
  3336. transition: 0.3s transform ease, 0.3s box-shadow ease;
  3337. }
  3338. .page-actualites .view-actus .views-row .node-type-actualite {
  3339. width: 30vw !important;
  3340. }
  3341. @media (max-width: 891px) {
  3342. .page-actualites .view-actus .views-row .node-type-actualite {
  3343. width: 100% !important;
  3344. }
  3345. }
  3346. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu {
  3347. flex-direction: column;
  3348. }
  3349. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite {
  3350. width: 90%;
  3351. margin: auto;
  3352. }
  3353. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .image-actualite img {
  3354. width: 100%;
  3355. height: 15rem;
  3356. object-fit: cover;
  3357. }
  3358. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content {
  3359. height: fit-content;
  3360. width: 100%;
  3361. margin: auto;
  3362. top: -0.5rem;
  3363. }
  3364. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h1 {
  3365. display: none;
  3366. }
  3367. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content h2 {
  3368. margin-left: 0;
  3369. padding-top: 0.2rem;
  3370. font-weight: 600;
  3371. }
  3372. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3373. padding-top: 0 rem;
  3374. font-size: 1.2rem;
  3375. }
  3376. .page-actualites .view-actus .views-row .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3377. padding-top: 0.2rem;
  3378. }
  3379. .node-type-actualite {
  3380. width: 100vw;
  3381. }
  3382. .node-type-actualite .entete_actu {
  3383. display: flex;
  3384. flex-direction: row;
  3385. width: 75%;
  3386. margin: auto;
  3387. align-items: center;
  3388. }
  3389. @media (max-width: 891px) {
  3390. .node-type-actualite .entete_actu {
  3391. flex-direction: column;
  3392. width: 100%;
  3393. }
  3394. }
  3395. .node-type-actualite .entete_actu .image-actualite {
  3396. width: 50%;
  3397. height: 100%;
  3398. }
  3399. @media (max-width: 900px) {
  3400. .node-type-actualite .entete_actu .image-actualite {
  3401. width: 80%;
  3402. height: 100% !important;
  3403. }
  3404. }
  3405. .node-type-actualite .entete_actu .image-actualite img {
  3406. width: 100%;
  3407. height: auto;
  3408. object-fit: contain;
  3409. }
  3410. .node-type-actualite .entete_actu .infos-content {
  3411. width: 30%;
  3412. right: 5%;
  3413. }
  3414. @media (max-width: 900px) {
  3415. .node-type-actualite .entete_actu .infos-content {
  3416. width: 50%;
  3417. height: fit-content;
  3418. }
  3419. .node-type-actualite .entete_actu .infos-content h1 {
  3420. font-size: 1.2rem;
  3421. }
  3422. .node-type-actualite .entete_actu .infos-content .field--name-field-sous-titre {
  3423. font-size: 1rem;
  3424. }
  3425. .node-type-actualite .entete_actu .infos-content .field--name-field-site .field__item {
  3426. font-size: 0.7rem;
  3427. }
  3428. .node-type-actualite .entete_actu .infos-content .field--name-field-date {
  3429. font-size: 0.6rem;
  3430. }
  3431. }
  3432. .node-type-actualite .body-content .summary-content {
  3433. width: 60%;
  3434. margin: auto;
  3435. }
  3436. @media (max-width: 891px) {
  3437. .node-type-actualite .body-content .summary-content {
  3438. width: 80%;
  3439. }
  3440. }
  3441. .node-type-actualite .body-content .links-content {
  3442. width: 15%;
  3443. margin-left: 12.5%;
  3444. }
  3445. @media (max-width: 891px) {
  3446. .node-type-actualite .body-content .links-content {
  3447. width: 80%;
  3448. }
  3449. .node-type-actualite .body-content .links-content .field--name-field-fichiers {
  3450. width: fit-content;
  3451. }
  3452. }
  3453. .page-mon-espace-de-travail {
  3454. /* On cache le texte mais on le garde accessible */
  3455. /* On crée l’icône "i" */
  3456. /* Tooltip : on réaffiche le vrai texte stocké */
  3457. /* Affichage au survol */
  3458. }
  3459. .page-mon-espace-de-travail .layout-content {
  3460. padding-bottom: 3rem;
  3461. width: 80%;
  3462. margin-left: 8%;
  3463. }
  3464. .page-mon-espace-de-travail .layout-content #block-reha-titredepage {
  3465. text-align: center;
  3466. }
  3467. .page-mon-espace-de-travail .layout-content .field--type-file {
  3468. background-color: transparent;
  3469. border: none;
  3470. }
  3471. .page-mon-espace-de-travail .layout-content .js-form-type-textfield {
  3472. flex-direction: row;
  3473. align-content: center;
  3474. }
  3475. .page-mon-espace-de-travail .layout-content .js-form-type-textfield label {
  3476. margin-right: 1rem;
  3477. }
  3478. .page-mon-espace-de-travail .description {
  3479. font-style: italic;
  3480. text-transform: none;
  3481. }
  3482. .page-mon-espace-de-travail .paragraph-top .paragraph-type {
  3483. display: none;
  3484. }
  3485. .page-mon-espace-de-travail summary {
  3486. text-transform: none;
  3487. font-weight: 800;
  3488. font-size: 1.2rem;
  3489. }
  3490. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper,
  3491. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper {
  3492. border-top: solid 1px black;
  3493. margin-top: 2rem;
  3494. }
  3495. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper h4,
  3496. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper h4 {
  3497. margin: 0;
  3498. margin-top: 2rem;
  3499. padding-left: 0;
  3500. }
  3501. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper #field-dossier-values--2,
  3502. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper #field-dossier-values--2 {
  3503. padding-left: 4rem;
  3504. }
  3505. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-wrapper .field-multiple-drag,
  3506. .page-mon-espace-de-travail #edit-field-dossier-evenement-wrapper .field-multiple-drag {
  3507. border-left: solid black 1px;
  3508. }
  3509. .page-mon-espace-de-travail #edit-field-dossier-de-pilotage-0-subform-field-fichiers-table {
  3510. display: none;
  3511. }
  3512. .page-mon-espace-de-travail .paragraph-type--dossier {
  3513. background-color: white;
  3514. }
  3515. .page-mon-espace-de-travail .paragraph-type--dossier h4 {
  3516. display: none;
  3517. }
  3518. .page-mon-espace-de-travail .description {
  3519. position: relative;
  3520. display: inline-block;
  3521. color: transparent; /* rend le texte invisible */
  3522. font-size: 0; /* supprime l'espace du texte */
  3523. }
  3524. .page-mon-espace-de-travail .description::before {
  3525. content: "i";
  3526. display: inline-block;
  3527. width: 20px;
  3528. height: 20px;
  3529. line-height: 20px;
  3530. border-radius: 50%;
  3531. background-color: #333;
  3532. color: #fff;
  3533. text-align: center;
  3534. font-weight: bold;
  3535. font-size: 14px;
  3536. cursor: pointer;
  3537. font-family: Arial, sans-serif;
  3538. }
  3539. .page-mon-espace-de-travail .description::after {
  3540. content: attr(data-text); /* On va injecter le texte via un attribut */
  3541. visibility: hidden;
  3542. opacity: 0;
  3543. width: 250px;
  3544. background-color: #333;
  3545. color: #fff;
  3546. text-align: left;
  3547. border-radius: 6px;
  3548. padding: 8px;
  3549. position: absolute;
  3550. z-index: 1;
  3551. top: 120%;
  3552. left: 50%;
  3553. transform: translateX(-50%);
  3554. transition: opacity 0.3s;
  3555. font-size: 13px;
  3556. line-height: 1.4;
  3557. pointer-events: none;
  3558. }
  3559. .page-mon-espace-de-travail .description:hover::after {
  3560. visibility: visible;
  3561. opacity: 1;
  3562. }
  3563. .page-mon-espace-de-travail .js-form-type-managed-file label:after {
  3564. content: " :";
  3565. }
  3566. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3567. text-transform: uppercase;
  3568. font-size: 0.9rem;
  3569. font-weight: 400;
  3570. }
  3571. @media (max-width: 891px) {
  3572. .page-mon-espace-de-travail .paragraphs-add-wrapper {
  3573. font-size: 1rem;
  3574. }
  3575. }
  3576. .page-mon-espace-de-travail .paragraphs-add-wrapper p {
  3577. margin: 0;
  3578. padding: 0.3rem;
  3579. }
  3580. .page-mon-espace-de-travail .paragraphs-add-wrapper :hover {
  3581. background-color: #fdc300;
  3582. }
  3583. .field--name-field-dossier-de-pilotage h4 ::after {
  3584. content: "";
  3585. border-top: solid 1px black;
  3586. }