bundle.css 333 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893
  1. /*!*******************************************************************************************************************************************************************!*\
  2. !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./scss/styles.scss ***!
  3. \*******************************************************************************************************************************************************************/
  4. @charset "UTF-8";
  5. /*eql*/
  6. /*setup*/
  7. /*global*/
  8. @font-face {
  9. font-family: "Font Awesome";
  10. src: url("../fonts/Font Awesome/fontawesome-webfont.woff2") format("woff2");
  11. font-weight: 400;
  12. font-style: normal;
  13. }
  14. /*marianne*/
  15. @font-face {
  16. font-family: "Marianne";
  17. src: url("../fonts/Marianne/Marianne-Thin.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin.woff") format("woff");
  18. font-weight: 300;
  19. font-style: normal;
  20. }
  21. @font-face {
  22. font-family: "Marianne";
  23. src: url("../fonts/Marianne/Marianne-Thin_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Thin_Italic.woff") format("woff");
  24. font-weight: 300;
  25. font-style: italic;
  26. }
  27. @font-face {
  28. font-family: "Marianne";
  29. src: url("../fonts/Marianne/Marianne-Light.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light.woff") format("woff");
  30. font-weight: 400;
  31. font-style: normal;
  32. }
  33. @font-face {
  34. font-family: "Marianne";
  35. src: url("../fonts/Marianne/Marianne-Light_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Light_Italic.woff") format("woff");
  36. font-weight: 400;
  37. font-style: italic;
  38. }
  39. @font-face {
  40. font-family: "Marianne";
  41. src: url("../fonts/Marianne/Marianne-Regular.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular.woff") format("woff");
  42. font-weight: 600;
  43. font-style: normal;
  44. }
  45. @font-face {
  46. font-family: "Marianne";
  47. src: url("../fonts/Marianne/Marianne-Regular_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Regular_Italic.woff") format("woff");
  48. font-weight: 600;
  49. font-style: italic;
  50. }
  51. @font-face {
  52. font-family: "Marianne";
  53. src: url("../fonts/Marianne/Marianne-Medium.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium.woff") format("woff");
  54. font-weight: 800;
  55. font-style: normal;
  56. }
  57. @font-face {
  58. font-family: "Marianne";
  59. src: url("../fonts/Marianne/Marianne-Medium_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Medium_Italic.woff") format("woff");
  60. font-weight: 800;
  61. font-style: italic;
  62. }
  63. @font-face {
  64. font-family: "Marianne";
  65. src: url("../fonts/Marianne/Marianne-Bold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold.woff") format("woff");
  66. font-weight: 900;
  67. font-style: normal;
  68. }
  69. @font-face {
  70. font-family: "Marianne";
  71. src: url("../fonts/Marianne/Marianne-Bold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-Bold_Italic.woff") format("woff");
  72. font-weight: 900;
  73. font-style: italic;
  74. }
  75. @font-face {
  76. font-family: "Marianne";
  77. src: url("../fonts/Marianne/Marianne-ExtraBold.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold.woff") format("woff");
  78. font-weight: 1000;
  79. font-style: normal;
  80. }
  81. @font-face {
  82. font-family: "Marianne";
  83. src: url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff2") format("woff2"), url("../fonts/Marianne/Marianne-ExtraBold_Italic.woff") format("woff");
  84. font-weight: 1000;
  85. font-style: italic;
  86. }
  87. /* Source Code Pro */
  88. @font-face {
  89. font-family: "Source Code Pro";
  90. src: url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Medium.otf.woff") format("woff");
  91. font-weight: 500;
  92. font-style: normal;
  93. }
  94. @font-face {
  95. font-family: "Source Code Pro";
  96. src: url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff2") format("woff2"), url("../fonts/source-code-pro/SourceCodePro-Bold.otf.woff") format("woff");
  97. font-weight: 1000;
  98. font-style: normal;
  99. }
  100. /* Colors used for EQL */
  101. .path-user .buttons-filtres-ressources {
  102. display: none;
  103. }
  104. @media screen {
  105. .print_only {
  106. display: none;
  107. }
  108. }
  109. .layout-container {
  110. font-family: "Marianne", sans-serif;
  111. margin: none;
  112. top: 0%;
  113. left: 0%;
  114. width: 100%;
  115. overflow: hidden;
  116. display: flex;
  117. flex-flow: row wrap;
  118. }
  119. .layout-container header {
  120. flex: 0 0 100%;
  121. }
  122. .layout-container main {
  123. position: relative;
  124. }
  125. .layout-container footer {
  126. flex: 0 0 100%;
  127. }
  128. .layout-content {
  129. padding-top: 10rem;
  130. padding-bottom: 6rem;
  131. }
  132. @media (max-width: 810px) {
  133. .layout-content {
  134. padding-top: 5rem;
  135. }
  136. }
  137. .path-frontpage {
  138. margin: 0;
  139. }
  140. .path-node {
  141. margin: 0;
  142. }
  143. .path-faq {
  144. margin: 0;
  145. }
  146. .path-ressources {
  147. margin: 0;
  148. }
  149. .path-webform {
  150. margin: 0;
  151. }
  152. .path-projets {
  153. margin: 0;
  154. }
  155. .path-incubateur {
  156. margin: 0;
  157. }
  158. main {
  159. width: 100%;
  160. }
  161. .main-content {
  162. margin-top: 7rem;
  163. }
  164. .field--name-field-titre .field__item {
  165. color: rgb(9, 57, 139);
  166. font-weight: 900;
  167. font-size: 2rem;
  168. }
  169. .field--name-field-titre .field__label {
  170. visibility: hidden;
  171. }
  172. .inter-titre {
  173. color: rgb(0, 158, 227);
  174. }
  175. a {
  176. text-decoration: none;
  177. }
  178. a.ext {
  179. color: black;
  180. }
  181. svg.ext {
  182. display: none;
  183. }
  184. @media (max-width: 959px) {
  185. #block-headermenu {
  186. display: none;
  187. }
  188. .page-node-type-static .layout__region--top {
  189. height: 23vh;
  190. }
  191. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  192. margin-top: 11vh;
  193. }
  194. .page-node-type-static .node-id-20 .field--name-field-partenaires .paragraph--type--partenaire {
  195. display: flex;
  196. flex-direction: column;
  197. }
  198. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  199. width: 70%;
  200. }
  201. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  202. display: flex;
  203. flex-direction: column;
  204. }
  205. .path-frontpage .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  206. width: 100%;
  207. }
  208. }
  209. @media (max-width: 810px) {
  210. .page-node-type-static .layout__region--top {
  211. padding-bottom: 0rem;
  212. }
  213. .page-node-type-static .layout__region--top .block-entity-fieldnodetitle {
  214. margin-left: 8%;
  215. margin-right: 5%;
  216. }
  217. .page-node-type-static .layout__region--first .block-region-first {
  218. display: none;
  219. }
  220. .page-node-type-static .layout__region--second {
  221. flex: 0 1 80%;
  222. margin: auto;
  223. }
  224. .page-node-type-static .layout__region--third .block-region-third {
  225. margin: auto;
  226. }
  227. }
  228. @media (max-width: 479px) {
  229. #header-top #block-logogouv img {
  230. min-width: 45px;
  231. width: 70%;
  232. height: auto;
  233. }
  234. #header-top #block-logoeql img {
  235. min-width: 45px;
  236. width: 80%;
  237. height: auto;
  238. }
  239. .path-frontpage .block-region-content .block-views-blockactus-blocks-pages-block-1 .view-actus-blocks-pages .view-content {
  240. display: flex;
  241. flex-direction: column;
  242. }
  243. .path-ressources.basededonnees .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockcollections-block-1 div:first-of-type {
  244. width: 90%;
  245. display: flex;
  246. margin: auto;
  247. }
  248. }
  249. /*global*/
  250. /* -------------------------
  251. Paged.js : format + compteur
  252. -------------------------- */
  253. @page {
  254. size: A4 portrait;
  255. margin: 1.5cm;
  256. @bottom-center {
  257. content: "Page " counter(page) " / " counter(pages);
  258. font-size: 9pt;
  259. }
  260. }
  261. /* Pas de numéro sur cover / back-cover */
  262. .cover {
  263. page: cover;
  264. }
  265. .back-cover {
  266. page: backcover;
  267. }
  268. @page cover {
  269. @bottom-center {
  270. content: none;
  271. }
  272. }
  273. @page backcover {
  274. @bottom-center {
  275. content: none;
  276. }
  277. }
  278. /* -------------------------
  279. PRINT (Ctrl+P)
  280. -------------------------- */
  281. @media print {
  282. /* Cache l’UI du site */
  283. header[role=banner],
  284. footer[role=contentinfo],
  285. nav,
  286. .slick-arrow,
  287. .slick-dots,
  288. .layout__region--first {
  289. display: none !important;
  290. }
  291. .layout__region--top {
  292. flex: 0 1 100% !important;
  293. }
  294. .layout__region--top .block-entity-fieldnodefield-photo,
  295. .layout__region--top .top_right {
  296. width: 100% !important;
  297. }
  298. .top_top {
  299. flex-direction: column !important;
  300. }
  301. .layout__region--second {
  302. flex: 0 1 100% !important;
  303. margin: auto;
  304. margin-left: 3rem;
  305. }
  306. /* Cover */
  307. .cover.print-only {
  308. display: flex !important;
  309. min-height: 100vh;
  310. align-items: center;
  311. justify-content: center;
  312. text-align: center;
  313. break-after: page;
  314. }
  315. /* Back cover */
  316. .back-cover.print-only {
  317. break-before: page;
  318. }
  319. .back-cover.print-only .views-row-wrapper {
  320. display: flex;
  321. flex-direction: row;
  322. flex-wrap: wrap;
  323. }
  324. /* Optionnel : éviter l’URL après liens sur la cover */
  325. .cover.print-only a[href^=http]::after,
  326. .cover.print-only a[href^=https]::after {
  327. content: "" !important;
  328. }
  329. }
  330. /* -------------------------
  331. SCREEN preview (Paged.js)
  332. -------------------------- */
  333. @media screen {
  334. /* En écran normal : cacher print-only */
  335. body:not(.use-paged) .print-only {
  336. display: none !important;
  337. }
  338. /* Fond et affichage pages */
  339. body.use-paged {
  340. background: #ddd;
  341. }
  342. body.use-paged .pagedjs_pages {
  343. width: 100%;
  344. padding: 2rem 0;
  345. }
  346. body.use-paged .pagedjs_page {
  347. margin: 1rem auto;
  348. background: #fff;
  349. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
  350. }
  351. body.use-paged .pagedjs_pagebox {
  352. width: 210mm;
  353. min-height: 297mm;
  354. margin: 0 auto;
  355. background: #fff;
  356. }
  357. /* Paged.js met le contenu dans .pagedjs_page_content : on évite les surprises */
  358. body.use-paged .pagedjs_page_content {
  359. display: block;
  360. }
  361. }
  362. .path-projets-complets .layout-container header {
  363. top: inherit !important;
  364. left: inherit !important;
  365. }
  366. .path-projets-complets .layout-content {
  367. width: 60vw;
  368. margin: auto;
  369. }
  370. .path-projets-complets span {
  371. display: none;
  372. }
  373. .path-projets-complets .print-header {
  374. display: none;
  375. }
  376. .path-projets-complets .print-header img {
  377. width: 2cm;
  378. height: auto;
  379. }
  380. .path-projets-complets .print-header__text {
  381. text-transform: uppercase;
  382. font-family: "Source Code Pro";
  383. color: rgb(9, 57, 139);
  384. font-size: 0.8rem;
  385. font-weight: 500;
  386. text-transform: uppercase;
  387. text-align: end;
  388. }
  389. .path-projets-complets .node-type-projet {
  390. border-bottom: 1px solid black;
  391. padding-bottom: 5rem;
  392. margin-bottom: 5rem;
  393. }
  394. .path-projets-complets .projet-content {
  395. display: flex;
  396. flex-direction: column;
  397. }
  398. .path-projets-complets .field--name-field-photo .field__label {
  399. display: none;
  400. }
  401. .path-projets-complets .field--name-field-photo .field__items {
  402. height: 100%;
  403. display: grid;
  404. gap: 3px;
  405. }
  406. .path-projets-complets .field--name-field-photo .field__item {
  407. overflow: hidden;
  408. aspect-ratio: 3/2;
  409. }
  410. .path-projets-complets .field--name-field-photo .field__item img {
  411. width: 100%;
  412. height: 100%;
  413. object-fit: cover;
  414. display: block;
  415. }
  416. .path-projets-complets .field--name-field-photo .image-field-caption {
  417. display: none;
  418. }
  419. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:only-child) {
  420. grid-template-columns: 1fr;
  421. }
  422. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:only-child) .field__item {
  423. grid-column: 1;
  424. }
  425. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:nth-child(2)) {
  426. grid-template-columns: repeat(3, 1fr);
  427. }
  428. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:nth-child(2)) .field__item:first-child {
  429. grid-column: 1/4;
  430. }
  431. .path-projets-complets .field--name-field-photo .field__items .field__item:nth-child(n+8) {
  432. display: none;
  433. }
  434. .path-projets-complets .field--name-title {
  435. order: 2;
  436. font-family: "Marianne";
  437. font-size: 2rem;
  438. font-weight: 800;
  439. color: rgb(0, 158, 227);
  440. }
  441. @media (max-width: 1624px) {
  442. .path-projets-complets .field--name-title {
  443. font-size: 2.3rem;
  444. }
  445. }
  446. @media (max-width: 1384px) {
  447. .path-projets-complets .field--name-title {
  448. font-size: 2rem;
  449. }
  450. }
  451. @media (max-width: 1216px) {
  452. .path-projets-complets .field--name-title {
  453. font-size: 2rem;
  454. }
  455. }
  456. @media (max-width: 810px) {
  457. .path-projets-complets .field--name-title {
  458. font-size: 1.7rem;
  459. }
  460. }
  461. .path-projets-complets .field--name-title a {
  462. color: rgb(0, 158, 227);
  463. }
  464. .path-projets-complets .field--name-field-equipe {
  465. order: 3;
  466. color: rgb(9, 57, 139);
  467. font-size: 1.5rem;
  468. font-weight: 900;
  469. text-transform: uppercase;
  470. }
  471. @media (max-width: 1624px) {
  472. .path-projets-complets .field--name-field-equipe {
  473. font-size: 1.3rem;
  474. }
  475. }
  476. @media (max-width: 1216px) {
  477. .path-projets-complets .field--name-field-equipe {
  478. font-size: 1.1rem;
  479. }
  480. }
  481. @media (max-width: 810px) {
  482. .path-projets-complets .field--name-field-equipe {
  483. font-size: 1rem;
  484. }
  485. }
  486. .path-projets-complets .field--name-field-equipe .field__label {
  487. display: none;
  488. }
  489. .path-projets-complets .field--name-field-incube {
  490. order: 4;
  491. display: inline-flex;
  492. width: fit-content;
  493. background-color: rgb(225, 0, 15);
  494. color: white;
  495. font-weight: 800;
  496. padding-right: 0.3rem;
  497. padding-left: 0.2rem;
  498. margin-bottom: 1rem;
  499. margin-top: 1rem;
  500. }
  501. .path-projets-complets .field--name-field-incube::before {
  502. content: " Projet ";
  503. padding-right: 0.5rem;
  504. }
  505. .path-projets-complets .field--name-field-incube .field__label {
  506. display: inline;
  507. }
  508. .path-projets-complets .field--name-field-incube .field__item {
  509. display: none;
  510. }
  511. .path-projets-complets .field--name-field-neuf-rehabilitation,
  512. .path-projets-complets .field--name-field-encours-fini {
  513. display: none;
  514. }
  515. .path-projets-complets .field--name-field-region {
  516. display: flex;
  517. align-items: center;
  518. gap: 0.5rem;
  519. margin-bottom: 2rem;
  520. }
  521. .path-projets-complets .field--name-field-region::before {
  522. content: "";
  523. display: block;
  524. width: 20px;
  525. height: 20px;
  526. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  527. background-size: contain;
  528. }
  529. .path-projets-complets .field--name-field-type-de-moa {
  530. order: 6;
  531. }
  532. .path-projets-complets .field--name-field-type-de-projet {
  533. order: 7;
  534. }
  535. .path-projets-complets .field--name-field-etape-du-projet {
  536. order: 8;
  537. }
  538. .path-projets-complets .field--name-field-textes {
  539. order: 9;
  540. }
  541. .path-projets-complets .field--name-field-textes .field__label {
  542. display: none;
  543. }
  544. .path-projets-complets .field--name-field-textes .field--name-field-titre {
  545. color: rgb(9, 57, 139);
  546. font-size: 1.2rem;
  547. font-weight: 900;
  548. text-transform: uppercase;
  549. margin-bottom: 0 !important;
  550. flex-direction: row;
  551. }
  552. .path-projets-complets .field--name-field-textes .field--name-field-titre::after {
  553. content: " :";
  554. padding-left: 0.5rem;
  555. }
  556. .path-projets-complets .field--name-field-etape-du-projet a,
  557. .path-projets-complets .field--name-field-type-de-projet a,
  558. .path-projets-complets .field--name-field-type-de-moa a {
  559. color: black;
  560. }
  561. .path-projets-complets .field--name-field-etape-du-projet .field__label,
  562. .path-projets-complets .field--name-field-type-de-projet .field__label,
  563. .path-projets-complets .field--name-field-type-de-moa .field__label {
  564. color: rgb(9, 57, 139);
  565. font-size: 1.2rem;
  566. font-weight: 900;
  567. text-transform: uppercase;
  568. margin-bottom: 0 !important;
  569. flex-direction: row;
  570. }
  571. .path-projets-complets .field--name-field-etape-du-projet .field__label::after,
  572. .path-projets-complets .field--name-field-type-de-projet .field__label::after,
  573. .path-projets-complets .field--name-field-type-de-moa .field__label::after {
  574. content: ":";
  575. padding-left: 0.5rem;
  576. }
  577. @media print {
  578. .layout-container {
  579. display: block;
  580. }
  581. .path-projets-complets .layout-content {
  582. width: 80vw;
  583. }
  584. .path-projets-complets .layout-content .print-header {
  585. position: absolute;
  586. top: 1cm;
  587. right: 1cm;
  588. display: flex;
  589. align-items: center;
  590. gap: 0.5rem;
  591. }
  592. .path-projets-complets .layout-content .print-header img {
  593. width: 2cm;
  594. height: auto;
  595. }
  596. .path-projets-complets .layout-content .print-header__text {
  597. text-transform: uppercase;
  598. font-family: "Source Code Pro";
  599. color: rgb(9, 57, 139);
  600. font-size: 0.8rem;
  601. font-weight: 500;
  602. text-transform: uppercase;
  603. text-align: end;
  604. }
  605. .path-projets-complets .layout-content .views-row {
  606. margin-top: 3rem;
  607. break-after: page;
  608. page-break-after: always;
  609. }
  610. .path-projets-complets .layout-content .views-row .projet-header-print {
  611. padding-top: 3rem;
  612. }
  613. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  614. font-size: 1.2rem;
  615. }
  616. .path-projets-complets .layout-content .views-row .projet-body-print {
  617. padding-top: 3rem;
  618. }
  619. .path-projets-complets .views-row {
  620. page-break-before: always;
  621. break-before: page;
  622. }
  623. .path-projets-complets .views-row:first-child {
  624. page-break-before: auto;
  625. break-before: auto;
  626. }
  627. .path-projets-complets .projet-header-print {
  628. page-break-after: always;
  629. break-after: page;
  630. }
  631. }
  632. /*pages*/
  633. /*
  634. @import "pages/partials/header_footer";
  635. @import "pages/home";
  636. */
  637. .path-node.page-node-type-static .layout-container {
  638. overflow: unset;
  639. }
  640. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  641. padding-bottom: 3rem;
  642. height: 30vh;
  643. }
  644. @media (max-width: 810px) {
  645. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  646. padding-bottom: 0rem;
  647. }
  648. }
  649. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  650. width: fit-content;
  651. margin-left: 11%;
  652. margin-top: 15vh;
  653. }
  654. @media (max-width: 810px) {
  655. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  656. margin-left: 8%;
  657. margin-right: 5%;
  658. }
  659. }
  660. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  661. display: inline;
  662. font-family: "Source Code Pro";
  663. font-size: 2rem;
  664. font-weight: 800;
  665. text-transform: uppercase;
  666. }
  667. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  668. position: relative;
  669. }
  670. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  671. display: flex;
  672. justify-content: flex-end;
  673. position: -webkit-sticky;
  674. position: sticky;
  675. top: 10rem;
  676. }
  677. @media (max-width: 810px) {
  678. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  679. display: none;
  680. }
  681. }
  682. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  683. display: flex;
  684. width: 50%;
  685. background-color: rgb(255, 255, 255);
  686. padding-right: 2rem;
  687. }
  688. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  689. display: flex;
  690. font-size: 1rem;
  691. font-weight: 1000;
  692. color: rgb(9, 57, 139);
  693. border-bottom: 1px solid rgb(0, 158, 227);
  694. padding-bottom: 0.8rem;
  695. padding-right: 1rem;
  696. margin-top: 1rem;
  697. scroll-margin-top: 7em;
  698. }
  699. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  700. text-decoration: underline;
  701. }
  702. @media (max-width: 810px) {
  703. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  704. flex: 0 1 80%;
  705. margin: auto;
  706. }
  707. }
  708. @media (max-width: 479px) {
  709. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  710. padding-top: 5rem;
  711. }
  712. }
  713. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  714. margin-top: 1rem;
  715. background-color: rgb(255, 255, 255);
  716. }
  717. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  718. font-size: 1.5rem;
  719. font-weight: 1000;
  720. font-family: "Source Code Pro", monospace;
  721. color: rgb(9, 57, 139);
  722. text-transform: uppercase;
  723. margin-top: 2rem;
  724. margin-bottom: 0.8rem;
  725. }
  726. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  727. text-transform: none !important;
  728. }
  729. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  730. width: 100%;
  731. height: auto;
  732. }
  733. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  734. padding: 0.5rem 1rem 1rem 1.5rem;
  735. }
  736. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  737. margin-top: 0;
  738. }
  739. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  740. margin-top: 1rem;
  741. display: flex;
  742. flex-direction: column;
  743. width: 70%;
  744. }
  745. @media (max-width: 810px) {
  746. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  747. margin: auto;
  748. }
  749. }
  750. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  751. height: fit-content;
  752. border: 2px solid rgb(0, 158, 227);
  753. background-color: rgb(255, 255, 255);
  754. }
  755. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  756. min-height: 4rem;
  757. background: rgb(255, 255, 255);
  758. color: rgb(0, 158, 227);
  759. padding-left: 0.8rem;
  760. padding-top: 1rem;
  761. padding-bottom: 1rem;
  762. padding-right: 0.5rem;
  763. }
  764. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  765. display: none;
  766. }
  767. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  768. height: inherit;
  769. margin: auto;
  770. }
  771. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  772. content: url("../images/pictos/download.png");
  773. height: auto;
  774. padding-right: 1rem;
  775. }
  776. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  777. hyphens: auto;
  778. display: inline-flex;
  779. color: rgb(0, 158, 227);
  780. font-weight: 800;
  781. align-items: center;
  782. }
  783. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  784. margin: auto;
  785. height: fit-content;
  786. border: 2px solid rgb(0, 158, 227);
  787. min-height: 2rem;
  788. background: rgb(255, 255, 255);
  789. color: rgb(0, 158, 227);
  790. padding-left: 0.8rem;
  791. padding-top: 1rem;
  792. padding-bottom: 1rem;
  793. margin-bottom: 1rem;
  794. padding-right: 0.5rem;
  795. }
  796. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  797. display: inline-flex;
  798. justify-items: center;
  799. color: rgb(0, 158, 227);
  800. font-weight: 800;
  801. align-items: center;
  802. }
  803. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  804. content: url("../images/pictos/external_link.png");
  805. height: auto;
  806. padding-right: 1rem;
  807. }
  808. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  809. display: none;
  810. }
  811. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  812. margin-top: 3rem;
  813. }
  814. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  815. font-size: 0.8rem;
  816. color: rgb(0, 0, 0);
  817. font-weight: 900;
  818. }
  819. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  820. border: 2px solid rgb(0, 158, 227);
  821. background-color: rgb(255, 255, 255);
  822. margin-bottom: 1rem;
  823. padding: 1rem;
  824. }
  825. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  826. display: flex;
  827. flex-direction: column;
  828. }
  829. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  830. order: 2;
  831. text-transform: uppercase;
  832. color: rgb(0, 158, 227);
  833. font-weight: 900;
  834. font-size: 0.8rem;
  835. }
  836. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  837. order: 3;
  838. }
  839. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  840. margin: 0;
  841. }
  842. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  843. color: rgb(0, 0, 0);
  844. font-size: 1rem;
  845. font-weight: 900;
  846. }
  847. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  848. order: 4;
  849. }
  850. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  851. order: 5;
  852. font-weight: 800;
  853. }
  854. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  855. margin: 0;
  856. }
  857. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  858. display: none;
  859. }
  860. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  861. margin: 0;
  862. }
  863. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  864. display: none;
  865. }
  866. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  867. order: 1;
  868. width: 25%;
  869. }
  870. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  871. width: 100%;
  872. height: auto;
  873. border: solid 1px gray;
  874. }
  875. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution {
  876. order: 6;
  877. }
  878. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  879. display: none;
  880. }
  881. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  882. order: 7;
  883. display: flex;
  884. margin-top: 0.8rem;
  885. flex-direction: row;
  886. flex-wrap: wrap;
  887. }
  888. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  889. display: none;
  890. }
  891. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  892. display: flex;
  893. flex-direction: row;
  894. flex-wrap: wrap;
  895. }
  896. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  897. padding-bottom: 0.5rem;
  898. margin-right: 0.5rem;
  899. padding-right: 0.3rem;
  900. font-size: 0.8rem;
  901. }
  902. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  903. background: rgb(9, 57, 139);
  904. color: rgb(255, 255, 255);
  905. font-weight: 800;
  906. vertical-align: super;
  907. padding-left: 0.1rem;
  908. padding-right: 0.1rem;
  909. display: inline-flex;
  910. }
  911. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  912. display: none;
  913. }
  914. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  915. width: 100vw;
  916. height: auto;
  917. padding-top: 5rem;
  918. background: rgba(0, 158, 227, 0.2);
  919. }
  920. @media (max-width: 810px) {
  921. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  922. height: auto;
  923. }
  924. }
  925. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  926. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  927. max-height: fit-content;
  928. padding-top: 2rem;
  929. }
  930. }
  931. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  932. height: auto;
  933. }
  934. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  935. margin-bottom: 0;
  936. }
  937. @media (max-width: 810px) {
  938. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  939. width: 100vw !important;
  940. height: auto !important;
  941. }
  942. }
  943. @media (max-width: 479px) {
  944. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  945. height: auto !important;
  946. width: 100vw !important;
  947. }
  948. }
  949. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  950. padding-left: 0px !important;
  951. }
  952. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  953. color: rgb(0, 0, 0);
  954. line-height: 1.5rem;
  955. width: 80%;
  956. height: auto;
  957. margin: auto;
  958. margin-bottom: 2rem;
  959. }
  960. @media (max-width: 810px) {
  961. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  962. width: 90%;
  963. height: auto;
  964. }
  965. }
  966. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  967. display: flex;
  968. flex-direction: row;
  969. justify-content: space-between;
  970. margin-left: 2rem;
  971. }
  972. @media (max-width: 810px) {
  973. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  974. display: flex;
  975. flex-direction: column;
  976. height: auto;
  977. margin-left: 0;
  978. }
  979. }
  980. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  981. width: 50%;
  982. display: flex;
  983. justify-content: end;
  984. }
  985. @media (max-width: 810px) {
  986. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo {
  987. width: 100%;
  988. }
  989. }
  990. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item {
  991. display: flex;
  992. max-height: 420px;
  993. }
  994. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  995. max-width: 100%;
  996. max-height: 456px;
  997. object-fit: cover;
  998. object-position: center;
  999. }
  1000. @media (max-width: 810px) {
  1001. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1002. max-height: 310px;
  1003. max-width: 100%;
  1004. object-fit: cover;
  1005. padding-left: 0;
  1006. margin-bottom: 1rem;
  1007. }
  1008. }
  1009. @media (max-width: 724px) {
  1010. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1011. max-height: 400px;
  1012. }
  1013. }
  1014. @media (max-width: 680px) {
  1015. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_photo .field--name-field-images .field__item img {
  1016. max-height: 200px;
  1017. object-fit: cover;
  1018. margin: auto;
  1019. padding-left: 0;
  1020. padding-bottom: 1rem;
  1021. }
  1022. }
  1023. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  1024. width: 45%;
  1025. align-content: center;
  1026. color: rgb(9, 57, 139) !important;
  1027. }
  1028. @media (max-width: 810px) {
  1029. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos {
  1030. width: 100%;
  1031. }
  1032. }
  1033. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date:empty,
  1034. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu:empty,
  1035. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title:empty,
  1036. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre:empty,
  1037. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type:empty,
  1038. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .ul:empty {
  1039. display: none;
  1040. }
  1041. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  1042. font-size: 1.3rem;
  1043. }
  1044. @media (max-width: 811px) {
  1045. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date {
  1046. font-size: 1rem;
  1047. }
  1048. }
  1049. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date div {
  1050. display: flex !important;
  1051. flex-direction: row;
  1052. }
  1053. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  1054. display: flex;
  1055. flex-direction: row;
  1056. font-size: 1.3rem;
  1057. font-weight: 800;
  1058. padding-right: 1rem;
  1059. width: fit-content;
  1060. }
  1061. @media (min-width: 811px) {
  1062. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-date time {
  1063. font-size: 0.9rem;
  1064. }
  1065. }
  1066. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  1067. font-size: 1.3rem;
  1068. padding-top: 1rem;
  1069. }
  1070. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu .field__label {
  1071. display: none;
  1072. }
  1073. @media (max-width: 811px) {
  1074. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-lieu {
  1075. display: inline-flex;
  1076. font-size: 0.9rem;
  1077. padding-top: 0.5rem;
  1078. }
  1079. }
  1080. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  1081. line-height: 1.1;
  1082. font-size: 1.5rem;
  1083. padding-top: 1rem;
  1084. }
  1085. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title h2 a {
  1086. color: rgb(9, 57, 139) !important;
  1087. }
  1088. @media (max-width: 810px) {
  1089. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-title {
  1090. font-size: 0.9rem;
  1091. padding-top: 0.5rem;
  1092. }
  1093. }
  1094. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  1095. display: none;
  1096. font-weight: 800;
  1097. }
  1098. @media (min-width: 811px) {
  1099. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-sous-titre {
  1100. font-size: 1.5rem;
  1101. }
  1102. }
  1103. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  1104. padding-top: 2rem;
  1105. font-size: 1.3rem;
  1106. }
  1107. @media (max-width: 810px) {
  1108. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field--name-field-actu-type {
  1109. font-size: 0.9rem;
  1110. padding-top: 1rem;
  1111. }
  1112. }
  1113. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .field:not(.field--name-field-images) {
  1114. width: 100%;
  1115. }
  1116. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos h2 {
  1117. margin: 0;
  1118. }
  1119. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos a {
  1120. color: rgb(0, 0, 0);
  1121. }
  1122. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home .home_actu_infos .inline.links {
  1123. display: none;
  1124. }
  1125. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1126. visibility: visible;
  1127. display: flex;
  1128. flex-flow: row;
  1129. justify-content: center;
  1130. background: rgba(0, 158, 227, 0.2);
  1131. padding-top: 3rem;
  1132. padding-bottom: 3rem;
  1133. border-bottom: 5px solid rgb(0, 158, 227);
  1134. }
  1135. @media (max-width: 479px) {
  1136. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1137. padding-top: 2rem;
  1138. padding-bottom: 2rem;
  1139. }
  1140. }
  1141. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  1142. margin: auto;
  1143. height: fit-content;
  1144. padding: 0.4rem 1rem;
  1145. font-size: 0.8rem;
  1146. margin: 0;
  1147. background-color: rgb(255, 255, 255);
  1148. border: 2px solid rgb(0, 158, 227);
  1149. list-style: none;
  1150. display: inline-flex;
  1151. }
  1152. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  1153. margin: 0;
  1154. }
  1155. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  1156. text-transform: uppercase;
  1157. font-weight: 700;
  1158. color: rgb(0, 158, 227);
  1159. display: inline-flex;
  1160. align-items: center;
  1161. }
  1162. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  1163. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  1164. }
  1165. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  1166. padding-top: 2rem;
  1167. padding-bottom: 4rem;
  1168. }
  1169. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1170. width: 80%;
  1171. margin: auto;
  1172. }
  1173. @media (max-width: 479px) {
  1174. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1175. width: 80%;
  1176. }
  1177. }
  1178. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) {
  1179. display: flex;
  1180. flex-direction: row;
  1181. flex-wrap: wrap;
  1182. }
  1183. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static div:first-child:not(.field__item):not(.field) :nth-child(4) {
  1184. order: 3;
  1185. }
  1186. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  1187. z-index: 95;
  1188. align-self: flex-end;
  1189. width: fit-content;
  1190. height: fit-content;
  1191. padding: 0.4rem 1rem;
  1192. font-size: 0.8rem;
  1193. margin: 0;
  1194. background-color: rgb(255, 255, 255);
  1195. border: 2px solid rgb(0, 158, 227);
  1196. list-style: none;
  1197. }
  1198. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  1199. text-transform: uppercase;
  1200. font-weight: 700;
  1201. color: rgb(0, 158, 227);
  1202. display: inline-flex;
  1203. align-items: center;
  1204. }
  1205. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a:after {
  1206. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  1207. }
  1208. @media (max-width: 810px) {
  1209. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images {
  1210. width: 100%;
  1211. }
  1212. }
  1213. @media (max-width: 810px) {
  1214. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images .field__item {
  1215. justify-content: center;
  1216. display: flex;
  1217. }
  1218. }
  1219. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images .field__item img {
  1220. width: 15rem;
  1221. height: auto;
  1222. }
  1223. @media (max-width: 810px) {
  1224. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-images .field__item img {
  1225. width: 12rem;
  1226. padding-bottom: 1rem;
  1227. }
  1228. }
  1229. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  1230. display: none;
  1231. }
  1232. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  1233. flex: 1 1 50px;
  1234. padding-left: 1rem;
  1235. }
  1236. @media (max-width: 810px) {
  1237. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  1238. padding-left: 0em;
  1239. flex: 1 1 100%;
  1240. }
  1241. }
  1242. @media (max-width: 479px) {
  1243. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche {
  1244. padding-left: 0em;
  1245. }
  1246. }
  1247. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  1248. background-color: rgb(255, 255, 255);
  1249. font-size: 1.5rem;
  1250. width: 110%;
  1251. padding-bottom: 2rem;
  1252. margin-block-start: 0;
  1253. text-align: start !important;
  1254. }
  1255. @media (max-width: 810px) {
  1256. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-accroche p {
  1257. font-size: 1.2rem;
  1258. width: 100%;
  1259. }
  1260. }
  1261. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  1262. flex: 0 0 80%;
  1263. padding-top: 4rem;
  1264. margin: auto;
  1265. }
  1266. @media (max-width: 479px) {
  1267. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos {
  1268. flex: 0 0 100%;
  1269. }
  1270. }
  1271. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-field-videos .field__items .field__item:nth-of-type(1) {
  1272. display: none;
  1273. }
  1274. .path-frontpage .block-views-blockprojets-block-4 {
  1275. border-top: 5px solid rgb(0, 158, 227);
  1276. background: rgba(0, 158, 227, 0.2);
  1277. padding-top: 2rem;
  1278. padding-bottom: 4rem;
  1279. }
  1280. @media (max-width: 810px) {
  1281. .path-frontpage .block-views-blockprojets-block-4 {
  1282. padding-bottom: 0rem;
  1283. }
  1284. }
  1285. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1286. width: 80%;
  1287. margin: auto;
  1288. padding-top: 1rem;
  1289. padding-bottom: 5rem;
  1290. text-transform: uppercase;
  1291. color: rgb(225, 0, 15);
  1292. font-family: "Source Code Pro";
  1293. font-weight: 1000;
  1294. }
  1295. @media (max-width: 479px) {
  1296. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1297. padding-bottom: 1rem;
  1298. }
  1299. }
  1300. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  1301. width: 80%;
  1302. margin: auto;
  1303. }
  1304. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1305. display: flex;
  1306. flex-direction: row;
  1307. justify-content: space-between;
  1308. }
  1309. @media (max-width: 810px) {
  1310. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1311. flex-direction: column;
  1312. }
  1313. }
  1314. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1315. width: 49%;
  1316. }
  1317. @media (max-width: 810px) {
  1318. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1319. width: 100%;
  1320. margin-bottom: 1rem;
  1321. }
  1322. }
  1323. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1324. color: rgb(9, 57, 139);
  1325. line-height: 1.5rem;
  1326. }
  1327. @media (max-width: 810px) {
  1328. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1329. padding-left: 0rem;
  1330. padding-right: 0rem;
  1331. padding-top: 2rem;
  1332. }
  1333. }
  1334. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child {
  1335. display: flex;
  1336. flex-direction: column;
  1337. max-height: fit-content;
  1338. }
  1339. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child a {
  1340. color: rgb(9, 57, 139);
  1341. }
  1342. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo {
  1343. order: 1;
  1344. }
  1345. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item {
  1346. display: none;
  1347. }
  1348. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  1349. display: block;
  1350. }
  1351. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-photo img {
  1352. width: 100%;
  1353. height: auto;
  1354. max-height: 400px;
  1355. object-fit: cover;
  1356. }
  1357. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse {
  1358. order: 2;
  1359. display: flex;
  1360. text-transform: uppercase;
  1361. font-size: 0.9rem;
  1362. font-weight: 800;
  1363. margin-top: 0.8rem;
  1364. line-height: 0.6rem;
  1365. }
  1366. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address {
  1367. display: flex;
  1368. flex-direction: row;
  1369. margin: 0;
  1370. }
  1371. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  1372. padding-top: 0 !important;
  1373. padding-bottom: 0 !important;
  1374. }
  1375. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  1376. content: ",";
  1377. margin-right: 0.3rem;
  1378. }
  1379. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-adresse .address .country {
  1380. padding-top: 0 !important;
  1381. padding-bottom: 0 !important;
  1382. }
  1383. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-sous-titre {
  1384. margin-top: 0.8rem;
  1385. font-size: 0.9rem;
  1386. font-weight: 800;
  1387. order: 4;
  1388. }
  1389. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title {
  1390. order: 3;
  1391. margin-top: 0.8rem;
  1392. font-size: 0.9rem;
  1393. font-weight: 800;
  1394. }
  1395. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-title h2 {
  1396. margin: 0;
  1397. }
  1398. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-incube {
  1399. order: 4;
  1400. color: rgb(225, 0, 15);
  1401. margin-top: 0.8rem;
  1402. font-size: 0.7rem;
  1403. }
  1404. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-region {
  1405. display: none;
  1406. order: 5;
  1407. color: rgb(0, 0, 0);
  1408. font-size: 0.7rem;
  1409. }
  1410. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa {
  1411. display: none;
  1412. order: 6;
  1413. }
  1414. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-moa a {
  1415. color: rgb(0, 0, 0);
  1416. font-size: 0.7rem;
  1417. }
  1418. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet {
  1419. display: none;
  1420. order: 7;
  1421. }
  1422. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-type-de-projet a {
  1423. color: rgb(0, 0, 0);
  1424. font-size: 0.7rem;
  1425. }
  1426. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet div:first-child .field--name-field-etape-du-projet {
  1427. display: none;
  1428. order: 8;
  1429. color: rgb(0, 0, 0);
  1430. font-size: 0.7rem;
  1431. }
  1432. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1433. display: flex;
  1434. flex-flow: row-reverse;
  1435. background: rgba(0, 158, 227, 0.2);
  1436. padding-right: 10%;
  1437. padding-top: 2rem;
  1438. padding-bottom: 4rem;
  1439. }
  1440. @media (max-width: 479px) {
  1441. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1442. padding-top: 2rem;
  1443. padding-bottom: 2rem;
  1444. }
  1445. }
  1446. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1447. height: fit-content;
  1448. padding: 0.4rem 1rem;
  1449. font-size: 0.8rem;
  1450. margin: 0;
  1451. background-color: rgb(255, 255, 255);
  1452. border: 2px solid rgb(0, 158, 227);
  1453. list-style: none;
  1454. display: inline-flex;
  1455. }
  1456. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1457. margin: 0;
  1458. }
  1459. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1460. text-transform: uppercase;
  1461. font-weight: 700;
  1462. color: rgb(0, 158, 227);
  1463. display: inline-flex;
  1464. align-items: center;
  1465. }
  1466. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1467. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  1468. }
  1469. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1470. height: 500px !important;
  1471. }
  1472. .node-id-20 {
  1473. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1474. background-repeat: no-repeat;
  1475. background-position-y: 7rem;
  1476. max-width: 100vw;
  1477. background-size: contain;
  1478. }
  1479. .node-id-20 .layout__region--top {
  1480. padding-bottom: 3rem;
  1481. height: 30vh;
  1482. }
  1483. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1484. font-family: "Source Code Pro";
  1485. font-size: 2rem;
  1486. font-weight: 800;
  1487. color: rgb(255, 255, 255);
  1488. background-color: rgb(0, 158, 227);
  1489. text-transform: uppercase;
  1490. }
  1491. .field--name-field-partenaires {
  1492. padding-top: 3rem;
  1493. }
  1494. .field--name-field-partenaires .paragraph--type--partenaire {
  1495. background-color: rgb(255, 255, 255);
  1496. width: 100%;
  1497. padding-bottom: 3rem;
  1498. display: grid;
  1499. grid-template-columns: repeat(7, 1fr);
  1500. grid-template-rows: repeat(auto-fill);
  1501. }
  1502. @media (max-width: 810px) {
  1503. .field--name-field-partenaires .paragraph--type--partenaire {
  1504. display: flex;
  1505. flex-direction: column;
  1506. }
  1507. }
  1508. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1509. grid-column: 1/2;
  1510. grid-row: 2;
  1511. margin-top: 2rem;
  1512. padding-right: 1rem;
  1513. }
  1514. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1515. grid-column: 2/8;
  1516. grid-row: 1;
  1517. font-weight: 800;
  1518. }
  1519. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1520. grid-column: 2/8;
  1521. grid-row: 2;
  1522. }
  1523. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1524. grid-column: 2/8;
  1525. grid-row: 3;
  1526. }
  1527. .field--name-field-partenaires a {
  1528. color: rgb(0, 0, 0);
  1529. font-weight: 800;
  1530. }
  1531. .field--name-field-partenaires a svg {
  1532. display: none;
  1533. }
  1534. .field--name-field-equipes {
  1535. padding-top: 3rem;
  1536. }
  1537. .field--name-field-equipes .paragraph--type--equipe {
  1538. background-color: rgb(255, 255, 255);
  1539. width: 100%;
  1540. }
  1541. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1542. width: 100%;
  1543. padding-bottom: 3rem;
  1544. display: grid;
  1545. grid-template-columns: repeat(7, 1fr);
  1546. grid-template-rows: repeat(auto-fill);
  1547. }
  1548. @media (max-width: 810px) {
  1549. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1550. display: flex;
  1551. flex-direction: column;
  1552. }
  1553. }
  1554. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1555. grid-column: 1/2;
  1556. grid-row: 1/span 3;
  1557. padding-right: 1rem;
  1558. }
  1559. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1560. border-radius: 50%;
  1561. }
  1562. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1563. grid-column: 2/span 3;
  1564. grid-row: 1;
  1565. font-weight: 800;
  1566. }
  1567. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1568. grid-column: 2/span 3;
  1569. grid-row: 2;
  1570. }
  1571. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1572. grid-column: 2/8;
  1573. grid-row: 3;
  1574. }
  1575. .field--name-field-equipes a {
  1576. color: rgb(0, 0, 0);
  1577. font-weight: 800;
  1578. }
  1579. .field--name-field-equipes a svg {
  1580. display: none;
  1581. }
  1582. .path-node.page-node-type-actualite .layout-container {
  1583. overflow: unset;
  1584. }
  1585. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1586. background: none !important;
  1587. }
  1588. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1589. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1590. padding-bottom: 4rem;
  1591. }
  1592. @media (max-width: 900px) {
  1593. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1594. order: 1;
  1595. }
  1596. }
  1597. @media (max-width: 568px) {
  1598. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1599. padding-left: 2rem;
  1600. padding-right: 2rem;
  1601. }
  1602. }
  1603. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1604. display: grid;
  1605. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1606. }
  1607. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1608. order: 5;
  1609. grid-column: 2;
  1610. margin-top: 1rem;
  1611. color: rgb(9, 57, 139);
  1612. }
  1613. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1614. order: 3;
  1615. grid-column: 2/span 7;
  1616. margin: 0;
  1617. color: rgb(9, 57, 139);
  1618. }
  1619. @media (max-width: 568px) {
  1620. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1621. grid-column: 2/span 8;
  1622. max-width: 80vw;
  1623. }
  1624. }
  1625. @media (max-width: 499px) {
  1626. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1627. grid-column: 2/span 9;
  1628. max-width: 80vw;
  1629. }
  1630. }
  1631. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1632. font-family: "Marianne";
  1633. font-size: 2.5rem;
  1634. font-weight: 800;
  1635. line-height: 3rem;
  1636. }
  1637. @media (max-width: 810px) {
  1638. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1639. font-size: 1.9em;
  1640. line-height: 2.3rem;
  1641. }
  1642. }
  1643. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1644. order: 1;
  1645. padding-top: 2rem;
  1646. grid-column: 2/span 3;
  1647. text-transform: uppercase;
  1648. color: rgb(9, 57, 139);
  1649. font-size: 1.2rem;
  1650. font-weight: 800;
  1651. margin-top: 1rem;
  1652. }
  1653. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date {
  1654. display: flex;
  1655. flex-direction: row;
  1656. justify-content: flex-start;
  1657. }
  1658. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date .field--name-field-date .field__item {
  1659. padding-right: 2 rem;
  1660. }
  1661. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1662. order: 2;
  1663. grid-column: 2/span 4;
  1664. text-transform: uppercase;
  1665. color: rgb(9, 57, 139);
  1666. font-size: 1.2rem;
  1667. font-weight: 800;
  1668. margin-top: 1rem;
  1669. }
  1670. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu .field--name-field-lieu {
  1671. display: flex;
  1672. flex-direction: row;
  1673. justify-content: flex-start;
  1674. }
  1675. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1676. order: 4;
  1677. grid-column: 2/span 7;
  1678. margin-top: 1rem;
  1679. font-weight: 800;
  1680. color: rgb(9, 57, 139);
  1681. }
  1682. @media (max-width: 568px) {
  1683. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1684. grid-column: 2/span 8;
  1685. max-width: 80vw;
  1686. }
  1687. }
  1688. @media (max-width: 499px) {
  1689. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1690. grid-column: 2/span 9;
  1691. max-width: 80vw;
  1692. }
  1693. }
  1694. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1695. order: 6;
  1696. grid-column: 5/span 3;
  1697. width: 600px;
  1698. }
  1699. @media (max-width: 568px) {
  1700. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .field--name-field-images {
  1701. width: 80%;
  1702. }
  1703. }
  1704. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1705. padding-top: 2rem;
  1706. width: 100%;
  1707. max-height: 400px;
  1708. object-fit: contain;
  1709. }
  1710. @media (max-width: 568px) {
  1711. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1712. max-width: 90vw;
  1713. }
  1714. }
  1715. @media (max-width: 900px) {
  1716. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1717. grid-column: 3/span 5;
  1718. }
  1719. }
  1720. @media (max-width: 568px) {
  1721. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1722. grid-column: 1/span 8;
  1723. }
  1724. }
  1725. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1726. font-size: 0.8rem;
  1727. text-align: center;
  1728. }
  1729. @media (max-width: 810px) {
  1730. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1731. margin-left: 5%;
  1732. margin-right: 5%;
  1733. font-size: 0.7rem;
  1734. }
  1735. }
  1736. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1737. right: -65px;
  1738. }
  1739. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1740. left: -65px;
  1741. }
  1742. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1743. display: inline-block;
  1744. }
  1745. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li:only-child {
  1746. display: none;
  1747. }
  1748. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dotted.slick-slider {
  1749. margin-bottom: 0 !important;
  1750. }
  1751. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1752. display: flex;
  1753. justify-content: flex-end;
  1754. position: -webkit-sticky;
  1755. position: sticky;
  1756. top: 10rem;
  1757. }
  1758. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1759. display: flex;
  1760. justify-content: flex-end;
  1761. width: 50%;
  1762. background-color: rgb(255, 255, 255);
  1763. padding-right: 2rem;
  1764. }
  1765. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  1766. display: flex;
  1767. font-size: 1rem;
  1768. font-weight: 1000;
  1769. color: rgb(9, 57, 139);
  1770. border-bottom: 1px solid rgb(0, 158, 227);
  1771. padding-bottom: 0.5rem;
  1772. padding-right: 1rem;
  1773. margin-bottom: 0.8rem;
  1774. }
  1775. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  1776. text-decoration: underline;
  1777. }
  1778. @media (max-width: 810px) {
  1779. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  1780. display: none;
  1781. }
  1782. }
  1783. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1784. width: 50%;
  1785. }
  1786. @media (max-width: 900px) {
  1787. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1788. order: 3;
  1789. width: 100vw;
  1790. }
  1791. }
  1792. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1793. width: 90%;
  1794. }
  1795. @media (max-width: 900px) {
  1796. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1797. width: 90%;
  1798. margin: auto;
  1799. }
  1800. }
  1801. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  1802. margin-top: 0;
  1803. }
  1804. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .field--type-text-with-summary {
  1805. background-color: white;
  1806. }
  1807. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  1808. background-color: rgb(255, 255, 255);
  1809. }
  1810. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--name-field-titre {
  1811. font-size: 1.5rem;
  1812. font-weight: 1000;
  1813. font-family: "Source Code Pro";
  1814. color: rgb(9, 57, 139);
  1815. text-transform: uppercase;
  1816. margin-top: 2rem;
  1817. margin-bottom: 0.8rem;
  1818. }
  1819. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  1820. text-transform: none !important;
  1821. }
  1822. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  1823. width: 100%;
  1824. height: auto;
  1825. }
  1826. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  1827. padding-right: 2rem;
  1828. }
  1829. @media (max-width: 900px) {
  1830. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  1831. padding-right: 0;
  1832. }
  1833. }
  1834. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  1835. margin-top: 0;
  1836. }
  1837. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  1838. color: rgb(0, 0, 0);
  1839. text-decoration: underline;
  1840. }
  1841. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  1842. display: none;
  1843. }
  1844. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  1845. overflow-y: visible !important;
  1846. }
  1847. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  1848. word-wrap: break-word;
  1849. }
  1850. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  1851. font-size: 1.5rem;
  1852. font-weight: 1000;
  1853. font-family: "Source Code Pro";
  1854. color: rgb(9, 57, 139);
  1855. text-transform: uppercase;
  1856. margin-top: 2rem;
  1857. margin-bottom: 0.8rem;
  1858. }
  1859. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1860. display: flex;
  1861. flex-direction: row;
  1862. justify-content: space-between;
  1863. flex-wrap: wrap;
  1864. }
  1865. @media (max-width: 568px) {
  1866. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1867. flex-direction: column;
  1868. }
  1869. }
  1870. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire {
  1871. display: flex;
  1872. flex-direction: column;
  1873. align-items: center;
  1874. }
  1875. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire .field--name-field-lien {
  1876. padding-top: 1rem;
  1877. }
  1878. @media (max-width: 900px) {
  1879. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1880. flex: 0 1 80%;
  1881. margin: auto;
  1882. }
  1883. }
  1884. @media (max-width: 1005px) {
  1885. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  1886. flex: 0 1 100%;
  1887. order: 2;
  1888. }
  1889. }
  1890. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1891. display: flex;
  1892. flex-direction: column;
  1893. width: 65%;
  1894. }
  1895. @media (max-width: 900px) {
  1896. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1897. margin: auto;
  1898. }
  1899. }
  1900. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1901. height: fit-content;
  1902. width: fit-content;
  1903. border: 2px solid rgb(0, 158, 227);
  1904. background-color: rgb(255, 255, 255);
  1905. margin-bottom: 1rem;
  1906. min-height: 4rem;
  1907. color: rgb(0, 158, 227);
  1908. padding: 1rem;
  1909. }
  1910. @media (max-width: 900px) {
  1911. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1912. width: auto;
  1913. padding-right: 1rem;
  1914. }
  1915. }
  1916. @media (max-width: 568px) {
  1917. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1918. width: auto;
  1919. }
  1920. }
  1921. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  1922. display: none;
  1923. }
  1924. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  1925. height: inherit;
  1926. margin: auto;
  1927. width: fit-content;
  1928. }
  1929. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  1930. content: url("../images/pictos/download.png");
  1931. padding-right: 1rem;
  1932. margin-right: 1rem;
  1933. }
  1934. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  1935. hyphens: auto;
  1936. display: inline-flex;
  1937. align-items: center;
  1938. color: rgb(0, 158, 227);
  1939. font-weight: 800;
  1940. }
  1941. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1942. margin: auto;
  1943. width: fit-content;
  1944. height: fit-content;
  1945. border: 2px solid rgb(0, 158, 227);
  1946. min-height: 4rem;
  1947. background: rgb(255, 255, 255);
  1948. color: rgb(0, 158, 227);
  1949. padding: 1rem;
  1950. margin-bottom: 1rem;
  1951. }
  1952. @media (max-width: 900px) {
  1953. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  1954. width: auto;
  1955. padding-right: 1rem;
  1956. }
  1957. }
  1958. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  1959. display: inline-flex;
  1960. align-items: center;
  1961. color: rgb(0, 158, 227);
  1962. font-weight: 800;
  1963. }
  1964. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  1965. content: url("../images/pictos/external_link.png");
  1966. padding-right: 1rem;
  1967. }
  1968. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  1969. display: none;
  1970. }
  1971. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  1972. margin-top: 3rem;
  1973. }
  1974. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  1975. font-size: 0.8rem;
  1976. color: rgb(0, 0, 0);
  1977. font-weight: 900;
  1978. }
  1979. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  1980. border: 2px solid rgb(0, 158, 227);
  1981. padding: 1rem;
  1982. height: fit-content;
  1983. margin-bottom: 1rem;
  1984. background-color: rgb(255, 255, 255);
  1985. display: flex;
  1986. flex-direction: column;
  1987. }
  1988. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  1989. display: flex;
  1990. flex-direction: column;
  1991. }
  1992. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-type-de-ressource {
  1993. order: 2;
  1994. text-transform: uppercase;
  1995. color: rgb(0, 158, 227);
  1996. font-weight: 900;
  1997. font-size: 0.8rem;
  1998. }
  1999. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title {
  2000. order: 3;
  2001. }
  2002. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 {
  2003. margin: 0;
  2004. }
  2005. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-title h2 a {
  2006. color: rgb(0, 0, 0);
  2007. font-size: 1rem;
  2008. font-weight: 900;
  2009. font-style: italic;
  2010. }
  2011. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-sous-titre {
  2012. order: 4;
  2013. }
  2014. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- {
  2015. order: 5;
  2016. font-weight: 800;
  2017. }
  2018. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- p {
  2019. margin: 0;
  2020. }
  2021. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  2022. display: none;
  2023. }
  2024. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition p {
  2025. margin: 0;
  2026. }
  2027. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-edition .field__label {
  2028. display: none;
  2029. }
  2030. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images {
  2031. display: none;
  2032. order: 1;
  2033. width: 25%;
  2034. }
  2035. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-images img {
  2036. width: 100%;
  2037. height: auto;
  2038. margin: auto;
  2039. }
  2040. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs {
  2041. order: 6;
  2042. display: flex;
  2043. margin-top: 2rem;
  2044. flex-direction: row;
  2045. flex-wrap: wrap;
  2046. }
  2047. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  2048. display: flex;
  2049. flex-direction: row;
  2050. flex-wrap: wrap;
  2051. }
  2052. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  2053. padding-bottom: 0.5rem;
  2054. margin-right: 0.5rem;
  2055. padding-right: 0.3rem;
  2056. font-size: 0.8rem;
  2057. }
  2058. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  2059. background: rgb(9, 57, 139);
  2060. color: rgb(255, 255, 255);
  2061. font-weight: 800;
  2062. vertical-align: super;
  2063. padding-left: 0.1rem;
  2064. padding-right: 0.1rem;
  2065. display: inline-flex;
  2066. }
  2067. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div ul.links.inline {
  2068. display: none;
  2069. }
  2070. .node-id-35 .region-content {
  2071. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  2072. background-repeat: no-repeat;
  2073. max-width: 100vw;
  2074. background-size: contain;
  2075. }
  2076. .node-id-35 .layout__region--top {
  2077. padding-bottom: 3rem;
  2078. height: 30vh;
  2079. }
  2080. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2081. display: none;
  2082. height: inherit;
  2083. }
  2084. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2085. font-family: "Source Code Pro";
  2086. font-size: 2rem;
  2087. font-weight: 800;
  2088. color: rgb(255, 255, 255);
  2089. background-color: rgb(0, 158, 227);
  2090. text-transform: uppercase;
  2091. }
  2092. .node-id-3 {
  2093. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2094. background-repeat: no-repeat;
  2095. background-position-y: 7rem;
  2096. max-width: 100vw;
  2097. background-size: contain;
  2098. }
  2099. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2100. display: none;
  2101. height: inherit;
  2102. }
  2103. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2104. color: rgb(0, 158, 227);
  2105. background-color: rgb(255, 255, 255);
  2106. }
  2107. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2108. background: rgb(0, 158, 227) !important;
  2109. color: rgb(255, 255, 255) !important;
  2110. }
  2111. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  2112. color: rgb(255, 255, 255) !important;
  2113. }
  2114. .node-id-3 .block-entity-fieldnodefield-liens {
  2115. display: none;
  2116. }
  2117. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2118. background: rgb(0, 158, 227);
  2119. color: rgb(255, 255, 255);
  2120. }
  2121. .node-id-3 .block-entity-fieldnodefield-ress {
  2122. margin-top: 3rem;
  2123. }
  2124. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  2125. font-size: 0.8rem;
  2126. color: rgb(0, 0, 0);
  2127. font-weight: 900;
  2128. }
  2129. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  2130. display: flex;
  2131. flex-direction: column;
  2132. border: 2px solid rgb(0, 158, 227);
  2133. padding: 1rem;
  2134. height: fit-content;
  2135. margin-bottom: 1rem;
  2136. background-color: rgb(255, 255, 255);
  2137. }
  2138. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  2139. border-top: 1px solid rgb(0, 158, 227);
  2140. padding-top: 1rem;
  2141. }
  2142. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  2143. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2144. align-self: flex-end;
  2145. }
  2146. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  2147. color: rgb(0, 0, 0);
  2148. font-size: 1.4rem;
  2149. font-weight: 600;
  2150. }
  2151. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  2152. font-weight: 800;
  2153. }
  2154. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  2155. margin: 0;
  2156. }
  2157. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2158. display: none;
  2159. }
  2160. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  2161. margin: 0;
  2162. }
  2163. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  2164. display: none;
  2165. }
  2166. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  2167. display: none;
  2168. width: 50%;
  2169. }
  2170. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  2171. width: 100%;
  2172. height: auto;
  2173. }
  2174. .path-actualites {
  2175. background-color: rgba(0, 158, 227, 0.2);
  2176. margin: 0;
  2177. }
  2178. .path-actualites .block-region-content {
  2179. display: grid;
  2180. grid-template-columns: 1fr 8fr 1fr;
  2181. margin: auto;
  2182. padding-top: 3rem;
  2183. }
  2184. .path-actualites .block-region-content .block-views {
  2185. grid-column: 2;
  2186. }
  2187. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2188. display: flex;
  2189. flex-direction: row;
  2190. flex-wrap: wrap;
  2191. }
  2192. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2193. width: 25%;
  2194. flex: 0 0 25%;
  2195. }
  2196. @media (max-width: 810px) {
  2197. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2198. flex-direction: column;
  2199. }
  2200. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2201. width: 100%;
  2202. }
  2203. }
  2204. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2205. padding-top: 0;
  2206. }
  2207. .path-actualites .block-region-content .block-views .node-type-actualite {
  2208. color: rgb(9, 57, 139);
  2209. line-height: 1.5rem;
  2210. padding: 0.5rem;
  2211. padding-right: 1rem;
  2212. padding-left: 1rem;
  2213. }
  2214. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2215. display: flex;
  2216. flex-direction: column;
  2217. }
  2218. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2219. color: rgb(9, 57, 139);
  2220. }
  2221. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2222. order: 1;
  2223. }
  2224. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2225. width: 100%;
  2226. max-height: 175px;
  2227. object-fit: cover;
  2228. }
  2229. @media (max-width: 810px) {
  2230. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2231. max-height: 350px;
  2232. }
  2233. }
  2234. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2235. display: block;
  2236. content: url('data:image/svg+xml,<svg width="160" height="25" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="2.5"/></svg>');
  2237. }
  2238. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2239. margin-top: 0.5rem;
  2240. font-size: 0.9rem;
  2241. font-weight: 800;
  2242. order: 5;
  2243. }
  2244. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2245. order: 2;
  2246. display: flex;
  2247. flex-direction: row;
  2248. justify-content: flex-start;
  2249. }
  2250. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2251. padding-left: 1rem;
  2252. content: "|";
  2253. }
  2254. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2255. font-size: 0.9rem;
  2256. font-weight: 800;
  2257. padding-right: 1rem;
  2258. width: fit-content;
  2259. }
  2260. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2261. font-size: 0.9rem;
  2262. order: 3;
  2263. display: flex;
  2264. flex-direction: row;
  2265. justify-content: flex-start;
  2266. }
  2267. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2268. display: none;
  2269. }
  2270. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2271. order: 4;
  2272. font-size: 0.9rem;
  2273. }
  2274. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2275. width: 100%;
  2276. }
  2277. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2278. margin: 0;
  2279. }
  2280. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2281. padding-top: none !important;
  2282. list-style: none;
  2283. width: fit-content;
  2284. align-self: flex-end;
  2285. padding-right: 1rem;
  2286. }
  2287. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2288. display: none;
  2289. }
  2290. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2291. order: 6;
  2292. padding-top: 1rem;
  2293. }
  2294. .node-id-4 {
  2295. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2296. background-repeat: no-repeat;
  2297. background-position-y: 7rem;
  2298. max-width: 100vw;
  2299. background-size: contain;
  2300. }
  2301. .node-id-4 #block-contenudelapageprincipale {
  2302. scroll-margin: 8rem;
  2303. }
  2304. .node-id-4 .layout__region--top {
  2305. padding-bottom: 3rem;
  2306. height: 30vh;
  2307. }
  2308. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2309. display: none;
  2310. height: inherit;
  2311. }
  2312. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2313. font-family: "Source Code Pro";
  2314. font-size: 2rem;
  2315. font-weight: 800;
  2316. color: rgb(255, 255, 255);
  2317. background-color: rgb(0, 158, 227);
  2318. text-transform: uppercase;
  2319. }
  2320. .node-id-4 .layout__region--second {
  2321. width: 25%;
  2322. }
  2323. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2324. background-color: rgb(255, 255, 255);
  2325. }
  2326. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2327. font-size: 1.5rem;
  2328. font-weight: 1000;
  2329. font-family: "Source Code Pro";
  2330. color: rgb(9, 57, 139);
  2331. text-transform: uppercase;
  2332. }
  2333. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2334. text-transform: none !important;
  2335. }
  2336. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2337. padding-right: 2rem;
  2338. }
  2339. .node-id-5 .region-content {
  2340. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2341. background-repeat: no-repeat;
  2342. max-width: 100vw;
  2343. background-size: contain;
  2344. }
  2345. .node-id-5 .layout__region--top {
  2346. padding-bottom: 3rem;
  2347. height: 30vh;
  2348. }
  2349. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2350. font-family: "Source Code Pro";
  2351. font-size: 2rem;
  2352. font-weight: 800;
  2353. color: rgb(255, 255, 255);
  2354. background-color: rgb(0, 158, 227);
  2355. text-transform: uppercase;
  2356. }
  2357. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2358. color: rgb(0, 0, 0);
  2359. text-decoration: underline;
  2360. }
  2361. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2362. display: none;
  2363. }
  2364. .path-faq #block-contenudelapageprincipale h2 {
  2365. font-family: "Source Code Pro";
  2366. font-size: 2rem;
  2367. font-weight: 800;
  2368. color: rgb(0, 158, 227);
  2369. background-color: rgb(255, 255, 255);
  2370. text-transform: uppercase;
  2371. width: fit-content;
  2372. margin-left: 10%;
  2373. margin-top: 8rem;
  2374. }
  2375. @media (max-width: 810px) {
  2376. .path-faq #block-contenudelapageprincipale h2 {
  2377. margin-left: 8%;
  2378. margin-right: 1%;
  2379. }
  2380. }
  2381. .path-faq #block-contenudelapageprincipale .block-region-content {
  2382. display: grid;
  2383. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2384. }
  2385. @media (max-width: 810px) {
  2386. .path-faq #block-contenudelapageprincipale .block-region-content {
  2387. display: flex;
  2388. flex-direction: column;
  2389. margin: auto;
  2390. }
  2391. }
  2392. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2393. grid-column: 2/span 3;
  2394. }
  2395. @media (max-width: 810px) {
  2396. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2397. width: 80%;
  2398. margin: auto;
  2399. }
  2400. }
  2401. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2402. display: none;
  2403. grid-column: 5;
  2404. grid-row: 1/span 2;
  2405. height: fit-content;
  2406. flex-direction: column;
  2407. max-width: fit-content;
  2408. margin-left: 2rem;
  2409. padding: 1rem;
  2410. background-color: rgb(0, 158, 227);
  2411. }
  2412. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2413. margin-top: 1rem;
  2414. display: block;
  2415. content: url("../images/pictos/picto_faq.svg");
  2416. }
  2417. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2418. text-align: center;
  2419. }
  2420. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2421. font-size: 0.8rem;
  2422. font-weight: 1000;
  2423. color: rgb(9, 57, 139);
  2424. text-transform: uppercase;
  2425. }
  2426. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2427. display: flex;
  2428. flex-direction: column;
  2429. margin-top: 0;
  2430. margin-left: 1.5rem;
  2431. margin-right: 1.5rem;
  2432. text-align: center;
  2433. }
  2434. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2435. font-weight: 800;
  2436. color: rgb(255, 255, 255);
  2437. font-size: 1.3rem;
  2438. }
  2439. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2440. margin-left: auto;
  2441. padding-top: 1rem;
  2442. display: block;
  2443. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2444. }
  2445. @media (max-width: 810px) {
  2446. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2447. margin: auto;
  2448. padding: 0rem;
  2449. }
  2450. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2451. margin-top: 1rem;
  2452. display: block;
  2453. content: url("../images/pictos/picto_faq_2.svg");
  2454. }
  2455. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2456. text-align: center;
  2457. }
  2458. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2459. font-size: 0.8rem;
  2460. font-weight: 1000;
  2461. color: rgb(9, 57, 139);
  2462. text-transform: uppercase;
  2463. }
  2464. }
  2465. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2466. margin-top: 2rem;
  2467. grid-column: 2/span 3;
  2468. display: grid;
  2469. grid-template-columns: 1fr 1fr 1fr;
  2470. }
  2471. @media (max-width: 810px) {
  2472. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2473. width: 80%;
  2474. margin: auto;
  2475. margin-top: 1rem;
  2476. }
  2477. }
  2478. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2479. grid-column: 1/span 3;
  2480. }
  2481. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2482. border-bottom: 1px solid rgb(0, 158, 227);
  2483. padding-bottom: 2rem;
  2484. }
  2485. @media (max-width: 810px) {
  2486. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2487. padding-bottom: 1rem;
  2488. }
  2489. }
  2490. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2491. display: none;
  2492. }
  2493. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2494. cursor: pointer;
  2495. }
  2496. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2497. font-family: "Source Code Pro";
  2498. font-weight: 500;
  2499. color: rgb(9, 57, 139);
  2500. font-size: 1.3rem;
  2501. }
  2502. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p:after {
  2503. display: inline-flex;
  2504. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" rotate="-45" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  2505. float: right;
  2506. }
  2507. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question :hover:after {
  2508. display: inline-flex;
  2509. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" rotate="-45" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  2510. float: right;
  2511. }
  2512. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2513. display: none;
  2514. }
  2515. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2516. display: none;
  2517. }
  2518. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers span:nth-of-type(2) {
  2519. display: none;
  2520. }
  2521. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf span:nth-of-type(2) {
  2522. display: none;
  2523. }
  2524. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf ::before {
  2525. display: inline-block;
  2526. content: url("../images/pictos/noun_Download_file_307900.svg");
  2527. width: 30px;
  2528. height: 30px;
  2529. padding-right: 0.8rem;
  2530. }
  2531. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers .file--mime-application-pdf a {
  2532. display: inline-flex;
  2533. align-items: center;
  2534. color: rgb(0, 0, 0);
  2535. font-weight: 800;
  2536. }
  2537. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2538. display: none;
  2539. }
  2540. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a:before {
  2541. display: inline-block;
  2542. content: url("../images/pictos/external_link.png");
  2543. width: 30px;
  2544. height: 30px;
  2545. padding-right: 0.8rem;
  2546. }
  2547. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2548. display: flex;
  2549. flex-direction: row;
  2550. justify-content: left;
  2551. align-items: center;
  2552. color: rgb(0, 0, 0);
  2553. font-weight: 800;
  2554. }
  2555. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2556. display: none;
  2557. }
  2558. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2559. display: none;
  2560. margin-top: 0.5rem;
  2561. }
  2562. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2563. color: rgb(0, 0, 0);
  2564. text-decoration: underline;
  2565. font-weight: 800;
  2566. }
  2567. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2568. display: block;
  2569. }
  2570. .node-id-6 {
  2571. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2572. background-repeat: no-repeat;
  2573. background-position-y: 7rem;
  2574. max-width: 100vw;
  2575. background-size: contain;
  2576. }
  2577. .node-id-6 .layout__region--top {
  2578. padding-bottom: 3rem;
  2579. height: 30vh;
  2580. }
  2581. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2582. display: none;
  2583. height: inherit;
  2584. }
  2585. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2586. font-family: "Source Code Pro";
  2587. font-size: 2rem;
  2588. font-weight: 800;
  2589. color: rgb(255, 255, 255);
  2590. background-color: rgb(0, 158, 227);
  2591. text-transform: uppercase;
  2592. }
  2593. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2594. color: rgb(0, 0, 0);
  2595. text-decoration: underline;
  2596. }
  2597. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2598. display: none;
  2599. }
  2600. .path-taxonomy #block-contenudelapageprincipale span {
  2601. display: none;
  2602. }
  2603. .path-taxonomy .view-taxonomy-term .view-header {
  2604. width: 80%;
  2605. margin: auto;
  2606. }
  2607. .path-taxonomy .view-taxonomy-term .view-content {
  2608. width: 80%;
  2609. margin: auto;
  2610. }
  2611. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2612. display: flex;
  2613. flex-direction: row;
  2614. flex-wrap: wrap;
  2615. }
  2616. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2617. width: 30%;
  2618. }
  2619. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2620. display: flex;
  2621. width: 25%;
  2622. max-width: fit-content;
  2623. }
  2624. .page-node-type-ressource .layout-container {
  2625. overflow: visible;
  2626. }
  2627. @media (max-width: 810px) {
  2628. .page-node-type-ressource .layout-container {
  2629. overflow: hidden;
  2630. }
  2631. }
  2632. .page-node-type-ressource .layout__region--top {
  2633. padding-top: 4rem;
  2634. }
  2635. @media (max-width: 550px) {
  2636. .page-node-type-ressource .layout__region--top {
  2637. padding-top: 0rem;
  2638. max-width: 100%;
  2639. }
  2640. }
  2641. .page-node-type-ressource .layout__region--top .block-region-top {
  2642. display: flex;
  2643. flex-direction: column;
  2644. }
  2645. @media screen and (min-width: 1100px) {
  2646. .page-node-type-ressource .layout__region--top .block-region-top {
  2647. display: grid;
  2648. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2649. gap: 0.5rem;
  2650. }
  2651. }
  2652. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2653. width: fit-content;
  2654. padding-left: 25%;
  2655. }
  2656. @media (min-width: 1100px) {
  2657. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2658. grid-column: 1;
  2659. grid-row: 1/span 7;
  2660. align-self: start;
  2661. justify-self: end;
  2662. margin-left: 2rem;
  2663. }
  2664. }
  2665. @media (max-width: 1100px) {
  2666. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2667. padding-left: 13%;
  2668. }
  2669. }
  2670. @media (max-width: 550px) {
  2671. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2672. width: 100vw;
  2673. padding: 0;
  2674. width: 100%;
  2675. height: auto;
  2676. }
  2677. }
  2678. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2679. border: solid 1px gray;
  2680. max-width: 100%;
  2681. width: 100%;
  2682. height: auto;
  2683. }
  2684. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2685. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2686. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2687. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2688. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2689. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2690. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2691. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2692. width: 100%;
  2693. margin-left: 13%;
  2694. }
  2695. @media (max-width: 1099px) {
  2696. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2697. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2698. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2699. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2700. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2701. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2702. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2703. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2704. width: auto;
  2705. margin-right: 15%;
  2706. }
  2707. }
  2708. @media screen and (min-width: 1100px) {
  2709. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2710. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2711. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2712. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2713. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2714. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2715. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2716. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2717. width: auto;
  2718. margin-left: 2rem;
  2719. margin-right: 15%;
  2720. grid-column: 2/4;
  2721. align-self: start; /* S'assurer qu'il commence en haut */
  2722. height: fit-content;
  2723. justify-self: start;
  2724. }
  2725. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2726. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2727. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2728. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2729. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2730. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2731. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2732. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2733. margin: 0;
  2734. }
  2735. }
  2736. @media (max-width: 810px) {
  2737. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2738. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2739. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2740. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2741. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2742. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2743. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2744. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2745. margin-left: 9%;
  2746. margin-right: 9%;
  2747. }
  2748. }
  2749. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2750. width: 100%;
  2751. font-family: "Source Code Pro";
  2752. font-size: 1.5rem;
  2753. font-weight: 800;
  2754. color: rgb(255, 255, 255);
  2755. background-color: rgb(0, 158, 227);
  2756. text-transform: uppercase;
  2757. padding-left: 13%;
  2758. padding-top: 1rem;
  2759. padding-bottom: 0.5rem;
  2760. vertical-align: middle;
  2761. }
  2762. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2763. color: rgb(0, 158, 227);
  2764. text-transform: uppercase;
  2765. font-weight: 900;
  2766. }
  2767. @media (max-width: 1099px) {
  2768. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2769. margin-top: 2rem;
  2770. }
  2771. }
  2772. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2773. font-size: 2.5rem;
  2774. font-weight: 600;
  2775. line-height: 1.2;
  2776. }
  2777. @media (max-width: 550px) {
  2778. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2779. font-size: 1.5rem;
  2780. width: 80vw;
  2781. }
  2782. }
  2783. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2784. font-weight: 600;
  2785. font-size: 2rem;
  2786. }
  2787. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2788. font-weight: 600;
  2789. font-size: 2rem;
  2790. }
  2791. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2792. font-weight: 600;
  2793. font-size: 2rem;
  2794. margin-bottom: 0;
  2795. }
  2796. @media (max-width: 550px) {
  2797. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2798. font-size: 1rem;
  2799. }
  2800. }
  2801. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2802. margin-bottom: 0;
  2803. }
  2804. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2805. font-size: 1.5rem;
  2806. font-weight: 800;
  2807. line-height: 0.8;
  2808. margin-top: 1rem;
  2809. }
  2810. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2811. margin: 0;
  2812. }
  2813. @media (max-width: 550px) {
  2814. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2815. margin-top: 0rem;
  2816. font-size: 1rem;
  2817. line-height: 1;
  2818. }
  2819. }
  2820. @media (max-width: 550px) {
  2821. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  2822. margin-top: 0.5rem;
  2823. }
  2824. }
  2825. @media (max-width: 550px) {
  2826. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  2827. margin-top: 0.5rem;
  2828. }
  2829. }
  2830. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2831. display: inline-flex;
  2832. margin-top: 0.5rem;
  2833. }
  2834. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2835. background: rgb(9, 57, 139);
  2836. margin-right: 1rem;
  2837. padding-left: 0.3rem;
  2838. padding-right: 0.3rem;
  2839. color: rgb(255, 255, 255);
  2840. font-weight: 800;
  2841. vertical-align: middle;
  2842. }
  2843. @media (max-width: 810px) {
  2844. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2845. display: flex;
  2846. flex-direction: row;
  2847. flex-wrap: wrap;
  2848. }
  2849. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2850. margin-bottom: 0.5rem;
  2851. }
  2852. }
  2853. .page-node-type-ressource .layout__region--top {
  2854. /* Hide empty blocks */
  2855. }
  2856. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  2857. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  2858. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  2859. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  2860. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  2861. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  2862. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  2863. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  2864. display: none;
  2865. }
  2866. .page-node-type-ressource .layout__region--first {
  2867. margin-top: 3rem;
  2868. position: relative;
  2869. }
  2870. @media (max-width: 810px) {
  2871. .page-node-type-ressource .layout__region--first {
  2872. display: none;
  2873. }
  2874. }
  2875. .page-node-type-ressource .layout__region--first .block-region-first {
  2876. display: flex;
  2877. justify-content: flex-end;
  2878. position: sticky;
  2879. top: 13rem;
  2880. }
  2881. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  2882. display: flex;
  2883. width: 50%;
  2884. background-color: rgb(255, 255, 255);
  2885. padding-right: 2rem;
  2886. }
  2887. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  2888. display: flex;
  2889. font-size: 1rem;
  2890. font-weight: 1000;
  2891. color: rgb(9, 57, 139);
  2892. border-bottom: 1px solid rgb(0, 158, 227);
  2893. padding-bottom: 0.5rem;
  2894. padding-right: 1rem;
  2895. }
  2896. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  2897. text-decoration: underline;
  2898. }
  2899. .page-node-type-ressource .layout__region--second {
  2900. margin-top: 3rem;
  2901. }
  2902. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  2903. background-color: rgb(255, 255, 255);
  2904. }
  2905. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2906. font-size: 1.5rem;
  2907. font-weight: 1000;
  2908. font-family: "Source Code Pro";
  2909. color: rgb(9, 57, 139);
  2910. text-transform: uppercase;
  2911. }
  2912. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2913. text-transform: none !important;
  2914. }
  2915. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  2916. width: 100%;
  2917. height: auto;
  2918. }
  2919. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2920. padding-right: 2rem;
  2921. }
  2922. @media (max-width: 550px) {
  2923. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2924. padding-right: 0;
  2925. }
  2926. }
  2927. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  2928. margin-top: 0;
  2929. }
  2930. @media (max-width: 810px) {
  2931. .page-node-type-ressource .layout__region--second {
  2932. flex: 0 1 80%;
  2933. margin: auto;
  2934. margin-top: 2rem;
  2935. }
  2936. }
  2937. .page-node-type-ressource .layout__region--third {
  2938. margin-top: 3rem;
  2939. }
  2940. @media (max-width: 810px) {
  2941. .page-node-type-ressource .layout__region--third {
  2942. flex: 0 1 80%;
  2943. margin-left: 10%;
  2944. }
  2945. }
  2946. .page-node-type-ressource .layout__region--third .block-region-third {
  2947. display: flex;
  2948. flex-direction: column;
  2949. width: 70%;
  2950. }
  2951. @media (max-width: 810px) {
  2952. .page-node-type-ressource .layout__region--third .block-region-third {
  2953. width: 100%;
  2954. }
  2955. }
  2956. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  2957. height: fit-content;
  2958. border: 2px solid rgb(0, 158, 227);
  2959. background-color: rgb(255, 255, 255);
  2960. order: 2;
  2961. }
  2962. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  2963. min-height: 4rem;
  2964. background: rgb(255, 255, 255);
  2965. color: rgb(0, 158, 227);
  2966. padding-left: 1rem;
  2967. padding-top: 1rem;
  2968. padding: 1rem;
  2969. }
  2970. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  2971. display: none;
  2972. }
  2973. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  2974. height: inherit;
  2975. margin: auto;
  2976. width: fit-content;
  2977. }
  2978. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  2979. content: url("../images/pictos/download.png");
  2980. min-width: 30px;
  2981. height: auto;
  2982. padding-right: 1rem;
  2983. margin-right: 1rem;
  2984. }
  2985. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  2986. hyphens: auto;
  2987. display: inline-flex;
  2988. align-items: center;
  2989. color: rgb(0, 158, 227);
  2990. font-weight: 800;
  2991. }
  2992. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  2993. order: 3;
  2994. }
  2995. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2996. margin: auto;
  2997. height: fit-content;
  2998. border: 2px solid rgb(0, 158, 227);
  2999. min-height: 4rem;
  3000. background: rgb(255, 255, 255);
  3001. color: rgb(0, 158, 227);
  3002. padding-left: 1rem;
  3003. padding-top: 1rem;
  3004. margin-bottom: 1rem;
  3005. padding: 1rem;
  3006. }
  3007. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3008. display: inline-flex;
  3009. align-items: center;
  3010. color: rgb(0, 158, 227);
  3011. font-weight: 800;
  3012. }
  3013. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3014. content: url("../images/pictos/external_link.png");
  3015. min-width: 30px;
  3016. height: auto;
  3017. padding-right: 1rem;
  3018. margin-right: 1rem;
  3019. }
  3020. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3021. display: none;
  3022. }
  3023. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3024. order: 4;
  3025. margin-top: 3rem;
  3026. }
  3027. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3028. font-size: 0.8rem;
  3029. color: rgb(0, 0, 0);
  3030. font-weight: 900;
  3031. margin-bottom: 1rem;
  3032. }
  3033. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3034. border: 2px solid rgb(0, 158, 227);
  3035. padding: 1rem;
  3036. height: fit-content;
  3037. margin-bottom: 1rem;
  3038. background-color: rgb(255, 255, 255);
  3039. display: flex;
  3040. flex-direction: column;
  3041. }
  3042. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3043. display: flex;
  3044. flex-direction: column;
  3045. }
  3046. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-type-de-ressource {
  3047. order: 2;
  3048. text-transform: uppercase;
  3049. color: rgb(0, 158, 227);
  3050. font-weight: 900;
  3051. font-size: 0.8rem;
  3052. }
  3053. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title {
  3054. order: 3;
  3055. }
  3056. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 {
  3057. margin: 0;
  3058. }
  3059. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-title h2 a {
  3060. color: rgb(0, 0, 0);
  3061. font-size: 1rem;
  3062. font-weight: 900;
  3063. font-style: italic;
  3064. }
  3065. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-sous-titre {
  3066. order: 4;
  3067. }
  3068. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- {
  3069. order: 5;
  3070. font-weight: 800;
  3071. }
  3072. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- p {
  3073. margin: 0;
  3074. }
  3075. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-auteur-s- .field__label {
  3076. display: none;
  3077. }
  3078. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition p {
  3079. margin: 0;
  3080. }
  3081. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-edition .field__label {
  3082. display: none;
  3083. }
  3084. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images {
  3085. order: 1;
  3086. width: 25%;
  3087. }
  3088. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-images img {
  3089. width: 100%;
  3090. height: auto;
  3091. }
  3092. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-date-de-parution {
  3093. order: 6;
  3094. }
  3095. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-date-de-parution .field__label {
  3096. display: none;
  3097. }
  3098. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs {
  3099. order: 7;
  3100. display: flex;
  3101. margin-top: 0.8rem;
  3102. flex-direction: row;
  3103. flex-wrap: wrap;
  3104. }
  3105. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__label {
  3106. display: none;
  3107. }
  3108. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__items {
  3109. display: flex;
  3110. flex-direction: row;
  3111. flex-wrap: wrap;
  3112. }
  3113. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item {
  3114. padding-bottom: 0.5rem;
  3115. margin-right: 0.5rem;
  3116. padding-right: 0.3rem;
  3117. font-size: 0.8rem;
  3118. }
  3119. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  3120. background: rgb(9, 57, 139);
  3121. color: rgb(255, 255, 255);
  3122. font-weight: 800;
  3123. vertical-align: super;
  3124. padding-left: 0.1rem;
  3125. padding-right: 0.1rem;
  3126. display: inline-flex;
  3127. pointer-events: none !important;
  3128. cursor: default;
  3129. }
  3130. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div ul.links.inline {
  3131. display: none;
  3132. }
  3133. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  3134. order: 1;
  3135. width: 100%;
  3136. }
  3137. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  3138. display: none;
  3139. }
  3140. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  3141. width: 100%;
  3142. height: auto;
  3143. }
  3144. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3145. order: 1;
  3146. }
  3147. @media (max-width: 479px) {
  3148. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3149. margin-top: 2rem;
  3150. }
  3151. }
  3152. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3153. display: none;
  3154. font-size: 0.8rem;
  3155. color: rgb(0, 0, 0);
  3156. font-weight: 900;
  3157. }
  3158. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3159. display: flex;
  3160. flex-direction: column;
  3161. border-bottom: 1px solid rgb(0, 0, 0);
  3162. padding: 1rem;
  3163. height: fit-content;
  3164. margin-bottom: 3rem;
  3165. background-color: rgb(255, 255, 255);
  3166. }
  3167. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3168. display: none;
  3169. }
  3170. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3171. content: url("../images/pictos/picto_lieu_blue.svg");
  3172. display: inline-block;
  3173. color: rgb(9, 57, 139);
  3174. margin-right: 1rem;
  3175. }
  3176. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3177. display: flex;
  3178. flex-direction: row;
  3179. margin-bottom: 1.5rem;
  3180. }
  3181. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3182. content: "Voir le projet";
  3183. display: block;
  3184. color: rgb(9, 57, 139);
  3185. }
  3186. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3187. color: rgb(9, 57, 139);
  3188. font-size: 1rem;
  3189. font-weight: 900;
  3190. }
  3191. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3192. padding-top: 3rem;
  3193. padding-bottom: 3rem;
  3194. vertical-align: middle;
  3195. color: rgb(255, 255, 255);
  3196. }
  3197. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3198. font-family: "Source Code Pro";
  3199. font-size: 2rem;
  3200. font-weight: 800;
  3201. color: rgb(255, 255, 255);
  3202. background-color: rgb(0, 158, 227);
  3203. text-transform: uppercase;
  3204. width: fit-content;
  3205. margin-left: 10%;
  3206. margin-top: 8rem;
  3207. }
  3208. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3209. display: grid;
  3210. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3211. }
  3212. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3213. grid-column: 2/span 3;
  3214. margin-top: 4rem;
  3215. }
  3216. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3217. margin: auto;
  3218. background: rgb(255, 255, 255);
  3219. }
  3220. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3221. margin: 0;
  3222. }
  3223. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3224. grid-column: 5;
  3225. margin-top: 4rem;
  3226. background-color: rgb(0, 158, 227);
  3227. height: fit-content;
  3228. min-height: fit-content;
  3229. width: 200px;
  3230. margin-left: 2rem;
  3231. aspect-ratio: 1/1;
  3232. display: flex;
  3233. }
  3234. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3235. display: flex;
  3236. flex-direction: column;
  3237. text-align: center;
  3238. margin: auto;
  3239. padding: 1rem;
  3240. }
  3241. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3242. display: block;
  3243. font-weight: 800;
  3244. color: rgb(255, 255, 255);
  3245. font-size: 1.3rem;
  3246. }
  3247. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a:after {
  3248. margin-left: 80%;
  3249. padding-top: 0.5rem;
  3250. display: block;
  3251. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3252. }
  3253. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3254. grid-column: 2/span 3;
  3255. }
  3256. @media (max-width: 810px) {
  3257. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3258. grid-column: 2/span 4;
  3259. }
  3260. }
  3261. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3262. margin: auto;
  3263. }
  3264. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3265. display: none;
  3266. background: rgb(255, 255, 255);
  3267. }
  3268. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3269. display: flex;
  3270. flex-wrap: wrap;
  3271. margin-top: 3rem;
  3272. }
  3273. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3274. width: 50%;
  3275. }
  3276. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service {
  3277. display: flex;
  3278. justify-content: space-between;
  3279. padding: 1rem;
  3280. height: fit-content;
  3281. margin-bottom: 1rem;
  3282. background-color: rgb(255, 255, 255);
  3283. margin-right: 1rem;
  3284. }
  3285. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service::after {
  3286. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3287. align-self: flex-end;
  3288. }
  3289. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type {
  3290. display: grid;
  3291. grid-template-columns: 1fr 1fr 1fr;
  3292. grid-template-rows: repeat(6 auto);
  3293. }
  3294. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-type-de-protagoniste {
  3295. grid-column: 1/span 3;
  3296. grid-row: 1;
  3297. margin-bottom: 1rem;
  3298. text-transform: uppercase;
  3299. font-weight: 900;
  3300. font-size: 0.8rem;
  3301. }
  3302. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-photo {
  3303. grid-column: 1;
  3304. grid-row: 2/span 6;
  3305. margin-right: 1rem;
  3306. max-height: 170px;
  3307. }
  3308. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-photo img {
  3309. max-width: 100%;
  3310. object-fit: cover;
  3311. height: auto;
  3312. max-height: 95%;
  3313. }
  3314. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-prenom {
  3315. grid-column: 2;
  3316. grid-row: 2;
  3317. padding-right: 0.5rem;
  3318. text-transform: uppercase;
  3319. font-weight: 800;
  3320. font-size: 1rem;
  3321. }
  3322. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-nom {
  3323. grid-column: 3;
  3324. grid-row: 2;
  3325. text-transform: uppercase;
  3326. font-weight: 800;
  3327. font-size: 1rem;
  3328. }
  3329. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-structure {
  3330. grid-column: 2/span 3;
  3331. grid-row: 3;
  3332. text-transform: uppercase;
  3333. font-weight: 800;
  3334. font-size: 0.8rem;
  3335. }
  3336. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-title {
  3337. grid-column: 2/span 3;
  3338. grid-row: 4;
  3339. font-size: 1.3rem;
  3340. }
  3341. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-title a {
  3342. color: rgb(0, 0, 0);
  3343. }
  3344. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-localisation {
  3345. grid-column: 2/span 3;
  3346. grid-row: 5;
  3347. text-transform: uppercase;
  3348. font-weight: 800;
  3349. font-size: 0.8rem;
  3350. }
  3351. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition {
  3352. display: inline-flex;
  3353. grid-column: 2/span 3;
  3354. grid-row: 6;
  3355. font-size: 0.8rem;
  3356. padding-top: 1rem;
  3357. justify-content: flex-start;
  3358. }
  3359. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition time {
  3360. justify-self: flex-start;
  3361. }
  3362. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .node-type-offre_de_service div:first-of-type .field--name-field-date-de-proposition::before {
  3363. content: "proposé le";
  3364. hyphens: none;
  3365. padding-right: 0.5rem;
  3366. }
  3367. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-5 {
  3368. border: 2px solid rgb(255, 0, 15);
  3369. }
  3370. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-6 {
  3371. border: 2px solid rgb(160, 26, 39);
  3372. }
  3373. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-7 {
  3374. border: 2px solid rgb(199, 215, 74);
  3375. }
  3376. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-8 {
  3377. border: 2px solid rgb(255, 100, 83);
  3378. }
  3379. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row .type-de-protagoniste-9 {
  3380. border: 2px solid rgb(111, 109, 125);
  3381. }
  3382. @media (max-width: 810px) {
  3383. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3384. flex-direction: column;
  3385. }
  3386. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3387. width: 100%;
  3388. }
  3389. }
  3390. @media (max-width: 810px) {
  3391. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3392. display: flex;
  3393. flex-direction: column;
  3394. padding: 2rem;
  3395. }
  3396. }
  3397. .page-node-type-offre-de-service {
  3398. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3399. background-repeat: no-repeat;
  3400. background-position-y: 7rem;
  3401. max-width: 100vw;
  3402. background-size: contain;
  3403. }
  3404. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3405. margin-top: 2rem;
  3406. margin-left: 13%;
  3407. display: grid;
  3408. grid-template-columns: auto auto 1fr;
  3409. grid-template-rows: repeat(6 auto);
  3410. }
  3411. @media (max-width: 810px) {
  3412. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3413. margin-left: 8%;
  3414. }
  3415. }
  3416. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3417. width: fit-content;
  3418. grid-column: 1;
  3419. grid-row: 1/span 6;
  3420. width: 250px;
  3421. height: 250px;
  3422. margin-right: 2rem;
  3423. }
  3424. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3425. width: 100%;
  3426. height: auto;
  3427. }
  3428. @media (max-width: 810px) {
  3429. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3430. width: 90px;
  3431. height: 90px;
  3432. }
  3433. }
  3434. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3435. background: rgb(255, 255, 255);
  3436. width: fit-content;
  3437. grid-column: 2/span 3;
  3438. grid-row: 1;
  3439. text-transform: uppercase;
  3440. font-weight: 900;
  3441. font-size: 0.8rem;
  3442. }
  3443. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3444. color: rgb(255, 0, 15);
  3445. }
  3446. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3447. color: rgb(160, 26, 39);
  3448. }
  3449. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3450. color: rgb(199, 215, 74);
  3451. }
  3452. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3453. color: rgb(255, 100, 83);
  3454. }
  3455. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3456. color: rgb(111, 109, 125);
  3457. }
  3458. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3459. background: rgb(255, 255, 255);
  3460. width: fit-content;
  3461. grid-column: 2;
  3462. grid-row: 2;
  3463. padding-right: 0.5rem;
  3464. text-transform: uppercase;
  3465. font-weight: 900;
  3466. font-size: 1.5rem;
  3467. }
  3468. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3469. background: rgb(255, 255, 255);
  3470. width: fit-content;
  3471. grid-column: 3;
  3472. grid-row: 2;
  3473. text-transform: uppercase;
  3474. font-weight: 900;
  3475. font-size: 1.5rem;
  3476. }
  3477. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3478. background: rgb(255, 255, 255);
  3479. width: fit-content;
  3480. grid-column: 2/span 3;
  3481. grid-row: 3;
  3482. text-transform: uppercase;
  3483. font-weight: 800;
  3484. font-size: 1.2rem;
  3485. margin-top: 0.5rem;
  3486. }
  3487. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3488. content: url('data:image/svg+xml,<svg width="160" height="30" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(0,158,227)" stroke-width="3"/></svg>');
  3489. }
  3490. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3491. background: rgb(255, 255, 255);
  3492. width: fit-content;
  3493. grid-column: 2/span 3;
  3494. grid-row: 4;
  3495. font-size: 2.5rem;
  3496. font-family: "Source Code Pro";
  3497. width: 70%;
  3498. }
  3499. @media (max-width: 810px) {
  3500. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3501. font-size: 1.2rem;
  3502. }
  3503. }
  3504. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3505. color: rgb(0, 0, 0);
  3506. }
  3507. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3508. background: rgb(255, 255, 255);
  3509. width: fit-content;
  3510. grid-column: 2/span 3;
  3511. grid-row: 5;
  3512. text-transform: uppercase;
  3513. font-weight: 800;
  3514. font-size: 0.8rem;
  3515. margin-top: 1.5rem;
  3516. }
  3517. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3518. background: rgb(255, 255, 255);
  3519. width: fit-content;
  3520. grid-column: 2/span 3;
  3521. grid-row: 6;
  3522. font-size: 0.8rem;
  3523. padding-top: 1rem;
  3524. }
  3525. .page-node-type-offre-de-service .layout__region--second {
  3526. margin-top: 3rem;
  3527. margin-left: 20%;
  3528. margin-right: 2rem;
  3529. }
  3530. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3531. background: rgb(255, 255, 255);
  3532. }
  3533. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3534. margin: 0;
  3535. }
  3536. @media (max-width: 810px) {
  3537. .page-node-type-offre-de-service .layout__region--second {
  3538. margin-left: 10%;
  3539. }
  3540. }
  3541. .page-node-type-offre-de-service .layout__region--third {
  3542. margin-top: 3rem;
  3543. }
  3544. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3545. display: flex;
  3546. flex-direction: column;
  3547. width: 70%;
  3548. }
  3549. @media (max-width: 810px) {
  3550. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3551. margin: auto;
  3552. }
  3553. }
  3554. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3555. background: rgb(0, 158, 227);
  3556. color: rgb(255, 255, 255);
  3557. text-transform: uppercase;
  3558. font-weight: 900;
  3559. font-size: 0.8rem;
  3560. padding-top: 1rem;
  3561. padding-left: 1rem;
  3562. padding-right: 1rem;
  3563. }
  3564. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3565. background: rgb(0, 158, 227);
  3566. color: rgb(255, 255, 255);
  3567. font-weight: 600;
  3568. padding-left: 1rem;
  3569. padding-right: 1rem;
  3570. padding-bottom: 1rem;
  3571. }
  3572. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3573. color: white;
  3574. hyphens: auto;
  3575. }
  3576. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3577. display: none;
  3578. }
  3579. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3580. display: none;
  3581. background: rgb(0, 158, 227);
  3582. color: rgb(255, 255, 255);
  3583. font-weight: 600;
  3584. padding-left: 1rem;
  3585. padding-right: 1rem;
  3586. padding-bottom: 1rem;
  3587. }
  3588. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3589. height: fit-content;
  3590. border: 2px solid rgb(0, 158, 227);
  3591. background-color: rgb(255, 255, 255);
  3592. margin-top: 1rem;
  3593. }
  3594. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3595. min-height: 4rem;
  3596. background: rgb(255, 255, 255);
  3597. color: rgb(0, 158, 227);
  3598. padding-left: 1rem;
  3599. padding-top: 1rem;
  3600. margin-bottom: 1rem;
  3601. }
  3602. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3603. display: none;
  3604. }
  3605. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3606. height: inherit;
  3607. margin: auto;
  3608. }
  3609. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3610. content: url("../images/pictos/noun_Download_file_307900.svg");
  3611. min-width: 50px;
  3612. height: auto;
  3613. padding-right: 1rem;
  3614. }
  3615. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3616. hyphens: auto;
  3617. display: inline-flex;
  3618. align-items: center;
  3619. color: rgb(0, 158, 227);
  3620. font-weight: 800;
  3621. }
  3622. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3623. margin-top: 1rem;
  3624. }
  3625. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3626. margin: auto;
  3627. height: fit-content;
  3628. border: 2px solid rgb(0, 158, 227);
  3629. min-height: 4rem;
  3630. background: rgb(255, 255, 255);
  3631. color: rgb(0, 158, 227);
  3632. padding-left: 1rem;
  3633. padding-top: 1rem;
  3634. margin-bottom: 1rem;
  3635. }
  3636. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3637. display: inline-flex;
  3638. align-items: center;
  3639. color: rgb(0, 158, 227);
  3640. font-weight: 800;
  3641. }
  3642. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3643. content: url("../images/pictos/external_link.png");
  3644. min-width: 50px;
  3645. height: auto;
  3646. padding-right: 1rem;
  3647. }
  3648. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3649. display: none;
  3650. }
  3651. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3652. margin-top: 3rem;
  3653. }
  3654. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3655. font-size: 0.8rem;
  3656. color: rgb(0, 0, 0);
  3657. font-weight: 900;
  3658. margin-bottom: 1rem;
  3659. }
  3660. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3661. display: flex;
  3662. flex-direction: column;
  3663. border: 2px solid rgb(0, 158, 227);
  3664. padding: 1rem;
  3665. height: fit-content;
  3666. margin-bottom: 1rem;
  3667. background-color: rgb(255, 255, 255);
  3668. }
  3669. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type {
  3670. border-top: 1px solid rgb(0, 158, 227);
  3671. padding-top: 1rem;
  3672. }
  3673. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource:first-of-type::after {
  3674. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3675. align-self: flex-end;
  3676. }
  3677. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title h2 {
  3678. margin: 0;
  3679. }
  3680. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-title a {
  3681. color: rgb(0, 0, 0);
  3682. font-size: 1.4rem;
  3683. font-weight: 600;
  3684. }
  3685. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- {
  3686. font-weight: 800;
  3687. }
  3688. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- p {
  3689. margin: 0;
  3690. }
  3691. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  3692. display: none;
  3693. }
  3694. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition p {
  3695. margin: 0;
  3696. }
  3697. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-edition .field__label {
  3698. display: none;
  3699. }
  3700. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images {
  3701. display: none;
  3702. width: 50%;
  3703. }
  3704. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-images img {
  3705. width: 100%;
  3706. height: auto;
  3707. }
  3708. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource .field--name-field-type-de-ressource {
  3709. display: inline-flex;
  3710. margin-top: 2rem;
  3711. background: rgb(9, 57, 139);
  3712. margin-right: 1rem;
  3713. padding-left: 0.3rem;
  3714. padding-right: 0.3rem;
  3715. color: rgb(255, 255, 255);
  3716. font-weight: 800;
  3717. vertical-align: middle;
  3718. }
  3719. .path-ressources.annuairederecherche .layout-content {
  3720. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3721. background-repeat: no-repeat;
  3722. background-position-y: 7rem;
  3723. max-width: 100vw;
  3724. background-size: cover;
  3725. }
  3726. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3727. padding-top: 8rem;
  3728. }
  3729. @media (max-width: 479px) {
  3730. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3731. padding-top: 5rem;
  3732. padding-left: 5rem;
  3733. }
  3734. }
  3735. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3736. padding-top: 3rem;
  3737. padding-bottom: 3rem;
  3738. vertical-align: middle;
  3739. color: rgb(255, 255, 255);
  3740. }
  3741. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3742. display: inline;
  3743. font-family: "Source Code Pro";
  3744. font-size: 2rem;
  3745. font-weight: 800;
  3746. color: rgb(255, 255, 255);
  3747. background-color: rgb(0, 158, 227);
  3748. text-transform: uppercase;
  3749. width: fit-content;
  3750. margin-left: 10%;
  3751. margin-top: 8rem;
  3752. }
  3753. @media (max-width: 479px) {
  3754. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3755. margin-right: 37%;
  3756. margin-bottom: 2rem;
  3757. margin-left: 0;
  3758. }
  3759. }
  3760. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3761. padding-top: 3rem;
  3762. flex: 0 1 50%;
  3763. margin-left: 20%;
  3764. }
  3765. @media (max-width: 479px) {
  3766. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3767. flex: 0 1 80%;
  3768. margin: 0;
  3769. }
  3770. }
  3771. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3772. background-color: rgb(255, 255, 255);
  3773. margin-bottom: 4rem;
  3774. }
  3775. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ {
  3776. margin-bottom: 3rem;
  3777. }
  3778. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo {
  3779. grid-column: 1;
  3780. grid-row: 1/span 3;
  3781. margin-right: 1rem;
  3782. max-height: 8rem;
  3783. }
  3784. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo a {
  3785. height: 8rem;
  3786. width: 8rem;
  3787. }
  3788. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-logo a img {
  3789. height: 100%;
  3790. width: 100%;
  3791. object-fit: contain;
  3792. }
  3793. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-title {
  3794. grid-column: 2;
  3795. font-weight: 800;
  3796. background-color: rgb(255, 255, 255);
  3797. }
  3798. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-body {
  3799. background-color: rgb(255, 255, 255);
  3800. grid-column: 2;
  3801. }
  3802. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-body p {
  3803. margin: 0;
  3804. }
  3805. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien {
  3806. background-color: rgb(255, 255, 255);
  3807. grid-column: 2;
  3808. }
  3809. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien a {
  3810. color: rgb(0, 0, 0);
  3811. text-decoration: underline;
  3812. }
  3813. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .node-type-partenaires_logo_footer_ div .field--name-field-lien a svg {
  3814. display: none;
  3815. }
  3816. .path-webform .region-content [aria-label="Message d'avertissement"] {
  3817. display: none;
  3818. }
  3819. .path-webform .region-content .block-system-main-block h2 {
  3820. display: none;
  3821. }
  3822. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  3823. display: flex;
  3824. flex-direction: row;
  3825. flex-wrap: wrap;
  3826. flex-basis: auto;
  3827. justify-content: flex-start;
  3828. }
  3829. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  3830. width: 100%;
  3831. font-family: "Source Code Pro";
  3832. font-size: 1.5rem;
  3833. font-weight: 800;
  3834. color: rgb(255, 255, 255);
  3835. background-color: rgb(0, 158, 227);
  3836. text-transform: uppercase;
  3837. padding-left: 13%;
  3838. padding-top: 2rem;
  3839. padding-bottom: 2rem;
  3840. vertical-align: middle;
  3841. }
  3842. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  3843. width: 100%;
  3844. font-family: "Source Code Pro";
  3845. font-size: 2rem;
  3846. font-weight: 800;
  3847. color: rgb(255, 255, 255);
  3848. background-color: rgb(0, 158, 227);
  3849. text-transform: uppercase;
  3850. width: fit-content;
  3851. margin-left: 13%;
  3852. margin-top: 8rem;
  3853. }
  3854. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  3855. margin-top: 10vh;
  3856. margin-left: 13%;
  3857. margin-right: 20%;
  3858. width: 60%;
  3859. }
  3860. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  3861. margin-left: 13%;
  3862. margin-right: 20%;
  3863. width: 60%;
  3864. display: flex;
  3865. flex-direction: row;
  3866. flex-wrap: wrap;
  3867. margin-top: 2rem;
  3868. }
  3869. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  3870. content: "*";
  3871. color: red;
  3872. font-size: 2rem;
  3873. padding-left: 0.5rem;
  3874. }
  3875. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  3876. width: 100%;
  3877. }
  3878. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  3879. width: 90%;
  3880. height: 5rem;
  3881. }
  3882. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  3883. margin-left: 13%;
  3884. margin-right: 20%;
  3885. width: 60%;
  3886. display: flex;
  3887. flex-direction: row;
  3888. flex-wrap: wrap;
  3889. margin-top: 2rem;
  3890. }
  3891. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  3892. content: "*";
  3893. color: red;
  3894. font-size: 2rem;
  3895. padding-left: 0.5rem;
  3896. }
  3897. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  3898. width: 100%;
  3899. }
  3900. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  3901. width: 90%;
  3902. }
  3903. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  3904. margin-left: 13%;
  3905. width: 27%;
  3906. display: flex;
  3907. flex-direction: row;
  3908. flex-wrap: wrap;
  3909. margin-top: 2rem;
  3910. }
  3911. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  3912. content: "*";
  3913. color: red;
  3914. font-size: 2rem;
  3915. padding-left: 0.5rem;
  3916. }
  3917. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  3918. width: 100%;
  3919. }
  3920. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  3921. width: 90%;
  3922. }
  3923. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  3924. margin-right: 20%;
  3925. width: 27%;
  3926. display: flex;
  3927. flex-direction: row;
  3928. flex-wrap: wrap;
  3929. margin-top: 2rem;
  3930. margin-right: 3rem;
  3931. }
  3932. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  3933. width: 100%;
  3934. }
  3935. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  3936. width: 100%;
  3937. }
  3938. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  3939. margin-left: 13%;
  3940. margin-right: 20%;
  3941. width: 60%;
  3942. display: flex;
  3943. flex-direction: row;
  3944. flex-wrap: wrap;
  3945. margin-top: 2rem;
  3946. }
  3947. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  3948. content: "*";
  3949. color: red;
  3950. font-size: 2rem;
  3951. padding-left: 0.5rem;
  3952. }
  3953. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  3954. width: 100%;
  3955. }
  3956. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  3957. width: 90%;
  3958. }
  3959. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  3960. margin-left: 13%;
  3961. margin-right: 20%;
  3962. width: 60%;
  3963. display: flex;
  3964. flex-direction: row;
  3965. flex-wrap: wrap;
  3966. margin-top: 2rem;
  3967. }
  3968. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  3969. content: "*";
  3970. color: red;
  3971. font-size: 2rem;
  3972. padding-left: 0.5rem;
  3973. }
  3974. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  3975. width: 100%;
  3976. }
  3977. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  3978. width: 90%;
  3979. }
  3980. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  3981. margin-left: 13%;
  3982. margin-right: 20%;
  3983. width: 60%;
  3984. display: flex;
  3985. flex-direction: row;
  3986. flex-wrap: wrap;
  3987. margin-top: 2rem;
  3988. }
  3989. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  3990. content: "*";
  3991. color: red;
  3992. font-size: 2rem;
  3993. padding-left: 1rem;
  3994. }
  3995. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  3996. width: 100%;
  3997. }
  3998. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  3999. width: 90%;
  4000. }
  4001. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  4002. width: 100%;
  4003. }
  4004. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  4005. margin-left: 13%;
  4006. margin-right: 20%;
  4007. width: 60%;
  4008. display: flex;
  4009. flex-direction: row;
  4010. flex-wrap: wrap;
  4011. margin-top: 2rem;
  4012. }
  4013. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  4014. width: 100%;
  4015. }
  4016. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  4017. width: 90%;
  4018. height: 3rem;
  4019. }
  4020. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  4021. margin-left: 13%;
  4022. margin-right: 20%;
  4023. width: 60%;
  4024. display: flex;
  4025. flex-direction: row;
  4026. flex-wrap: wrap;
  4027. margin-top: 2rem;
  4028. }
  4029. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4030. width: 100%;
  4031. }
  4032. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  4033. margin-left: 13%;
  4034. margin-right: 20%;
  4035. width: 60%;
  4036. display: flex;
  4037. flex-direction: row;
  4038. flex-wrap: wrap;
  4039. margin-top: 2rem;
  4040. }
  4041. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  4042. width: 100%;
  4043. }
  4044. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  4045. width: 90%;
  4046. height: 3rem;
  4047. }
  4048. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4049. margin-left: 13%;
  4050. width: 28%;
  4051. display: flex;
  4052. flex-direction: row;
  4053. flex-wrap: wrap;
  4054. margin-top: 2rem;
  4055. }
  4056. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4057. content: "*";
  4058. color: red;
  4059. font-size: 2rem;
  4060. padding-left: 0.5rem;
  4061. }
  4062. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4063. width: 100%;
  4064. }
  4065. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4066. width: 90%;
  4067. }
  4068. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4069. margin-right: 20%;
  4070. width: 29%;
  4071. display: flex;
  4072. flex-direction: row;
  4073. flex-wrap: wrap;
  4074. margin-top: 2rem;
  4075. margin-right: 3rem;
  4076. }
  4077. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4078. content: "*";
  4079. color: red;
  4080. font-size: 2rem;
  4081. padding-left: 0.5rem;
  4082. }
  4083. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4084. width: 100%;
  4085. }
  4086. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4087. width: 90%;
  4088. }
  4089. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4090. width: 60%;
  4091. }
  4092. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4093. width: 30%;
  4094. align-self: flex-end;
  4095. background-color: rgb(0, 158, 227);
  4096. text-transform: uppercase;
  4097. color: rgb(255, 255, 255);
  4098. font-size: 1.2rem;
  4099. font-weight: 600;
  4100. float: right;
  4101. margin-top: 1rem;
  4102. border: none;
  4103. }
  4104. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4105. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>');
  4106. }
  4107. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4108. display: flex;
  4109. flex-direction: row;
  4110. flex-wrap: wrap;
  4111. flex-basis: auto;
  4112. justify-content: flex-start;
  4113. }
  4114. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4115. width: 100%;
  4116. font-family: "Source Code Pro";
  4117. font-size: 1.5rem;
  4118. font-weight: 800;
  4119. color: rgb(255, 255, 255);
  4120. background-color: rgb(0, 158, 227);
  4121. text-transform: uppercase;
  4122. padding-left: 13%;
  4123. padding-top: 2rem;
  4124. padding-bottom: 2rem;
  4125. vertical-align: middle;
  4126. }
  4127. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4128. width: 100%;
  4129. font-family: "Source Code Pro";
  4130. font-size: 2rem;
  4131. font-weight: 800;
  4132. color: rgb(255, 255, 255);
  4133. background-color: rgb(0, 158, 227);
  4134. text-transform: uppercase;
  4135. width: fit-content;
  4136. margin-left: 13%;
  4137. margin-top: 8rem;
  4138. }
  4139. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4140. margin-top: 10vh;
  4141. margin-left: 13%;
  4142. margin-right: 20%;
  4143. width: 60%;
  4144. }
  4145. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4146. margin-left: 13%;
  4147. margin-right: 20%;
  4148. width: 60%;
  4149. display: flex;
  4150. flex-direction: row;
  4151. flex-wrap: wrap;
  4152. margin-top: 2rem;
  4153. }
  4154. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4155. content: "*";
  4156. color: red;
  4157. font-size: 2rem;
  4158. padding-left: 0.5rem;
  4159. }
  4160. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4161. width: 100%;
  4162. }
  4163. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4164. width: 90%;
  4165. height: 5rem;
  4166. }
  4167. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4168. margin-left: 13%;
  4169. margin-right: 20%;
  4170. width: 60%;
  4171. display: flex;
  4172. flex-direction: row;
  4173. flex-wrap: wrap;
  4174. margin-top: 2rem;
  4175. }
  4176. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4177. content: "*";
  4178. color: red;
  4179. font-size: 2rem;
  4180. padding-left: 0.5rem;
  4181. }
  4182. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4183. width: 100%;
  4184. }
  4185. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4186. width: 90%;
  4187. }
  4188. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4189. margin-left: 13%;
  4190. margin-right: 20%;
  4191. width: 60%;
  4192. display: flex;
  4193. flex-direction: row;
  4194. flex-wrap: wrap;
  4195. margin-top: 2rem;
  4196. }
  4197. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4198. content: "*";
  4199. color: red;
  4200. font-size: 2rem;
  4201. padding-left: 0.5rem;
  4202. }
  4203. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4204. width: 100%;
  4205. }
  4206. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4207. width: 90%;
  4208. }
  4209. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4210. width: 100%;
  4211. }
  4212. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4213. margin-left: 13%;
  4214. margin-right: 20%;
  4215. width: 60%;
  4216. display: flex;
  4217. flex-direction: row;
  4218. flex-wrap: wrap;
  4219. margin-top: 2rem;
  4220. }
  4221. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4222. width: 100%;
  4223. }
  4224. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4225. width: 90%;
  4226. }
  4227. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4228. margin-left: 13%;
  4229. margin-right: 20%;
  4230. width: 60%;
  4231. display: flex;
  4232. flex-direction: row;
  4233. flex-wrap: wrap;
  4234. margin-top: 2rem;
  4235. }
  4236. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4237. width: 100%;
  4238. }
  4239. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4240. width: 90%;
  4241. }
  4242. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4243. margin-left: 13%;
  4244. margin-right: 20%;
  4245. width: 60%;
  4246. display: flex;
  4247. flex-direction: row;
  4248. flex-wrap: wrap;
  4249. margin-top: 2rem;
  4250. }
  4251. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4252. margin-left: 13%;
  4253. margin-right: 20%;
  4254. width: 60%;
  4255. display: flex;
  4256. flex-direction: row;
  4257. flex-wrap: wrap;
  4258. margin-top: 2rem;
  4259. }
  4260. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4261. width: 100%;
  4262. }
  4263. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  4264. margin-left: 13%;
  4265. margin-right: 20%;
  4266. width: 60%;
  4267. display: flex;
  4268. flex-direction: row;
  4269. flex-wrap: wrap;
  4270. margin-top: 2rem;
  4271. }
  4272. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  4273. content: "*";
  4274. color: red;
  4275. font-size: 2rem;
  4276. padding-left: 0.5rem;
  4277. }
  4278. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4279. width: 100%;
  4280. }
  4281. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4282. width: 90%;
  4283. }
  4284. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4285. margin-left: 13%;
  4286. display: flex;
  4287. flex-direction: row;
  4288. flex-wrap: wrap;
  4289. margin-top: 2rem;
  4290. width: 28%;
  4291. }
  4292. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4293. content: "*";
  4294. color: red;
  4295. font-size: 2rem;
  4296. padding-left: 0.5rem;
  4297. }
  4298. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4299. width: 100%;
  4300. }
  4301. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4302. width: 90%;
  4303. }
  4304. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4305. margin-right: 20%;
  4306. width: 29%;
  4307. display: flex;
  4308. flex-direction: row;
  4309. flex-wrap: wrap;
  4310. margin-top: 2rem;
  4311. margin-right: 3rem;
  4312. }
  4313. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4314. content: "*";
  4315. color: red;
  4316. font-size: 2rem;
  4317. padding-left: 0.5rem;
  4318. }
  4319. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4320. width: 100%;
  4321. }
  4322. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4323. width: 90%;
  4324. }
  4325. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-j-accepte-que-mon-courriel-soit-diffuse-sur-la-page-de-mon-offre {
  4326. margin-top: 3rem;
  4327. margin-bottom: 3rem;
  4328. margin-left: 13%;
  4329. margin-right: 20%;
  4330. width: 60%;
  4331. }
  4332. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4333. width: 60%;
  4334. }
  4335. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4336. width: 30%;
  4337. align-self: flex-end;
  4338. background-color: rgb(0, 158, 227);
  4339. text-transform: uppercase;
  4340. color: rgb(255, 255, 255);
  4341. font-size: 1.2rem;
  4342. font-weight: 600;
  4343. float: right;
  4344. margin-top: 1rem;
  4345. border: none;
  4346. }
  4347. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4348. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>');
  4349. }
  4350. .path-webform .region-content #webform-submission-question-add-form {
  4351. display: flex;
  4352. flex-direction: row;
  4353. flex-wrap: wrap;
  4354. flex-basis: auto;
  4355. justify-content: flex-start;
  4356. margin-top: 10vh;
  4357. width: 60%;
  4358. margin-left: 13%;
  4359. margin-right: 20%;
  4360. }
  4361. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4362. display: flex;
  4363. flex-direction: row;
  4364. flex-wrap: wrap;
  4365. margin-top: 2rem;
  4366. width: 100%;
  4367. }
  4368. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4369. content: "*";
  4370. color: red;
  4371. font-size: 2rem;
  4372. padding-left: 0.5rem;
  4373. }
  4374. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4375. width: 100%;
  4376. }
  4377. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4378. width: 90%;
  4379. }
  4380. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4381. display: flex;
  4382. flex-direction: row;
  4383. flex-wrap: wrap;
  4384. margin-top: 2rem;
  4385. width: 100%;
  4386. }
  4387. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4388. content: "*";
  4389. color: red;
  4390. font-size: 2rem;
  4391. padding-left: 0.9rem;
  4392. }
  4393. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4394. width: 100%;
  4395. }
  4396. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4397. width: 90%;
  4398. }
  4399. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4400. width: 100%;
  4401. height: 5rem;
  4402. }
  4403. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4404. width: 90%;
  4405. }
  4406. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4407. width: 30%;
  4408. align-self: flex-end;
  4409. background-color: rgb(0, 158, 227);
  4410. text-transform: uppercase;
  4411. color: rgb(255, 255, 255);
  4412. font-size: 1.2rem;
  4413. font-weight: 600;
  4414. float: right;
  4415. margin-top: 1rem;
  4416. border: none;
  4417. }
  4418. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4419. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" fill="rgb(255,255,255)" stroke="rgb(255,255,255)" stroke-width="0.7"/></svg>');
  4420. }
  4421. .path-projets .region-content #block-contenudelapageprincipale span {
  4422. padding-top: 3rem;
  4423. padding-bottom: 3rem;
  4424. vertical-align: middle;
  4425. }
  4426. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4427. margin: 0;
  4428. padding-top: 2rem;
  4429. height: 4rem;
  4430. color: rgb(255, 255, 255);
  4431. font-family: "Source Code Pro";
  4432. text-transform: uppercase;
  4433. background: rgb(0, 158, 227);
  4434. padding-left: 13%;
  4435. }
  4436. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4437. display: grid;
  4438. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4439. }
  4440. @media (max-width: 810px) {
  4441. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4442. display: flex;
  4443. flex-direction: column;
  4444. }
  4445. }
  4446. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4447. grid-column: 1/span 10;
  4448. }
  4449. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4450. overflow: scroll;
  4451. height: 210px;
  4452. margin: 17px 10px 17px 20px !important;
  4453. padding-right: 10px;
  4454. }
  4455. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4456. display: none;
  4457. }
  4458. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4459. display: block !important;
  4460. }
  4461. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4462. display: block !important;
  4463. }
  4464. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4465. display: none;
  4466. }
  4467. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4468. grid-column: 3/span 5;
  4469. margin: auto;
  4470. }
  4471. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4472. display: none;
  4473. }
  4474. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .config_pages--type--les-projets .field--name-field-introduction p:nth-of-type(1) {
  4475. font-size: 1.5rem;
  4476. }
  4477. @media (max-width: 810px) {
  4478. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .config_pages--type--les-projets .field--name-field-introduction p:nth-of-type(1) {
  4479. font-size: 1.3rem;
  4480. }
  4481. }
  4482. @media (max-width: 810px) {
  4483. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4484. padding: 1rem;
  4485. }
  4486. }
  4487. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4488. grid-column: 8/span 9;
  4489. margin-top: 4rem;
  4490. background-color: rgb(0, 158, 227);
  4491. height: fit-content;
  4492. width: 60%;
  4493. margin-left: 2rem;
  4494. grid-row: 2;
  4495. }
  4496. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4497. display: block;
  4498. }
  4499. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4500. display: flex;
  4501. flex-direction: column;
  4502. margin-top: 2rem;
  4503. margin-bottom: 2rem;
  4504. margin-left: 1.5rem;
  4505. margin-right: 1.5rem;
  4506. text-align: center;
  4507. }
  4508. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4509. font-weight: 800;
  4510. color: rgb(255, 255, 255);
  4511. font-size: 1.3rem;
  4512. }
  4513. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4514. margin-left: auto;
  4515. padding-top: 1rem;
  4516. display: block;
  4517. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4518. }
  4519. @media (max-width: 810px) {
  4520. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4521. margin: auto;
  4522. }
  4523. }
  4524. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4525. grid-column: 2/span 7;
  4526. }
  4527. @media (max-width: 810px) {
  4528. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4529. padding: 1rem;
  4530. }
  4531. }
  4532. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4533. display: none;
  4534. }
  4535. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4536. margin: auto;
  4537. }
  4538. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4539. scroll-margin-top: 10rem;
  4540. }
  4541. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4542. margin-top: 4rem;
  4543. padding-left: 0.5rem;
  4544. display: flex;
  4545. flex-direction: column;
  4546. }
  4547. @media (max-width: 479px) {
  4548. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4549. flex-direction: column;
  4550. padding-bottom: 3rem;
  4551. margin-top: 0rem;
  4552. }
  4553. }
  4554. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4555. content: "Filtrer par :";
  4556. margin-right: 2rem;
  4557. margin-bottom: 1rem;
  4558. margin-left: 0.5rem;
  4559. font-weight: 900;
  4560. min-width: fit-content;
  4561. }
  4562. @media (max-width: 479px) {
  4563. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4564. padding-bottom: 1rem;
  4565. }
  4566. }
  4567. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4568. margin-top: 2rem;
  4569. display: flex;
  4570. flex-direction: row;
  4571. flex-wrap: wrap;
  4572. }
  4573. @media (max-width: 810px) {
  4574. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper {
  4575. flex-direction: column;
  4576. }
  4577. }
  4578. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4579. width: 25%;
  4580. }
  4581. @media (max-width: 810px) {
  4582. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  4583. width: 100%;
  4584. }
  4585. }
  4586. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4587. color: rgb(9, 57, 139);
  4588. line-height: 1.5rem;
  4589. padding: 0.5rem;
  4590. padding-right: 1rem;
  4591. padding-left: 1rem;
  4592. }
  4593. @media (max-width: 479px) {
  4594. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4595. padding-left: 0rem;
  4596. padding-right: 0rem;
  4597. padding-top: 2rem;
  4598. }
  4599. }
  4600. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4601. display: flex;
  4602. flex-direction: column;
  4603. }
  4604. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child a {
  4605. color: rgb(9, 57, 139);
  4606. }
  4607. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo {
  4608. order: 1;
  4609. }
  4610. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo .field__item {
  4611. display: none;
  4612. }
  4613. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo .field__item:first-child {
  4614. display: block;
  4615. }
  4616. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo img {
  4617. width: 100%;
  4618. max-height: 175px;
  4619. object-fit: cover;
  4620. }
  4621. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-photo::after {
  4622. display: block;
  4623. content: url('data:image/svg+xml,<svg width="160" height="25" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="2.5"/></svg>');
  4624. }
  4625. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse {
  4626. order: 2;
  4627. display: flex;
  4628. text-transform: uppercase;
  4629. font-size: 0.9rem;
  4630. font-weight: 800;
  4631. margin-top: 0.8rem;
  4632. line-height: 1rem;
  4633. }
  4634. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address {
  4635. display: flex;
  4636. flex-direction: row;
  4637. margin: 0;
  4638. }
  4639. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .postal-code {
  4640. display: none;
  4641. }
  4642. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  4643. padding-top: 0 !important;
  4644. padding-bottom: 0 !important;
  4645. }
  4646. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  4647. content: ",";
  4648. margin-right: 0.3rem;
  4649. }
  4650. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .country {
  4651. padding-top: 0 !important;
  4652. padding-bottom: 0 !important;
  4653. }
  4654. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-sous-titre {
  4655. margin-top: 0.5rem;
  4656. font-size: 0.9rem;
  4657. font-weight: 800;
  4658. order: 4;
  4659. }
  4660. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-title {
  4661. order: 3;
  4662. margin-top: 0.5rem;
  4663. font-size: 0.8rem;
  4664. font-weight: 800;
  4665. }
  4666. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-title h2 {
  4667. margin: 0;
  4668. }
  4669. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-incube {
  4670. order: 4;
  4671. color: red;
  4672. margin-top: 0.8rem;
  4673. font-size: 0.7rem;
  4674. }
  4675. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-region {
  4676. display: none;
  4677. }
  4678. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-type-de-moa {
  4679. display: none;
  4680. }
  4681. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-type-de-projet {
  4682. display: none;
  4683. }
  4684. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child .field--name-field-etape-du-projet {
  4685. display: none;
  4686. }
  4687. .path-node.page-node-type-projet .layout-container {
  4688. overflow: unset;
  4689. }
  4690. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4691. padding-top: 4rem;
  4692. margin-left: 10%;
  4693. margin-right: 10%;
  4694. width: 80vw;
  4695. }
  4696. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4697. display: flex;
  4698. flex-direction: row;
  4699. margin-bottom: 2rem;
  4700. }
  4701. @media (max-width: 568px) {
  4702. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4703. flex-direction: column;
  4704. }
  4705. }
  4706. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  4707. width: 60%;
  4708. padding-right: 2rem;
  4709. }
  4710. @media (max-width: 568px) {
  4711. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo {
  4712. width: 100%;
  4713. }
  4714. }
  4715. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4716. height: auto;
  4717. max-height: 600px;
  4718. object-fit: contain;
  4719. width: inherit;
  4720. }
  4721. @media (max-width: 810px) {
  4722. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4723. padding-top: 1rem;
  4724. object-fit: cover;
  4725. width: 100%;
  4726. }
  4727. }
  4728. @media (max-width: 568px) {
  4729. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo img {
  4730. width: 100%;
  4731. max-height: 300px;
  4732. }
  4733. }
  4734. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-dots > li {
  4735. display: inline-block;
  4736. }
  4737. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-dots > li:only-child {
  4738. display: none;
  4739. }
  4740. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev::before, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next::before {
  4741. opacity: 1 !important;
  4742. top: 0 !important;
  4743. }
  4744. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-prev, .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .block-entity-fieldnodefield-photo .slick-next {
  4745. top: 98% !important;
  4746. }
  4747. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4748. width: 40%;
  4749. }
  4750. @media (max-width: 568px) {
  4751. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4752. width: 100%;
  4753. }
  4754. }
  4755. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle {
  4756. margin: 0;
  4757. }
  4758. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4759. font-family: "Marianne";
  4760. font-size: 2.3rem;
  4761. font-weight: 800;
  4762. color: rgb(0, 158, 227);
  4763. }
  4764. @media (max-width: 1624px) {
  4765. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4766. font-size: 2.3rem;
  4767. }
  4768. }
  4769. @media (max-width: 1384px) {
  4770. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4771. font-size: 2rem;
  4772. }
  4773. }
  4774. @media (max-width: 1216px) {
  4775. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4776. font-size: rem;
  4777. }
  4778. }
  4779. @media (max-width: 810px) {
  4780. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodetitle .field--name-title {
  4781. font-size: 1.7rem;
  4782. }
  4783. }
  4784. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4785. margin-top: 2rem;
  4786. }
  4787. @media (max-width: 1624px) {
  4788. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4789. margin-top: 1rem;
  4790. padding-top: 0.5rem;
  4791. }
  4792. }
  4793. @media (max-width: 1384px) {
  4794. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4795. margin-top: 0.8rem;
  4796. padding-top: 0.5rem;
  4797. }
  4798. }
  4799. @media (max-width: 810px) {
  4800. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe {
  4801. padding-top: 0.5rem;
  4802. }
  4803. }
  4804. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4805. color: rgb(9, 57, 139);
  4806. font-size: 1.5rem;
  4807. font-weight: 900;
  4808. text-transform: uppercase;
  4809. }
  4810. @media (max-width: 1624px) {
  4811. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4812. font-size: 1.3rem;
  4813. }
  4814. }
  4815. @media (max-width: 1216px) {
  4816. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4817. font-size: 1.1rem;
  4818. }
  4819. }
  4820. @media (max-width: 810px) {
  4821. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-equipe .field--name-field-equipe {
  4822. font-size: 1rem;
  4823. }
  4824. }
  4825. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  4826. margin-top: 2rem;
  4827. width: fit-content;
  4828. }
  4829. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube .field--name-field-incube {
  4830. background-color: rgb(225, 0, 15);
  4831. color: white;
  4832. font-weight: 800;
  4833. padding-right: 0.3rem;
  4834. padding-left: 0.2rem;
  4835. }
  4836. @media (max-width: 1624px) {
  4837. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right .block-entity-fieldnodefield-incube {
  4838. margin-top: 1rem;
  4839. }
  4840. }
  4841. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4842. display: flex;
  4843. flex-direction: row;
  4844. border: 0.1rem solid;
  4845. justify-content: space-evenly;
  4846. width: 90%;
  4847. margin-top: 3rem;
  4848. font-weight: 600;
  4849. }
  4850. @media (max-width: 479px) {
  4851. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4852. flex-direction: column;
  4853. width: 100%;
  4854. }
  4855. }
  4856. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  4857. padding-right: 1rem;
  4858. order: 1;
  4859. width: 30%;
  4860. position: relative;
  4861. height: 80px;
  4862. text-align: center;
  4863. }
  4864. @media (max-width: 479px) {
  4865. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left {
  4866. width: 100%;
  4867. }
  4868. }
  4869. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left::before {
  4870. content: url("../images/pictos/picto_lieu.svg");
  4871. min-width: 30px;
  4872. height: auto;
  4873. padding-right: 1rem;
  4874. position: absolute;
  4875. left: 0;
  4876. margin-top: 0.83em;
  4877. margin-left: 1rem;
  4878. }
  4879. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-region {
  4880. order: 1;
  4881. margin-left: 70px;
  4882. margin-bottom: 1rem;
  4883. height: fit-content;
  4884. }
  4885. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse {
  4886. display: inline-flex;
  4887. order: 2;
  4888. margin-left: 70px;
  4889. height: fit-content;
  4890. }
  4891. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse {
  4892. display: flex;
  4893. flex-direction: row;
  4894. margin-top: 0.83em;
  4895. }
  4896. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address {
  4897. margin: auto;
  4898. display: flex;
  4899. flex-direction: column;
  4900. justify-content: start;
  4901. margin: 0;
  4902. }
  4903. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .top_bottom_left .block-entity-fieldnodefield-adresse .field--name-field-adresse .address .country {
  4904. display: none;
  4905. }
  4906. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  4907. order: 4;
  4908. padding-left: 1rem;
  4909. padding-right: 1rem;
  4910. padding-bottom: 1rem;
  4911. border-left: 0.1rem solid;
  4912. width: 30%;
  4913. }
  4914. @media (max-width: 479px) {
  4915. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet {
  4916. width: 100%;
  4917. border-top: 0.1rem solid;
  4918. border-left: 0;
  4919. padding-right: 0rem;
  4920. padding-left: 0rem;
  4921. }
  4922. }
  4923. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  4924. color: rgb(9, 57, 139);
  4925. font-size: 1.2rem;
  4926. font-weight: 900;
  4927. text-transform: uppercase;
  4928. margin-bottom: 0rem !important;
  4929. }
  4930. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2:after {
  4931. content: " :";
  4932. }
  4933. @media (max-width: 479px) {
  4934. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet h2 {
  4935. padding-right: 1rem;
  4936. padding-left: 1rem;
  4937. }
  4938. }
  4939. @media (max-width: 479px) {
  4940. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__item {
  4941. padding-right: 1rem;
  4942. padding-left: 1rem;
  4943. }
  4944. }
  4945. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-etape-du-projet .field__label {
  4946. display: none;
  4947. }
  4948. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  4949. order: 2;
  4950. padding-left: 1rem;
  4951. border-left: 0.1rem solid;
  4952. padding-bottom: 1rem;
  4953. width: 20%;
  4954. }
  4955. @media (max-width: 479px) {
  4956. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa {
  4957. border-left: 0;
  4958. border-top: 0.1rem solid;
  4959. width: 100%;
  4960. padding-right: 0rem;
  4961. padding-left: 0rem;
  4962. }
  4963. }
  4964. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  4965. color: rgb(9, 57, 139);
  4966. font-size: 1.2rem;
  4967. font-weight: 900;
  4968. text-transform: uppercase;
  4969. margin-bottom: 0rem !important;
  4970. }
  4971. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2:after {
  4972. content: " :";
  4973. }
  4974. @media (max-width: 479px) {
  4975. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa h2 {
  4976. padding-right: 1rem;
  4977. padding-left: 1rem;
  4978. }
  4979. }
  4980. @media (max-width: 479px) {
  4981. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__item {
  4982. padding-right: 1rem;
  4983. padding-left: 1rem;
  4984. }
  4985. }
  4986. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-moa .field__label {
  4987. display: none;
  4988. }
  4989. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  4990. order: 3;
  4991. padding-left: 1rem;
  4992. padding-bottom: 1rem;
  4993. border-left: 0.1rem solid;
  4994. width: 20%;
  4995. }
  4996. @media (max-width: 479px) {
  4997. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet {
  4998. border-left: 0;
  4999. border-top: 0.1rem solid;
  5000. width: 100%;
  5001. padding-right: 0rem;
  5002. padding-left: 0rem;
  5003. }
  5004. }
  5005. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  5006. color: rgb(9, 57, 139);
  5007. font-size: 1.2rem;
  5008. font-weight: 900;
  5009. text-transform: uppercase;
  5010. margin-bottom: 0rem !important;
  5011. }
  5012. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2:after {
  5013. content: " :";
  5014. }
  5015. @media (max-width: 479px) {
  5016. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet h2 {
  5017. padding-right: 1rem;
  5018. padding-left: 1rem;
  5019. }
  5020. }
  5021. @media (max-width: 479px) {
  5022. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__item {
  5023. padding-right: 1rem;
  5024. padding-left: 1rem;
  5025. }
  5026. }
  5027. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom .block-entity-fieldnodefield-type-de-projet .field__label {
  5028. display: none;
  5029. }
  5030. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5031. margin-top: 5rem;
  5032. }
  5033. @media (max-width: 479px) {
  5034. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5035. display: none;
  5036. }
  5037. }
  5038. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5039. display: flex;
  5040. justify-content: flex-end;
  5041. position: -webkit-sticky;
  5042. position: sticky;
  5043. top: 10rem;
  5044. }
  5045. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  5046. display: flex;
  5047. justify-content: flex-end;
  5048. width: 50%;
  5049. background-color: rgb(255, 255, 255);
  5050. padding-right: 2rem;
  5051. }
  5052. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  5053. display: flex;
  5054. font-size: 1rem;
  5055. font-weight: 1000;
  5056. color: rgb(9, 57, 139);
  5057. border-bottom: 1px solid rgb(0, 158, 227);
  5058. padding-bottom: 0.5rem;
  5059. padding-right: 1rem;
  5060. margin-bottom: 0.8rem;
  5061. }
  5062. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  5063. text-decoration: underline;
  5064. }
  5065. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5066. margin-top: 5rem;
  5067. flex: 0 1 50%;
  5068. }
  5069. @media (max-width: 479px) {
  5070. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5071. flex: 0 1 100%;
  5072. margin-top: 1rem;
  5073. }
  5074. }
  5075. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5076. width: 90%;
  5077. }
  5078. @media (max-width: 479px) {
  5079. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5080. width: 80%;
  5081. margin: auto;
  5082. }
  5083. }
  5084. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  5085. margin-top: 0;
  5086. }
  5087. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .field--type-text-with-summary {
  5088. background-color: white;
  5089. }
  5090. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  5091. background-color: rgb(255, 255, 255);
  5092. }
  5093. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph {
  5094. margin-top: 3rem;
  5095. }
  5096. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5097. font-size: 1.5rem;
  5098. font-weight: 1000;
  5099. font-family: "Source Code Pro";
  5100. color: rgb(9, 57, 139);
  5101. text-transform: uppercase;
  5102. margin-bottom: 0.8rem;
  5103. }
  5104. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  5105. text-transform: none !important;
  5106. }
  5107. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  5108. width: 100%;
  5109. height: auto;
  5110. }
  5111. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .field--type-text-long {
  5112. padding-right: 2rem;
  5113. }
  5114. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  5115. margin-top: 0;
  5116. }
  5117. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  5118. color: rgb(0, 0, 0);
  5119. text-decoration: underline;
  5120. }
  5121. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  5122. display: none;
  5123. }
  5124. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  5125. overflow-y: visible !important;
  5126. }
  5127. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  5128. font-size: 1.5rem;
  5129. font-weight: 1000;
  5130. font-family: "Source Code Pro";
  5131. color: rgb(9, 57, 139);
  5132. text-transform: uppercase;
  5133. margin-top: 2rem;
  5134. margin-bottom: 0.8rem;
  5135. }
  5136. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  5137. display: flex;
  5138. flex-direction: row;
  5139. justify-content: space-between;
  5140. }
  5141. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire {
  5142. display: flex;
  5143. flex-direction: column;
  5144. align-items: center;
  5145. }
  5146. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items .paragraph--type--partenaire .field--name-field-lien {
  5147. padding-top: 1rem;
  5148. }
  5149. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5150. margin-top: 5rem;
  5151. }
  5152. @media (max-width: 479px) {
  5153. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5154. margin-top: 2rem;
  5155. }
  5156. }
  5157. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5158. display: flex;
  5159. flex-direction: column;
  5160. width: 65%;
  5161. }
  5162. @media (max-width: 479px) {
  5163. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5164. width: 80%;
  5165. margin: auto;
  5166. }
  5167. }
  5168. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers h2 {
  5169. display: none;
  5170. }
  5171. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .field__item {
  5172. height: fit-content;
  5173. border: 2px solid rgb(0, 158, 227);
  5174. background-color: rgb(255, 255, 255);
  5175. margin-bottom: 1rem;
  5176. min-height: 4rem;
  5177. color: rgb(0, 158, 227);
  5178. padding-left: 1rem;
  5179. padding-top: 1rem;
  5180. }
  5181. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers span:nth-of-type(2) {
  5182. display: none;
  5183. }
  5184. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image {
  5185. height: inherit;
  5186. margin: auto;
  5187. }
  5188. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image ::before {
  5189. content: url("../images/pictos/download.png");
  5190. min-width: 30px;
  5191. height: auto;
  5192. padding-right: 2rem;
  5193. }
  5194. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--image a {
  5195. hyphens: auto;
  5196. display: inline-flex;
  5197. color: rgb(0, 158, 227);
  5198. font-weight: 800;
  5199. }
  5200. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf {
  5201. height: inherit;
  5202. margin: auto;
  5203. }
  5204. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf ::before {
  5205. content: url("../images/pictos/download.png");
  5206. min-width: 30px;
  5207. height: auto;
  5208. padding-right: 2rem;
  5209. }
  5210. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers .file--mime-application-pdf a {
  5211. hyphens: auto;
  5212. display: inline-flex;
  5213. color: rgb(0, 158, 227);
  5214. font-weight: 800;
  5215. }
  5216. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens h2 {
  5217. display: none;
  5218. }
  5219. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  5220. margin: auto;
  5221. height: fit-content;
  5222. border: 2px solid rgb(0, 158, 227);
  5223. min-height: 4rem;
  5224. background: rgb(255, 255, 255);
  5225. color: rgb(0, 158, 227);
  5226. padding-left: 1rem;
  5227. padding-top: 1rem;
  5228. margin-bottom: 1rem;
  5229. }
  5230. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  5231. display: inline-flex;
  5232. align-items: center;
  5233. color: rgb(0, 158, 227);
  5234. font-weight: 800;
  5235. }
  5236. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  5237. content: url("../images/pictos/external_link.png");
  5238. min-width: 30px;
  5239. height: auto;
  5240. padding-right: 2rem;
  5241. }
  5242. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  5243. display: none;
  5244. }
  5245. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- {
  5246. margin-top: 3rem;
  5247. }
  5248. @media (max-width: 479px) {
  5249. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- {
  5250. margin-top: 2rem;
  5251. }
  5252. }
  5253. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- h2 {
  5254. font-size: 0.8rem;
  5255. color: rgb(0, 0, 0);
  5256. font-weight: 900;
  5257. }
  5258. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource {
  5259. display: flex;
  5260. flex-direction: column;
  5261. border: 2px solid rgb(0, 158, 227);
  5262. padding: 1rem;
  5263. height: fit-content;
  5264. margin-bottom: 1rem;
  5265. background-color: rgb(255, 255, 255);
  5266. }
  5267. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div {
  5268. display: flex;
  5269. flex-direction: column;
  5270. }
  5271. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title {
  5272. order: 3;
  5273. }
  5274. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title h2 {
  5275. margin: 0;
  5276. }
  5277. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-title h2 a {
  5278. color: rgb(0, 0, 0);
  5279. font-size: 1rem;
  5280. font-weight: 900;
  5281. font-style: italic;
  5282. }
  5283. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-sous-titre {
  5284. display: none;
  5285. }
  5286. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-type-de-ressource {
  5287. order: 2;
  5288. text-transform: uppercase;
  5289. color: rgb(0, 158, 227);
  5290. font-weight: 900;
  5291. font-size: 0.8rem;
  5292. }
  5293. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- {
  5294. order: 5;
  5295. font-weight: 800;
  5296. }
  5297. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- p {
  5298. margin: 0;
  5299. }
  5300. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-auteur-s- .field__label {
  5301. display: none;
  5302. }
  5303. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-edition p {
  5304. margin: 0;
  5305. }
  5306. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-edition .field__label {
  5307. display: none;
  5308. }
  5309. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-images {
  5310. order: 1;
  5311. width: 25%;
  5312. }
  5313. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-images img {
  5314. width: 100%;
  5315. height: auto;
  5316. }
  5317. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-date-de-parution {
  5318. order: 6;
  5319. }
  5320. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-date-de-parution .field__label {
  5321. display: none;
  5322. }
  5323. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs {
  5324. order: 7;
  5325. display: flex;
  5326. margin-top: 0.8rem;
  5327. flex-direction: row;
  5328. flex-wrap: wrap;
  5329. }
  5330. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__label {
  5331. display: none;
  5332. }
  5333. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__items {
  5334. display: flex;
  5335. flex-direction: row;
  5336. flex-wrap: wrap;
  5337. }
  5338. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__item {
  5339. margin-right: 0.5rem;
  5340. padding-right: 0.3rem;
  5341. font-size: 0.8rem;
  5342. margin-top: 0.2rem;
  5343. }
  5344. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__item a {
  5345. background: rgb(9, 57, 139);
  5346. color: rgb(255, 255, 255);
  5347. font-weight: 800;
  5348. vertical-align: super;
  5349. padding-left: 0.1rem;
  5350. padding-right: 0.1rem;
  5351. display: inline-flex;
  5352. }
  5353. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div ul.links.inline {
  5354. display: none;
  5355. }
  5356. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images {
  5357. order: 1;
  5358. width: 100%;
  5359. }
  5360. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images .field__item:not(:first-of-type) {
  5361. display: none;
  5362. }
  5363. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource.type-les-projets-en-images .field--name-field-images img {
  5364. width: 100%;
  5365. height: auto;
  5366. }
  5367. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5368. width: 50%;
  5369. margin: auto;
  5370. display: flex;
  5371. flex-direction: row;
  5372. flex-wrap: wrap;
  5373. }
  5374. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires h2 {
  5375. display: none;
  5376. }
  5377. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires {
  5378. display: flex;
  5379. flex-direction: row;
  5380. flex-wrap: wrap;
  5381. justify-content: space-between;
  5382. }
  5383. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires .field--name-field-titre {
  5384. display: none;
  5385. }
  5386. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires .field--name-field-partenaires .paragraph--type--partenaire {
  5387. display: flex;
  5388. flex-direction: column;
  5389. }
  5390. .path-incubateur {
  5391. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5392. background-repeat: no-repeat;
  5393. background-position-y: 7rem;
  5394. max-width: 100vw;
  5395. background-size: contain;
  5396. }
  5397. .path-incubateur .layout-container {
  5398. overflow: unset;
  5399. }
  5400. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5401. width: fit-content;
  5402. }
  5403. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5404. width: fit-content;
  5405. margin-left: 11%;
  5406. margin-top: 15vh;
  5407. color: rgb(255, 255, 255);
  5408. font-family: "Source Code Pro";
  5409. text-transform: uppercase;
  5410. font-size: 2rem;
  5411. font-weight: 800;
  5412. background: rgb(0, 158, 227);
  5413. margin-bottom: 15vh;
  5414. }
  5415. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5416. position: relative;
  5417. }
  5418. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block {
  5419. display: flex;
  5420. justify-content: flex-end;
  5421. position: -webkit-sticky;
  5422. position: sticky;
  5423. top: 10rem;
  5424. }
  5425. @media (max-width: 810px) {
  5426. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block {
  5427. display: none;
  5428. }
  5429. }
  5430. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme {
  5431. display: flex;
  5432. flex-direction: row-reverse;
  5433. width: 50%;
  5434. background-color: rgb(255, 255, 255);
  5435. padding-right: 2rem;
  5436. }
  5437. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-titre {
  5438. display: flex;
  5439. flex-direction: column;
  5440. font-size: 1rem;
  5441. font-weight: 1000;
  5442. color: rgb(9, 57, 139);
  5443. border-bottom: 1px solid rgb(0, 158, 227);
  5444. padding-bottom: 0.8rem;
  5445. padding-right: 1rem;
  5446. margin-top: 1rem;
  5447. scroll-margin-top: 7em;
  5448. }
  5449. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-titre:hover {
  5450. text-decoration: underline;
  5451. }
  5452. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte {
  5453. padding-right: 2rem;
  5454. margin-top: 1rem;
  5455. background-color: rgb(255, 255, 255);
  5456. }
  5457. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte .field--name-field-titre {
  5458. font-size: 1.5rem;
  5459. font-weight: 1000;
  5460. font-family: "Source Code Pro", monospace;
  5461. color: rgb(9, 57, 139);
  5462. text-transform: uppercase;
  5463. margin-bottom: 0.8rem;
  5464. }
  5465. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-textes .field__item .paragraph--type--texte .field--name-field-texte {
  5466. margin-bottom: 2rem;
  5467. }
  5468. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme {
  5469. margin-top: 1rem;
  5470. display: flex;
  5471. flex-direction: column;
  5472. width: 70%;
  5473. }
  5474. @media (max-width: 810px) {
  5475. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme {
  5476. margin: auto;
  5477. }
  5478. }
  5479. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents {
  5480. height: fit-content;
  5481. border: 2px solid rgb(0, 158, 227);
  5482. background-color: rgb(255, 255, 255);
  5483. margin-bottom: 1rem;
  5484. }
  5485. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item {
  5486. min-height: 4rem;
  5487. background: rgb(255, 255, 255);
  5488. color: rgb(0, 158, 227);
  5489. padding-left: 0.8rem;
  5490. padding-top: 1rem;
  5491. }
  5492. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item span:nth-of-type(2) {
  5493. display: none;
  5494. }
  5495. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf {
  5496. height: inherit;
  5497. margin: auto;
  5498. }
  5499. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf ::before {
  5500. content: url("../images/pictos/noun_Download_file_307900.svg");
  5501. min-width: 40px;
  5502. height: auto;
  5503. padding-right: 0.5rem;
  5504. display: inline-flex;
  5505. align-items: center;
  5506. }
  5507. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-documents .field__item .file--mime-application-pdf a {
  5508. hyphens: auto;
  5509. display: inline-flex;
  5510. align-items: center;
  5511. color: rgb(0, 158, 227);
  5512. font-weight: 800;
  5513. }
  5514. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens .field__item {
  5515. margin: auto;
  5516. height: fit-content;
  5517. border: 2px solid rgb(0, 158, 227);
  5518. min-height: 4rem;
  5519. background: rgb(255, 255, 255);
  5520. color: rgb(0, 158, 227);
  5521. padding-left: 0.8rem;
  5522. padding-top: 1rem;
  5523. margin-bottom: 1rem;
  5524. }
  5525. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a {
  5526. display: inline-flex;
  5527. align-items: center;
  5528. justify-items: center;
  5529. color: rgb(0, 158, 227);
  5530. font-weight: 800;
  5531. }
  5532. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a::before {
  5533. content: url("../images/pictos/external_link.png");
  5534. min-width: 40px;
  5535. height: auto;
  5536. padding-right: 0.5rem;
  5537. display: inline-flex;
  5538. align-items: center;
  5539. }
  5540. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-config-pages-block .config_pages--type--incubateur-du-programme .field--name-field-liens a svg.ext {
  5541. display: none;
  5542. }
  5543. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 {
  5544. padding-top: 1rem;
  5545. background-color: white;
  5546. }
  5547. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets {
  5548. width: 80%;
  5549. margin: auto;
  5550. }
  5551. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  5552. margin-top: 4rem;
  5553. display: flex;
  5554. flex-direction: row;
  5555. }
  5556. @media (max-width: 479px) {
  5557. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters {
  5558. flex-direction: column;
  5559. padding-bottom: 3rem;
  5560. }
  5561. }
  5562. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters::before {
  5563. content: "Filtrer par :";
  5564. margin-right: 1rem;
  5565. }
  5566. @media (max-width: 479px) {
  5567. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters::before {
  5568. padding-bottom: 1rem;
  5569. }
  5570. }
  5571. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 {
  5572. display: flex;
  5573. flex-direction: row;
  5574. }
  5575. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper legend {
  5576. display: none;
  5577. }
  5578. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper .js-form-item-field-neuf-rehabilitation-value:first-of-type {
  5579. display: none;
  5580. }
  5581. @media (max-width: 479px) {
  5582. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-neuf-rehabilitation-value--wrapper {
  5583. padding-bottom: 1rem;
  5584. }
  5585. }
  5586. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper legend {
  5587. display: none;
  5588. }
  5589. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper .js-form-item-field-encours-fini-value:first-of-type {
  5590. display: none;
  5591. }
  5592. @media (max-width: 479px) {
  5593. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-field-encours-fini-value--wrapper {
  5594. padding-bottom: 1rem;
  5595. }
  5596. }
  5597. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 .js-form-type-textfield label {
  5598. display: none;
  5599. }
  5600. @media (max-width: 479px) {
  5601. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 .js-form-type-textfield {
  5602. padding-bottom: 1rem;
  5603. }
  5604. }
  5605. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio] {
  5606. display: none;
  5607. }
  5608. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio] + label::before {
  5609. content: "";
  5610. display: inline-block;
  5611. width: 15px;
  5612. height: 15px;
  5613. background: #fff;
  5614. border-radius: 0px;
  5615. border-color: black;
  5616. border-style: solid;
  5617. border-width: 1px;
  5618. margin-right: 0.5rem;
  5619. }
  5620. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 input[type=radio]:checked + label::before {
  5621. background: rgb(0, 158, 227);
  5622. }
  5623. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 label {
  5624. padding-right: 1rem;
  5625. }
  5626. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  5627. background-color: rgb(0, 158, 227);
  5628. color: white;
  5629. text-transform: uppercase;
  5630. border: none;
  5631. padding: 0.1rem 0.7rem;
  5632. margin-left: 2rem;
  5633. }
  5634. @media (max-width: 479px) {
  5635. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-submit-projets {
  5636. margin-left: 0rem;
  5637. margin-right: 2rem;
  5638. }
  5639. }
  5640. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 #edit-reset {
  5641. background-color: rgb(0, 158, 227);
  5642. color: white;
  5643. text-transform: uppercase;
  5644. border: none;
  5645. padding: 0.1rem 0.7rem;
  5646. margin-left: 1rem;
  5647. }
  5648. @media (max-width: 479px) {
  5649. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-filters #views-exposed-form-projets-block-3 {
  5650. flex-direction: column;
  5651. }
  5652. }
  5653. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content {
  5654. margin-top: 2rem;
  5655. display: flex;
  5656. flex-direction: row;
  5657. flex-wrap: wrap;
  5658. }
  5659. @media (max-width: 810px) {
  5660. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content {
  5661. flex-direction: column;
  5662. }
  5663. }
  5664. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content .views-row {
  5665. width: 25%;
  5666. }
  5667. @media (max-width: 810px) {
  5668. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .view-content .views-row {
  5669. width: 100%;
  5670. }
  5671. }
  5672. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet {
  5673. color: rgb(9, 57, 139);
  5674. line-height: 1.5rem;
  5675. padding: 0.5rem;
  5676. padding-right: 1rem;
  5677. padding-left: 1rem;
  5678. }
  5679. @media (max-width: 479px) {
  5680. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet {
  5681. padding-left: 0rem;
  5682. padding-right: 0rem;
  5683. padding-top: 2rem;
  5684. }
  5685. }
  5686. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child {
  5687. display: flex;
  5688. flex-direction: column;
  5689. }
  5690. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child a {
  5691. color: rgb(9, 57, 139);
  5692. }
  5693. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo {
  5694. order: 1;
  5695. }
  5696. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo img {
  5697. width: 100%;
  5698. max-height: 175px;
  5699. object-fit: cover;
  5700. }
  5701. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-photo::after {
  5702. display: block;
  5703. content: url('data:image/svg+xml,<svg width="160" height="25" xmlns="http://www.w3.org/2000/svg" version="1.1"> <line x1="0" x2="80" y1="20" y2="20" stroke-linecap="cube" stroke="rgb(9,57,139)" stroke-width="2.5"/></svg>');
  5704. }
  5705. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse {
  5706. order: 2;
  5707. display: flex;
  5708. text-transform: uppercase;
  5709. font-size: 0.9rem;
  5710. font-weight: 800;
  5711. margin-top: 0.8rem;
  5712. line-height: 0.6rem;
  5713. }
  5714. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address {
  5715. display: flex;
  5716. flex-direction: row;
  5717. margin: 0;
  5718. }
  5719. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality {
  5720. padding-top: 0 !important;
  5721. padding-bottom: 0 !important;
  5722. }
  5723. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .locality::after {
  5724. content: ",";
  5725. margin-right: 0.3rem;
  5726. }
  5727. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-adresse .address .country {
  5728. padding-top: 0 !important;
  5729. padding-bottom: 0 !important;
  5730. }
  5731. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-sous-titre {
  5732. margin-top: 0.5rem;
  5733. font-size: 0.9rem;
  5734. font-weight: 800;
  5735. order: 4;
  5736. }
  5737. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-title {
  5738. order: 3;
  5739. margin-top: 0.5rem;
  5740. font-size: 0.9rem;
  5741. font-weight: 800;
  5742. }
  5743. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-title h2 {
  5744. margin: 0;
  5745. }
  5746. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-region-bottom .block-views-blockprojets-block-3 .view-projets .node-type-projet div:first-child .field--name-field-incube {
  5747. order: 4;
  5748. color: red;
  5749. margin-top: 0.8rem;
  5750. font-size: 0.7rem;
  5751. }
  5752. .node-id-201 {
  5753. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5754. background-repeat: no-repeat;
  5755. background-position-y: 7rem;
  5756. max-width: 100vw;
  5757. background-size: contain;
  5758. }
  5759. .node-id-201 #block-contenudelapageprincipale {
  5760. scroll-margin: 8rem;
  5761. }
  5762. .node-id-201 .layout__region--top {
  5763. padding-bottom: 3rem;
  5764. height: 30vh;
  5765. }
  5766. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5767. display: none;
  5768. height: inherit;
  5769. }
  5770. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  5771. font-family: "Source Code Pro";
  5772. font-size: 2rem;
  5773. font-weight: 800;
  5774. color: rgb(255, 255, 255);
  5775. background-color: rgb(0, 158, 227);
  5776. text-transform: uppercase;
  5777. }
  5778. .node-id-201 .layout__region--second {
  5779. width: 25%;
  5780. }
  5781. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  5782. background-color: rgb(255, 255, 255);
  5783. }
  5784. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5785. font-size: 1.5rem;
  5786. font-weight: 1000;
  5787. font-family: "Source Code Pro";
  5788. color: rgb(9, 57, 139);
  5789. text-transform: uppercase;
  5790. }
  5791. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  5792. text-transform: none !important;
  5793. }
  5794. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  5795. padding-right: 2rem;
  5796. }
  5797. .path-ressources .layout-container {
  5798. overflow: hidden;
  5799. }
  5800. @media (max-width: 810px) {
  5801. .path-ressources .layout-container {
  5802. overflow: hidden;
  5803. }
  5804. }
  5805. .path-ressources .layout-content {
  5806. min-height: 100vh;
  5807. width: 100vw;
  5808. }
  5809. .path-ressources .layout-content .region-content {
  5810. width: 100%;
  5811. margin: auto;
  5812. }
  5813. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5814. font-size: 4em;
  5815. color: rgb(9, 57, 139);
  5816. font-weight: 400;
  5817. text-align: center;
  5818. margin-bottom: 1rem;
  5819. width: fit-content;
  5820. margin-left: 28%;
  5821. }
  5822. @media (max-width: 810px) {
  5823. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5824. margin-left: 2rem;
  5825. text-align: left;
  5826. line-height: 4rem;
  5827. }
  5828. }
  5829. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5830. display: flex;
  5831. flex-direction: column;
  5832. }
  5833. @media (max-width: 479px) {
  5834. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5835. display: flex;
  5836. flex-direction: column;
  5837. }
  5838. }
  5839. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5840. width: 60%;
  5841. margin: auto;
  5842. margin-left: 28%;
  5843. }
  5844. @media (max-width: 810px) {
  5845. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5846. margin-left: 2rem;
  5847. width: 85%;
  5848. }
  5849. }
  5850. @media (max-width: 479px) {
  5851. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5852. order: 1;
  5853. margin-left: 2rem;
  5854. }
  5855. }
  5856. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5857. grid-column: 1/span 5;
  5858. }
  5859. @media (max-width: 810px) {
  5860. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5861. padding-top: 1rem;
  5862. margin-top: 1rem;
  5863. }
  5864. }
  5865. @media (max-width: 479px) {
  5866. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full {
  5867. padding-left: 0;
  5868. padding-right: 0;
  5869. }
  5870. }
  5871. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  5872. margin: auto;
  5873. background: rgb(255, 255, 255);
  5874. font-size: 1rem;
  5875. }
  5876. @media (max-width: 479px) {
  5877. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block .config_pages--base-de-donnees--full .field--name-field-introduction {
  5878. margin-top: 1rem;
  5879. }
  5880. }
  5881. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5882. grid-column: 6/span 5;
  5883. grid-row: 1;
  5884. margin-top: 4rem;
  5885. background-color: rgb(0, 158, 227);
  5886. height: fit-content;
  5887. width: 100%;
  5888. }
  5889. @media (max-width: 810px) {
  5890. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5891. grid-column: 5/span 5;
  5892. }
  5893. }
  5894. @media (max-width: 479px) {
  5895. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5896. grid-column: 5/span 5;
  5897. order: 2;
  5898. }
  5899. }
  5900. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  5901. display: block;
  5902. }
  5903. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien {
  5904. display: flex;
  5905. flex-direction: column;
  5906. margin-top: 2rem;
  5907. margin-bottom: 2rem;
  5908. margin-left: 1.5rem;
  5909. margin-right: 1.5rem;
  5910. text-align: center;
  5911. }
  5912. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien a {
  5913. font-weight: 800;
  5914. color: rgb(255, 255, 255);
  5915. font-size: 1.3rem;
  5916. }
  5917. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .field--name-field-lien:after {
  5918. margin-left: auto;
  5919. padding-top: 1rem;
  5920. display: block;
  5921. content: url("../images/pictos/noun_Arrow_3771902.svg");
  5922. }
  5923. @media (max-width: 810px) {
  5924. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5925. margin: auto;
  5926. }
  5927. }
  5928. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5929. margin-top: 2rem;
  5930. width: 100%;
  5931. }
  5932. @media (max-width: 479px) {
  5933. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5934. order: 3;
  5935. }
  5936. }
  5937. @media (max-width: 810px) {
  5938. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees {
  5939. display: flex;
  5940. flex-direction: column;
  5941. }
  5942. }
  5943. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  5944. position: fixed;
  5945. top: 25rem;
  5946. left: 0;
  5947. background-color: rgb(255, 255, 255);
  5948. border: solid 0.2px rgba(0, 0, 0, 0.1);
  5949. margin-bottom: 5rem;
  5950. padding: 1rem;
  5951. padding-left: 2rem;
  5952. padding-right: 1.5rem;
  5953. z-index: 1;
  5954. transform: translateY(-210px);
  5955. margin-bottom: -210px;
  5956. width: 20%;
  5957. }
  5958. @media (max-width: 810px) {
  5959. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  5960. position: static;
  5961. margin-bottom: 2rem;
  5962. transform: none;
  5963. margin-bottom: 0px;
  5964. width: 80%;
  5965. }
  5966. }
  5967. @media (max-width: 479px) {
  5968. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters {
  5969. margin-left: 0;
  5970. }
  5971. }
  5972. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  5973. content: "Afficher : ";
  5974. padding-right: 1rem;
  5975. font-weight: 800;
  5976. font-size: 1rem;
  5977. margin-bottom: 1rem;
  5978. display: block;
  5979. width: 100%;
  5980. }
  5981. @media (max-width: 479px) {
  5982. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources::before {
  5983. padding-bottom: 1rem;
  5984. }
  5985. }
  5986. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button {
  5987. background-color: transparent;
  5988. border: 1px solid black;
  5989. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  5990. margin-bottom: 0.5rem;
  5991. margin-right: 0.5rem;
  5992. font-size: 0.8rem;
  5993. color: rgb(9, 57, 139);
  5994. display: inline-flex;
  5995. flex-direction: row;
  5996. align-items: center;
  5997. }
  5998. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button:hover {
  5999. cursor: grab;
  6000. background-color: rgb(9, 57, 139);
  6001. color: white;
  6002. }
  6003. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button :visited {
  6004. color: rgb(9, 57, 139);
  6005. }
  6006. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  6007. content: url("../images/pictos/videos.svg");
  6008. padding-right: 0.5rem;
  6009. display: block;
  6010. }
  6011. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos:hover::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-videos::before {
  6012. content: url("../images/pictos/videos-blanc.svg");
  6013. display: block;
  6014. }
  6015. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts {
  6016. display: none !important;
  6017. }
  6018. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts::before {
  6019. content: url("../images/pictos/podcasts.svg");
  6020. padding-right: 0.5rem;
  6021. display: block;
  6022. }
  6023. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-podcasts:hover::before {
  6024. content: url("../images/pictos/podcasts-blanc.svg");
  6025. display: block;
  6026. }
  6027. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos::before {
  6028. content: url("../images/pictos/en-images.svg");
  6029. display: block;
  6030. padding-right: 0.5rem;
  6031. }
  6032. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-images---photos:hover::before {
  6033. content: url("../images/pictos/en-images-blanc.svg");
  6034. display: block;
  6035. }
  6036. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres::before {
  6037. content: url("../images/pictos/ecrits.svg");
  6038. padding-right: 0.5rem;
  6039. display: block;
  6040. }
  6041. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-livres:hover::before {
  6042. content: url("../images/pictos/ecrits-blanc.svg");
  6043. display: block;
  6044. }
  6045. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles::before {
  6046. content: url("../images/pictos/ecrits.svg");
  6047. padding-right: 0.5rem;
  6048. display: block;
  6049. }
  6050. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-articles:hover::before {
  6051. content: url("../images/pictos/ecrits-blanc.svg");
  6052. display: block;
  6053. }
  6054. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports::before {
  6055. content: url("../images/pictos/ecrits.svg");
  6056. padding-right: 0.5rem;
  6057. display: block;
  6058. }
  6059. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources a.button.button-publications---rapports:hover::before {
  6060. content: url("../images/pictos/ecrits-blanc.svg");
  6061. display: block;
  6062. }
  6063. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active {
  6064. background-color: rgb(9, 57, 139);
  6065. color: white;
  6066. }
  6067. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active a {
  6068. color: white;
  6069. }
  6070. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos {
  6071. margin-top: 1rem;
  6072. }
  6073. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before, .is-active .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-videos a::before {
  6074. content: url("../images/pictos/videos-blanc.svg");
  6075. }
  6076. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-podcasts a::before {
  6077. content: url("../images/pictos/podcasts-blanc.svg");
  6078. }
  6079. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-images---photos a::before {
  6080. content: url("../images/pictos/en-images-blanc.svg");
  6081. }
  6082. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-livres a::before {
  6083. content: url("../images/pictos/ecrits-blanc.svg");
  6084. }
  6085. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-articles a::before {
  6086. content: url("../images/pictos/ecrits-blanc.svg");
  6087. }
  6088. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters .buttons-filtres-ressources button.is-active.button-publications---rapports a::before {
  6089. content: url("../images/pictos/ecrits-blanc.svg");
  6090. }
  6091. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6092. content: "Filtrer par : ";
  6093. padding-right: 1rem;
  6094. font-weight: 800;
  6095. font-size: 1rem;
  6096. margin-bottom: 1rem;
  6097. }
  6098. @media (max-width: 479px) {
  6099. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form::before {
  6100. padding-bottom: 1rem;
  6101. }
  6102. }
  6103. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-type-de-media-target-id {
  6104. display: none;
  6105. }
  6106. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item {
  6107. font-size: 0.8rem;
  6108. }
  6109. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine {
  6110. border-top: none;
  6111. border-left: none;
  6112. border-right: none;
  6113. font-size: 0.8rem;
  6114. justify-content: flex-start !important;
  6115. }
  6116. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine label {
  6117. display: none;
  6118. }
  6119. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper {
  6120. display: inline-flex;
  6121. position: relative;
  6122. font-size: 0.8rem;
  6123. width: -webkit-fill-available; /* Safari/Chrome */
  6124. width: -moz-available; /* Firefox */
  6125. width: fill-available; /* standard futur */
  6126. width: 100%; /* fallback */
  6127. max-width: 100%;
  6128. }
  6129. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper::after {
  6130. content: url("../images/pictos/loupe.svg");
  6131. display: inline-block;
  6132. }
  6133. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine .input-wrapper input {
  6134. text-align: start !important;
  6135. max-width: 100% !important;
  6136. }
  6137. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input {
  6138. position: absolute;
  6139. right: -4px;
  6140. top: 50%;
  6141. transform: translateY(-50%);
  6142. background: white;
  6143. border: none;
  6144. padding: 0.5rem;
  6145. margin: 0;
  6146. cursor: pointer;
  6147. color: #888;
  6148. display: none; /* masqué par défaut */
  6149. }
  6150. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input:hover {
  6151. color: #000;
  6152. }
  6153. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form .form-item-field-date-de-parution-value .clear-input {
  6154. display: none;
  6155. }
  6156. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select {
  6157. font-size: 0.8rem;
  6158. }
  6159. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form select ::placeholder {
  6160. display: none;
  6161. }
  6162. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-filters form input {
  6163. font-size: 0.8rem;
  6164. }
  6165. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered {
  6166. display: flex;
  6167. flex-direction: row;
  6168. flex-wrap: wrap;
  6169. }
  6170. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper {
  6171. flex-wrap: wrap;
  6172. width: 85%;
  6173. }
  6174. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .filtered .views-row-wrapper .views-row {
  6175. padding: 1rem;
  6176. width: 30% !important;
  6177. }
  6178. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content {
  6179. transition: opacity 0.3s ease;
  6180. display: flex;
  6181. flex-direction: row;
  6182. flex-wrap: wrap;
  6183. padding-left: 25%;
  6184. }
  6185. @media (max-width: 810px) {
  6186. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content {
  6187. padding-left: 0;
  6188. }
  6189. }
  6190. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .border {
  6191. width: 80%;
  6192. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6193. }
  6194. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme {
  6195. order: 1;
  6196. }
  6197. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme::before {
  6198. background-color: rgba(0, 158, 227, 0.2);
  6199. }
  6200. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-issues-du-programme .views-row {
  6201. width: 45%;
  6202. min-width: 350px !important;
  6203. max-width: 500px;
  6204. }
  6205. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-paroles-de-laureats {
  6206. order: 2;
  6207. }
  6208. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images {
  6209. order: 3;
  6210. }
  6211. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images .slick-list {
  6212. padding-left: 0 !important;
  6213. }
  6214. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-les-projets-en-images::before {
  6215. background-color: rgba(0, 158, 227, 0.2);
  6216. }
  6217. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse {
  6218. order: 5;
  6219. }
  6220. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-presse h3 {
  6221. border: none;
  6222. }
  6223. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-publications-des-partenaires-et-laureats {
  6224. order: 4;
  6225. }
  6226. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-autres {
  6227. order: 9;
  6228. }
  6229. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .type-documentation-partenariale {
  6230. order: 6;
  6231. }
  6232. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide.type-these-et-memoire {
  6233. order: 8;
  6234. }
  6235. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) {
  6236. width: 100%;
  6237. position: relative;
  6238. z-index: 0;
  6239. padding-bottom: 1rem;
  6240. }
  6241. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  6242. content: "";
  6243. position: absolute;
  6244. left: -35%;
  6245. height: 100%;
  6246. width: 110vw;
  6247. z-index: 0;
  6248. }
  6249. @media (max-width: 810px) {
  6250. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer)::before {
  6251. left: 0;
  6252. }
  6253. }
  6254. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) > * {
  6255. position: relative;
  6256. z-index: 1;
  6257. }
  6258. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6259. top: 1rem;
  6260. text-transform: uppercase;
  6261. font-family: "Source Code Pro";
  6262. color: rgb(9, 57, 139) !important;
  6263. display: flex;
  6264. flex-direction: row;
  6265. align-items: center;
  6266. font-size: 1.7rem;
  6267. margin-block: 0em;
  6268. }
  6269. @media (max-width: 810px) {
  6270. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6271. padding-left: 2rem;
  6272. width: 70%;
  6273. }
  6274. }
  6275. @media (max-width: 479px) {
  6276. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3 {
  6277. width: 65% !important;
  6278. }
  6279. }
  6280. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme {
  6281. border: none;
  6282. }
  6283. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-publications-issues-du-programme:before {
  6284. content: url("../images/pictos/picto-ressource-eqld.svg");
  6285. padding-right: 1rem;
  6286. }
  6287. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-paroles-de-laureats:before {
  6288. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6289. padding-right: 1rem;
  6290. }
  6291. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images {
  6292. width: 80%;
  6293. }
  6294. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-les-projets-en-images:before {
  6295. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6296. padding-right: 1rem;
  6297. }
  6298. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) h3.type-presse:before {
  6299. content: url("../images/pictos/picto-ressource-presse.svg");
  6300. padding-right: 1rem;
  6301. }
  6302. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6303. background-color: rgb(255, 255, 255);
  6304. border: 1px solid rgb(0, 158, 227);
  6305. list-style: none;
  6306. padding: 0.5rem;
  6307. position: relative;
  6308. left: 60vw;
  6309. top: -1.5rem;
  6310. text-transform: uppercase;
  6311. font-size: 0.7rem;
  6312. font-weight: 500;
  6313. color: rgb(0, 158, 227);
  6314. display: inline-flex;
  6315. align-items: center;
  6316. }
  6317. @media (max-width: 810px) {
  6318. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6319. left: 81vw;
  6320. }
  6321. }
  6322. @media (max-width: 479px) {
  6323. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .tout-voir {
  6324. left: 76vw;
  6325. top: -1.5rem;
  6326. }
  6327. }
  6328. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  6329. display: flex;
  6330. flex-direction: row;
  6331. }
  6332. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track {
  6333. width: 100% !important;
  6334. display: flex;
  6335. flex-direction: row;
  6336. transform: none;
  6337. }
  6338. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-track .views-row {
  6339. width: 20%;
  6340. min-width: 250px;
  6341. max-width: 500px;
  6342. }
  6343. @media (max-width: 810px) {
  6344. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper {
  6345. padding-left: 0rem !important;
  6346. flex-direction: column;
  6347. }
  6348. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .views-row {
  6349. width: 100% !important;
  6350. }
  6351. }
  6352. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6353. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6354. display: inline-block;
  6355. transform: scale(0.5); /* Réduction à 50% */
  6356. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6357. }
  6358. @media (max-width: 810px) {
  6359. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6360. transform: scale(0.5); /* Réduction à 50% */
  6361. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6362. }
  6363. }
  6364. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  6365. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6366. display: block;
  6367. display: inline-block;
  6368. transform: scaleX(-1);
  6369. transform: scale(-0.5, 0.5);
  6370. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6371. }
  6372. @media (max-width: 810px) {
  6373. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before {
  6374. transform: scale(-0.5, 0.5);
  6375. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6376. }
  6377. }
  6378. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev::before,
  6379. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next::before {
  6380. opacity: 1 !important;
  6381. }
  6382. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev.slick-disabled::before,
  6383. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next.slick-disabled::before {
  6384. opacity: 0.3 !important;
  6385. }
  6386. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev,
  6387. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6388. top: 94%;
  6389. }
  6390. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6391. right: 35vw;
  6392. }
  6393. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6394. left: 25vw;
  6395. }
  6396. @media (max-width: 1400px) {
  6397. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6398. left: 20vw;
  6399. }
  6400. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6401. right: 30vw;
  6402. }
  6403. }
  6404. @media (max-width: 810px) {
  6405. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6406. left: 15vw;
  6407. }
  6408. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6409. right: 35vw;
  6410. }
  6411. }
  6412. @media (max-width: 479px) {
  6413. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-prev {
  6414. left: 8vw;
  6415. }
  6416. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 .view-base-de-donnees .view-content .view-type-slide:not(footer) .views-row-wrapper .slick-next {
  6417. right: 30vw;
  6418. }
  6419. }
  6420. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6421. padding-left: 0 !important;
  6422. }
  6423. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6424. padding-left: 8% !important;
  6425. padding-right: 8% !important;
  6426. }
  6427. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6428. padding-right: 0;
  6429. }
  6430. footer {
  6431. z-index: 1;
  6432. }
  6433. .carousel {
  6434. display: none;
  6435. }
  6436. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6437. display: flex !important;
  6438. flex-direction: column;
  6439. margin-left: 11%;
  6440. }
  6441. @media screen and (min-width: 1100px) {
  6442. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6443. display: flex;
  6444. }
  6445. }
  6446. @media screen and (max-width: 810px) {
  6447. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6448. margin-left: 0;
  6449. }
  6450. }
  6451. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6452. margin-left: 0;
  6453. }
  6454. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6455. margin-top: 5rem;
  6456. padding: 0;
  6457. order: 7;
  6458. width: 85%;
  6459. }
  6460. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6461. display: grid;
  6462. grid-template-columns: 10fr 1fr;
  6463. gap: 4rem;
  6464. justify-content: center;
  6465. margin: auto;
  6466. }
  6467. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6468. display: flex;
  6469. align-items: center;
  6470. position: relative;
  6471. width: 100%;
  6472. margin: 0 auto;
  6473. }
  6474. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6475. flex: 1;
  6476. text-align: center;
  6477. }
  6478. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6479. width: 100%;
  6480. height: auto;
  6481. object-fit: contain;
  6482. max-height: 550px;
  6483. border: none;
  6484. }
  6485. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6486. margin-top: 1rem;
  6487. font-family: sans-serif;
  6488. text-align: center;
  6489. font-size: 1rem;
  6490. color: #444;
  6491. }
  6492. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6493. font-size: 2rem;
  6494. color: #333;
  6495. background: none;
  6496. border-radius: 50%;
  6497. width: 40px;
  6498. height: 40px;
  6499. line-height: 40px;
  6500. text-align: center;
  6501. cursor: pointer;
  6502. user-select: none;
  6503. transition: background 0.3s ease;
  6504. }
  6505. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6506. background: #bbb;
  6507. }
  6508. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6509. margin-right: 10px;
  6510. }
  6511. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6512. margin-left: 10px;
  6513. }
  6514. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6515. margin-top: 10px;
  6516. font-family: sans-serif;
  6517. grid-column: 2;
  6518. grid-row: 2;
  6519. }
  6520. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6521. grid-column: 2;
  6522. display: flex;
  6523. flex-direction: column;
  6524. align-items: center;
  6525. max-height: 60vh;
  6526. grid-row: 1/span 2;
  6527. top: 0px;
  6528. position: relative;
  6529. overflow: hidden;
  6530. }
  6531. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6532. cursor: pointer;
  6533. padding: 5px 10px;
  6534. background: #00aaff;
  6535. color: white;
  6536. border-radius: 50%;
  6537. user-select: none;
  6538. z-index: 2;
  6539. position: relative;
  6540. }
  6541. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.up {
  6542. transform: rotate(90deg);
  6543. }
  6544. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow.down {
  6545. transform: rotate(90deg);
  6546. }
  6547. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6548. display: flex;
  6549. flex-direction: column;
  6550. gap: 6px;
  6551. overflow-y: auto;
  6552. max-height: 100%;
  6553. scroll-behavior: smooth;
  6554. position: relative;
  6555. z-index: 0;
  6556. }
  6557. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails::-webkit-scrollbar {
  6558. display: none;
  6559. }
  6560. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6561. width: 80px;
  6562. height: 60px;
  6563. object-fit: contain;
  6564. border: 2px solid transparent;
  6565. cursor: pointer;
  6566. opacity: 0.3;
  6567. transition: transform 0.3s ease, opacity 0.3s ease;
  6568. }
  6569. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img.active {
  6570. transform: scale(1.3);
  6571. margin-top: 0.8rem;
  6572. margin-bottom: 0.8rem;
  6573. opacity: 1;
  6574. z-index: 1;
  6575. }
  6576. @media screen and (max-width: 810px) {
  6577. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6578. display: flex;
  6579. flex-direction: column;
  6580. gap: 2rem;
  6581. align-items: center;
  6582. width: 100vw;
  6583. }
  6584. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6585. width: 90%;
  6586. }
  6587. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6588. width: 100%;
  6589. display: flex !important;
  6590. flex-direction: row !important; /* 👈 corrige l'orientation */
  6591. justify-content: center;
  6592. align-items: center;
  6593. overflow-x: auto;
  6594. overflow-y: hidden;
  6595. max-height: none;
  6596. padding: 1rem 0;
  6597. position: relative;
  6598. }
  6599. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6600. display: flex !important;
  6601. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6602. gap: 0.8 rem !important;
  6603. overflow-x: auto;
  6604. overflow-y: hidden;
  6605. scroll-behavior: smooth;
  6606. padding: 0 1rem;
  6607. max-width: 100%;
  6608. flex-wrap: nowrap;
  6609. }
  6610. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6611. display: none;
  6612. }
  6613. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6614. width: 60px;
  6615. height: 45px;
  6616. flex-shrink: 0; /* évite l’écrasement */
  6617. }
  6618. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6619. display: none; /* inutile si scroll horizontal */
  6620. }
  6621. }
  6622. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6623. display: none;
  6624. }
  6625. @media screen and (max-width: 810px) {
  6626. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6627. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6628. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6629. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6630. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6631. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6632. margin-left: 7%;
  6633. }
  6634. }
  6635. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6636. transform: translateY(-45.5rem);
  6637. }
  6638. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6639. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6640. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6641. transform: translateY(-16rem);
  6642. }
  6643. .carousel {
  6644. display: none;
  6645. }
  6646. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6647. display: flex !important;
  6648. flex-direction: column;
  6649. margin-left: 11%;
  6650. width: 60%;
  6651. }
  6652. @media screen and (min-width: 1100px) {
  6653. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6654. display: flex;
  6655. }
  6656. }
  6657. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6658. margin-left: 0;
  6659. }
  6660. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6661. display: none;
  6662. }
  6663. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6664. order: 1;
  6665. }
  6666. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6667. order: 2;
  6668. }
  6669. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6670. order: 3;
  6671. }
  6672. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6673. order: 5;
  6674. }
  6675. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6676. order: 4;
  6677. }
  6678. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6679. order: 6;
  6680. }
  6681. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6682. order: 7;
  6683. margin-top: 2rem;
  6684. }
  6685. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6686. margin-top: 0rem;
  6687. }
  6688. /*partials*/
  6689. .layout-container {
  6690. position: relative;
  6691. width: 100vw;
  6692. }
  6693. .layout-container header {
  6694. position: fixed;
  6695. z-index: 99;
  6696. width: 100vw;
  6697. }
  6698. #header-top {
  6699. height: 7rem;
  6700. background-color: rgb(255, 255, 255);
  6701. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6702. display: flex;
  6703. flex-direction: row;
  6704. color: rgb(0, 0, 0);
  6705. top: 0%;
  6706. scroll-margin: 8rem;
  6707. }
  6708. @media (max-width: 810px) {
  6709. #header-top {
  6710. height: 5rem;
  6711. }
  6712. }
  6713. #header-top .region-header-top-left {
  6714. display: flex;
  6715. flex-direction: row;
  6716. padding-left: 4%;
  6717. align-items: center;
  6718. color: rgb(0, 0, 0);
  6719. flex: 1;
  6720. }
  6721. #header-top .region-header-top-left #block-logogouv {
  6722. display: flex;
  6723. height: 100%;
  6724. align-items: center;
  6725. }
  6726. @media (max-width: 810px) {
  6727. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  6728. height: 100%;
  6729. }
  6730. }
  6731. #header-top .region-header-top-left #block-logogouv img {
  6732. width: auto;
  6733. height: 100%;
  6734. }
  6735. #header-top .region-header-top-left #block-eql-logoepau {
  6736. height: 100%;
  6737. align-content: center;
  6738. padding-left: 1rem;
  6739. }
  6740. #header-top .region-header-top-rigth {
  6741. display: flex;
  6742. flex-direction: row;
  6743. width: 40%;
  6744. align-items: center;
  6745. justify-content: flex-end;
  6746. }
  6747. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6748. text-transform: uppercase;
  6749. font-family: "Source Code Pro";
  6750. color: rgb(9, 57, 139) !important;
  6751. font-size: 1rem;
  6752. text-align: end;
  6753. width: 30%;
  6754. }
  6755. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  6756. color: rgb(9, 57, 139) !important;
  6757. }
  6758. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  6759. color: rgb(9, 57, 139) !important;
  6760. }
  6761. @media (max-width: 883px) {
  6762. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6763. display: none;
  6764. }
  6765. }
  6766. #header-top .region-header-top-rigth #block-logoeql {
  6767. padding-left: 1rem;
  6768. padding-right: 2rem;
  6769. height: 100%;
  6770. align-items: center;
  6771. }
  6772. @media (max-width: 810px) {
  6773. #header-top .region-header-top-rigth #block-logoeql {
  6774. padding-right: 1rem;
  6775. }
  6776. }
  6777. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  6778. height: 100%;
  6779. }
  6780. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  6781. display: flex;
  6782. align-items: center;
  6783. height: 100%;
  6784. }
  6785. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  6786. width: auto;
  6787. height: 80%;
  6788. }
  6789. #header-top .region-header-top-rigth #block-burger {
  6790. z-index: 1;
  6791. background-color: rgb(0, 158, 227);
  6792. font-size: 0.7rem;
  6793. color: black;
  6794. display: block;
  6795. width: 7rem;
  6796. height: 100%;
  6797. margin-top: 0;
  6798. aspect-ratio: 1;
  6799. }
  6800. #header-top .region-header-top-rigth #block-burger :hover {
  6801. cursor: pointer;
  6802. }
  6803. @media (max-width: 810px) {
  6804. #header-top .region-header-top-rigth #block-burger {
  6805. width: 4rem;
  6806. }
  6807. }
  6808. #header-top .region-header-top-rigth #block-burger h2 {
  6809. padding-top: 1rem;
  6810. font-size: 1em;
  6811. font-weight: light;
  6812. color: rgb(0, 158, 227);
  6813. }
  6814. @media (max-width: 810px) {
  6815. #header-top .region-header-top-rigth #block-burger h2 {
  6816. padding-top: 0;
  6817. }
  6818. }
  6819. #header-top .region-header-top-rigth #block-burger h2:after {
  6820. display: block;
  6821. margin: auto;
  6822. height: 70px;
  6823. content: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  6824. }
  6825. @media (max-width: 810px) {
  6826. #header-top .region-header-top-rigth #block-burger h2:after {
  6827. content: url('data:image/svg+xml,<svg width="40" height="50" xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="path930" d="M 5,13 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-3" d="M 5,25 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/><path id="path930-6" d="M 5,37 H 65" stroke-linecap="round" stroke="black" stroke-width="2"/></svg>');
  6828. }
  6829. }
  6830. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  6831. display: block;
  6832. margin: 0;
  6833. align-self: center;
  6834. text-align: center;
  6835. }
  6836. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  6837. width: 300%;
  6838. position: relative;
  6839. right: 260px;
  6840. margin: 0;
  6841. padding-top: 2rem;
  6842. padding-bottom: 2rem;
  6843. z-index: 99;
  6844. }
  6845. #header-top .region-header-top-rigth #block-burger ul {
  6846. display: none;
  6847. background-color: rgb(0, 158, 227);
  6848. line-height: 2rem;
  6849. list-style: none;
  6850. }
  6851. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  6852. opacity: 1;
  6853. }
  6854. #header-top .region-header-top-rigth #block-burger ul a {
  6855. opacity: 1;
  6856. color: rgb(255, 255, 255);
  6857. font-weight: 800;
  6858. font-size: 1rem;
  6859. }
  6860. #header-top .region-header-top-rigth #block-burger.opened ul {
  6861. display: block;
  6862. }
  6863. #header-top #block-socialnetwork-2 {
  6864. display: none;
  6865. position: relative;
  6866. top: -33px;
  6867. align-self: flex-end;
  6868. margin-left: auto;
  6869. }
  6870. #header-top #block-socialnetwork-2 .field--name-body {
  6871. min-height: 75px;
  6872. }
  6873. #header-top #block-socialnetwork-2 p {
  6874. display: flex;
  6875. flex-direction: row-reverse;
  6876. margin-bottom: 0;
  6877. min-height: 65px;
  6878. justify-content: space-around;
  6879. width: 140px;
  6880. }
  6881. #header-top #block-socialnetwork-2 p a {
  6882. color: rgb(255, 255, 255);
  6883. font-size: 0;
  6884. }
  6885. #header-top #block-socialnetwork-2 p svg.ext {
  6886. display: none;
  6887. }
  6888. #header-top #block-socialnetwork-2 p .link-twitter {
  6889. display: flex;
  6890. background-color: black;
  6891. width: 40px;
  6892. justify-content: center;
  6893. align-items: flex-end;
  6894. }
  6895. #header-top #block-socialnetwork-2 p .link-twitter:before {
  6896. content: url("../images/pictos/logo_x_blanc.svg");
  6897. min-width: 30px;
  6898. padding-bottom: 0.5rem;
  6899. }
  6900. #header-top #block-socialnetwork-2 p .link-youtube {
  6901. display: flex;
  6902. background-color: black;
  6903. min-width: 40px;
  6904. justify-content: center;
  6905. align-items: flex-end;
  6906. }
  6907. #header-top #block-socialnetwork-2 p .link-youtube:before {
  6908. content: url("../images/pictos/youtube_white.svg");
  6909. min-width: 25px;
  6910. padding-bottom: 0.5rem;
  6911. }
  6912. #header-top #block-socialnetwork-2 p .link-linkedin {
  6913. display: flex;
  6914. background-color: black;
  6915. min-width: 40px;
  6916. justify-content: center;
  6917. align-items: flex-end;
  6918. }
  6919. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  6920. content: url("../images/pictos/linkedin_white.svg");
  6921. min-width: 35px;
  6922. padding-bottom: 0.2rem;
  6923. }
  6924. .region-header-bottom {
  6925. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  6926. }
  6927. .region-header-bottom #block-headermenu {
  6928. align-self: baseline;
  6929. width: 100%;
  6930. background-color: white;
  6931. border-top: solid rgb(0, 158, 227) 1px;
  6932. }
  6933. .region-header-bottom ul {
  6934. font-size: 1rem;
  6935. font-weight: 900;
  6936. list-style: none;
  6937. display: flex;
  6938. flex-direction: row;
  6939. justify-content: space-evenly;
  6940. width: 100%;
  6941. padding-inline-start: 0px;
  6942. padding: 1rem;
  6943. margin-top: 0 !important;
  6944. padding-bottom: 0.5rem;
  6945. }
  6946. .region-header-bottom ul .is-active {
  6947. color: rgb(0, 158, 227);
  6948. }
  6949. .region-header-bottom ul ul {
  6950. position: absolute;
  6951. left: -28%;
  6952. z-index: 1000;
  6953. display: flex;
  6954. flex-direction: column;
  6955. min-width: 210px;
  6956. width: fit-content;
  6957. justify-content: space-between;
  6958. padding-inline-start: 0px;
  6959. }
  6960. .region-header-bottom ul ul .is-active {
  6961. color: rgb(0, 158, 227);
  6962. }
  6963. .region-header-bottom ul ul {
  6964. opacity: 0;
  6965. visibility: hidden;
  6966. transform: translateY(-10px);
  6967. transition: opacity 0.3s ease, transform 0.3s ease;
  6968. }
  6969. .region-header-bottom ul li {
  6970. position: relative;
  6971. display: flex;
  6972. flex-direction: column;
  6973. background-color: rgb(255, 255, 255);
  6974. padding-bottom: 0.8rem;
  6975. max-width: inherit;
  6976. padding-left: 1rem;
  6977. padding-right: 0.5rem;
  6978. height: fit-content;
  6979. }
  6980. .region-header-bottom ul li a {
  6981. color: rgb(0, 0, 0);
  6982. }
  6983. .region-header-bottom ul li .is-active {
  6984. color: rgb(0, 158, 227);
  6985. }
  6986. .region-header-bottom ul li :hover {
  6987. color: rgb(0, 158, 227);
  6988. }
  6989. .region-header-bottom ul li:hover ul {
  6990. opacity: 1;
  6991. visibility: visible;
  6992. transform: translateY(0);
  6993. }
  6994. .region-header-bottom ul .ul1.sous-liste.ul2 {
  6995. padding-left: 1rem;
  6996. }
  6997. #fotter-bottom {
  6998. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6999. display: flex;
  7000. flex: 1 1 120px;
  7001. flex-direction: row;
  7002. background-color: rgb(255, 255, 255);
  7003. padding-top: 3rem;
  7004. }
  7005. @media (max-width: 810px) {
  7006. #fotter-bottom {
  7007. flex-direction: column;
  7008. padding-right: 1rem;
  7009. }
  7010. }
  7011. #fotter-bottom .region {
  7012. display: block;
  7013. padding-left: 2rem;
  7014. padding-right: 1rem;
  7015. padding-bottom: 1rem;
  7016. border-left: rgb(0, 158, 227) solid 1px;
  7017. }
  7018. #fotter-bottom .region h2 {
  7019. margin-top: 0;
  7020. color: rgb(9, 57, 139);
  7021. font-size: 1.2rem;
  7022. }
  7023. #fotter-bottom .region-footer-bottom-left {
  7024. margin-left: 3rem;
  7025. border: none;
  7026. }
  7027. @media (max-width: 810px) {
  7028. #fotter-bottom .region-footer-bottom-left {
  7029. width: 100%;
  7030. margin-left: 0rem;
  7031. }
  7032. }
  7033. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7034. display: flex;
  7035. flex-direction: row;
  7036. justify-content: flex-start;
  7037. flex-wrap: wrap;
  7038. padding-top: 1rem;
  7039. }
  7040. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7041. padding-right: 1rem;
  7042. padding-bottom: 1rem;
  7043. }
  7044. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7045. width: auto;
  7046. height: 30px;
  7047. }
  7048. #fotter-bottom .region-footer-bottom-right {
  7049. display: flex;
  7050. flex-direction: column-reverse;
  7051. justify-content: flex-end;
  7052. }
  7053. @media (max-width: 810px) {
  7054. #fotter-bottom .region-footer-bottom-right {
  7055. width: 100%;
  7056. }
  7057. }
  7058. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7059. margin-bottom: 1rem;
  7060. }
  7061. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7062. margin-top: 0;
  7063. display: flex;
  7064. flex-direction: row-reverse;
  7065. justify-content: flex-end;
  7066. }
  7067. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7068. color: rgb(255, 255, 255);
  7069. font-size: 0;
  7070. padding-left: 1rem;
  7071. }
  7072. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7073. padding-left: 0;
  7074. }
  7075. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7076. display: none;
  7077. }
  7078. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7079. display: none;
  7080. }
  7081. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7082. content: url("../images/pictos/logo_x_rond.png");
  7083. min-width: 50px;
  7084. align-self: center;
  7085. }
  7086. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7087. display: flex;
  7088. }
  7089. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7090. content: url("../images/pictos/youtube_rond.svg");
  7091. min-width: 50px;
  7092. }
  7093. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7094. display: flex;
  7095. }
  7096. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7097. content: url("../images/pictos/linkedin_rond.svg");
  7098. min-width: 50px;
  7099. }
  7100. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7101. margin-top: 0;
  7102. color: rgb(9, 57, 139);
  7103. font-weight: 800;
  7104. list-style: none;
  7105. padding-left: 0;
  7106. }
  7107. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7108. color: rgb(9, 57, 139);
  7109. font-size: 1.2rem;
  7110. text-decoration: underline;
  7111. margin-top: 0;
  7112. }
  7113. #fotter-bottom .region-footer-bottom-middle {
  7114. width: 60%;
  7115. }
  7116. @media (max-width: 810px) {
  7117. #fotter-bottom .region-footer-bottom-middle {
  7118. width: 100%;
  7119. }
  7120. }
  7121. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7122. display: flex;
  7123. flex-direction: row;
  7124. justify-content: flex-start;
  7125. flex-wrap: wrap;
  7126. }
  7127. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7128. padding-right: 1rem;
  7129. padding-bottom: 1rem;
  7130. }
  7131. .slick-prev {
  7132. color: rgb(0, 158, 227);
  7133. left: 25px;
  7134. }
  7135. .path-frontpage .slick-dots {
  7136. bottom: -40px !important;
  7137. }
  7138. .path-frontpage .slick-prev::before,
  7139. .path-frontpage .slick-next::before {
  7140. opacity: 1;
  7141. }
  7142. /* Slider */
  7143. .slick-slider {
  7144. position: relative;
  7145. display: block;
  7146. box-sizing: border-box;
  7147. -webkit-touch-callout: none;
  7148. -webkit-user-select: none;
  7149. -khtml-user-select: none;
  7150. -moz-user-select: none;
  7151. -ms-user-select: none;
  7152. user-select: none;
  7153. -ms-touch-action: pan-y;
  7154. touch-action: pan-y;
  7155. -webkit-tap-highlight-color: transparent;
  7156. }
  7157. .slick-list {
  7158. position: relative;
  7159. overflow: hidden;
  7160. display: block;
  7161. margin: 0;
  7162. padding: 0;
  7163. }
  7164. .slick-list:focus {
  7165. outline: none;
  7166. }
  7167. .slick-list.dragging {
  7168. cursor: pointer;
  7169. cursor: hand;
  7170. }
  7171. .slick-slider .slick-track,
  7172. .slick-slider .slick-list {
  7173. -webkit-transform: translate3d(0, 0, 0);
  7174. -moz-transform: translate3d(0, 0, 0);
  7175. -ms-transform: translate3d(0, 0, 0);
  7176. -o-transform: translate3d(0, 0, 0);
  7177. transform: translate3d(0, 0, 0);
  7178. }
  7179. .slick-track {
  7180. position: relative;
  7181. left: 0;
  7182. top: 0;
  7183. display: block;
  7184. margin-left: auto;
  7185. margin-right: auto;
  7186. }
  7187. .slick-track:before, .slick-track:after {
  7188. content: "";
  7189. display: table;
  7190. }
  7191. .slick-track:after {
  7192. clear: both;
  7193. }
  7194. .slick-loading .slick-track {
  7195. visibility: hidden;
  7196. }
  7197. .slick-slide {
  7198. float: left;
  7199. height: 100%;
  7200. min-height: 1px;
  7201. }
  7202. [dir=rtl] .slick-slide {
  7203. float: right;
  7204. }
  7205. .slick-slide img {
  7206. display: block;
  7207. }
  7208. .slick-slide.slick-loading img {
  7209. display: none;
  7210. }
  7211. .slick-slide {
  7212. display: none;
  7213. }
  7214. .slick-slide.dragging img {
  7215. pointer-events: none;
  7216. }
  7217. .slick-initialized .slick-slide {
  7218. display: block;
  7219. }
  7220. .slick-loading .slick-slide {
  7221. visibility: hidden;
  7222. }
  7223. .slick-vertical .slick-slide {
  7224. display: block;
  7225. height: auto;
  7226. border: 1px solid transparent;
  7227. }
  7228. .slick-arrow.slick-hidden {
  7229. display: none;
  7230. }
  7231. /* Slider */
  7232. .slick-loading .slick-list {
  7233. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7234. }
  7235. /* Icons */
  7236. /* Arrows */
  7237. .slick-prev,
  7238. .slick-next {
  7239. position: absolute;
  7240. display: block;
  7241. height: 60px;
  7242. width: 60px;
  7243. line-height: 0px;
  7244. font-size: 0px;
  7245. cursor: pointer;
  7246. background: transparent;
  7247. color: transparent;
  7248. top: 50%;
  7249. -webkit-transform: translate(0, -50%);
  7250. -ms-transform: translate(0, -50%);
  7251. transform: translate(0, -50%);
  7252. padding: 0;
  7253. border: none;
  7254. outline: none;
  7255. }
  7256. .slick-prev:hover,
  7257. .slick-next:hover {
  7258. outline: none;
  7259. background: transparent;
  7260. color: transparent;
  7261. }
  7262. .slick-prev:hover:before,
  7263. .slick-next:hover:before {
  7264. opacity: 0.2;
  7265. }
  7266. .slick-prev.slick-disabled:before,
  7267. .slick-next.slick-disabled:before {
  7268. opacity: 0;
  7269. }
  7270. .slick-prev:before,
  7271. .slick-next:before {
  7272. font-family: "marianne";
  7273. font-size: 60px;
  7274. line-height: 1;
  7275. color: rgb(0, 158, 227);
  7276. opacity: 0;
  7277. -webkit-font-smoothing: antialiased;
  7278. -moz-osx-font-smoothing: grayscale;
  7279. }
  7280. .slick-prev {
  7281. z-index: 1;
  7282. left: 25px;
  7283. }
  7284. [dir=rtl] .slick-prev {
  7285. left: auto;
  7286. right: 25px;
  7287. }
  7288. .slick-prev:before {
  7289. content: "←";
  7290. }
  7291. [dir=rtl] .slick-prev:before {
  7292. content: "→";
  7293. }
  7294. .slick-next {
  7295. right: 25px;
  7296. }
  7297. [dir=rtl] .slick-next {
  7298. left: 25px;
  7299. right: auto;
  7300. }
  7301. .slick-next:before {
  7302. content: "→";
  7303. }
  7304. [dir=rtl] .slick-next:before {
  7305. content: "←";
  7306. }
  7307. /* Dots */
  7308. .slick-dotted.slick-slider {
  7309. margin-bottom: 30px;
  7310. }
  7311. html.js body.node-type-actualite.node-id-88.path-node.page-node-type-actualite div.dialog-off-canvas-main-canvas div.layout-container main div.layout-content div.region.region-content div#block-contenudelapageprincipale.block.block-system.block-system-main-block div.layout.layout--threecol-25-50-25 div.layout__region.layout__region--top div.block-region-top div.block.block-ctools-block.block-entity-fieldnodefield-images div.field.field--name-field-images.field--type-image.field--label-hidden.field__items.slick-initialized.slick-slider.slick-dotted ul.slick-dots {
  7312. width: 600px;
  7313. }
  7314. .slick-dots {
  7315. list-style: none;
  7316. display: block;
  7317. text-align: center;
  7318. padding: 0;
  7319. margin: 0;
  7320. width: 100%;
  7321. }
  7322. .slick-dots li {
  7323. position: relative;
  7324. display: inline-block;
  7325. height: 20px;
  7326. width: 20px;
  7327. margin: 0 5px;
  7328. padding: 0;
  7329. cursor: pointer;
  7330. }
  7331. .slick-dots li button {
  7332. border: 0;
  7333. background: transparent;
  7334. display: block;
  7335. height: 20px;
  7336. width: 20px;
  7337. outline: none;
  7338. line-height: 0px;
  7339. font-size: 0px;
  7340. color: transparent;
  7341. padding: 5px;
  7342. cursor: pointer;
  7343. }
  7344. .slick-dots li button:hover, .slick-dots li button:focus {
  7345. outline: none;
  7346. }
  7347. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7348. opacity: 0.2;
  7349. }
  7350. .slick-dots li button:before {
  7351. position: absolute;
  7352. top: 0;
  7353. left: 0;
  7354. content: "•";
  7355. width: 20px;
  7356. height: 20px;
  7357. font-family: "marianne";
  7358. font-size: 50px;
  7359. line-height: 20px;
  7360. text-align: center;
  7361. color: black;
  7362. opacity: 0.2;
  7363. -webkit-font-smoothing: antialiased;
  7364. -moz-osx-font-smoothing: grayscale;
  7365. }
  7366. .slick-dots li.slick-active button:before {
  7367. color: black;
  7368. opacity: 0.5;
  7369. }
  7370. #views-exposed-form-projets-block-1 {
  7371. flex-direction: row;
  7372. position: relative;
  7373. align-items: center;
  7374. }
  7375. @media (max-width: 810px) {
  7376. #views-exposed-form-projets-block-1 select {
  7377. max-width: 58%;
  7378. }
  7379. }
  7380. #views-exposed-form-base-de-donnees-block-1 {
  7381. flex-direction: column;
  7382. margin-top: 1rem;
  7383. }
  7384. @media (max-width: 479px) {
  7385. #views-exposed-form-base-de-donnees-block-1 {
  7386. justify-content: center;
  7387. }
  7388. }
  7389. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7390. margin-right: 0 !important;
  7391. margin-bottom: 0.5rem !important;
  7392. padding: 0.2rem !important;
  7393. }
  7394. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7395. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7396. width: 100%;
  7397. text-align: end;
  7398. }
  7399. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7400. padding-right: 0.5rem !important;
  7401. flex: 2 0 auto !important;
  7402. }
  7403. #views-exposed-form-base-de-donnees-block-1,
  7404. #views-exposed-form-projets-block-1 {
  7405. display: flex;
  7406. flex-wrap: wrap;
  7407. }
  7408. @media (max-width: 810px) {
  7409. #views-exposed-form-base-de-donnees-block-1,
  7410. #views-exposed-form-projets-block-1 {
  7411. font-size: 0.8rem;
  7412. }
  7413. }
  7414. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7415. #views-exposed-form-projets-block-1 .js-form-item {
  7416. display: flex;
  7417. flex-direction: row;
  7418. max-width: 100%;
  7419. margin-right: 1rem;
  7420. margin-bottom: 1rem;
  7421. padding: 0.5rem 1rem;
  7422. align-items: baseline;
  7423. border: solid black 0.5px;
  7424. justify-content: space-evenly;
  7425. }
  7426. @media (max-width: 810px) {
  7427. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7428. #views-exposed-form-projets-block-1 .js-form-item {
  7429. display: flex;
  7430. flex-direction: row;
  7431. justify-content: space-between;
  7432. max-width: 85%;
  7433. }
  7434. }
  7435. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7436. #views-exposed-form-projets-block-1 .js-form-item label {
  7437. flex: 2 1 auto;
  7438. padding-right: 2rem;
  7439. }
  7440. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7441. #views-exposed-form-projets-block-1 .js-form-item label::after {
  7442. content: " : ";
  7443. }
  7444. @media (max-width: 810px) {
  7445. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7446. #views-exposed-form-projets-block-1 .js-form-item label {
  7447. padding-right: 1rem;
  7448. }
  7449. }
  7450. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7451. #views-exposed-form-projets-block-1 .js-form-item input {
  7452. flex: 2 1 auto;
  7453. max-width: 55%;
  7454. }
  7455. @media (max-width: 810px) {
  7456. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7457. #views-exposed-form-projets-block-1 .js-form-item input {
  7458. max-width: 100%;
  7459. }
  7460. }
  7461. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7462. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox {
  7463. margin-right: 1rem;
  7464. }
  7465. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7466. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper {
  7467. margin: 0;
  7468. }
  7469. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7470. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after {
  7471. content: none;
  7472. }
  7473. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7474. #views-exposed-form-projets-block-1 .form-actions input {
  7475. color: white;
  7476. font-weight: 600;
  7477. text-transform: uppercase;
  7478. padding: 0.3rem 0.7rem;
  7479. background-color: rgb(0, 158, 227);
  7480. border: none;
  7481. }
  7482. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7483. #views-exposed-form-projets-block-1 input,
  7484. #views-exposed-form-projets-block-1 select {
  7485. border: none;
  7486. background-color: transparent;
  7487. font-family: "Marianne";
  7488. font-size: 1rem;
  7489. }
  7490. @media (max-width: 810px) {
  7491. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7492. #views-exposed-form-projets-block-1 input,
  7493. #views-exposed-form-projets-block-1 select {
  7494. font-size: 0.8rem;
  7495. }
  7496. }
  7497. article.node-type-ressource {
  7498. margin-bottom: 1rem;
  7499. padding-right: 1rem;
  7500. }
  7501. article.node-type-ressource h2 {
  7502. text-align: left !important;
  7503. }
  7504. article.node-type-ressource .ext {
  7505. color: black;
  7506. }
  7507. article.node-type-ressource svg.ext {
  7508. display: none;
  7509. }
  7510. article.node-type-ressource :visited {
  7511. color: black;
  7512. }
  7513. article.node-type-ressource a {
  7514. color: black;
  7515. }
  7516. article.node-type-ressource .wrapper-ressource {
  7517. display: flex;
  7518. flex-direction: column;
  7519. }
  7520. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7521. order: 2;
  7522. }
  7523. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7524. order: 1;
  7525. }
  7526. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7527. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7528. grid-column: 1;
  7529. text-transform: uppercase;
  7530. line-height: 1.1rem;
  7531. margin-top: 0.5rem;
  7532. }
  7533. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7534. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7535. color: rgb(0, 158, 227);
  7536. font-weight: 900;
  7537. font-size: 0.8rem;
  7538. pointer-events: none;
  7539. cursor: default;
  7540. }
  7541. article.node-type-ressource .wrapper-ressource .field--name-title {
  7542. grid-column: 2;
  7543. margin-top: 0.5rem;
  7544. order: 4;
  7545. margin-bottom: 0;
  7546. }
  7547. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7548. margin: 0;
  7549. line-height: 1rem;
  7550. margin-left: 0 !important;
  7551. line-height: 0;
  7552. margin-bottom: 0 !important;
  7553. }
  7554. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7555. color: rgb(0, 0, 0);
  7556. font-size: 0.9rem;
  7557. font-weight: 900;
  7558. font-style: normal;
  7559. }
  7560. @media (max-width: 810px) {
  7561. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7562. line-height: 0 !important;
  7563. }
  7564. }
  7565. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7566. grid-column: 2;
  7567. margin-top: 0.5rem;
  7568. font-weight: 800;
  7569. line-height: 1.1rem;
  7570. order: 6 !important;
  7571. font-size: 0.8rem;
  7572. }
  7573. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7574. margin: 0;
  7575. }
  7576. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7577. display: none;
  7578. }
  7579. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7580. grid-column: 2;
  7581. margin-top: 0.8rem;
  7582. order: 5;
  7583. font-size: 0.9rem;
  7584. font-weight: 900;
  7585. line-height: 1.5;
  7586. }
  7587. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7588. order: 7;
  7589. grid-column: 2;
  7590. margin-top: 0.5rem;
  7591. font-size: 0.8rem;
  7592. }
  7593. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7594. margin: 0;
  7595. }
  7596. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7597. display: none;
  7598. }
  7599. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7600. order: 3;
  7601. grid-column: 1;
  7602. }
  7603. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7604. height: 100px;
  7605. }
  7606. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7607. height: 100%;
  7608. width: auto;
  7609. border: solid 1px gray;
  7610. }
  7611. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7612. grid-column: 2;
  7613. margin-top: 0.3rem;
  7614. order: 8;
  7615. font-size: 0.8rem;
  7616. }
  7617. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7618. order: 9;
  7619. grid-column: 2;
  7620. display: flex;
  7621. margin-top: 0.5rem;
  7622. flex-direction: row;
  7623. flex-wrap: wrap;
  7624. }
  7625. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7626. margin-right: 0.5rem;
  7627. padding-right: 0.3rem;
  7628. font-size: 0.7rem;
  7629. }
  7630. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7631. background: rgb(9, 57, 139);
  7632. color: rgb(255, 255, 255);
  7633. font-weight: 800;
  7634. vertical-align: super;
  7635. padding-left: 0.1rem;
  7636. padding-right: 0.1rem;
  7637. display: inline-flex;
  7638. pointer-events: none;
  7639. cursor: default;
  7640. }
  7641. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7642. display: none;
  7643. }
  7644. article.node-type-ressource.type-publications-issues-du-programme {
  7645. min-width: 300px;
  7646. }
  7647. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7648. display: grid;
  7649. grid-template-columns: 1fr 1.8fr;
  7650. grid-template-rows: repeat(5 1fr);
  7651. }
  7652. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7653. order: 2;
  7654. grid-row: 2;
  7655. grid-column: 1/span 2;
  7656. margin-bottom: 0.5rem;
  7657. }
  7658. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7659. order: 1;
  7660. grid-row: 1;
  7661. grid-column: 1/span 2;
  7662. }
  7663. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7664. order: 3;
  7665. grid-row: 3/span 5;
  7666. height: auto;
  7667. width: 90%;
  7668. }
  7669. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7670. height: auto;
  7671. width: 90%;
  7672. border: 1px solid #a3a3a3;
  7673. }
  7674. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7675. grid-row: 3;
  7676. margin-top: 0;
  7677. padding-bottom: 0.8rem;
  7678. }
  7679. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7680. margin-left: 0 !important;
  7681. line-height: 0;
  7682. }
  7683. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  7684. color: rgb(0, 158, 227);
  7685. font-size: 1.3rem;
  7686. font-style: normal;
  7687. }
  7688. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7689. margin-top: 0;
  7690. line-height: 1;
  7691. grid-row: 4;
  7692. }
  7693. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7694. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7695. grid-row: 4;
  7696. color: rgb(0, 158, 227);
  7697. font-size: 1rem;
  7698. font-weight: 800;
  7699. }
  7700. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7701. grid-row: 6;
  7702. line-height: 1.1;
  7703. }
  7704. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7705. grid-row: 7;
  7706. }
  7707. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7708. grid-row: 8;
  7709. margin-top: 0.5rem;
  7710. left: -0.2rem;
  7711. position: relative;
  7712. }
  7713. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7714. order: 2;
  7715. }
  7716. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7717. order: 1;
  7718. }
  7719. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7720. order: 3;
  7721. }
  7722. @media (max-width: 479px) {
  7723. article.node-type-ressource {
  7724. margin-left: 0;
  7725. }
  7726. }
  7727. article.node-type-ressource.type-presse .field--name-field-images {
  7728. display: none;
  7729. }
  7730. .type-les-projets-en-images.views-row {
  7731. width: 50% !important;
  7732. min-width: 550px !important;
  7733. max-width: 0 !important;
  7734. }
  7735. @media (max-width: 479px) {
  7736. .type-les-projets-en-images.views-row {
  7737. min-width: 100% !important;
  7738. }
  7739. }
  7740. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7741. display: grid;
  7742. grid-template-columns: 2fr 1fr !important;
  7743. width: 100%;
  7744. max-width: 100%;
  7745. column-gap: 1rem;
  7746. align-items: start;
  7747. }
  7748. @media (max-width: 479px) {
  7749. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7750. display: flex;
  7751. flex-direction: column;
  7752. padding-left: 1rem !important;
  7753. }
  7754. }
  7755. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  7756. grid-column: 1;
  7757. grid-row: 3/span 8;
  7758. width: 100%;
  7759. }
  7760. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  7761. width: 100%;
  7762. height: auto;
  7763. margin-top: 1rem;
  7764. object-fit: cover;
  7765. border: 1px solid #ccc;
  7766. }
  7767. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7768. height: fit-content;
  7769. }
  7770. @media (max-width: 479px) {
  7771. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7772. height: auto;
  7773. }
  7774. }
  7775. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  7776. grid-column: 1/span 2;
  7777. grid-row: 2;
  7778. }
  7779. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  7780. grid-column: 1/span 2;
  7781. grid-row: 1;
  7782. }
  7783. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  7784. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  7785. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  7786. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  7787. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  7788. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7789. grid-column: 2;
  7790. width: 100%;
  7791. box-sizing: border-box;
  7792. padding: 0;
  7793. margin: 0;
  7794. }
  7795. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  7796. grid-row: 3;
  7797. margin-bottom: 0.5rem;
  7798. }
  7799. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  7800. grid-row: 4;
  7801. }
  7802. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  7803. grid-row: 5;
  7804. }
  7805. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  7806. grid-row: 6;
  7807. line-height: 1;
  7808. }
  7809. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  7810. grid-row: 7;
  7811. }
  7812. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7813. grid-row: 8;
  7814. }
  7815. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource h2, .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource p {
  7816. margin: 0;
  7817. padding: 0;
  7818. }