bundle.css 334 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937
  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__text {
  377. text-transform: uppercase;
  378. font-family: "Source Code Pro";
  379. color: rgb(9, 57, 139);
  380. font-size: 0.8rem;
  381. font-weight: 500;
  382. text-transform: uppercase;
  383. text-align: end;
  384. }
  385. .path-projets-complets .node-type-projet {
  386. border-bottom: 1px solid black;
  387. padding-bottom: 5rem;
  388. margin-bottom: 5rem;
  389. }
  390. .path-projets-complets .projet-content {
  391. display: flex;
  392. flex-direction: column;
  393. }
  394. .path-projets-complets .field--name-field-photo .field__label {
  395. display: none;
  396. }
  397. .path-projets-complets .field--name-field-photo .field__items {
  398. height: 100%;
  399. display: grid;
  400. gap: 3px;
  401. }
  402. .path-projets-complets .field--name-field-photo .field__item {
  403. overflow: hidden;
  404. aspect-ratio: 3/2;
  405. }
  406. .path-projets-complets .field--name-field-photo .field__item img {
  407. width: 100%;
  408. height: 100%;
  409. object-fit: cover;
  410. display: block;
  411. }
  412. .path-projets-complets .field--name-field-photo .image-field-caption {
  413. display: none;
  414. }
  415. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:only-child) {
  416. grid-template-columns: 1fr;
  417. }
  418. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:only-child) .field__item {
  419. grid-column: 1;
  420. }
  421. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:nth-child(2)) {
  422. grid-template-columns: repeat(3, 1fr);
  423. }
  424. .path-projets-complets .field--name-field-photo .field__items:has(.field__item:nth-child(2)) .field__item:first-child {
  425. grid-column: 1/4;
  426. }
  427. .path-projets-complets .field--name-field-photo .field__items .field__item:nth-child(n+8) {
  428. display: none;
  429. }
  430. .path-projets-complets .field--name-title {
  431. order: 2;
  432. font-family: "Marianne";
  433. font-size: 2rem;
  434. font-weight: 800;
  435. color: rgb(0, 158, 227);
  436. }
  437. @media (max-width: 1624px) {
  438. .path-projets-complets .field--name-title {
  439. font-size: 2.3rem;
  440. }
  441. }
  442. @media (max-width: 1384px) {
  443. .path-projets-complets .field--name-title {
  444. font-size: 2rem;
  445. }
  446. }
  447. @media (max-width: 1216px) {
  448. .path-projets-complets .field--name-title {
  449. font-size: 2rem;
  450. }
  451. }
  452. @media (max-width: 810px) {
  453. .path-projets-complets .field--name-title {
  454. font-size: 1.7rem;
  455. }
  456. }
  457. .path-projets-complets .field--name-title a {
  458. color: rgb(0, 158, 227);
  459. }
  460. .path-projets-complets .field--name-field-equipe {
  461. order: 3;
  462. color: rgb(9, 57, 139);
  463. font-size: 1.5rem;
  464. font-weight: 900;
  465. text-transform: uppercase;
  466. }
  467. @media (max-width: 1624px) {
  468. .path-projets-complets .field--name-field-equipe {
  469. font-size: 1.3rem;
  470. }
  471. }
  472. @media (max-width: 1216px) {
  473. .path-projets-complets .field--name-field-equipe {
  474. font-size: 1.1rem;
  475. }
  476. }
  477. @media (max-width: 810px) {
  478. .path-projets-complets .field--name-field-equipe {
  479. font-size: 1rem;
  480. }
  481. }
  482. .path-projets-complets .field--name-field-equipe .field__label {
  483. display: none;
  484. }
  485. .path-projets-complets .field--name-field-incube {
  486. order: 4;
  487. display: inline-flex;
  488. width: fit-content;
  489. background-color: rgb(225, 0, 15);
  490. color: white;
  491. font-weight: 800;
  492. padding-right: 0.3rem;
  493. padding-left: 0.2rem;
  494. margin-bottom: 1rem;
  495. margin-top: 1rem;
  496. }
  497. .path-projets-complets .field--name-field-incube::before {
  498. content: " Projet ";
  499. padding-right: 0.5rem;
  500. }
  501. .path-projets-complets .field--name-field-incube .field__label {
  502. display: inline;
  503. }
  504. .path-projets-complets .field--name-field-incube .field__item {
  505. display: none;
  506. }
  507. .path-projets-complets .field--name-field-neuf-rehabilitation,
  508. .path-projets-complets .field--name-field-encours-fini {
  509. display: none;
  510. }
  511. .path-projets-complets .field--name-field-region {
  512. display: flex;
  513. align-items: center;
  514. gap: 0.5rem;
  515. margin-bottom: 2rem;
  516. }
  517. .path-projets-complets .field--name-field-region::before {
  518. content: "";
  519. display: block;
  520. width: 20px;
  521. height: 20px;
  522. background: url("../images/pictos/picto_lieu.svg") no-repeat center;
  523. background-size: contain;
  524. }
  525. .path-projets-complets .field--name-field-type-de-moa {
  526. order: 6;
  527. }
  528. .path-projets-complets .field--name-field-type-de-projet {
  529. order: 7;
  530. }
  531. .path-projets-complets .field--name-field-etape-du-projet {
  532. order: 8;
  533. }
  534. .path-projets-complets .field--name-field-textes {
  535. order: 9;
  536. }
  537. .path-projets-complets .field--name-field-textes .field__label {
  538. display: none;
  539. }
  540. .path-projets-complets .field--name-field-textes .field--name-field-titre {
  541. color: rgb(9, 57, 139);
  542. font-size: 1.2rem;
  543. font-weight: 900;
  544. text-transform: uppercase;
  545. margin-bottom: 0 !important;
  546. flex-direction: row;
  547. }
  548. .path-projets-complets .field--name-field-textes .field--name-field-titre::after {
  549. content: " :";
  550. padding-left: 0.5rem;
  551. }
  552. .path-projets-complets .field--name-field-etape-du-projet a,
  553. .path-projets-complets .field--name-field-type-de-projet a,
  554. .path-projets-complets .field--name-field-type-de-moa a {
  555. color: black;
  556. }
  557. .path-projets-complets .field--name-field-etape-du-projet .field__label,
  558. .path-projets-complets .field--name-field-type-de-projet .field__label,
  559. .path-projets-complets .field--name-field-type-de-moa .field__label {
  560. color: rgb(9, 57, 139);
  561. font-size: 1.2rem;
  562. font-weight: 900;
  563. text-transform: uppercase;
  564. margin-bottom: 0 !important;
  565. flex-direction: row;
  566. }
  567. .path-projets-complets .field--name-field-etape-du-projet .field__label::after,
  568. .path-projets-complets .field--name-field-type-de-projet .field__label::after,
  569. .path-projets-complets .field--name-field-type-de-moa .field__label::after {
  570. content: ":";
  571. padding-left: 0.5rem;
  572. }
  573. @media print {
  574. .path-projets-complets .path-projets-complets .layout-content {
  575. width: 100% !important;
  576. margin: 0 auto !important;
  577. }
  578. .path-projets-complets .path-projets-complets .projet-content {
  579. display: block !important;
  580. }
  581. .path-projets-complets .path-projets-complets .field--name-field-photo .field__items {
  582. display: block !important;
  583. height: auto !important;
  584. }
  585. .path-projets-complets .path-projets-complets .field--name-field-photo .field__item {
  586. display: block !important;
  587. aspect-ratio: auto !important;
  588. overflow: visible !important;
  589. margin-bottom: 4mm;
  590. }
  591. .path-projets-complets .path-projets-complets .field--name-field-photo .field__item img {
  592. width: 100% !important;
  593. height: auto !important;
  594. object-fit: contain !important;
  595. display: block;
  596. }
  597. }
  598. @media print {
  599. * {
  600. box-shadow: none !important;
  601. }
  602. img {
  603. max-width: 100%;
  604. height: auto;
  605. }
  606. @page {
  607. margin-top: 1cm;
  608. margin-bottom: 1cm;
  609. margin-left: 1cm;
  610. margin-right: 1cm;
  611. }
  612. .layout-container {
  613. display: block;
  614. }
  615. .path-projets-complets .layout-content .print-header {
  616. position: absolute;
  617. top: 1cm;
  618. right: 1cm;
  619. display: flex;
  620. align-items: center;
  621. gap: 0.5rem;
  622. }
  623. .path-projets-complets .layout-content .print-header img {
  624. width: 2cm;
  625. height: auto;
  626. }
  627. .path-projets-complets .layout-content .print-header__text {
  628. text-transform: uppercase;
  629. font-family: "Source Code Pro";
  630. color: rgb(9, 57, 139);
  631. font-size: 0.8rem;
  632. font-weight: 500;
  633. text-transform: uppercase;
  634. text-align: end;
  635. }
  636. .path-projets-complets .layout-content .views-row .node-type-projet {
  637. border-bottom: none;
  638. }
  639. .path-projets-complets .layout-content .views-row {
  640. margin-top: 3rem;
  641. break-after: page;
  642. page-break-after: always;
  643. }
  644. .path-projets-complets .layout-content .views-row .projet-header-print {
  645. padding-top: 3rem;
  646. }
  647. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-title {
  648. font-size: 1.2rem;
  649. }
  650. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .field__item:nth-child(n+8) {
  651. display: none;
  652. }
  653. .path-projets-complets .layout-content .views-row .projet-header-print .field--name-field-photo .image-field-caption {
  654. display: none;
  655. }
  656. .path-projets-complets .layout-content .views-row .projet-body-print {
  657. padding-top: 3rem;
  658. }
  659. .path-projets-complets .layout-content .views-row .paragraph {
  660. break-inside: avoid;
  661. page-break-inside: avoid;
  662. }
  663. .path-projets-complets .views-row {
  664. page-break-before: always;
  665. break-before: page;
  666. }
  667. .path-projets-complets .views-row:first-child {
  668. page-break-before: auto;
  669. break-before: auto;
  670. }
  671. .path-projets-complets .projet-header-print {
  672. page-break-after: always;
  673. break-after: page;
  674. }
  675. }
  676. /*pages*/
  677. /*
  678. @import "pages/partials/header_footer";
  679. @import "pages/home";
  680. */
  681. .path-node.page-node-type-static .layout-container {
  682. overflow: unset;
  683. }
  684. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  685. padding-bottom: 3rem;
  686. height: 30vh;
  687. }
  688. @media (max-width: 810px) {
  689. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top {
  690. padding-bottom: 0rem;
  691. }
  692. }
  693. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  694. width: fit-content;
  695. margin-left: 11%;
  696. margin-top: 15vh;
  697. }
  698. @media (max-width: 810px) {
  699. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle {
  700. margin-left: 8%;
  701. margin-right: 5%;
  702. }
  703. }
  704. .path-node.page-node-type-static .layout-container .layout-content .layout__region--top .block-entity-fieldnodetitle .field--name-title {
  705. display: inline;
  706. font-family: "Source Code Pro";
  707. font-size: 2rem;
  708. font-weight: 800;
  709. text-transform: uppercase;
  710. }
  711. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first {
  712. position: relative;
  713. }
  714. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  715. display: flex;
  716. justify-content: flex-end;
  717. position: -webkit-sticky;
  718. position: sticky;
  719. top: 10rem;
  720. }
  721. @media (max-width: 810px) {
  722. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first {
  723. display: none;
  724. }
  725. }
  726. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  727. display: flex;
  728. width: 50%;
  729. background-color: rgb(255, 255, 255);
  730. padding-right: 2rem;
  731. }
  732. .path-node.page-node-type-static .layout-container .layout-content .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  733. display: flex;
  734. font-size: 1rem;
  735. font-weight: 1000;
  736. color: rgb(9, 57, 139);
  737. border-bottom: 1px solid rgb(0, 158, 227);
  738. padding-bottom: 0.8rem;
  739. padding-right: 1rem;
  740. margin-top: 1rem;
  741. scroll-margin-top: 7em;
  742. }
  743. .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 {
  744. text-decoration: underline;
  745. }
  746. @media (max-width: 810px) {
  747. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  748. flex: 0 1 80%;
  749. margin: auto;
  750. }
  751. }
  752. @media (max-width: 479px) {
  753. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second {
  754. padding-top: 5rem;
  755. }
  756. }
  757. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes {
  758. margin-top: 1rem;
  759. background-color: rgb(255, 255, 255);
  760. }
  761. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  762. font-size: 1.5rem;
  763. font-weight: 1000;
  764. font-family: "Source Code Pro", monospace;
  765. color: rgb(9, 57, 139);
  766. text-transform: uppercase;
  767. margin-top: 2rem;
  768. margin-bottom: 0.8rem;
  769. }
  770. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 {
  771. text-transform: none !important;
  772. }
  773. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  774. width: 100%;
  775. height: auto;
  776. }
  777. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  778. padding: 0.5rem 1rem 1rem 1.5rem;
  779. }
  780. .path-node.page-node-type-static .layout-container .layout-content .layout__region--second .block-entity-fieldnodefield-textes p {
  781. margin-top: 0;
  782. }
  783. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  784. margin-top: 1rem;
  785. display: flex;
  786. flex-direction: column;
  787. width: 70%;
  788. }
  789. @media (max-width: 810px) {
  790. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third {
  791. margin: auto;
  792. }
  793. }
  794. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  795. height: fit-content;
  796. border: 2px solid rgb(0, 158, 227);
  797. background-color: rgb(255, 255, 255);
  798. }
  799. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers .field--name-field-fichiers {
  800. min-height: 4rem;
  801. background: rgb(255, 255, 255);
  802. color: rgb(0, 158, 227);
  803. padding-left: 0.8rem;
  804. padding-top: 1rem;
  805. padding-bottom: 1rem;
  806. padding-right: 0.5rem;
  807. }
  808. .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) {
  809. display: none;
  810. }
  811. .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 {
  812. height: inherit;
  813. margin: auto;
  814. }
  815. .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 {
  816. content: url("../images/pictos/download.png");
  817. height: auto;
  818. padding-right: 1rem;
  819. }
  820. .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 {
  821. hyphens: auto;
  822. display: inline-flex;
  823. color: rgb(0, 158, 227);
  824. font-weight: 800;
  825. align-items: center;
  826. }
  827. .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 {
  828. margin: auto;
  829. height: fit-content;
  830. border: 2px solid rgb(0, 158, 227);
  831. min-height: 2rem;
  832. background: rgb(255, 255, 255);
  833. color: rgb(0, 158, 227);
  834. padding-left: 0.8rem;
  835. padding-top: 1rem;
  836. padding-bottom: 1rem;
  837. margin-bottom: 1rem;
  838. padding-right: 0.5rem;
  839. }
  840. .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 {
  841. display: inline-flex;
  842. justify-items: center;
  843. color: rgb(0, 158, 227);
  844. font-weight: 800;
  845. align-items: center;
  846. }
  847. .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 {
  848. content: url("../images/pictos/external_link.png");
  849. height: auto;
  850. padding-right: 1rem;
  851. }
  852. .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 {
  853. display: none;
  854. }
  855. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  856. margin-top: 3rem;
  857. }
  858. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  859. font-size: 0.8rem;
  860. color: rgb(0, 0, 0);
  861. font-weight: 900;
  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 {
  864. border: 2px solid rgb(0, 158, 227);
  865. background-color: rgb(255, 255, 255);
  866. margin-bottom: 1rem;
  867. padding: 1rem;
  868. }
  869. .path-node.page-node-type-static .layout-container .layout-content .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource div {
  870. display: flex;
  871. flex-direction: column;
  872. }
  873. .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 {
  874. order: 2;
  875. text-transform: uppercase;
  876. color: rgb(0, 158, 227);
  877. font-weight: 900;
  878. font-size: 0.8rem;
  879. }
  880. .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 {
  881. order: 3;
  882. }
  883. .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 {
  884. margin: 0;
  885. }
  886. .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 {
  887. color: rgb(0, 0, 0);
  888. font-size: 1rem;
  889. font-weight: 900;
  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-sous-titre {
  892. order: 4;
  893. }
  894. .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- {
  895. order: 5;
  896. font-weight: 800;
  897. }
  898. .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 {
  899. margin: 0;
  900. }
  901. .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 {
  902. display: none;
  903. }
  904. .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 {
  905. margin: 0;
  906. }
  907. .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 {
  908. display: none;
  909. }
  910. .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 {
  911. order: 1;
  912. width: 25%;
  913. }
  914. .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 {
  915. width: 100%;
  916. height: auto;
  917. border: solid 1px gray;
  918. }
  919. .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 {
  920. order: 6;
  921. }
  922. .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 {
  923. display: none;
  924. }
  925. .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 {
  926. order: 7;
  927. display: flex;
  928. margin-top: 0.8rem;
  929. flex-direction: row;
  930. flex-wrap: wrap;
  931. }
  932. .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 {
  933. display: none;
  934. }
  935. .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 {
  936. display: flex;
  937. flex-direction: row;
  938. flex-wrap: wrap;
  939. }
  940. .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 {
  941. padding-bottom: 0.5rem;
  942. margin-right: 0.5rem;
  943. padding-right: 0.3rem;
  944. font-size: 0.8rem;
  945. }
  946. .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 {
  947. background: rgb(9, 57, 139);
  948. color: rgb(255, 255, 255);
  949. font-weight: 800;
  950. vertical-align: super;
  951. padding-left: 0.1rem;
  952. padding-right: 0.1rem;
  953. display: inline-flex;
  954. }
  955. .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 {
  956. display: none;
  957. }
  958. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  959. width: 100vw;
  960. height: auto;
  961. padding-top: 5rem;
  962. background: rgba(0, 158, 227, 0.2);
  963. }
  964. @media (max-width: 810px) {
  965. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  966. height: auto;
  967. }
  968. }
  969. @media (max-width: 792px), (max-width: 724px), (max-width: 479px) {
  970. .path-frontpage .block-views-blockactus-blocks-pages-block-1 {
  971. max-height: fit-content;
  972. padding-top: 2rem;
  973. }
  974. }
  975. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content {
  976. height: auto;
  977. }
  978. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row-wrapper {
  979. margin-bottom: 0;
  980. }
  981. @media (max-width: 810px) {
  982. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  983. width: 100vw !important;
  984. height: auto !important;
  985. }
  986. }
  987. @media (max-width: 479px) {
  988. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list {
  989. height: auto !important;
  990. width: 100vw !important;
  991. }
  992. }
  993. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .slick-list.draggable {
  994. padding-left: 0px !important;
  995. }
  996. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  997. color: rgb(0, 0, 0);
  998. line-height: 1.5rem;
  999. width: 80%;
  1000. height: auto;
  1001. margin: auto;
  1002. margin-bottom: 2rem;
  1003. }
  1004. @media (max-width: 810px) {
  1005. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite {
  1006. width: 90%;
  1007. height: auto;
  1008. }
  1009. }
  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 {
  1011. display: flex;
  1012. flex-direction: row;
  1013. justify-content: space-between;
  1014. margin-left: 2rem;
  1015. }
  1016. @media (max-width: 810px) {
  1017. .path-frontpage .block-views-blockactus-blocks-pages-block-1 div .view-actus-blocks-pages .view-content .views-row .node-type-actualite .actus-teaser-home {
  1018. display: flex;
  1019. flex-direction: column;
  1020. height: auto;
  1021. margin-left: 0;
  1022. }
  1023. }
  1024. .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 {
  1025. width: 50%;
  1026. display: flex;
  1027. justify-content: end;
  1028. }
  1029. @media (max-width: 810px) {
  1030. .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 {
  1031. width: 100%;
  1032. }
  1033. }
  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_photo .field--name-field-images .field__item {
  1035. display: flex;
  1036. max-height: 420px;
  1037. }
  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_photo .field--name-field-images .field__item img {
  1039. max-width: 100%;
  1040. max-height: 456px;
  1041. object-fit: cover;
  1042. object-position: center;
  1043. }
  1044. @media (max-width: 810px) {
  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_photo .field--name-field-images .field__item img {
  1046. max-height: 310px;
  1047. max-width: 100%;
  1048. object-fit: cover;
  1049. padding-left: 0;
  1050. margin-bottom: 1rem;
  1051. }
  1052. }
  1053. @media (max-width: 724px) {
  1054. .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 {
  1055. max-height: 400px;
  1056. }
  1057. }
  1058. @media (max-width: 680px) {
  1059. .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 {
  1060. max-height: 200px;
  1061. object-fit: cover;
  1062. margin: auto;
  1063. padding-left: 0;
  1064. padding-bottom: 1rem;
  1065. }
  1066. }
  1067. .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 {
  1068. width: 45%;
  1069. align-content: center;
  1070. color: rgb(9, 57, 139) !important;
  1071. }
  1072. @media (max-width: 810px) {
  1073. .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 {
  1074. width: 100%;
  1075. }
  1076. }
  1077. .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,
  1078. .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,
  1079. .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,
  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-field-sous-titre:empty,
  1081. .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,
  1082. .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 {
  1083. display: none;
  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-field-date {
  1086. font-size: 1.3rem;
  1087. }
  1088. @media (max-width: 811px) {
  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-field-date {
  1090. font-size: 1rem;
  1091. }
  1092. }
  1093. .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 {
  1094. display: flex !important;
  1095. flex-direction: row;
  1096. }
  1097. .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 {
  1098. display: flex;
  1099. flex-direction: row;
  1100. font-size: 1.3rem;
  1101. font-weight: 800;
  1102. padding-right: 1rem;
  1103. width: fit-content;
  1104. }
  1105. @media (min-width: 811px) {
  1106. .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 {
  1107. font-size: 0.9rem;
  1108. }
  1109. }
  1110. .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 {
  1111. font-size: 1.3rem;
  1112. padding-top: 1rem;
  1113. }
  1114. .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 {
  1115. display: none;
  1116. }
  1117. @media (max-width: 811px) {
  1118. .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 {
  1119. display: inline-flex;
  1120. font-size: 0.9rem;
  1121. padding-top: 0.5rem;
  1122. }
  1123. }
  1124. .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 {
  1125. line-height: 1.1;
  1126. font-size: 1.5rem;
  1127. padding-top: 1rem;
  1128. }
  1129. .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 {
  1130. color: rgb(9, 57, 139) !important;
  1131. }
  1132. @media (max-width: 810px) {
  1133. .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 {
  1134. font-size: 0.9rem;
  1135. padding-top: 0.5rem;
  1136. }
  1137. }
  1138. .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 {
  1139. display: none;
  1140. font-weight: 800;
  1141. }
  1142. @media (min-width: 811px) {
  1143. .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 {
  1144. font-size: 1.5rem;
  1145. }
  1146. }
  1147. .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 {
  1148. padding-top: 2rem;
  1149. font-size: 1.3rem;
  1150. }
  1151. @media (max-width: 810px) {
  1152. .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 {
  1153. font-size: 0.9rem;
  1154. padding-top: 1rem;
  1155. }
  1156. }
  1157. .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) {
  1158. width: 100%;
  1159. }
  1160. .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 {
  1161. margin: 0;
  1162. }
  1163. .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 {
  1164. color: rgb(0, 0, 0);
  1165. }
  1166. .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 {
  1167. display: none;
  1168. }
  1169. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1170. visibility: visible;
  1171. display: flex;
  1172. flex-flow: row;
  1173. justify-content: center;
  1174. background: rgba(0, 158, 227, 0.2);
  1175. padding-top: 3rem;
  1176. padding-bottom: 3rem;
  1177. border-bottom: 5px solid rgb(0, 158, 227);
  1178. }
  1179. @media (max-width: 479px) {
  1180. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 {
  1181. padding-top: 2rem;
  1182. padding-bottom: 2rem;
  1183. }
  1184. }
  1185. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien {
  1186. margin: auto;
  1187. height: fit-content;
  1188. padding: 0.4rem 1rem;
  1189. font-size: 0.8rem;
  1190. margin: 0;
  1191. background-color: rgb(255, 255, 255);
  1192. border: 2px solid rgb(0, 158, 227);
  1193. list-style: none;
  1194. display: inline-flex;
  1195. }
  1196. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien p {
  1197. margin: 0;
  1198. }
  1199. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a {
  1200. text-transform: uppercase;
  1201. font-weight: 700;
  1202. color: rgb(0, 158, 227);
  1203. display: inline-flex;
  1204. align-items: center;
  1205. }
  1206. .path-frontpage .block-block-content3ee1f633-aaa7-4b4c-a42a-02206e26d3a2 .field--name-field-lien a::after {
  1207. 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>');
  1208. }
  1209. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) {
  1210. padding-top: 2rem;
  1211. padding-bottom: 4rem;
  1212. }
  1213. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1214. width: 80%;
  1215. margin: auto;
  1216. }
  1217. @media (max-width: 479px) {
  1218. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static {
  1219. width: 80%;
  1220. }
  1221. }
  1222. .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) {
  1223. display: flex;
  1224. flex-direction: row;
  1225. flex-wrap: wrap;
  1226. }
  1227. .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) {
  1228. order: 3;
  1229. }
  1230. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links {
  1231. z-index: 95;
  1232. align-self: flex-end;
  1233. width: fit-content;
  1234. height: fit-content;
  1235. padding: 0.4rem 1rem;
  1236. font-size: 0.8rem;
  1237. margin: 0;
  1238. background-color: rgb(255, 255, 255);
  1239. border: 2px solid rgb(0, 158, 227);
  1240. list-style: none;
  1241. }
  1242. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .inline.links a {
  1243. text-transform: uppercase;
  1244. font-weight: 700;
  1245. color: rgb(0, 158, 227);
  1246. display: inline-flex;
  1247. align-items: center;
  1248. }
  1249. .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 {
  1250. 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>');
  1251. }
  1252. @media (max-width: 810px) {
  1253. .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 {
  1254. width: 100%;
  1255. }
  1256. }
  1257. @media (max-width: 810px) {
  1258. .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 {
  1259. justify-content: center;
  1260. display: flex;
  1261. }
  1262. }
  1263. .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 {
  1264. width: 15rem;
  1265. height: auto;
  1266. }
  1267. @media (max-width: 810px) {
  1268. .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 {
  1269. width: 12rem;
  1270. padding-bottom: 1rem;
  1271. }
  1272. }
  1273. .path-frontpage .block-views-blockhome-nodes-block-2 .view-display-id-block_2:is(.view-id-home_nodes) .node-type-static .field--name-title {
  1274. display: none;
  1275. }
  1276. .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 {
  1277. flex: 1 1 50px;
  1278. padding-left: 1rem;
  1279. }
  1280. @media (max-width: 810px) {
  1281. .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 {
  1282. padding-left: 0em;
  1283. flex: 1 1 100%;
  1284. }
  1285. }
  1286. @media (max-width: 479px) {
  1287. .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 {
  1288. padding-left: 0em;
  1289. }
  1290. }
  1291. .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 {
  1292. background-color: rgb(255, 255, 255);
  1293. font-size: 1.5rem;
  1294. width: 110%;
  1295. padding-bottom: 2rem;
  1296. margin-block-start: 0;
  1297. text-align: start !important;
  1298. }
  1299. @media (max-width: 810px) {
  1300. .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 {
  1301. font-size: 1.2rem;
  1302. width: 100%;
  1303. }
  1304. }
  1305. .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 {
  1306. flex: 0 0 80%;
  1307. padding-top: 4rem;
  1308. margin: auto;
  1309. }
  1310. @media (max-width: 479px) {
  1311. .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 {
  1312. flex: 0 0 100%;
  1313. }
  1314. }
  1315. .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) {
  1316. display: none;
  1317. }
  1318. .path-frontpage .block-views-blockprojets-block-4 {
  1319. border-top: 5px solid rgb(0, 158, 227);
  1320. background: rgba(0, 158, 227, 0.2);
  1321. padding-top: 2rem;
  1322. padding-bottom: 4rem;
  1323. }
  1324. @media (max-width: 810px) {
  1325. .path-frontpage .block-views-blockprojets-block-4 {
  1326. padding-bottom: 0rem;
  1327. }
  1328. }
  1329. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1330. width: 80%;
  1331. margin: auto;
  1332. padding-top: 1rem;
  1333. padding-bottom: 5rem;
  1334. text-transform: uppercase;
  1335. color: rgb(225, 0, 15);
  1336. font-family: "Source Code Pro";
  1337. font-weight: 1000;
  1338. }
  1339. @media (max-width: 479px) {
  1340. .path-frontpage .block-views-blockprojets-block-4 span h2 {
  1341. padding-bottom: 1rem;
  1342. }
  1343. }
  1344. .path-frontpage .block-views-blockprojets-block-4 .view-projets {
  1345. width: 80%;
  1346. margin: auto;
  1347. }
  1348. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1349. display: flex;
  1350. flex-direction: row;
  1351. justify-content: space-between;
  1352. }
  1353. @media (max-width: 810px) {
  1354. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper {
  1355. flex-direction: column;
  1356. }
  1357. }
  1358. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1359. width: 49%;
  1360. }
  1361. @media (max-width: 810px) {
  1362. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row {
  1363. width: 100%;
  1364. margin-bottom: 1rem;
  1365. }
  1366. }
  1367. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1368. color: rgb(9, 57, 139);
  1369. line-height: 1.5rem;
  1370. }
  1371. @media (max-width: 810px) {
  1372. .path-frontpage .block-views-blockprojets-block-4 .view-projets .view-content .view-type-slide .views-row-wrapper .views-row .node-type-projet {
  1373. padding-left: 0rem;
  1374. padding-right: 0rem;
  1375. padding-top: 2rem;
  1376. }
  1377. }
  1378. .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 {
  1379. display: flex;
  1380. flex-direction: column;
  1381. max-height: fit-content;
  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 a {
  1384. color: rgb(9, 57, 139);
  1385. }
  1386. .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 {
  1387. order: 1;
  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-field-photo .field__item {
  1390. display: none;
  1391. }
  1392. .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 {
  1393. display: block;
  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-field-photo img {
  1396. width: 100%;
  1397. height: auto;
  1398. max-height: 400px;
  1399. object-fit: cover;
  1400. }
  1401. .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 {
  1402. order: 2;
  1403. display: flex;
  1404. text-transform: uppercase;
  1405. font-size: 0.9rem;
  1406. font-weight: 800;
  1407. margin-top: 0.8rem;
  1408. line-height: 0.6rem;
  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-adresse .address {
  1411. display: flex;
  1412. flex-direction: row;
  1413. margin: 0;
  1414. }
  1415. .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 {
  1416. padding-top: 0 !important;
  1417. padding-bottom: 0 !important;
  1418. }
  1419. .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 {
  1420. content: ",";
  1421. margin-right: 0.3rem;
  1422. }
  1423. .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 {
  1424. padding-top: 0 !important;
  1425. padding-bottom: 0 !important;
  1426. }
  1427. .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 {
  1428. margin-top: 0.8rem;
  1429. font-size: 0.9rem;
  1430. font-weight: 800;
  1431. order: 4;
  1432. }
  1433. .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 {
  1434. order: 3;
  1435. margin-top: 0.8rem;
  1436. font-size: 0.9rem;
  1437. font-weight: 800;
  1438. }
  1439. .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 {
  1440. margin: 0;
  1441. }
  1442. .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 {
  1443. order: 4;
  1444. color: rgb(225, 0, 15);
  1445. margin-top: 0.8rem;
  1446. font-size: 0.7rem;
  1447. }
  1448. .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 {
  1449. display: none;
  1450. order: 5;
  1451. color: rgb(0, 0, 0);
  1452. font-size: 0.7rem;
  1453. }
  1454. .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 {
  1455. display: none;
  1456. order: 6;
  1457. }
  1458. .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 {
  1459. color: rgb(0, 0, 0);
  1460. font-size: 0.7rem;
  1461. }
  1462. .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 {
  1463. display: none;
  1464. order: 7;
  1465. }
  1466. .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 {
  1467. color: rgb(0, 0, 0);
  1468. font-size: 0.7rem;
  1469. }
  1470. .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 {
  1471. display: none;
  1472. order: 8;
  1473. color: rgb(0, 0, 0);
  1474. font-size: 0.7rem;
  1475. }
  1476. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1477. display: flex;
  1478. flex-flow: row-reverse;
  1479. background: rgba(0, 158, 227, 0.2);
  1480. padding-right: 10%;
  1481. padding-top: 2rem;
  1482. padding-bottom: 4rem;
  1483. }
  1484. @media (max-width: 479px) {
  1485. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f {
  1486. padding-top: 2rem;
  1487. padding-bottom: 2rem;
  1488. }
  1489. }
  1490. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary {
  1491. height: fit-content;
  1492. padding: 0.4rem 1rem;
  1493. font-size: 0.8rem;
  1494. margin: 0;
  1495. background-color: rgb(255, 255, 255);
  1496. border: 2px solid rgb(0, 158, 227);
  1497. list-style: none;
  1498. display: inline-flex;
  1499. }
  1500. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary p {
  1501. margin: 0;
  1502. }
  1503. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a {
  1504. text-transform: uppercase;
  1505. font-weight: 700;
  1506. color: rgb(0, 158, 227);
  1507. display: inline-flex;
  1508. align-items: center;
  1509. }
  1510. .path-frontpage .block-block-contentbfb4368c-4f85-4329-88f1-8769161aa66f .field--type-text-with-summary a::after {
  1511. 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>');
  1512. }
  1513. .path-frontpage .block-views-blockprojets-block-2 #leaflet-map-view-projets-block-2 {
  1514. height: 500px !important;
  1515. }
  1516. .node-id-20 {
  1517. background: url("../images/pictos/carre-contour-bleu_partenaire.svg");
  1518. background-repeat: no-repeat;
  1519. background-position-y: 7rem;
  1520. max-width: 100vw;
  1521. background-size: contain;
  1522. }
  1523. .node-id-20 .layout__region--top {
  1524. padding-bottom: 3rem;
  1525. height: 30vh;
  1526. }
  1527. .node-id-20 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1528. font-family: "Source Code Pro";
  1529. font-size: 2rem;
  1530. font-weight: 800;
  1531. color: rgb(255, 255, 255);
  1532. background-color: rgb(0, 158, 227);
  1533. text-transform: uppercase;
  1534. }
  1535. .field--name-field-partenaires {
  1536. padding-top: 3rem;
  1537. }
  1538. .field--name-field-partenaires .paragraph--type--partenaire {
  1539. background-color: rgb(255, 255, 255);
  1540. width: 100%;
  1541. padding-bottom: 3rem;
  1542. display: grid;
  1543. grid-template-columns: repeat(7, 1fr);
  1544. grid-template-rows: repeat(auto-fill);
  1545. }
  1546. @media (max-width: 810px) {
  1547. .field--name-field-partenaires .paragraph--type--partenaire {
  1548. display: flex;
  1549. flex-direction: column;
  1550. }
  1551. }
  1552. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-logo {
  1553. grid-column: 1/2;
  1554. grid-row: 2;
  1555. margin-top: 2rem;
  1556. padding-right: 1rem;
  1557. }
  1558. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-titre {
  1559. grid-column: 2/8;
  1560. grid-row: 1;
  1561. font-weight: 800;
  1562. }
  1563. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-texte {
  1564. grid-column: 2/8;
  1565. grid-row: 2;
  1566. }
  1567. .field--name-field-partenaires .paragraph--type--partenaire .field--name-field-lien {
  1568. grid-column: 2/8;
  1569. grid-row: 3;
  1570. }
  1571. .field--name-field-partenaires a {
  1572. color: rgb(0, 0, 0);
  1573. font-weight: 800;
  1574. }
  1575. .field--name-field-partenaires a svg {
  1576. display: none;
  1577. }
  1578. .field--name-field-equipes {
  1579. padding-top: 3rem;
  1580. }
  1581. .field--name-field-equipes .paragraph--type--equipe {
  1582. background-color: rgb(255, 255, 255);
  1583. width: 100%;
  1584. }
  1585. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1586. width: 100%;
  1587. padding-bottom: 3rem;
  1588. display: grid;
  1589. grid-template-columns: repeat(7, 1fr);
  1590. grid-template-rows: repeat(auto-fill);
  1591. }
  1592. @media (max-width: 810px) {
  1593. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne {
  1594. display: flex;
  1595. flex-direction: column;
  1596. }
  1597. }
  1598. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo {
  1599. grid-column: 1/2;
  1600. grid-row: 1/span 3;
  1601. padding-right: 1rem;
  1602. }
  1603. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-photo img {
  1604. border-radius: 50%;
  1605. }
  1606. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-prenom {
  1607. grid-column: 2/span 3;
  1608. grid-row: 1;
  1609. font-weight: 800;
  1610. }
  1611. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-nom {
  1612. grid-column: 2/span 3;
  1613. grid-row: 2;
  1614. }
  1615. .field--name-field-equipes .paragraph--type--equipe .paragraph--type--personne .field--name-field-fonction {
  1616. grid-column: 2/8;
  1617. grid-row: 3;
  1618. }
  1619. .field--name-field-equipes a {
  1620. color: rgb(0, 0, 0);
  1621. font-weight: 800;
  1622. }
  1623. .field--name-field-equipes a svg {
  1624. display: none;
  1625. }
  1626. .path-node.page-node-type-actualite .layout-container {
  1627. overflow: unset;
  1628. }
  1629. .path-node.page-node-type-actualite .offresdeservices.layout-content.region-content#block-contenudelapageprincipale {
  1630. background: none !important;
  1631. }
  1632. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1633. background: linear-gradient(to bottom, rgba(0, 158, 227, 0.2) 60%, white 40%);
  1634. padding-bottom: 4rem;
  1635. }
  1636. @media (max-width: 900px) {
  1637. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1638. order: 1;
  1639. }
  1640. }
  1641. @media (max-width: 568px) {
  1642. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top {
  1643. padding-left: 2rem;
  1644. padding-right: 2rem;
  1645. }
  1646. }
  1647. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top {
  1648. display: grid;
  1649. grid-template-columns: 1fr repeat(8, 1fr) 1fr;
  1650. }
  1651. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-actu-type {
  1652. order: 5;
  1653. grid-column: 2;
  1654. margin-top: 1rem;
  1655. color: rgb(9, 57, 139);
  1656. }
  1657. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1658. order: 3;
  1659. grid-column: 2/span 7;
  1660. margin: 0;
  1661. color: rgb(9, 57, 139);
  1662. }
  1663. @media (max-width: 568px) {
  1664. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1665. grid-column: 2/span 8;
  1666. max-width: 80vw;
  1667. }
  1668. }
  1669. @media (max-width: 499px) {
  1670. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  1671. grid-column: 2/span 9;
  1672. max-width: 80vw;
  1673. }
  1674. }
  1675. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1676. font-family: "Marianne";
  1677. font-size: 2.5rem;
  1678. font-weight: 800;
  1679. line-height: 3rem;
  1680. }
  1681. @media (max-width: 810px) {
  1682. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  1683. font-size: 1.9em;
  1684. line-height: 2.3rem;
  1685. }
  1686. }
  1687. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-date {
  1688. order: 1;
  1689. padding-top: 2rem;
  1690. grid-column: 2/span 3;
  1691. text-transform: uppercase;
  1692. color: rgb(9, 57, 139);
  1693. font-size: 1.2rem;
  1694. font-weight: 800;
  1695. margin-top: 1rem;
  1696. }
  1697. .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 {
  1698. display: flex;
  1699. flex-direction: row;
  1700. justify-content: flex-start;
  1701. }
  1702. .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 {
  1703. padding-right: 2 rem;
  1704. }
  1705. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-lieu {
  1706. order: 2;
  1707. grid-column: 2/span 4;
  1708. text-transform: uppercase;
  1709. color: rgb(9, 57, 139);
  1710. font-size: 1.2rem;
  1711. font-weight: 800;
  1712. margin-top: 1rem;
  1713. }
  1714. .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 {
  1715. display: flex;
  1716. flex-direction: row;
  1717. justify-content: flex-start;
  1718. }
  1719. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1720. order: 4;
  1721. grid-column: 2/span 7;
  1722. margin-top: 1rem;
  1723. font-weight: 800;
  1724. color: rgb(9, 57, 139);
  1725. }
  1726. @media (max-width: 568px) {
  1727. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1728. grid-column: 2/span 8;
  1729. max-width: 80vw;
  1730. }
  1731. }
  1732. @media (max-width: 499px) {
  1733. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  1734. grid-column: 2/span 9;
  1735. max-width: 80vw;
  1736. }
  1737. }
  1738. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1739. order: 6;
  1740. grid-column: 5/span 3;
  1741. width: 600px;
  1742. }
  1743. @media (max-width: 568px) {
  1744. .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 {
  1745. width: 80%;
  1746. }
  1747. }
  1748. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1749. padding-top: 2rem;
  1750. width: 100%;
  1751. max-height: 400px;
  1752. object-fit: contain;
  1753. }
  1754. @media (max-width: 568px) {
  1755. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  1756. max-width: 90vw;
  1757. }
  1758. }
  1759. @media (max-width: 900px) {
  1760. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1761. grid-column: 3/span 5;
  1762. }
  1763. }
  1764. @media (max-width: 568px) {
  1765. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  1766. grid-column: 1/span 8;
  1767. }
  1768. }
  1769. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1770. font-size: 0.8rem;
  1771. text-align: center;
  1772. }
  1773. @media (max-width: 810px) {
  1774. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images blockquote {
  1775. margin-left: 5%;
  1776. margin-right: 5%;
  1777. font-size: 0.7rem;
  1778. }
  1779. }
  1780. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-next {
  1781. right: -65px;
  1782. }
  1783. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-prev {
  1784. left: -65px;
  1785. }
  1786. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--top .block-region-top .block-entity-fieldnodefield-images .slick-dots > li {
  1787. display: inline-block;
  1788. }
  1789. .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 {
  1790. display: none;
  1791. }
  1792. .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 {
  1793. margin-bottom: 0 !important;
  1794. }
  1795. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  1796. display: flex;
  1797. justify-content: flex-end;
  1798. position: -webkit-sticky;
  1799. position: sticky;
  1800. top: 10rem;
  1801. }
  1802. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  1803. display: flex;
  1804. justify-content: flex-end;
  1805. width: 50%;
  1806. background-color: rgb(255, 255, 255);
  1807. padding-right: 2rem;
  1808. }
  1809. .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 {
  1810. display: flex;
  1811. font-size: 1rem;
  1812. font-weight: 1000;
  1813. color: rgb(9, 57, 139);
  1814. border-bottom: 1px solid rgb(0, 158, 227);
  1815. padding-bottom: 0.5rem;
  1816. padding-right: 1rem;
  1817. margin-bottom: 0.8rem;
  1818. }
  1819. .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 {
  1820. text-decoration: underline;
  1821. }
  1822. @media (max-width: 810px) {
  1823. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--first {
  1824. display: none;
  1825. }
  1826. }
  1827. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1828. width: 50%;
  1829. }
  1830. @media (max-width: 900px) {
  1831. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1832. order: 3;
  1833. width: 100vw;
  1834. }
  1835. }
  1836. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1837. width: 90%;
  1838. }
  1839. @media (max-width: 900px) {
  1840. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  1841. width: 90%;
  1842. margin: auto;
  1843. }
  1844. }
  1845. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody p {
  1846. margin-top: 0;
  1847. }
  1848. .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 {
  1849. background-color: white;
  1850. }
  1851. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes {
  1852. background-color: rgb(255, 255, 255);
  1853. }
  1854. .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 {
  1855. font-size: 1.5rem;
  1856. font-weight: 1000;
  1857. font-family: "Source Code Pro";
  1858. color: rgb(9, 57, 139);
  1859. text-transform: uppercase;
  1860. margin-top: 2rem;
  1861. margin-bottom: 0.8rem;
  1862. }
  1863. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 {
  1864. text-transform: none !important;
  1865. }
  1866. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes h4 img {
  1867. width: 100%;
  1868. height: auto;
  1869. }
  1870. .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 {
  1871. padding-right: 2rem;
  1872. }
  1873. @media (max-width: 900px) {
  1874. .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 {
  1875. padding-right: 0;
  1876. }
  1877. }
  1878. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes p {
  1879. margin-top: 0;
  1880. }
  1881. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a {
  1882. color: rgb(0, 0, 0);
  1883. text-decoration: underline;
  1884. }
  1885. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes a svg {
  1886. display: none;
  1887. }
  1888. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody .panel-body #outputtext {
  1889. overflow-y: visible !important;
  1890. }
  1891. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodebody a.ext {
  1892. word-wrap: break-word;
  1893. }
  1894. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__label {
  1895. font-size: 1.5rem;
  1896. font-weight: 1000;
  1897. font-family: "Source Code Pro";
  1898. color: rgb(9, 57, 139);
  1899. text-transform: uppercase;
  1900. margin-top: 2rem;
  1901. margin-bottom: 0.8rem;
  1902. }
  1903. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1904. display: flex;
  1905. flex-direction: row;
  1906. justify-content: space-between;
  1907. flex-wrap: wrap;
  1908. }
  1909. @media (max-width: 568px) {
  1910. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-entity-fieldnodefield-partenaires .field__items {
  1911. flex-direction: column;
  1912. }
  1913. }
  1914. .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 {
  1915. display: flex;
  1916. flex-direction: column;
  1917. align-items: center;
  1918. }
  1919. .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 {
  1920. padding-top: 1rem;
  1921. }
  1922. @media (max-width: 900px) {
  1923. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--second {
  1924. flex: 0 1 80%;
  1925. margin: auto;
  1926. }
  1927. }
  1928. @media (max-width: 1005px) {
  1929. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third {
  1930. flex: 0 1 100%;
  1931. order: 2;
  1932. }
  1933. }
  1934. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1935. display: flex;
  1936. flex-direction: column;
  1937. width: 65%;
  1938. }
  1939. @media (max-width: 900px) {
  1940. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  1941. margin: auto;
  1942. }
  1943. }
  1944. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1945. height: fit-content;
  1946. width: fit-content;
  1947. border: 2px solid rgb(0, 158, 227);
  1948. background-color: rgb(255, 255, 255);
  1949. margin-bottom: 1rem;
  1950. min-height: 4rem;
  1951. color: rgb(0, 158, 227);
  1952. padding: 1rem;
  1953. }
  1954. @media (max-width: 900px) {
  1955. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1956. width: auto;
  1957. padding-right: 1rem;
  1958. }
  1959. }
  1960. @media (max-width: 568px) {
  1961. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .field--name-field-fichiers .field__item {
  1962. width: auto;
  1963. }
  1964. }
  1965. .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) {
  1966. display: none;
  1967. }
  1968. .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 {
  1969. height: inherit;
  1970. margin: auto;
  1971. width: fit-content;
  1972. }
  1973. .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 {
  1974. content: url("../images/pictos/download.png");
  1975. padding-right: 1rem;
  1976. margin-right: 1rem;
  1977. }
  1978. .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 {
  1979. hyphens: auto;
  1980. display: inline-flex;
  1981. align-items: center;
  1982. color: rgb(0, 158, 227);
  1983. font-weight: 800;
  1984. }
  1985. .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 {
  1986. margin: auto;
  1987. width: fit-content;
  1988. height: fit-content;
  1989. border: 2px solid rgb(0, 158, 227);
  1990. min-height: 4rem;
  1991. background: rgb(255, 255, 255);
  1992. color: rgb(0, 158, 227);
  1993. padding: 1rem;
  1994. margin-bottom: 1rem;
  1995. }
  1996. @media (max-width: 900px) {
  1997. .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 {
  1998. width: auto;
  1999. padding-right: 1rem;
  2000. }
  2001. }
  2002. .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 {
  2003. display: inline-flex;
  2004. align-items: center;
  2005. color: rgb(0, 158, 227);
  2006. font-weight: 800;
  2007. }
  2008. .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 {
  2009. content: url("../images/pictos/external_link.png");
  2010. padding-right: 1rem;
  2011. }
  2012. .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 {
  2013. display: none;
  2014. }
  2015. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  2016. margin-top: 3rem;
  2017. }
  2018. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress h2 {
  2019. font-size: 0.8rem;
  2020. color: rgb(0, 0, 0);
  2021. font-weight: 900;
  2022. }
  2023. .path-node.page-node-type-actualite .layout--threecol-25-50-25 .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .node-type-ressource {
  2024. border: 2px solid rgb(0, 158, 227);
  2025. padding: 1rem;
  2026. height: fit-content;
  2027. margin-bottom: 1rem;
  2028. background-color: rgb(255, 255, 255);
  2029. display: flex;
  2030. flex-direction: column;
  2031. }
  2032. .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 {
  2033. display: flex;
  2034. flex-direction: column;
  2035. }
  2036. .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 {
  2037. order: 2;
  2038. text-transform: uppercase;
  2039. color: rgb(0, 158, 227);
  2040. font-weight: 900;
  2041. font-size: 0.8rem;
  2042. }
  2043. .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 {
  2044. order: 3;
  2045. }
  2046. .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 {
  2047. margin: 0;
  2048. }
  2049. .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 {
  2050. color: rgb(0, 0, 0);
  2051. font-size: 1rem;
  2052. font-weight: 900;
  2053. font-style: italic;
  2054. }
  2055. .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 {
  2056. order: 4;
  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-auteur-s- {
  2059. order: 5;
  2060. font-weight: 800;
  2061. }
  2062. .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 {
  2063. margin: 0;
  2064. }
  2065. .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 {
  2066. display: none;
  2067. }
  2068. .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 {
  2069. margin: 0;
  2070. }
  2071. .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 {
  2072. display: none;
  2073. }
  2074. .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 {
  2075. display: none;
  2076. order: 1;
  2077. width: 25%;
  2078. }
  2079. .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 {
  2080. width: 100%;
  2081. height: auto;
  2082. margin: auto;
  2083. }
  2084. .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 {
  2085. order: 6;
  2086. display: flex;
  2087. margin-top: 2rem;
  2088. flex-direction: row;
  2089. flex-wrap: wrap;
  2090. }
  2091. .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 {
  2092. display: flex;
  2093. flex-direction: row;
  2094. flex-wrap: wrap;
  2095. }
  2096. .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 {
  2097. padding-bottom: 0.5rem;
  2098. margin-right: 0.5rem;
  2099. padding-right: 0.3rem;
  2100. font-size: 0.8rem;
  2101. }
  2102. .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 {
  2103. background: rgb(9, 57, 139);
  2104. color: rgb(255, 255, 255);
  2105. font-weight: 800;
  2106. vertical-align: super;
  2107. padding-left: 0.1rem;
  2108. padding-right: 0.1rem;
  2109. display: inline-flex;
  2110. }
  2111. .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 {
  2112. display: none;
  2113. }
  2114. .node-id-35 .region-content {
  2115. background: url("../images/pictos/carre-contour-bleu_gouvernance.svg");
  2116. background-repeat: no-repeat;
  2117. max-width: 100vw;
  2118. background-size: contain;
  2119. }
  2120. .node-id-35 .layout__region--top {
  2121. padding-bottom: 3rem;
  2122. height: 30vh;
  2123. }
  2124. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2125. display: none;
  2126. height: inherit;
  2127. }
  2128. .node-id-35 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2129. font-family: "Source Code Pro";
  2130. font-size: 2rem;
  2131. font-weight: 800;
  2132. color: rgb(255, 255, 255);
  2133. background-color: rgb(0, 158, 227);
  2134. text-transform: uppercase;
  2135. }
  2136. .node-id-3 {
  2137. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2138. background-repeat: no-repeat;
  2139. background-position-y: 7rem;
  2140. max-width: 100vw;
  2141. background-size: contain;
  2142. }
  2143. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2144. display: none;
  2145. height: inherit;
  2146. }
  2147. .node-id-3 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2148. color: rgb(0, 158, 227);
  2149. background-color: rgb(255, 255, 255);
  2150. }
  2151. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2152. background: rgb(0, 158, 227) !important;
  2153. color: rgb(255, 255, 255) !important;
  2154. }
  2155. .node-id-3 .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item a {
  2156. color: rgb(255, 255, 255) !important;
  2157. }
  2158. .node-id-3 .block-entity-fieldnodefield-liens {
  2159. display: none;
  2160. }
  2161. .node-id-3 .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  2162. background: rgb(0, 158, 227);
  2163. color: rgb(255, 255, 255);
  2164. }
  2165. .node-id-3 .block-entity-fieldnodefield-ress {
  2166. margin-top: 3rem;
  2167. }
  2168. .node-id-3 .block-entity-fieldnodefield-ress h2 {
  2169. font-size: 0.8rem;
  2170. color: rgb(0, 0, 0);
  2171. font-weight: 900;
  2172. }
  2173. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource {
  2174. display: flex;
  2175. flex-direction: column;
  2176. border: 2px solid rgb(0, 158, 227);
  2177. padding: 1rem;
  2178. height: fit-content;
  2179. margin-bottom: 1rem;
  2180. background-color: rgb(255, 255, 255);
  2181. }
  2182. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type {
  2183. border-top: 1px solid rgb(0, 158, 227);
  2184. padding-top: 1rem;
  2185. }
  2186. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource:first-of-type::after {
  2187. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2188. align-self: flex-end;
  2189. }
  2190. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-title a {
  2191. color: rgb(0, 0, 0);
  2192. font-size: 1.4rem;
  2193. font-weight: 600;
  2194. }
  2195. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- {
  2196. font-weight: 800;
  2197. }
  2198. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- p {
  2199. margin: 0;
  2200. }
  2201. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-auteur-s- .field__label {
  2202. display: none;
  2203. }
  2204. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition p {
  2205. margin: 0;
  2206. }
  2207. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-edition .field__label {
  2208. display: none;
  2209. }
  2210. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images {
  2211. display: none;
  2212. width: 50%;
  2213. }
  2214. .node-id-3 .block-entity-fieldnodefield-ress .node-type-ressource .field--name-field-images img {
  2215. width: 100%;
  2216. height: auto;
  2217. }
  2218. .path-actualites {
  2219. background-color: rgba(0, 158, 227, 0.2);
  2220. margin: 0;
  2221. }
  2222. .path-actualites .block-region-content {
  2223. display: grid;
  2224. grid-template-columns: 1fr 8fr 1fr;
  2225. margin: auto;
  2226. padding-top: 3rem;
  2227. }
  2228. .path-actualites .block-region-content .block-views {
  2229. grid-column: 2;
  2230. }
  2231. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2232. display: flex;
  2233. flex-direction: row;
  2234. flex-wrap: wrap;
  2235. }
  2236. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2237. width: 25%;
  2238. flex: 0 0 25%;
  2239. }
  2240. @media (max-width: 810px) {
  2241. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper {
  2242. flex-direction: column;
  2243. }
  2244. .path-actualites .block-region-content .block-views .view-content .view-type-slide .views-row-wrapper .views-row {
  2245. width: 100%;
  2246. }
  2247. }
  2248. .path-actualites .block-region-content .block-views .view-display-id-block_2 {
  2249. padding-top: 0;
  2250. }
  2251. .path-actualites .block-region-content .block-views .node-type-actualite {
  2252. color: rgb(9, 57, 139);
  2253. line-height: 1.5rem;
  2254. padding: 0.5rem;
  2255. padding-right: 1rem;
  2256. padding-left: 1rem;
  2257. }
  2258. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child {
  2259. display: flex;
  2260. flex-direction: column;
  2261. }
  2262. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child a {
  2263. color: rgb(9, 57, 139);
  2264. }
  2265. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images {
  2266. order: 1;
  2267. }
  2268. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2269. width: 100%;
  2270. max-height: 175px;
  2271. object-fit: cover;
  2272. }
  2273. @media (max-width: 810px) {
  2274. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images .field__item img {
  2275. max-height: 350px;
  2276. }
  2277. }
  2278. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-images::after {
  2279. display: block;
  2280. 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>');
  2281. }
  2282. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-sous-titre {
  2283. margin-top: 0.5rem;
  2284. font-size: 0.9rem;
  2285. font-weight: 800;
  2286. order: 5;
  2287. }
  2288. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date {
  2289. order: 2;
  2290. display: flex;
  2291. flex-direction: row;
  2292. justify-content: flex-start;
  2293. }
  2294. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date .field__item:not(:last-of-type) ::after {
  2295. padding-left: 1rem;
  2296. content: "|";
  2297. }
  2298. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-date time {
  2299. font-size: 0.9rem;
  2300. font-weight: 800;
  2301. padding-right: 1rem;
  2302. width: fit-content;
  2303. }
  2304. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu {
  2305. font-size: 0.9rem;
  2306. order: 3;
  2307. display: flex;
  2308. flex-direction: row;
  2309. justify-content: flex-start;
  2310. }
  2311. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-lieu .field__label {
  2312. display: none;
  2313. }
  2314. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-title {
  2315. order: 4;
  2316. font-size: 0.9rem;
  2317. }
  2318. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field:not(.field--name-field-images) {
  2319. width: 100%;
  2320. }
  2321. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child h2 {
  2322. margin: 0;
  2323. }
  2324. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links {
  2325. padding-top: none !important;
  2326. list-style: none;
  2327. width: fit-content;
  2328. align-self: flex-end;
  2329. padding-right: 1rem;
  2330. }
  2331. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .inline.links a {
  2332. display: none;
  2333. }
  2334. .path-actualites .block-region-content .block-views .node-type-actualite div:first-child .field--name-field-actu-type {
  2335. order: 6;
  2336. padding-top: 1rem;
  2337. }
  2338. .node-id-4 {
  2339. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  2340. background-repeat: no-repeat;
  2341. background-position-y: 7rem;
  2342. max-width: 100vw;
  2343. background-size: contain;
  2344. }
  2345. .node-id-4 #block-contenudelapageprincipale {
  2346. scroll-margin: 8rem;
  2347. }
  2348. .node-id-4 .layout__region--top {
  2349. padding-bottom: 3rem;
  2350. height: 30vh;
  2351. }
  2352. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2353. display: none;
  2354. height: inherit;
  2355. }
  2356. .node-id-4 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2357. font-family: "Source Code Pro";
  2358. font-size: 2rem;
  2359. font-weight: 800;
  2360. color: rgb(255, 255, 255);
  2361. background-color: rgb(0, 158, 227);
  2362. text-transform: uppercase;
  2363. }
  2364. .node-id-4 .layout__region--second {
  2365. width: 25%;
  2366. }
  2367. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes {
  2368. background-color: rgb(255, 255, 255);
  2369. }
  2370. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2371. font-size: 1.5rem;
  2372. font-weight: 1000;
  2373. font-family: "Source Code Pro";
  2374. color: rgb(9, 57, 139);
  2375. text-transform: uppercase;
  2376. }
  2377. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2378. text-transform: none !important;
  2379. }
  2380. .node-id-4 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2381. padding-right: 2rem;
  2382. }
  2383. .node-id-5 .region-content {
  2384. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2385. background-repeat: no-repeat;
  2386. max-width: 100vw;
  2387. background-size: contain;
  2388. }
  2389. .node-id-5 .layout__region--top {
  2390. padding-bottom: 3rem;
  2391. height: 30vh;
  2392. }
  2393. .node-id-5 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2394. font-family: "Source Code Pro";
  2395. font-size: 2rem;
  2396. font-weight: 800;
  2397. color: rgb(255, 255, 255);
  2398. background-color: rgb(0, 158, 227);
  2399. text-transform: uppercase;
  2400. }
  2401. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2402. color: rgb(0, 0, 0);
  2403. text-decoration: underline;
  2404. }
  2405. .node-id-5 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2406. display: none;
  2407. }
  2408. .path-faq #block-contenudelapageprincipale h2 {
  2409. font-family: "Source Code Pro";
  2410. font-size: 2rem;
  2411. font-weight: 800;
  2412. color: rgb(0, 158, 227);
  2413. background-color: rgb(255, 255, 255);
  2414. text-transform: uppercase;
  2415. width: fit-content;
  2416. margin-left: 10%;
  2417. margin-top: 8rem;
  2418. }
  2419. @media (max-width: 810px) {
  2420. .path-faq #block-contenudelapageprincipale h2 {
  2421. margin-left: 8%;
  2422. margin-right: 1%;
  2423. }
  2424. }
  2425. .path-faq #block-contenudelapageprincipale .block-region-content {
  2426. display: grid;
  2427. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  2428. }
  2429. @media (max-width: 810px) {
  2430. .path-faq #block-contenudelapageprincipale .block-region-content {
  2431. display: flex;
  2432. flex-direction: column;
  2433. margin: auto;
  2434. }
  2435. }
  2436. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2437. grid-column: 2/span 3;
  2438. }
  2439. @media (max-width: 810px) {
  2440. .path-faq #block-contenudelapageprincipale .block-region-content .block-config-pages.block-config-pages-block {
  2441. width: 80%;
  2442. margin: auto;
  2443. }
  2444. }
  2445. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2446. display: none;
  2447. grid-column: 5;
  2448. grid-row: 1/span 2;
  2449. height: fit-content;
  2450. flex-direction: column;
  2451. max-width: fit-content;
  2452. margin-left: 2rem;
  2453. padding: 1rem;
  2454. background-color: rgb(0, 158, 227);
  2455. }
  2456. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2457. margin-top: 1rem;
  2458. display: block;
  2459. content: url("../images/pictos/picto_faq.svg");
  2460. }
  2461. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2462. text-align: center;
  2463. }
  2464. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2465. font-size: 0.8rem;
  2466. font-weight: 1000;
  2467. color: rgb(9, 57, 139);
  2468. text-transform: uppercase;
  2469. }
  2470. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p {
  2471. display: flex;
  2472. flex-direction: column;
  2473. margin-top: 0;
  2474. margin-left: 1.5rem;
  2475. margin-right: 1.5rem;
  2476. text-align: center;
  2477. }
  2478. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p a {
  2479. font-weight: 800;
  2480. color: rgb(255, 255, 255);
  2481. font-size: 1.3rem;
  2482. }
  2483. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-description p:after {
  2484. margin-left: auto;
  2485. padding-top: 1rem;
  2486. display: block;
  2487. content: url("../images/pictos/noun_Arrow_3771902.svg");
  2488. }
  2489. @media (max-width: 810px) {
  2490. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 {
  2491. margin: auto;
  2492. padding: 0rem;
  2493. }
  2494. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien:before {
  2495. margin-top: 1rem;
  2496. display: block;
  2497. content: url("../images/pictos/picto_faq_2.svg");
  2498. }
  2499. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien {
  2500. text-align: center;
  2501. }
  2502. .path-faq #block-contenudelapageprincipale .block-region-content .block-block-content.block-block-content10aba627-5586-4529-b44e-c0b4551a4398 .field--name-field-lien a {
  2503. font-size: 0.8rem;
  2504. font-weight: 1000;
  2505. color: rgb(9, 57, 139);
  2506. text-transform: uppercase;
  2507. }
  2508. }
  2509. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2510. margin-top: 2rem;
  2511. grid-column: 2/span 3;
  2512. display: grid;
  2513. grid-template-columns: 1fr 1fr 1fr;
  2514. }
  2515. @media (max-width: 810px) {
  2516. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 {
  2517. width: 80%;
  2518. margin: auto;
  2519. margin-top: 1rem;
  2520. }
  2521. }
  2522. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child {
  2523. grid-column: 1/span 3;
  2524. }
  2525. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2526. border-bottom: 1px solid rgb(0, 158, 227);
  2527. padding-bottom: 2rem;
  2528. }
  2529. @media (max-width: 810px) {
  2530. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse {
  2531. padding-bottom: 1rem;
  2532. }
  2533. }
  2534. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-title {
  2535. display: none;
  2536. }
  2537. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question {
  2538. cursor: pointer;
  2539. }
  2540. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-question p {
  2541. font-family: "Source Code Pro";
  2542. font-weight: 500;
  2543. color: rgb(9, 57, 139);
  2544. font-size: 1.3rem;
  2545. }
  2546. .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 {
  2547. display: inline-flex;
  2548. 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>');
  2549. float: right;
  2550. }
  2551. .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 {
  2552. display: inline-flex;
  2553. 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>');
  2554. float: right;
  2555. }
  2556. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-reponse {
  2557. display: none;
  2558. }
  2559. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-fichiers {
  2560. display: none;
  2561. }
  2562. .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) {
  2563. display: none;
  2564. }
  2565. .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) {
  2566. display: none;
  2567. }
  2568. .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 {
  2569. display: inline-block;
  2570. content: url("../images/pictos/noun_Download_file_307900.svg");
  2571. width: 30px;
  2572. height: 30px;
  2573. padding-right: 0.8rem;
  2574. }
  2575. .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 {
  2576. display: inline-flex;
  2577. align-items: center;
  2578. color: rgb(0, 0, 0);
  2579. font-weight: 800;
  2580. }
  2581. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens {
  2582. display: none;
  2583. }
  2584. .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 {
  2585. display: inline-block;
  2586. content: url("../images/pictos/external_link.png");
  2587. width: 30px;
  2588. height: 30px;
  2589. padding-right: 0.8rem;
  2590. }
  2591. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens a {
  2592. display: flex;
  2593. flex-direction: row;
  2594. justify-content: left;
  2595. align-items: center;
  2596. color: rgb(0, 0, 0);
  2597. font-weight: 800;
  2598. }
  2599. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-liens svg {
  2600. display: none;
  2601. }
  2602. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress {
  2603. display: none;
  2604. margin-top: 0.5rem;
  2605. }
  2606. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .field--name-field-ress a {
  2607. color: rgb(0, 0, 0);
  2608. text-decoration: underline;
  2609. font-weight: 800;
  2610. }
  2611. .path-faq #block-contenudelapageprincipale .block-region-content .block-views-blockfaq-block-1 div:first-child .node-type-question_reponse .opened {
  2612. display: block;
  2613. }
  2614. .node-id-6 {
  2615. background: url("../images/pictos/carre-contour-bleu_contact.svg");
  2616. background-repeat: no-repeat;
  2617. background-position-y: 7rem;
  2618. max-width: 100vw;
  2619. background-size: contain;
  2620. }
  2621. .node-id-6 .layout__region--top {
  2622. padding-bottom: 3rem;
  2623. height: 30vh;
  2624. }
  2625. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2626. display: none;
  2627. height: inherit;
  2628. }
  2629. .node-id-6 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2630. font-family: "Source Code Pro";
  2631. font-size: 2rem;
  2632. font-weight: 800;
  2633. color: rgb(255, 255, 255);
  2634. background-color: rgb(0, 158, 227);
  2635. text-transform: uppercase;
  2636. }
  2637. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a {
  2638. color: rgb(0, 0, 0);
  2639. text-decoration: underline;
  2640. }
  2641. .node-id-6 .layout__region--second .block-region-second .block-entity-fieldnodefield-textes .paragraph--type--texte a svg {
  2642. display: none;
  2643. }
  2644. .path-taxonomy #block-contenudelapageprincipale span {
  2645. display: none;
  2646. }
  2647. .path-taxonomy .view-taxonomy-term .view-header {
  2648. width: 80%;
  2649. margin: auto;
  2650. }
  2651. .path-taxonomy .view-taxonomy-term .view-content {
  2652. width: 80%;
  2653. margin: auto;
  2654. }
  2655. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper {
  2656. display: flex;
  2657. flex-direction: row;
  2658. flex-wrap: wrap;
  2659. }
  2660. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2661. width: 30%;
  2662. }
  2663. .path-taxonomy .view-taxonomy-term .view-content .views-row-wrapper .views-row {
  2664. display: flex;
  2665. width: 25%;
  2666. max-width: fit-content;
  2667. }
  2668. .page-node-type-ressource .layout-container {
  2669. overflow: visible;
  2670. }
  2671. @media (max-width: 810px) {
  2672. .page-node-type-ressource .layout-container {
  2673. overflow: hidden;
  2674. }
  2675. }
  2676. .page-node-type-ressource .layout__region--top {
  2677. padding-top: 4rem;
  2678. }
  2679. @media (max-width: 550px) {
  2680. .page-node-type-ressource .layout__region--top {
  2681. padding-top: 0rem;
  2682. max-width: 100%;
  2683. }
  2684. }
  2685. .page-node-type-ressource .layout__region--top .block-region-top {
  2686. display: flex;
  2687. flex-direction: column;
  2688. }
  2689. @media screen and (min-width: 1100px) {
  2690. .page-node-type-ressource .layout__region--top .block-region-top {
  2691. display: grid;
  2692. grid-template-columns: 1fr 2fr; /* 1/3 pour l'image, 2/3 pour le contenu */
  2693. gap: 0.5rem;
  2694. }
  2695. }
  2696. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2697. width: fit-content;
  2698. padding-left: 25%;
  2699. }
  2700. @media (min-width: 1100px) {
  2701. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2702. grid-column: 1;
  2703. grid-row: 1/span 7;
  2704. align-self: start;
  2705. justify-self: end;
  2706. margin-left: 2rem;
  2707. }
  2708. }
  2709. @media (max-width: 1100px) {
  2710. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2711. padding-left: 13%;
  2712. }
  2713. }
  2714. @media (max-width: 550px) {
  2715. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  2716. width: 100vw;
  2717. padding: 0;
  2718. width: 100%;
  2719. height: auto;
  2720. }
  2721. }
  2722. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-images img {
  2723. border: solid 1px gray;
  2724. max-width: 100%;
  2725. width: 100%;
  2726. height: auto;
  2727. }
  2728. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2729. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2730. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2731. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2732. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2733. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2734. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2735. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2736. width: 100%;
  2737. margin-left: 13%;
  2738. }
  2739. @media (max-width: 1099px) {
  2740. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2741. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2742. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2743. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2744. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2745. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2746. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2747. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2748. width: auto;
  2749. margin-right: 15%;
  2750. }
  2751. }
  2752. @media screen and (min-width: 1100px) {
  2753. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2754. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2755. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2756. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2757. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2758. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2759. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2760. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2761. width: auto;
  2762. margin-left: 2rem;
  2763. margin-right: 15%;
  2764. grid-column: 2/4;
  2765. align-self: start; /* S'assurer qu'il commence en haut */
  2766. height: fit-content;
  2767. justify-self: start;
  2768. }
  2769. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 p,
  2770. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource p,
  2771. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle p,
  2772. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre p,
  2773. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition p,
  2774. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- p,
  2775. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution p,
  2776. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs p {
  2777. margin: 0;
  2778. }
  2779. }
  2780. @media (max-width: 810px) {
  2781. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640,
  2782. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  2783. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle,
  2784. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre,
  2785. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  2786. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  2787. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  2788. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  2789. margin-left: 9%;
  2790. margin-right: 9%;
  2791. }
  2792. }
  2793. .page-node-type-ressource .layout__region--top .block-region-top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640 {
  2794. width: 100%;
  2795. font-family: "Source Code Pro";
  2796. font-size: 1.5rem;
  2797. font-weight: 800;
  2798. color: rgb(255, 255, 255);
  2799. background-color: rgb(0, 158, 227);
  2800. text-transform: uppercase;
  2801. padding-left: 13%;
  2802. padding-top: 1rem;
  2803. padding-bottom: 0.5rem;
  2804. vertical-align: middle;
  2805. }
  2806. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2807. color: rgb(0, 158, 227);
  2808. text-transform: uppercase;
  2809. font-weight: 900;
  2810. }
  2811. @media (max-width: 1099px) {
  2812. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  2813. margin-top: 2rem;
  2814. }
  2815. }
  2816. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  2817. font-size: 2.5rem;
  2818. font-weight: 600;
  2819. line-height: 1.2;
  2820. }
  2821. @media (max-width: 550px) {
  2822. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  2823. font-size: 1.5rem;
  2824. width: 80vw;
  2825. }
  2826. }
  2827. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2828. font-weight: 600;
  2829. font-size: 2rem;
  2830. }
  2831. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition {
  2832. font-weight: 600;
  2833. font-size: 2rem;
  2834. }
  2835. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre .field--name-field-edition p {
  2836. font-weight: 600;
  2837. font-size: 2rem;
  2838. margin-bottom: 0;
  2839. }
  2840. @media (max-width: 550px) {
  2841. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  2842. font-size: 1rem;
  2843. }
  2844. }
  2845. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-edition .field--name-field-edition p {
  2846. margin-bottom: 0;
  2847. }
  2848. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2849. font-size: 1.5rem;
  2850. font-weight: 800;
  2851. line-height: 0.8;
  2852. margin-top: 1rem;
  2853. }
  2854. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- p {
  2855. margin: 0;
  2856. }
  2857. @media (max-width: 550px) {
  2858. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- .field--name-field-auteur-s- {
  2859. margin-top: 0rem;
  2860. font-size: 1rem;
  2861. line-height: 1;
  2862. }
  2863. }
  2864. @media (max-width: 550px) {
  2865. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  2866. margin-top: 0.5rem;
  2867. }
  2868. }
  2869. @media (max-width: 550px) {
  2870. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  2871. margin-top: 0.5rem;
  2872. }
  2873. }
  2874. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2875. display: inline-flex;
  2876. margin-top: 0.5rem;
  2877. }
  2878. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2879. background: rgb(9, 57, 139);
  2880. margin-right: 1rem;
  2881. padding-left: 0.3rem;
  2882. padding-right: 0.3rem;
  2883. color: rgb(255, 255, 255);
  2884. font-weight: 800;
  2885. vertical-align: middle;
  2886. }
  2887. @media (max-width: 810px) {
  2888. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs {
  2889. display: flex;
  2890. flex-direction: row;
  2891. flex-wrap: wrap;
  2892. }
  2893. .page-node-type-ressource .layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs .field--name-field-mots-clefs .field__item {
  2894. margin-bottom: 0.5rem;
  2895. }
  2896. }
  2897. .page-node-type-ressource .layout__region--top {
  2898. /* Hide empty blocks */
  2899. }
  2900. .page-node-type-ressource .layout__region--top .block-block-content4e5df355-e76c-4e44-bec0-e211d94f2640:empty,
  2901. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-type-de-ressource:empty,
  2902. .page-node-type-ressource .layout__region--top .block-entity-fieldnodetitle:empty,
  2903. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-sous-titre:empty,
  2904. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-edition:empty,
  2905. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-auteur-s-:empty,
  2906. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-date-de-parution:empty,
  2907. .page-node-type-ressource .layout__region--top .block-entity-fieldnodefield-mots-clefs:empty {
  2908. display: none;
  2909. }
  2910. .page-node-type-ressource .layout__region--first {
  2911. margin-top: 3rem;
  2912. position: relative;
  2913. }
  2914. @media (max-width: 810px) {
  2915. .page-node-type-ressource .layout__region--first {
  2916. display: none;
  2917. }
  2918. }
  2919. .page-node-type-ressource .layout__region--first .block-region-first {
  2920. display: flex;
  2921. justify-content: flex-end;
  2922. position: sticky;
  2923. top: 13rem;
  2924. }
  2925. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes {
  2926. display: flex;
  2927. width: 50%;
  2928. background-color: rgb(255, 255, 255);
  2929. padding-right: 2rem;
  2930. }
  2931. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre {
  2932. display: flex;
  2933. font-size: 1rem;
  2934. font-weight: 1000;
  2935. color: rgb(9, 57, 139);
  2936. border-bottom: 1px solid rgb(0, 158, 227);
  2937. padding-bottom: 0.5rem;
  2938. padding-right: 1rem;
  2939. }
  2940. .page-node-type-ressource .layout__region--first .block-region-first .block-entity-fieldnodefield-textes .field--name-field-titre:hover {
  2941. text-decoration: underline;
  2942. }
  2943. .page-node-type-ressource .layout__region--second {
  2944. margin-top: 3rem;
  2945. }
  2946. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes {
  2947. background-color: rgb(255, 255, 255);
  2948. }
  2949. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  2950. font-size: 1.5rem;
  2951. font-weight: 1000;
  2952. font-family: "Source Code Pro";
  2953. color: rgb(9, 57, 139);
  2954. text-transform: uppercase;
  2955. }
  2956. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 {
  2957. text-transform: none !important;
  2958. }
  2959. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes h4 img {
  2960. width: 100%;
  2961. height: auto;
  2962. }
  2963. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2964. padding-right: 2rem;
  2965. }
  2966. @media (max-width: 550px) {
  2967. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  2968. padding-right: 0;
  2969. }
  2970. }
  2971. .page-node-type-ressource .layout__region--second .block-entity-fieldnodefield-textes p {
  2972. margin-top: 0;
  2973. }
  2974. @media (max-width: 810px) {
  2975. .page-node-type-ressource .layout__region--second {
  2976. flex: 0 1 80%;
  2977. margin: auto;
  2978. margin-top: 2rem;
  2979. }
  2980. }
  2981. .page-node-type-ressource .layout__region--third {
  2982. margin-top: 3rem;
  2983. }
  2984. @media (max-width: 810px) {
  2985. .page-node-type-ressource .layout__region--third {
  2986. flex: 0 1 80%;
  2987. margin-left: 10%;
  2988. }
  2989. }
  2990. .page-node-type-ressource .layout__region--third .block-region-third {
  2991. display: flex;
  2992. flex-direction: column;
  2993. width: 70%;
  2994. }
  2995. @media (max-width: 810px) {
  2996. .page-node-type-ressource .layout__region--third .block-region-third {
  2997. width: 100%;
  2998. }
  2999. }
  3000. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3001. height: fit-content;
  3002. border: 2px solid rgb(0, 158, 227);
  3003. background-color: rgb(255, 255, 255);
  3004. order: 2;
  3005. }
  3006. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers {
  3007. min-height: 4rem;
  3008. background: rgb(255, 255, 255);
  3009. color: rgb(0, 158, 227);
  3010. padding-left: 1rem;
  3011. padding-top: 1rem;
  3012. padding: 1rem;
  3013. }
  3014. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3015. display: none;
  3016. }
  3017. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3018. height: inherit;
  3019. margin: auto;
  3020. width: fit-content;
  3021. }
  3022. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3023. content: url("../images/pictos/download.png");
  3024. min-width: 30px;
  3025. height: auto;
  3026. padding-right: 1rem;
  3027. margin-right: 1rem;
  3028. }
  3029. .page-node-type-ressource .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3030. hyphens: auto;
  3031. display: inline-flex;
  3032. align-items: center;
  3033. color: rgb(0, 158, 227);
  3034. font-weight: 800;
  3035. }
  3036. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3037. order: 3;
  3038. }
  3039. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3040. margin: auto;
  3041. height: fit-content;
  3042. border: 2px solid rgb(0, 158, 227);
  3043. min-height: 4rem;
  3044. background: rgb(255, 255, 255);
  3045. color: rgb(0, 158, 227);
  3046. padding-left: 1rem;
  3047. padding-top: 1rem;
  3048. margin-bottom: 1rem;
  3049. padding: 1rem;
  3050. }
  3051. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3052. display: inline-flex;
  3053. align-items: center;
  3054. color: rgb(0, 158, 227);
  3055. font-weight: 800;
  3056. }
  3057. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3058. content: url("../images/pictos/external_link.png");
  3059. min-width: 30px;
  3060. height: auto;
  3061. padding-right: 1rem;
  3062. margin-right: 1rem;
  3063. }
  3064. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3065. display: none;
  3066. }
  3067. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3068. order: 4;
  3069. margin-top: 3rem;
  3070. }
  3071. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3072. font-size: 0.8rem;
  3073. color: rgb(0, 0, 0);
  3074. font-weight: 900;
  3075. margin-bottom: 1rem;
  3076. }
  3077. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource {
  3078. border: 2px solid rgb(0, 158, 227);
  3079. padding: 1rem;
  3080. height: fit-content;
  3081. margin-bottom: 1rem;
  3082. background-color: rgb(255, 255, 255);
  3083. display: flex;
  3084. flex-direction: column;
  3085. }
  3086. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .node-type-ressource div {
  3087. display: flex;
  3088. flex-direction: column;
  3089. }
  3090. .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 {
  3091. order: 2;
  3092. text-transform: uppercase;
  3093. color: rgb(0, 158, 227);
  3094. font-weight: 900;
  3095. font-size: 0.8rem;
  3096. }
  3097. .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 {
  3098. order: 3;
  3099. }
  3100. .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 {
  3101. margin: 0;
  3102. }
  3103. .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 {
  3104. color: rgb(0, 0, 0);
  3105. font-size: 1rem;
  3106. font-weight: 900;
  3107. font-style: italic;
  3108. }
  3109. .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 {
  3110. order: 4;
  3111. }
  3112. .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- {
  3113. order: 5;
  3114. font-weight: 800;
  3115. }
  3116. .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 {
  3117. margin: 0;
  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-auteur-s- .field__label {
  3120. display: none;
  3121. }
  3122. .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 {
  3123. margin: 0;
  3124. }
  3125. .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 {
  3126. display: none;
  3127. }
  3128. .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 {
  3129. order: 1;
  3130. width: 25%;
  3131. }
  3132. .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 {
  3133. width: 100%;
  3134. height: auto;
  3135. }
  3136. .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 {
  3137. order: 6;
  3138. }
  3139. .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 {
  3140. display: none;
  3141. }
  3142. .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 {
  3143. order: 7;
  3144. display: flex;
  3145. margin-top: 0.8rem;
  3146. flex-direction: row;
  3147. flex-wrap: wrap;
  3148. }
  3149. .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 {
  3150. display: none;
  3151. }
  3152. .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 {
  3153. display: flex;
  3154. flex-direction: row;
  3155. flex-wrap: wrap;
  3156. }
  3157. .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 {
  3158. padding-bottom: 0.5rem;
  3159. margin-right: 0.5rem;
  3160. padding-right: 0.3rem;
  3161. font-size: 0.8rem;
  3162. }
  3163. .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 {
  3164. background: rgb(9, 57, 139);
  3165. color: rgb(255, 255, 255);
  3166. font-weight: 800;
  3167. vertical-align: super;
  3168. padding-left: 0.1rem;
  3169. padding-right: 0.1rem;
  3170. display: inline-flex;
  3171. pointer-events: none !important;
  3172. cursor: default;
  3173. }
  3174. .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 {
  3175. display: none;
  3176. }
  3177. .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 {
  3178. order: 1;
  3179. width: 100%;
  3180. }
  3181. .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) {
  3182. display: none;
  3183. }
  3184. .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 {
  3185. width: 100%;
  3186. height: auto;
  3187. }
  3188. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3189. order: 1;
  3190. }
  3191. @media (max-width: 479px) {
  3192. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee {
  3193. margin-top: 2rem;
  3194. }
  3195. }
  3196. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee h2 {
  3197. display: none;
  3198. font-size: 0.8rem;
  3199. color: rgb(0, 0, 0);
  3200. font-weight: 900;
  3201. }
  3202. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee {
  3203. display: flex;
  3204. flex-direction: column;
  3205. border-bottom: 1px solid rgb(0, 0, 0);
  3206. padding: 1rem;
  3207. height: fit-content;
  3208. margin-bottom: 3rem;
  3209. background-color: rgb(255, 255, 255);
  3210. }
  3211. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__label {
  3212. display: none;
  3213. }
  3214. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__items :before {
  3215. content: url("../images/pictos/picto_lieu_blue.svg");
  3216. display: inline-block;
  3217. color: rgb(9, 57, 139);
  3218. margin-right: 1rem;
  3219. }
  3220. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item {
  3221. display: flex;
  3222. flex-direction: row;
  3223. margin-bottom: 1.5rem;
  3224. }
  3225. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item :before {
  3226. content: "Voir le projet";
  3227. display: block;
  3228. color: rgb(9, 57, 139);
  3229. }
  3230. .page-node-type-ressource .layout__region--third .block-region-third .block-entity-fieldnodefield-projets-liee .field--name-field-projets-liee .field__item a {
  3231. color: rgb(9, 57, 139);
  3232. font-size: 1rem;
  3233. font-weight: 900;
  3234. }
  3235. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span {
  3236. padding-top: 3rem;
  3237. padding-bottom: 3rem;
  3238. vertical-align: middle;
  3239. color: rgb(255, 255, 255);
  3240. }
  3241. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3242. font-family: "Source Code Pro";
  3243. font-size: 2rem;
  3244. font-weight: 800;
  3245. color: rgb(255, 255, 255);
  3246. background-color: rgb(0, 158, 227);
  3247. text-transform: uppercase;
  3248. width: fit-content;
  3249. margin-left: 10%;
  3250. margin-top: 8rem;
  3251. }
  3252. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3253. display: grid;
  3254. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  3255. }
  3256. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  3257. grid-column: 2/span 3;
  3258. margin-top: 4rem;
  3259. }
  3260. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction {
  3261. margin: auto;
  3262. background: rgb(255, 255, 255);
  3263. }
  3264. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block .field--name-field-introduction p {
  3265. margin: 0;
  3266. }
  3267. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc {
  3268. grid-column: 5;
  3269. margin-top: 4rem;
  3270. background-color: rgb(0, 158, 227);
  3271. height: fit-content;
  3272. min-height: fit-content;
  3273. width: 200px;
  3274. margin-left: 2rem;
  3275. aspect-ratio: 1/1;
  3276. display: flex;
  3277. }
  3278. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien {
  3279. display: flex;
  3280. flex-direction: column;
  3281. text-align: center;
  3282. margin: auto;
  3283. padding: 1rem;
  3284. }
  3285. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-content7dc5bc6b-f5ca-4815-b689-49382aafa2dc .field--name-field-lien a {
  3286. display: block;
  3287. font-weight: 800;
  3288. color: rgb(255, 255, 255);
  3289. font-size: 1.3rem;
  3290. }
  3291. .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 {
  3292. margin-left: 80%;
  3293. padding-top: 0.5rem;
  3294. display: block;
  3295. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3296. }
  3297. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3298. grid-column: 2/span 3;
  3299. }
  3300. @media (max-width: 810px) {
  3301. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 {
  3302. grid-column: 2/span 4;
  3303. }
  3304. }
  3305. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-display-id-block_1 {
  3306. margin: auto;
  3307. }
  3308. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-filters {
  3309. display: none;
  3310. background: rgb(255, 255, 255);
  3311. }
  3312. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3313. display: flex;
  3314. flex-wrap: wrap;
  3315. margin-top: 3rem;
  3316. }
  3317. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3318. width: 50%;
  3319. }
  3320. .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 {
  3321. display: flex;
  3322. justify-content: space-between;
  3323. padding: 1rem;
  3324. height: fit-content;
  3325. margin-bottom: 1rem;
  3326. background-color: rgb(255, 255, 255);
  3327. margin-right: 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::after {
  3330. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3331. align-self: flex-end;
  3332. }
  3333. .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 {
  3334. display: grid;
  3335. grid-template-columns: 1fr 1fr 1fr;
  3336. grid-template-rows: repeat(6 auto);
  3337. }
  3338. .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 {
  3339. grid-column: 1/span 3;
  3340. grid-row: 1;
  3341. margin-bottom: 1rem;
  3342. text-transform: uppercase;
  3343. font-weight: 900;
  3344. font-size: 0.8rem;
  3345. }
  3346. .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 {
  3347. grid-column: 1;
  3348. grid-row: 2/span 6;
  3349. margin-right: 1rem;
  3350. max-height: 170px;
  3351. }
  3352. .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 {
  3353. max-width: 100%;
  3354. object-fit: cover;
  3355. height: auto;
  3356. max-height: 95%;
  3357. }
  3358. .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 {
  3359. grid-column: 2;
  3360. grid-row: 2;
  3361. padding-right: 0.5rem;
  3362. text-transform: uppercase;
  3363. font-weight: 800;
  3364. font-size: 1rem;
  3365. }
  3366. .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 {
  3367. grid-column: 3;
  3368. grid-row: 2;
  3369. text-transform: uppercase;
  3370. font-weight: 800;
  3371. font-size: 1rem;
  3372. }
  3373. .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 {
  3374. grid-column: 2/span 3;
  3375. grid-row: 3;
  3376. text-transform: uppercase;
  3377. font-weight: 800;
  3378. font-size: 0.8rem;
  3379. }
  3380. .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 {
  3381. grid-column: 2/span 3;
  3382. grid-row: 4;
  3383. font-size: 1.3rem;
  3384. }
  3385. .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 {
  3386. color: rgb(0, 0, 0);
  3387. }
  3388. .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 {
  3389. grid-column: 2/span 3;
  3390. grid-row: 5;
  3391. text-transform: uppercase;
  3392. font-weight: 800;
  3393. font-size: 0.8rem;
  3394. }
  3395. .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 {
  3396. display: inline-flex;
  3397. grid-column: 2/span 3;
  3398. grid-row: 6;
  3399. font-size: 0.8rem;
  3400. padding-top: 1rem;
  3401. justify-content: flex-start;
  3402. }
  3403. .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 {
  3404. justify-self: flex-start;
  3405. }
  3406. .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 {
  3407. content: "proposé le";
  3408. hyphens: none;
  3409. padding-right: 0.5rem;
  3410. }
  3411. .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 {
  3412. border: 2px solid rgb(255, 0, 15);
  3413. }
  3414. .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 {
  3415. border: 2px solid rgb(160, 26, 39);
  3416. }
  3417. .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 {
  3418. border: 2px solid rgb(199, 215, 74);
  3419. }
  3420. .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 {
  3421. border: 2px solid rgb(255, 100, 83);
  3422. }
  3423. .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 {
  3424. border: 2px solid rgb(111, 109, 125);
  3425. }
  3426. @media (max-width: 810px) {
  3427. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content {
  3428. flex-direction: column;
  3429. }
  3430. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockoffres-de--block-1 .view-content .views-row {
  3431. width: 100%;
  3432. }
  3433. }
  3434. @media (max-width: 810px) {
  3435. .offresdeservices .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  3436. display: flex;
  3437. flex-direction: column;
  3438. padding: 2rem;
  3439. }
  3440. }
  3441. .page-node-type-offre-de-service {
  3442. background: url("../images/pictos/carre-contour-bleu-offre.svg");
  3443. background-repeat: no-repeat;
  3444. background-position-y: 7rem;
  3445. max-width: 100vw;
  3446. background-size: contain;
  3447. }
  3448. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3449. margin-top: 2rem;
  3450. margin-left: 13%;
  3451. display: grid;
  3452. grid-template-columns: auto auto 1fr;
  3453. grid-template-rows: repeat(6 auto);
  3454. }
  3455. @media (max-width: 810px) {
  3456. .page-node-type-offre-de-service .layout__region--top .block-region-top {
  3457. margin-left: 8%;
  3458. }
  3459. }
  3460. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3461. width: fit-content;
  3462. grid-column: 1;
  3463. grid-row: 1/span 6;
  3464. width: 250px;
  3465. height: 250px;
  3466. margin-right: 2rem;
  3467. }
  3468. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo img {
  3469. width: 100%;
  3470. height: auto;
  3471. }
  3472. @media (max-width: 810px) {
  3473. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-photo {
  3474. width: 90px;
  3475. height: 90px;
  3476. }
  3477. }
  3478. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste {
  3479. background: rgb(255, 255, 255);
  3480. width: fit-content;
  3481. grid-column: 2/span 3;
  3482. grid-row: 1;
  3483. text-transform: uppercase;
  3484. font-weight: 900;
  3485. font-size: 0.8rem;
  3486. }
  3487. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-5 {
  3488. color: rgb(255, 0, 15);
  3489. }
  3490. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-6 {
  3491. color: rgb(160, 26, 39);
  3492. }
  3493. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-7 {
  3494. color: rgb(199, 215, 74);
  3495. }
  3496. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-8 {
  3497. color: rgb(255, 100, 83);
  3498. }
  3499. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-protagoniste .type-de-protagoniste-9 {
  3500. color: rgb(111, 109, 125);
  3501. }
  3502. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-prenom {
  3503. background: rgb(255, 255, 255);
  3504. width: fit-content;
  3505. grid-column: 2;
  3506. grid-row: 2;
  3507. padding-right: 0.5rem;
  3508. text-transform: uppercase;
  3509. font-weight: 900;
  3510. font-size: 1.5rem;
  3511. }
  3512. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-nom {
  3513. background: rgb(255, 255, 255);
  3514. width: fit-content;
  3515. grid-column: 3;
  3516. grid-row: 2;
  3517. text-transform: uppercase;
  3518. font-weight: 900;
  3519. font-size: 1.5rem;
  3520. }
  3521. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure {
  3522. background: rgb(255, 255, 255);
  3523. width: fit-content;
  3524. grid-column: 2/span 3;
  3525. grid-row: 3;
  3526. text-transform: uppercase;
  3527. font-weight: 800;
  3528. font-size: 1.2rem;
  3529. margin-top: 0.5rem;
  3530. }
  3531. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-structure::after {
  3532. 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>');
  3533. }
  3534. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3535. background: rgb(255, 255, 255);
  3536. width: fit-content;
  3537. grid-column: 2/span 3;
  3538. grid-row: 4;
  3539. font-size: 2.5rem;
  3540. font-family: "Source Code Pro";
  3541. width: 70%;
  3542. }
  3543. @media (max-width: 810px) {
  3544. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle {
  3545. font-size: 1.2rem;
  3546. }
  3547. }
  3548. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodetitle a {
  3549. color: rgb(0, 0, 0);
  3550. }
  3551. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-localisation {
  3552. background: rgb(255, 255, 255);
  3553. width: fit-content;
  3554. grid-column: 2/span 3;
  3555. grid-row: 5;
  3556. text-transform: uppercase;
  3557. font-weight: 800;
  3558. font-size: 0.8rem;
  3559. margin-top: 1.5rem;
  3560. }
  3561. .page-node-type-offre-de-service .layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-proposition {
  3562. background: rgb(255, 255, 255);
  3563. width: fit-content;
  3564. grid-column: 2/span 3;
  3565. grid-row: 6;
  3566. font-size: 0.8rem;
  3567. padding-top: 1rem;
  3568. }
  3569. .page-node-type-offre-de-service .layout__region--second {
  3570. margin-top: 3rem;
  3571. margin-left: 20%;
  3572. margin-right: 2rem;
  3573. }
  3574. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary {
  3575. background: rgb(255, 255, 255);
  3576. }
  3577. .page-node-type-offre-de-service .layout__region--second .block-entity-fieldnodebody .field--type-text-with-summary p {
  3578. margin: 0;
  3579. }
  3580. @media (max-width: 810px) {
  3581. .page-node-type-offre-de-service .layout__region--second {
  3582. margin-left: 10%;
  3583. }
  3584. }
  3585. .page-node-type-offre-de-service .layout__region--third {
  3586. margin-top: 3rem;
  3587. }
  3588. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3589. display: flex;
  3590. flex-direction: column;
  3591. width: 70%;
  3592. }
  3593. @media (max-width: 810px) {
  3594. .page-node-type-offre-de-service .layout__region--third .block-region-third {
  3595. margin: auto;
  3596. }
  3597. }
  3598. .page-node-type-offre-de-service .layout__region--third .block-region-third .title-contact {
  3599. background: rgb(0, 158, 227);
  3600. color: rgb(255, 255, 255);
  3601. text-transform: uppercase;
  3602. font-weight: 900;
  3603. font-size: 0.8rem;
  3604. padding-top: 1rem;
  3605. padding-left: 1rem;
  3606. padding-right: 1rem;
  3607. }
  3608. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel {
  3609. background: rgb(0, 158, 227);
  3610. color: rgb(255, 255, 255);
  3611. font-weight: 600;
  3612. padding-left: 1rem;
  3613. padding-right: 1rem;
  3614. padding-bottom: 1rem;
  3615. }
  3616. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a {
  3617. color: white;
  3618. hyphens: auto;
  3619. }
  3620. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-courriel a svg {
  3621. display: none;
  3622. }
  3623. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-telephone {
  3624. display: none;
  3625. background: rgb(0, 158, 227);
  3626. color: rgb(255, 255, 255);
  3627. font-weight: 600;
  3628. padding-left: 1rem;
  3629. padding-right: 1rem;
  3630. padding-bottom: 1rem;
  3631. }
  3632. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-fichiers {
  3633. height: fit-content;
  3634. border: 2px solid rgb(0, 158, 227);
  3635. background-color: rgb(255, 255, 255);
  3636. margin-top: 1rem;
  3637. }
  3638. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers {
  3639. min-height: 4rem;
  3640. background: rgb(255, 255, 255);
  3641. color: rgb(0, 158, 227);
  3642. padding-left: 1rem;
  3643. padding-top: 1rem;
  3644. margin-bottom: 1rem;
  3645. }
  3646. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers span:nth-of-type(2) {
  3647. display: none;
  3648. }
  3649. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf {
  3650. height: inherit;
  3651. margin: auto;
  3652. }
  3653. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf ::before {
  3654. content: url("../images/pictos/noun_Download_file_307900.svg");
  3655. min-width: 50px;
  3656. height: auto;
  3657. padding-right: 1rem;
  3658. }
  3659. .page-node-type-offre-de-service .layout__region--third .block-region-third .field--name-field-fichiers .file--mime-application-pdf a {
  3660. hyphens: auto;
  3661. display: inline-flex;
  3662. align-items: center;
  3663. color: rgb(0, 158, 227);
  3664. font-weight: 800;
  3665. }
  3666. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens {
  3667. margin-top: 1rem;
  3668. }
  3669. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens .field__item {
  3670. margin: auto;
  3671. height: fit-content;
  3672. border: 2px solid rgb(0, 158, 227);
  3673. min-height: 4rem;
  3674. background: rgb(255, 255, 255);
  3675. color: rgb(0, 158, 227);
  3676. padding-left: 1rem;
  3677. padding-top: 1rem;
  3678. margin-bottom: 1rem;
  3679. }
  3680. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a {
  3681. display: inline-flex;
  3682. align-items: center;
  3683. color: rgb(0, 158, 227);
  3684. font-weight: 800;
  3685. }
  3686. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a::before {
  3687. content: url("../images/pictos/external_link.png");
  3688. min-width: 50px;
  3689. height: auto;
  3690. padding-right: 1rem;
  3691. }
  3692. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-liens .field--name-field-liens a svg.ext {
  3693. display: none;
  3694. }
  3695. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress {
  3696. margin-top: 3rem;
  3697. }
  3698. .page-node-type-offre-de-service .layout__region--third .block-region-third .block-entity-fieldnodefield-ress .field--name-field-ress .field__label {
  3699. font-size: 0.8rem;
  3700. color: rgb(0, 0, 0);
  3701. font-weight: 900;
  3702. margin-bottom: 1rem;
  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 {
  3705. display: flex;
  3706. flex-direction: column;
  3707. border: 2px solid rgb(0, 158, 227);
  3708. padding: 1rem;
  3709. height: fit-content;
  3710. margin-bottom: 1rem;
  3711. background-color: rgb(255, 255, 255);
  3712. }
  3713. .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 {
  3714. border-top: 1px solid rgb(0, 158, 227);
  3715. padding-top: 1rem;
  3716. }
  3717. .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 {
  3718. content: url("../images/pictos/noun_Arrow_3771902.svg");
  3719. align-self: flex-end;
  3720. }
  3721. .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 {
  3722. margin: 0;
  3723. }
  3724. .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 {
  3725. color: rgb(0, 0, 0);
  3726. font-size: 1.4rem;
  3727. font-weight: 600;
  3728. }
  3729. .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- {
  3730. font-weight: 800;
  3731. }
  3732. .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 {
  3733. margin: 0;
  3734. }
  3735. .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 {
  3736. display: none;
  3737. }
  3738. .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 {
  3739. margin: 0;
  3740. }
  3741. .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 {
  3742. display: none;
  3743. }
  3744. .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 {
  3745. display: none;
  3746. width: 50%;
  3747. }
  3748. .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 {
  3749. width: 100%;
  3750. height: auto;
  3751. }
  3752. .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 {
  3753. display: inline-flex;
  3754. margin-top: 2rem;
  3755. background: rgb(9, 57, 139);
  3756. margin-right: 1rem;
  3757. padding-left: 0.3rem;
  3758. padding-right: 0.3rem;
  3759. color: rgb(255, 255, 255);
  3760. font-weight: 800;
  3761. vertical-align: middle;
  3762. }
  3763. .path-ressources.annuairederecherche .layout-content {
  3764. background: url("../images/pictos/carre-contour-bleu_annuairederecherche.svg");
  3765. background-repeat: no-repeat;
  3766. background-position-y: 7rem;
  3767. max-width: 100vw;
  3768. background-size: cover;
  3769. }
  3770. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3771. padding-top: 8rem;
  3772. }
  3773. @media (max-width: 479px) {
  3774. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale {
  3775. padding-top: 5rem;
  3776. padding-left: 5rem;
  3777. }
  3778. }
  3779. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span {
  3780. padding-top: 3rem;
  3781. padding-bottom: 3rem;
  3782. vertical-align: middle;
  3783. color: rgb(255, 255, 255);
  3784. }
  3785. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3786. display: inline;
  3787. font-family: "Source Code Pro";
  3788. font-size: 2rem;
  3789. font-weight: 800;
  3790. color: rgb(255, 255, 255);
  3791. background-color: rgb(0, 158, 227);
  3792. text-transform: uppercase;
  3793. width: fit-content;
  3794. margin-left: 10%;
  3795. margin-top: 8rem;
  3796. }
  3797. @media (max-width: 479px) {
  3798. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale span h2 {
  3799. margin-right: 37%;
  3800. margin-bottom: 2rem;
  3801. margin-left: 0;
  3802. }
  3803. }
  3804. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3805. padding-top: 3rem;
  3806. flex: 0 1 50%;
  3807. margin-left: 20%;
  3808. }
  3809. @media (max-width: 479px) {
  3810. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  3811. flex: 0 1 80%;
  3812. margin: 0;
  3813. }
  3814. }
  3815. .path-ressources.annuairederecherche .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second .block-config-pages-block {
  3816. background-color: rgb(255, 255, 255);
  3817. margin-bottom: 4rem;
  3818. }
  3819. .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_ {
  3820. margin-bottom: 3rem;
  3821. }
  3822. .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 {
  3823. grid-column: 1;
  3824. grid-row: 1/span 3;
  3825. margin-right: 1rem;
  3826. max-height: 8rem;
  3827. }
  3828. .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 {
  3829. height: 8rem;
  3830. width: 8rem;
  3831. }
  3832. .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 {
  3833. height: 100%;
  3834. width: 100%;
  3835. object-fit: contain;
  3836. }
  3837. .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 {
  3838. grid-column: 2;
  3839. font-weight: 800;
  3840. background-color: rgb(255, 255, 255);
  3841. }
  3842. .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 {
  3843. background-color: rgb(255, 255, 255);
  3844. grid-column: 2;
  3845. }
  3846. .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 {
  3847. margin: 0;
  3848. }
  3849. .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 {
  3850. background-color: rgb(255, 255, 255);
  3851. grid-column: 2;
  3852. }
  3853. .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 {
  3854. color: rgb(0, 0, 0);
  3855. text-decoration: underline;
  3856. }
  3857. .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 {
  3858. display: none;
  3859. }
  3860. .path-webform .region-content [aria-label="Message d'avertissement"] {
  3861. display: none;
  3862. }
  3863. .path-webform .region-content .block-system-main-block h2 {
  3864. display: none;
  3865. }
  3866. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form {
  3867. display: flex;
  3868. flex-direction: row;
  3869. flex-wrap: wrap;
  3870. flex-basis: auto;
  3871. justify-content: flex-start;
  3872. }
  3873. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-titre {
  3874. width: 100%;
  3875. font-family: "Source Code Pro";
  3876. font-size: 1.5rem;
  3877. font-weight: 800;
  3878. color: rgb(255, 255, 255);
  3879. background-color: rgb(0, 158, 227);
  3880. text-transform: uppercase;
  3881. padding-left: 13%;
  3882. padding-top: 2rem;
  3883. padding-bottom: 2rem;
  3884. vertical-align: middle;
  3885. }
  3886. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-sous-titre {
  3887. width: 100%;
  3888. font-family: "Source Code Pro";
  3889. font-size: 2rem;
  3890. font-weight: 800;
  3891. color: rgb(255, 255, 255);
  3892. background-color: rgb(0, 158, 227);
  3893. text-transform: uppercase;
  3894. width: fit-content;
  3895. margin-left: 13%;
  3896. margin-top: 8rem;
  3897. }
  3898. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-processed-text {
  3899. margin-top: 10vh;
  3900. margin-left: 13%;
  3901. margin-right: 20%;
  3902. width: 60%;
  3903. }
  3904. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document {
  3905. margin-left: 13%;
  3906. margin-right: 20%;
  3907. width: 60%;
  3908. display: flex;
  3909. flex-direction: row;
  3910. flex-wrap: wrap;
  3911. margin-top: 2rem;
  3912. }
  3913. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document:after {
  3914. content: "*";
  3915. color: red;
  3916. font-size: 2rem;
  3917. padding-left: 0.5rem;
  3918. }
  3919. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document label {
  3920. width: 100%;
  3921. }
  3922. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-titre-du-document input {
  3923. width: 90%;
  3924. height: 5rem;
  3925. }
  3926. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- {
  3927. margin-left: 13%;
  3928. margin-right: 20%;
  3929. width: 60%;
  3930. display: flex;
  3931. flex-direction: row;
  3932. flex-wrap: wrap;
  3933. margin-top: 2rem;
  3934. }
  3935. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s-:after {
  3936. content: "*";
  3937. color: red;
  3938. font-size: 2rem;
  3939. padding-left: 0.5rem;
  3940. }
  3941. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- label {
  3942. width: 100%;
  3943. }
  3944. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-auteur-s- input {
  3945. width: 90%;
  3946. }
  3947. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution {
  3948. margin-left: 13%;
  3949. width: 27%;
  3950. display: flex;
  3951. flex-direction: row;
  3952. flex-wrap: wrap;
  3953. margin-top: 2rem;
  3954. }
  3955. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution:after {
  3956. content: "*";
  3957. color: red;
  3958. font-size: 2rem;
  3959. padding-left: 0.5rem;
  3960. }
  3961. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution label {
  3962. width: 100%;
  3963. }
  3964. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-date-de-parution input {
  3965. width: 90%;
  3966. }
  3967. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages {
  3968. margin-right: 20%;
  3969. width: 27%;
  3970. display: flex;
  3971. flex-direction: row;
  3972. flex-wrap: wrap;
  3973. margin-top: 2rem;
  3974. margin-right: 3rem;
  3975. }
  3976. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages label {
  3977. width: 100%;
  3978. }
  3979. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nombre-de-pages input {
  3980. width: 100%;
  3981. }
  3982. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur {
  3983. margin-left: 13%;
  3984. margin-right: 20%;
  3985. width: 60%;
  3986. display: flex;
  3987. flex-direction: row;
  3988. flex-wrap: wrap;
  3989. margin-top: 2rem;
  3990. }
  3991. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur:after {
  3992. content: "*";
  3993. color: red;
  3994. font-size: 2rem;
  3995. padding-left: 0.5rem;
  3996. }
  3997. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur label {
  3998. width: 100%;
  3999. }
  4000. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-nom-de-la-revue-et-de-l-editeur input {
  4001. width: 90%;
  4002. }
  4003. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- {
  4004. margin-left: 13%;
  4005. margin-right: 20%;
  4006. width: 60%;
  4007. display: flex;
  4008. flex-direction: row;
  4009. flex-wrap: wrap;
  4010. margin-top: 2rem;
  4011. }
  4012. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc-:after {
  4013. content: "*";
  4014. color: red;
  4015. font-size: 2rem;
  4016. padding-left: 0.5rem;
  4017. }
  4018. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- label {
  4019. width: 100%;
  4020. }
  4021. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-type-de-document-revue-article-etc- input {
  4022. width: 90%;
  4023. }
  4024. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource {
  4025. margin-left: 13%;
  4026. margin-right: 20%;
  4027. width: 60%;
  4028. display: flex;
  4029. flex-direction: row;
  4030. flex-wrap: wrap;
  4031. margin-top: 2rem;
  4032. }
  4033. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource:after {
  4034. content: "*";
  4035. color: red;
  4036. font-size: 2rem;
  4037. padding-left: 1rem;
  4038. }
  4039. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource label {
  4040. width: 100%;
  4041. }
  4042. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div {
  4043. width: 90%;
  4044. }
  4045. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-resume-de-la-ressource div textarea {
  4046. width: 100%;
  4047. }
  4048. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet {
  4049. margin-left: 13%;
  4050. margin-right: 20%;
  4051. width: 60%;
  4052. display: flex;
  4053. flex-direction: row;
  4054. flex-wrap: wrap;
  4055. margin-top: 2rem;
  4056. }
  4057. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet label {
  4058. width: 100%;
  4059. }
  4060. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-_-ou-4-mots-ou-expression-cles-pour-identifier-le-sujet input {
  4061. width: 90%;
  4062. height: 3rem;
  4063. }
  4064. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- {
  4065. margin-left: 13%;
  4066. margin-right: 20%;
  4067. width: 60%;
  4068. display: flex;
  4069. flex-direction: row;
  4070. flex-wrap: wrap;
  4071. margin-top: 2rem;
  4072. }
  4073. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-piece-s-jointe-s- label {
  4074. width: 100%;
  4075. }
  4076. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet {
  4077. margin-left: 13%;
  4078. margin-right: 20%;
  4079. width: 60%;
  4080. display: flex;
  4081. flex-direction: row;
  4082. flex-wrap: wrap;
  4083. margin-top: 2rem;
  4084. }
  4085. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet label {
  4086. width: 100%;
  4087. }
  4088. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-url-vers-une-video-ou-un-site-internet input {
  4089. width: 90%;
  4090. height: 3rem;
  4091. }
  4092. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel {
  4093. margin-left: 13%;
  4094. width: 28%;
  4095. display: flex;
  4096. flex-direction: row;
  4097. flex-wrap: wrap;
  4098. margin-top: 2rem;
  4099. }
  4100. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel:after {
  4101. content: "*";
  4102. color: red;
  4103. font-size: 2rem;
  4104. padding-left: 0.5rem;
  4105. }
  4106. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel label {
  4107. width: 100%;
  4108. }
  4109. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-courriel input {
  4110. width: 90%;
  4111. }
  4112. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone {
  4113. margin-right: 20%;
  4114. width: 29%;
  4115. display: flex;
  4116. flex-direction: row;
  4117. flex-wrap: wrap;
  4118. margin-top: 2rem;
  4119. margin-right: 3rem;
  4120. }
  4121. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone:after {
  4122. content: "*";
  4123. color: red;
  4124. font-size: 2rem;
  4125. padding-left: 0.5rem;
  4126. }
  4127. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone label {
  4128. width: 100%;
  4129. }
  4130. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form .form-item-telephone input {
  4131. width: 90%;
  4132. }
  4133. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions {
  4134. width: 60%;
  4135. }
  4136. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions input {
  4137. width: 30%;
  4138. align-self: flex-end;
  4139. background-color: rgb(0, 158, 227);
  4140. text-transform: uppercase;
  4141. color: rgb(255, 255, 255);
  4142. font-size: 1.2rem;
  4143. font-weight: 600;
  4144. float: right;
  4145. margin-top: 1rem;
  4146. border: none;
  4147. }
  4148. .path-webform .region-content #webform-submission-deposer-une-contribution-add-form #edit-actions #edit-actions-submit:after {
  4149. 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>');
  4150. }
  4151. .path-webform .region-content #webform-submission-offre-de-service-add-form {
  4152. display: flex;
  4153. flex-direction: row;
  4154. flex-wrap: wrap;
  4155. flex-basis: auto;
  4156. justify-content: flex-start;
  4157. }
  4158. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-title {
  4159. width: 100%;
  4160. font-family: "Source Code Pro";
  4161. font-size: 1.5rem;
  4162. font-weight: 800;
  4163. color: rgb(255, 255, 255);
  4164. background-color: rgb(0, 158, 227);
  4165. text-transform: uppercase;
  4166. padding-left: 13%;
  4167. padding-top: 2rem;
  4168. padding-bottom: 2rem;
  4169. vertical-align: middle;
  4170. }
  4171. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-sous-titre {
  4172. width: 100%;
  4173. font-family: "Source Code Pro";
  4174. font-size: 2rem;
  4175. font-weight: 800;
  4176. color: rgb(255, 255, 255);
  4177. background-color: rgb(0, 158, 227);
  4178. text-transform: uppercase;
  4179. width: fit-content;
  4180. margin-left: 13%;
  4181. margin-top: 8rem;
  4182. }
  4183. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-processed-text {
  4184. margin-top: 10vh;
  4185. margin-left: 13%;
  4186. margin-right: 20%;
  4187. width: 60%;
  4188. }
  4189. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service {
  4190. margin-left: 13%;
  4191. margin-right: 20%;
  4192. width: 60%;
  4193. display: flex;
  4194. flex-direction: row;
  4195. flex-wrap: wrap;
  4196. margin-top: 2rem;
  4197. }
  4198. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service:after {
  4199. content: "*";
  4200. color: red;
  4201. font-size: 2rem;
  4202. padding-left: 0.5rem;
  4203. }
  4204. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service label {
  4205. width: 100%;
  4206. }
  4207. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-intitule-de-l-offre-de-service input {
  4208. width: 90%;
  4209. height: 5rem;
  4210. }
  4211. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure {
  4212. margin-left: 13%;
  4213. margin-right: 20%;
  4214. width: 60%;
  4215. display: flex;
  4216. flex-direction: row;
  4217. flex-wrap: wrap;
  4218. margin-top: 2rem;
  4219. }
  4220. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure:after {
  4221. content: "*";
  4222. color: red;
  4223. font-size: 2rem;
  4224. padding-left: 0.5rem;
  4225. }
  4226. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure label {
  4227. width: 100%;
  4228. }
  4229. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-structure input {
  4230. width: 90%;
  4231. }
  4232. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation {
  4233. margin-left: 13%;
  4234. margin-right: 20%;
  4235. width: 60%;
  4236. display: flex;
  4237. flex-direction: row;
  4238. flex-wrap: wrap;
  4239. margin-top: 2rem;
  4240. }
  4241. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation:after {
  4242. content: "*";
  4243. color: red;
  4244. font-size: 2rem;
  4245. padding-left: 0.5rem;
  4246. }
  4247. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation label {
  4248. width: 100%;
  4249. }
  4250. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-localisation input {
  4251. width: 90%;
  4252. }
  4253. .path-webform .region-content #webform-submission-offre-de-service-add-form div {
  4254. width: 100%;
  4255. }
  4256. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description {
  4257. margin-left: 13%;
  4258. margin-right: 20%;
  4259. width: 60%;
  4260. display: flex;
  4261. flex-direction: row;
  4262. flex-wrap: wrap;
  4263. margin-top: 2rem;
  4264. }
  4265. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description label {
  4266. width: 100%;
  4267. }
  4268. .path-webform .region-content #webform-submission-offre-de-service-add-form div .form-item-description textarea {
  4269. width: 90%;
  4270. }
  4271. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description {
  4272. margin-left: 13%;
  4273. margin-right: 20%;
  4274. width: 60%;
  4275. display: flex;
  4276. flex-direction: row;
  4277. flex-wrap: wrap;
  4278. margin-top: 2rem;
  4279. }
  4280. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description label {
  4281. width: 100%;
  4282. }
  4283. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-description textarea {
  4284. width: 90%;
  4285. }
  4286. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-image {
  4287. margin-left: 13%;
  4288. margin-right: 20%;
  4289. width: 60%;
  4290. display: flex;
  4291. flex-direction: row;
  4292. flex-wrap: wrap;
  4293. margin-top: 2rem;
  4294. }
  4295. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-des-documents-complementaires-en-pdf {
  4296. margin-left: 13%;
  4297. margin-right: 20%;
  4298. width: 60%;
  4299. display: flex;
  4300. flex-direction: row;
  4301. flex-wrap: wrap;
  4302. margin-top: 2rem;
  4303. }
  4304. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper {
  4305. width: 100%;
  4306. }
  4307. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url {
  4308. margin-left: 13%;
  4309. margin-right: 20%;
  4310. width: 60%;
  4311. display: flex;
  4312. flex-direction: row;
  4313. flex-wrap: wrap;
  4314. margin-top: 2rem;
  4315. }
  4316. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url:after {
  4317. content: "*";
  4318. color: red;
  4319. font-size: 2rem;
  4320. padding-left: 0.5rem;
  4321. }
  4322. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url label {
  4323. width: 100%;
  4324. }
  4325. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-lien--wrapper .form-item-lien-url input {
  4326. width: 90%;
  4327. }
  4328. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel {
  4329. margin-left: 13%;
  4330. display: flex;
  4331. flex-direction: row;
  4332. flex-wrap: wrap;
  4333. margin-top: 2rem;
  4334. width: 28%;
  4335. }
  4336. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel:after {
  4337. content: "*";
  4338. color: red;
  4339. font-size: 2rem;
  4340. padding-left: 0.5rem;
  4341. }
  4342. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel label {
  4343. width: 100%;
  4344. }
  4345. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-courriel input {
  4346. width: 90%;
  4347. }
  4348. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone {
  4349. margin-right: 20%;
  4350. width: 29%;
  4351. display: flex;
  4352. flex-direction: row;
  4353. flex-wrap: wrap;
  4354. margin-top: 2rem;
  4355. margin-right: 3rem;
  4356. }
  4357. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone:after {
  4358. content: "*";
  4359. color: red;
  4360. font-size: 2rem;
  4361. padding-left: 0.5rem;
  4362. }
  4363. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone label {
  4364. width: 100%;
  4365. }
  4366. .path-webform .region-content #webform-submission-offre-de-service-add-form .form-item-telephone input {
  4367. width: 90%;
  4368. }
  4369. .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 {
  4370. margin-top: 3rem;
  4371. margin-bottom: 3rem;
  4372. margin-left: 13%;
  4373. margin-right: 20%;
  4374. width: 60%;
  4375. }
  4376. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions {
  4377. width: 60%;
  4378. }
  4379. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions input {
  4380. width: 30%;
  4381. align-self: flex-end;
  4382. background-color: rgb(0, 158, 227);
  4383. text-transform: uppercase;
  4384. color: rgb(255, 255, 255);
  4385. font-size: 1.2rem;
  4386. font-weight: 600;
  4387. float: right;
  4388. margin-top: 1rem;
  4389. border: none;
  4390. }
  4391. .path-webform .region-content #webform-submission-offre-de-service-add-form #edit-actions #edit-actions-submit:after {
  4392. 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>');
  4393. }
  4394. .path-webform .region-content #webform-submission-question-add-form {
  4395. display: flex;
  4396. flex-direction: row;
  4397. flex-wrap: wrap;
  4398. flex-basis: auto;
  4399. justify-content: flex-start;
  4400. margin-top: 10vh;
  4401. width: 60%;
  4402. margin-left: 13%;
  4403. margin-right: 20%;
  4404. }
  4405. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel {
  4406. display: flex;
  4407. flex-direction: row;
  4408. flex-wrap: wrap;
  4409. margin-top: 2rem;
  4410. width: 100%;
  4411. }
  4412. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel:after {
  4413. content: "*";
  4414. color: red;
  4415. font-size: 2rem;
  4416. padding-left: 0.5rem;
  4417. }
  4418. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel label {
  4419. width: 100%;
  4420. }
  4421. .path-webform .region-content #webform-submission-question-add-form .form-item-couriel input {
  4422. width: 90%;
  4423. }
  4424. .path-webform .region-content #webform-submission-question-add-form .form-item-question {
  4425. display: flex;
  4426. flex-direction: row;
  4427. flex-wrap: wrap;
  4428. margin-top: 2rem;
  4429. width: 100%;
  4430. }
  4431. .path-webform .region-content #webform-submission-question-add-form .form-item-question:after {
  4432. content: "*";
  4433. color: red;
  4434. font-size: 2rem;
  4435. padding-left: 0.9rem;
  4436. }
  4437. .path-webform .region-content #webform-submission-question-add-form .form-item-question label {
  4438. width: 100%;
  4439. }
  4440. .path-webform .region-content #webform-submission-question-add-form .form-item-question div {
  4441. width: 90%;
  4442. }
  4443. .path-webform .region-content #webform-submission-question-add-form .form-item-question div textarea {
  4444. width: 100%;
  4445. height: 5rem;
  4446. }
  4447. .path-webform .region-content #webform-submission-question-add-form #edit-actions {
  4448. width: 90%;
  4449. }
  4450. .path-webform .region-content #webform-submission-question-add-form #edit-actions input {
  4451. width: 30%;
  4452. align-self: flex-end;
  4453. background-color: rgb(0, 158, 227);
  4454. text-transform: uppercase;
  4455. color: rgb(255, 255, 255);
  4456. font-size: 1.2rem;
  4457. font-weight: 600;
  4458. float: right;
  4459. margin-top: 1rem;
  4460. border: none;
  4461. }
  4462. .path-webform .region-content #webform-submission-question-add-form #edit-actions #edit-actions-submit:after {
  4463. 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>');
  4464. }
  4465. .path-projets .region-content #block-contenudelapageprincipale span {
  4466. padding-top: 3rem;
  4467. padding-bottom: 3rem;
  4468. vertical-align: middle;
  4469. }
  4470. .path-projets .region-content #block-contenudelapageprincipale span h2 {
  4471. margin: 0;
  4472. padding-top: 2rem;
  4473. height: 4rem;
  4474. color: rgb(255, 255, 255);
  4475. font-family: "Source Code Pro";
  4476. text-transform: uppercase;
  4477. background: rgb(0, 158, 227);
  4478. padding-left: 13%;
  4479. }
  4480. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4481. display: grid;
  4482. grid-template-columns: 1fr repeat(7, 1fr) 1fr;
  4483. }
  4484. @media (max-width: 810px) {
  4485. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content {
  4486. display: flex;
  4487. flex-direction: column;
  4488. }
  4489. }
  4490. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 {
  4491. grid-column: 1/span 10;
  4492. }
  4493. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content {
  4494. overflow: scroll;
  4495. height: 210px;
  4496. margin: 17px 10px 17px 20px !important;
  4497. padding-right: 10px;
  4498. }
  4499. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a {
  4500. display: none;
  4501. }
  4502. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:nth-child(1) {
  4503. display: block !important;
  4504. }
  4505. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content a:last-of-type {
  4506. display: block !important;
  4507. }
  4508. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-2 .leaflet-popup-content #text {
  4509. display: none;
  4510. }
  4511. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4512. grid-column: 3/span 5;
  4513. margin: auto;
  4514. }
  4515. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block span h2 {
  4516. display: none;
  4517. }
  4518. .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) {
  4519. font-size: 1.5rem;
  4520. }
  4521. @media (max-width: 810px) {
  4522. .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) {
  4523. font-size: 1.3rem;
  4524. }
  4525. }
  4526. @media (max-width: 810px) {
  4527. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-config-pages-block {
  4528. padding: 1rem;
  4529. }
  4530. }
  4531. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4532. grid-column: 8/span 9;
  4533. margin-top: 4rem;
  4534. background-color: rgb(0, 158, 227);
  4535. height: fit-content;
  4536. width: 60%;
  4537. margin-left: 2rem;
  4538. grid-row: 2;
  4539. }
  4540. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .display {
  4541. display: block;
  4542. }
  4543. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien {
  4544. display: flex;
  4545. flex-direction: column;
  4546. margin-top: 2rem;
  4547. margin-bottom: 2rem;
  4548. margin-left: 1.5rem;
  4549. margin-right: 1.5rem;
  4550. text-align: center;
  4551. }
  4552. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien a {
  4553. font-weight: 800;
  4554. color: rgb(255, 255, 255);
  4555. font-size: 1.3rem;
  4556. }
  4557. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 .field--name-field-lien:after {
  4558. margin-left: auto;
  4559. padding-top: 1rem;
  4560. display: block;
  4561. content: url("../images/pictos/noun_Arrow_3771902.svg");
  4562. }
  4563. @media (max-width: 810px) {
  4564. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-block-contentaffaf220-dd27-4c9d-ae02-8044c2662220 {
  4565. margin: auto;
  4566. }
  4567. }
  4568. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4569. grid-column: 2/span 7;
  4570. }
  4571. @media (max-width: 810px) {
  4572. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 {
  4573. padding: 1rem;
  4574. }
  4575. }
  4576. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .buttons-filtres-ressources {
  4577. display: none;
  4578. }
  4579. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets {
  4580. margin: auto;
  4581. }
  4582. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets #filtres {
  4583. scroll-margin-top: 10rem;
  4584. }
  4585. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4586. margin-top: 4rem;
  4587. padding-left: 0.5rem;
  4588. display: flex;
  4589. flex-direction: column;
  4590. }
  4591. @media (max-width: 479px) {
  4592. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters {
  4593. flex-direction: column;
  4594. padding-bottom: 3rem;
  4595. margin-top: 0rem;
  4596. }
  4597. }
  4598. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4599. content: "Filtrer par :";
  4600. margin-right: 2rem;
  4601. margin-bottom: 1rem;
  4602. margin-left: 0.5rem;
  4603. font-weight: 900;
  4604. min-width: fit-content;
  4605. }
  4606. @media (max-width: 479px) {
  4607. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .view-filters::before {
  4608. padding-bottom: 1rem;
  4609. }
  4610. }
  4611. .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 {
  4612. margin-top: 2rem;
  4613. display: flex;
  4614. flex-direction: row;
  4615. flex-wrap: wrap;
  4616. }
  4617. @media (max-width: 810px) {
  4618. .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 {
  4619. flex-direction: column;
  4620. }
  4621. }
  4622. .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 {
  4623. width: 25%;
  4624. }
  4625. @media (max-width: 810px) {
  4626. .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 {
  4627. width: 100%;
  4628. }
  4629. }
  4630. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4631. color: rgb(9, 57, 139);
  4632. line-height: 1.5rem;
  4633. padding: 0.5rem;
  4634. padding-right: 1rem;
  4635. padding-left: 1rem;
  4636. }
  4637. @media (max-width: 479px) {
  4638. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet {
  4639. padding-left: 0rem;
  4640. padding-right: 0rem;
  4641. padding-top: 2rem;
  4642. }
  4643. }
  4644. .path-projets .region-content #block-contenudelapageprincipale .layout--onecol .block-region-content .block-views-blockprojets-block-1 .view-projets .node-type-projet div:first-child {
  4645. display: flex;
  4646. flex-direction: column;
  4647. }
  4648. .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 {
  4649. color: rgb(9, 57, 139);
  4650. }
  4651. .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 {
  4652. order: 1;
  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-photo .field__item {
  4655. display: none;
  4656. }
  4657. .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 {
  4658. display: block;
  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-field-photo img {
  4661. width: 100%;
  4662. max-height: 175px;
  4663. object-fit: cover;
  4664. }
  4665. .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 {
  4666. display: block;
  4667. 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>');
  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-adresse {
  4670. order: 2;
  4671. display: flex;
  4672. text-transform: uppercase;
  4673. font-size: 0.9rem;
  4674. font-weight: 800;
  4675. margin-top: 0.8rem;
  4676. line-height: 1rem;
  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-adresse .address {
  4679. display: flex;
  4680. flex-direction: row;
  4681. margin: 0;
  4682. }
  4683. .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 {
  4684. display: none;
  4685. }
  4686. .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 {
  4687. padding-top: 0 !important;
  4688. padding-bottom: 0 !important;
  4689. }
  4690. .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 {
  4691. content: ",";
  4692. margin-right: 0.3rem;
  4693. }
  4694. .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 {
  4695. padding-top: 0 !important;
  4696. padding-bottom: 0 !important;
  4697. }
  4698. .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 {
  4699. margin-top: 0.5rem;
  4700. font-size: 0.9rem;
  4701. font-weight: 800;
  4702. order: 4;
  4703. }
  4704. .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 {
  4705. order: 3;
  4706. margin-top: 0.5rem;
  4707. font-size: 0.8rem;
  4708. font-weight: 800;
  4709. }
  4710. .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 {
  4711. margin: 0;
  4712. }
  4713. .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 {
  4714. order: 4;
  4715. color: red;
  4716. margin-top: 0.8rem;
  4717. font-size: 0.7rem;
  4718. }
  4719. .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 {
  4720. display: none;
  4721. }
  4722. .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 {
  4723. display: none;
  4724. }
  4725. .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 {
  4726. display: none;
  4727. }
  4728. .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 {
  4729. display: none;
  4730. }
  4731. .path-node.page-node-type-projet .layout-container {
  4732. overflow: unset;
  4733. }
  4734. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top {
  4735. padding-top: 4rem;
  4736. margin-left: 10%;
  4737. margin-right: 10%;
  4738. width: 80vw;
  4739. }
  4740. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4741. display: flex;
  4742. flex-direction: row;
  4743. margin-bottom: 2rem;
  4744. }
  4745. @media (max-width: 568px) {
  4746. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top {
  4747. flex-direction: column;
  4748. }
  4749. }
  4750. .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 {
  4751. width: 60%;
  4752. padding-right: 2rem;
  4753. }
  4754. @media (max-width: 568px) {
  4755. .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 {
  4756. width: 100%;
  4757. }
  4758. }
  4759. .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 {
  4760. height: auto;
  4761. max-height: 600px;
  4762. object-fit: contain;
  4763. width: inherit;
  4764. }
  4765. @media (max-width: 810px) {
  4766. .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 {
  4767. padding-top: 1rem;
  4768. object-fit: cover;
  4769. width: 100%;
  4770. }
  4771. }
  4772. @media (max-width: 568px) {
  4773. .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 {
  4774. width: 100%;
  4775. max-height: 300px;
  4776. }
  4777. }
  4778. .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 {
  4779. display: inline-block;
  4780. }
  4781. .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 {
  4782. display: none;
  4783. }
  4784. .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 {
  4785. opacity: 1 !important;
  4786. top: 0 !important;
  4787. }
  4788. .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 {
  4789. top: 98% !important;
  4790. }
  4791. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4792. width: 40%;
  4793. }
  4794. @media (max-width: 568px) {
  4795. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_top .top_right {
  4796. width: 100%;
  4797. }
  4798. }
  4799. .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 {
  4800. margin: 0;
  4801. }
  4802. .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 {
  4803. font-family: "Marianne";
  4804. font-size: 2.3rem;
  4805. font-weight: 800;
  4806. color: rgb(0, 158, 227);
  4807. }
  4808. @media (max-width: 1624px) {
  4809. .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 {
  4810. font-size: 2.3rem;
  4811. }
  4812. }
  4813. @media (max-width: 1384px) {
  4814. .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 {
  4815. font-size: 2rem;
  4816. }
  4817. }
  4818. @media (max-width: 1216px) {
  4819. .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 {
  4820. font-size: rem;
  4821. }
  4822. }
  4823. @media (max-width: 810px) {
  4824. .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 {
  4825. font-size: 1.7rem;
  4826. }
  4827. }
  4828. .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 {
  4829. margin-top: 2rem;
  4830. }
  4831. @media (max-width: 1624px) {
  4832. .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 {
  4833. margin-top: 1rem;
  4834. padding-top: 0.5rem;
  4835. }
  4836. }
  4837. @media (max-width: 1384px) {
  4838. .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 {
  4839. margin-top: 0.8rem;
  4840. padding-top: 0.5rem;
  4841. }
  4842. }
  4843. @media (max-width: 810px) {
  4844. .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 {
  4845. padding-top: 0.5rem;
  4846. }
  4847. }
  4848. .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 {
  4849. color: rgb(9, 57, 139);
  4850. font-size: 1.5rem;
  4851. font-weight: 900;
  4852. text-transform: uppercase;
  4853. }
  4854. @media (max-width: 1624px) {
  4855. .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 {
  4856. font-size: 1.3rem;
  4857. }
  4858. }
  4859. @media (max-width: 1216px) {
  4860. .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 {
  4861. font-size: 1.1rem;
  4862. }
  4863. }
  4864. @media (max-width: 810px) {
  4865. .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 {
  4866. font-size: 1rem;
  4867. }
  4868. }
  4869. .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 {
  4870. margin-top: 2rem;
  4871. width: fit-content;
  4872. }
  4873. .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 {
  4874. background-color: rgb(225, 0, 15);
  4875. color: white;
  4876. font-weight: 800;
  4877. padding-right: 0.3rem;
  4878. padding-left: 0.2rem;
  4879. }
  4880. @media (max-width: 1624px) {
  4881. .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 {
  4882. margin-top: 1rem;
  4883. }
  4884. }
  4885. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4886. display: flex;
  4887. flex-direction: row;
  4888. border: 0.1rem solid;
  4889. justify-content: space-evenly;
  4890. width: 90%;
  4891. margin-top: 3rem;
  4892. font-weight: 600;
  4893. }
  4894. @media (max-width: 479px) {
  4895. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--top .top_bottom {
  4896. flex-direction: column;
  4897. width: 100%;
  4898. }
  4899. }
  4900. .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 {
  4901. padding-right: 1rem;
  4902. order: 1;
  4903. width: 30%;
  4904. position: relative;
  4905. height: 80px;
  4906. text-align: center;
  4907. }
  4908. @media (max-width: 479px) {
  4909. .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 {
  4910. width: 100%;
  4911. }
  4912. }
  4913. .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 {
  4914. content: url("../images/pictos/picto_lieu.svg");
  4915. min-width: 30px;
  4916. height: auto;
  4917. padding-right: 1rem;
  4918. position: absolute;
  4919. left: 0;
  4920. margin-top: 0.83em;
  4921. margin-left: 1rem;
  4922. }
  4923. .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 {
  4924. order: 1;
  4925. margin-left: 70px;
  4926. margin-bottom: 1rem;
  4927. height: fit-content;
  4928. }
  4929. .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 {
  4930. display: inline-flex;
  4931. order: 2;
  4932. margin-left: 70px;
  4933. height: fit-content;
  4934. }
  4935. .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 {
  4936. display: flex;
  4937. flex-direction: row;
  4938. margin-top: 0.83em;
  4939. }
  4940. .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 {
  4941. margin: auto;
  4942. display: flex;
  4943. flex-direction: column;
  4944. justify-content: start;
  4945. margin: 0;
  4946. }
  4947. .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 {
  4948. display: none;
  4949. }
  4950. .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 {
  4951. order: 4;
  4952. padding-left: 1rem;
  4953. padding-right: 1rem;
  4954. padding-bottom: 1rem;
  4955. border-left: 0.1rem solid;
  4956. width: 30%;
  4957. }
  4958. @media (max-width: 479px) {
  4959. .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 {
  4960. width: 100%;
  4961. border-top: 0.1rem solid;
  4962. border-left: 0;
  4963. padding-right: 0rem;
  4964. padding-left: 0rem;
  4965. }
  4966. }
  4967. .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 {
  4968. color: rgb(9, 57, 139);
  4969. font-size: 1.2rem;
  4970. font-weight: 900;
  4971. text-transform: uppercase;
  4972. margin-bottom: 0rem !important;
  4973. }
  4974. .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 {
  4975. content: " :";
  4976. }
  4977. @media (max-width: 479px) {
  4978. .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 {
  4979. padding-right: 1rem;
  4980. padding-left: 1rem;
  4981. }
  4982. }
  4983. @media (max-width: 479px) {
  4984. .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 {
  4985. padding-right: 1rem;
  4986. padding-left: 1rem;
  4987. }
  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-etape-du-projet .field__label {
  4990. display: none;
  4991. }
  4992. .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 {
  4993. order: 2;
  4994. padding-left: 1rem;
  4995. border-left: 0.1rem solid;
  4996. padding-bottom: 1rem;
  4997. width: 20%;
  4998. }
  4999. @media (max-width: 479px) {
  5000. .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 {
  5001. border-left: 0;
  5002. border-top: 0.1rem solid;
  5003. width: 100%;
  5004. padding-right: 0rem;
  5005. padding-left: 0rem;
  5006. }
  5007. }
  5008. .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 {
  5009. color: rgb(9, 57, 139);
  5010. font-size: 1.2rem;
  5011. font-weight: 900;
  5012. text-transform: uppercase;
  5013. margin-bottom: 0rem !important;
  5014. }
  5015. .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 {
  5016. content: " :";
  5017. }
  5018. @media (max-width: 479px) {
  5019. .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 {
  5020. padding-right: 1rem;
  5021. padding-left: 1rem;
  5022. }
  5023. }
  5024. @media (max-width: 479px) {
  5025. .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 {
  5026. padding-right: 1rem;
  5027. padding-left: 1rem;
  5028. }
  5029. }
  5030. .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 {
  5031. display: none;
  5032. }
  5033. .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 {
  5034. order: 3;
  5035. padding-left: 1rem;
  5036. padding-bottom: 1rem;
  5037. border-left: 0.1rem solid;
  5038. width: 20%;
  5039. }
  5040. @media (max-width: 479px) {
  5041. .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 {
  5042. border-left: 0;
  5043. border-top: 0.1rem solid;
  5044. width: 100%;
  5045. padding-right: 0rem;
  5046. padding-left: 0rem;
  5047. }
  5048. }
  5049. .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 {
  5050. color: rgb(9, 57, 139);
  5051. font-size: 1.2rem;
  5052. font-weight: 900;
  5053. text-transform: uppercase;
  5054. margin-bottom: 0rem !important;
  5055. }
  5056. .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 {
  5057. content: " :";
  5058. }
  5059. @media (max-width: 479px) {
  5060. .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 {
  5061. padding-right: 1rem;
  5062. padding-left: 1rem;
  5063. }
  5064. }
  5065. @media (max-width: 479px) {
  5066. .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 {
  5067. padding-right: 1rem;
  5068. padding-left: 1rem;
  5069. }
  5070. }
  5071. .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 {
  5072. display: none;
  5073. }
  5074. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5075. margin-top: 5rem;
  5076. }
  5077. @media (max-width: 479px) {
  5078. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5079. display: none;
  5080. }
  5081. }
  5082. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first .block-region-first {
  5083. display: flex;
  5084. justify-content: flex-end;
  5085. position: -webkit-sticky;
  5086. position: sticky;
  5087. top: 10rem;
  5088. }
  5089. .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 {
  5090. display: flex;
  5091. justify-content: flex-end;
  5092. width: 50%;
  5093. background-color: rgb(255, 255, 255);
  5094. padding-right: 2rem;
  5095. }
  5096. .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 {
  5097. display: flex;
  5098. font-size: 1rem;
  5099. font-weight: 1000;
  5100. color: rgb(9, 57, 139);
  5101. border-bottom: 1px solid rgb(0, 158, 227);
  5102. padding-bottom: 0.5rem;
  5103. padding-right: 1rem;
  5104. margin-bottom: 0.8rem;
  5105. }
  5106. .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 {
  5107. text-decoration: underline;
  5108. }
  5109. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5110. margin-top: 5rem;
  5111. flex: 0 1 50%;
  5112. }
  5113. @media (max-width: 479px) {
  5114. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second {
  5115. flex: 0 1 100%;
  5116. margin-top: 1rem;
  5117. }
  5118. }
  5119. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5120. width: 90%;
  5121. }
  5122. @media (max-width: 479px) {
  5123. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--second .block-region-second {
  5124. width: 80%;
  5125. margin: auto;
  5126. }
  5127. }
  5128. .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 {
  5129. margin-top: 0;
  5130. }
  5131. .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 {
  5132. background-color: white;
  5133. }
  5134. .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 {
  5135. background-color: rgb(255, 255, 255);
  5136. }
  5137. .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 {
  5138. margin-top: 3rem;
  5139. }
  5140. .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 {
  5141. font-size: 1.5rem;
  5142. font-weight: 1000;
  5143. font-family: "Source Code Pro";
  5144. color: rgb(9, 57, 139);
  5145. text-transform: uppercase;
  5146. margin-bottom: 0.8rem;
  5147. }
  5148. .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 {
  5149. text-transform: none !important;
  5150. }
  5151. .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 {
  5152. width: 100%;
  5153. height: auto;
  5154. }
  5155. .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 {
  5156. padding-right: 2rem;
  5157. }
  5158. .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 {
  5159. margin-top: 0;
  5160. }
  5161. .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 {
  5162. color: rgb(0, 0, 0);
  5163. text-decoration: underline;
  5164. }
  5165. .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 {
  5166. display: none;
  5167. }
  5168. .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 {
  5169. overflow-y: visible !important;
  5170. }
  5171. .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 {
  5172. font-size: 1.5rem;
  5173. font-weight: 1000;
  5174. font-family: "Source Code Pro";
  5175. color: rgb(9, 57, 139);
  5176. text-transform: uppercase;
  5177. margin-top: 2rem;
  5178. margin-bottom: 0.8rem;
  5179. }
  5180. .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 {
  5181. display: flex;
  5182. flex-direction: row;
  5183. justify-content: space-between;
  5184. }
  5185. .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 {
  5186. display: flex;
  5187. flex-direction: column;
  5188. align-items: center;
  5189. }
  5190. .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 {
  5191. padding-top: 1rem;
  5192. }
  5193. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5194. margin-top: 5rem;
  5195. }
  5196. @media (max-width: 479px) {
  5197. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third {
  5198. margin-top: 2rem;
  5199. }
  5200. }
  5201. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5202. display: flex;
  5203. flex-direction: column;
  5204. width: 65%;
  5205. }
  5206. @media (max-width: 479px) {
  5207. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--third .block-region-third {
  5208. width: 80%;
  5209. margin: auto;
  5210. }
  5211. }
  5212. .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 {
  5213. display: none;
  5214. }
  5215. .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 {
  5216. height: fit-content;
  5217. border: 2px solid rgb(0, 158, 227);
  5218. background-color: rgb(255, 255, 255);
  5219. margin-bottom: 1rem;
  5220. min-height: 4rem;
  5221. color: rgb(0, 158, 227);
  5222. padding-left: 1rem;
  5223. padding-top: 1rem;
  5224. }
  5225. .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) {
  5226. display: none;
  5227. }
  5228. .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 {
  5229. height: inherit;
  5230. margin: auto;
  5231. }
  5232. .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 {
  5233. content: url("../images/pictos/download.png");
  5234. min-width: 30px;
  5235. height: auto;
  5236. padding-right: 2rem;
  5237. }
  5238. .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 {
  5239. hyphens: auto;
  5240. display: inline-flex;
  5241. color: rgb(0, 158, 227);
  5242. font-weight: 800;
  5243. }
  5244. .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 {
  5245. height: inherit;
  5246. margin: auto;
  5247. }
  5248. .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 {
  5249. content: url("../images/pictos/download.png");
  5250. min-width: 30px;
  5251. height: auto;
  5252. padding-right: 2rem;
  5253. }
  5254. .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 {
  5255. hyphens: auto;
  5256. display: inline-flex;
  5257. color: rgb(0, 158, 227);
  5258. font-weight: 800;
  5259. }
  5260. .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 {
  5261. display: none;
  5262. }
  5263. .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 {
  5264. margin: auto;
  5265. height: fit-content;
  5266. border: 2px solid rgb(0, 158, 227);
  5267. min-height: 4rem;
  5268. background: rgb(255, 255, 255);
  5269. color: rgb(0, 158, 227);
  5270. padding-left: 1rem;
  5271. padding-top: 1rem;
  5272. margin-bottom: 1rem;
  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-liens .field--name-field-liens a {
  5275. display: inline-flex;
  5276. align-items: center;
  5277. color: rgb(0, 158, 227);
  5278. font-weight: 800;
  5279. }
  5280. .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 {
  5281. content: url("../images/pictos/external_link.png");
  5282. min-width: 30px;
  5283. height: auto;
  5284. padding-right: 2rem;
  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-liens .field--name-field-liens a svg.ext {
  5287. display: none;
  5288. }
  5289. .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- {
  5290. margin-top: 3rem;
  5291. }
  5292. @media (max-width: 479px) {
  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- {
  5294. margin-top: 2rem;
  5295. }
  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- h2 {
  5298. font-size: 0.8rem;
  5299. color: rgb(0, 0, 0);
  5300. font-weight: 900;
  5301. }
  5302. .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 {
  5303. display: flex;
  5304. flex-direction: column;
  5305. border: 2px solid rgb(0, 158, 227);
  5306. padding: 1rem;
  5307. height: fit-content;
  5308. margin-bottom: 1rem;
  5309. background-color: rgb(255, 255, 255);
  5310. }
  5311. .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 {
  5312. display: flex;
  5313. flex-direction: column;
  5314. }
  5315. .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 {
  5316. order: 3;
  5317. }
  5318. .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 {
  5319. margin: 0;
  5320. }
  5321. .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 {
  5322. color: rgb(0, 0, 0);
  5323. font-size: 1rem;
  5324. font-weight: 900;
  5325. font-style: italic;
  5326. }
  5327. .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 {
  5328. display: none;
  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-type-de-ressource {
  5331. order: 2;
  5332. text-transform: uppercase;
  5333. color: rgb(0, 158, 227);
  5334. font-weight: 900;
  5335. font-size: 0.8rem;
  5336. }
  5337. .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- {
  5338. order: 5;
  5339. font-weight: 800;
  5340. }
  5341. .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 {
  5342. margin: 0;
  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-auteur-s- .field__label {
  5345. display: none;
  5346. }
  5347. .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 {
  5348. margin: 0;
  5349. }
  5350. .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 {
  5351. display: none;
  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 .field--name-field-images {
  5354. order: 1;
  5355. width: 25%;
  5356. }
  5357. .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 {
  5358. width: 100%;
  5359. height: auto;
  5360. }
  5361. .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 {
  5362. order: 6;
  5363. }
  5364. .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 {
  5365. display: none;
  5366. }
  5367. .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 {
  5368. order: 7;
  5369. display: flex;
  5370. margin-top: 0.8rem;
  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--third .block-region-third .block-entity-fieldnodefield-ressource-s-liee-s- .node-type-ressource div .field--name-field-mots-clefs .field__label {
  5375. display: none;
  5376. }
  5377. .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 {
  5378. display: flex;
  5379. flex-direction: row;
  5380. flex-wrap: wrap;
  5381. }
  5382. .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 {
  5383. margin-right: 0.5rem;
  5384. padding-right: 0.3rem;
  5385. font-size: 0.8rem;
  5386. margin-top: 0.2rem;
  5387. }
  5388. .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 {
  5389. background: rgb(9, 57, 139);
  5390. color: rgb(255, 255, 255);
  5391. font-weight: 800;
  5392. vertical-align: super;
  5393. padding-left: 0.1rem;
  5394. padding-right: 0.1rem;
  5395. display: inline-flex;
  5396. }
  5397. .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 {
  5398. display: none;
  5399. }
  5400. .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 {
  5401. order: 1;
  5402. width: 100%;
  5403. }
  5404. .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) {
  5405. display: none;
  5406. }
  5407. .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 {
  5408. width: 100%;
  5409. height: auto;
  5410. }
  5411. .path-node.page-node-type-projet .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--bottom .block-entity-fieldnodefield-partenaires {
  5412. width: 50%;
  5413. margin: auto;
  5414. display: flex;
  5415. flex-direction: row;
  5416. flex-wrap: wrap;
  5417. }
  5418. .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 {
  5419. display: none;
  5420. }
  5421. .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 {
  5422. display: flex;
  5423. flex-direction: row;
  5424. flex-wrap: wrap;
  5425. justify-content: space-between;
  5426. }
  5427. .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 {
  5428. display: none;
  5429. }
  5430. .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 {
  5431. display: flex;
  5432. flex-direction: column;
  5433. }
  5434. .path-incubateur {
  5435. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5436. background-repeat: no-repeat;
  5437. background-position-y: 7rem;
  5438. max-width: 100vw;
  5439. background-size: contain;
  5440. }
  5441. .path-incubateur .layout-container {
  5442. overflow: unset;
  5443. }
  5444. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span {
  5445. width: fit-content;
  5446. }
  5447. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale span h2 {
  5448. width: fit-content;
  5449. margin-left: 11%;
  5450. margin-top: 15vh;
  5451. color: rgb(255, 255, 255);
  5452. font-family: "Source Code Pro";
  5453. text-transform: uppercase;
  5454. font-size: 2rem;
  5455. font-weight: 800;
  5456. background: rgb(0, 158, 227);
  5457. margin-bottom: 15vh;
  5458. }
  5459. .path-incubateur .layout-container .layout-content .region-content #block-contenudelapageprincipale .layout--threecol-25-50-25 .layout__region--first {
  5460. position: relative;
  5461. }
  5462. .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 {
  5463. display: flex;
  5464. justify-content: flex-end;
  5465. position: -webkit-sticky;
  5466. position: sticky;
  5467. top: 10rem;
  5468. }
  5469. @media (max-width: 810px) {
  5470. .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 {
  5471. display: none;
  5472. }
  5473. }
  5474. .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 {
  5475. display: flex;
  5476. flex-direction: row-reverse;
  5477. width: 50%;
  5478. background-color: rgb(255, 255, 255);
  5479. padding-right: 2rem;
  5480. }
  5481. .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 {
  5482. display: flex;
  5483. flex-direction: column;
  5484. font-size: 1rem;
  5485. font-weight: 1000;
  5486. color: rgb(9, 57, 139);
  5487. border-bottom: 1px solid rgb(0, 158, 227);
  5488. padding-bottom: 0.8rem;
  5489. padding-right: 1rem;
  5490. margin-top: 1rem;
  5491. scroll-margin-top: 7em;
  5492. }
  5493. .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 {
  5494. text-decoration: underline;
  5495. }
  5496. .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 {
  5497. padding-right: 2rem;
  5498. margin-top: 1rem;
  5499. background-color: rgb(255, 255, 255);
  5500. }
  5501. .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 {
  5502. font-size: 1.5rem;
  5503. font-weight: 1000;
  5504. font-family: "Source Code Pro", monospace;
  5505. color: rgb(9, 57, 139);
  5506. text-transform: uppercase;
  5507. margin-bottom: 0.8rem;
  5508. }
  5509. .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 {
  5510. margin-bottom: 2rem;
  5511. }
  5512. .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 {
  5513. margin-top: 1rem;
  5514. display: flex;
  5515. flex-direction: column;
  5516. width: 70%;
  5517. }
  5518. @media (max-width: 810px) {
  5519. .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 {
  5520. margin: auto;
  5521. }
  5522. }
  5523. .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 {
  5524. height: fit-content;
  5525. border: 2px solid rgb(0, 158, 227);
  5526. background-color: rgb(255, 255, 255);
  5527. margin-bottom: 1rem;
  5528. }
  5529. .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 {
  5530. min-height: 4rem;
  5531. background: rgb(255, 255, 255);
  5532. color: rgb(0, 158, 227);
  5533. padding-left: 0.8rem;
  5534. padding-top: 1rem;
  5535. }
  5536. .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) {
  5537. display: none;
  5538. }
  5539. .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 {
  5540. height: inherit;
  5541. margin: auto;
  5542. }
  5543. .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 {
  5544. content: url("../images/pictos/noun_Download_file_307900.svg");
  5545. min-width: 40px;
  5546. height: auto;
  5547. padding-right: 0.5rem;
  5548. display: inline-flex;
  5549. align-items: center;
  5550. }
  5551. .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 {
  5552. hyphens: auto;
  5553. display: inline-flex;
  5554. align-items: center;
  5555. color: rgb(0, 158, 227);
  5556. font-weight: 800;
  5557. }
  5558. .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 {
  5559. margin: auto;
  5560. height: fit-content;
  5561. border: 2px solid rgb(0, 158, 227);
  5562. min-height: 4rem;
  5563. background: rgb(255, 255, 255);
  5564. color: rgb(0, 158, 227);
  5565. padding-left: 0.8rem;
  5566. padding-top: 1rem;
  5567. margin-bottom: 1rem;
  5568. }
  5569. .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 {
  5570. display: inline-flex;
  5571. align-items: center;
  5572. justify-items: center;
  5573. color: rgb(0, 158, 227);
  5574. font-weight: 800;
  5575. }
  5576. .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 {
  5577. content: url("../images/pictos/external_link.png");
  5578. min-width: 40px;
  5579. height: auto;
  5580. padding-right: 0.5rem;
  5581. display: inline-flex;
  5582. align-items: center;
  5583. }
  5584. .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 {
  5585. display: none;
  5586. }
  5587. .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 {
  5588. padding-top: 1rem;
  5589. background-color: white;
  5590. }
  5591. .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 {
  5592. width: 80%;
  5593. margin: auto;
  5594. }
  5595. .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 {
  5596. margin-top: 4rem;
  5597. display: flex;
  5598. flex-direction: row;
  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 {
  5602. flex-direction: column;
  5603. padding-bottom: 3rem;
  5604. }
  5605. }
  5606. .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 {
  5607. content: "Filtrer par :";
  5608. margin-right: 1rem;
  5609. }
  5610. @media (max-width: 479px) {
  5611. .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 {
  5612. padding-bottom: 1rem;
  5613. }
  5614. }
  5615. .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 {
  5616. display: flex;
  5617. flex-direction: row;
  5618. }
  5619. .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 {
  5620. display: none;
  5621. }
  5622. .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 {
  5623. display: none;
  5624. }
  5625. @media (max-width: 479px) {
  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-field-neuf-rehabilitation-value--wrapper {
  5627. padding-bottom: 1rem;
  5628. }
  5629. }
  5630. .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 {
  5631. display: none;
  5632. }
  5633. .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 {
  5634. display: none;
  5635. }
  5636. @media (max-width: 479px) {
  5637. .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 {
  5638. padding-bottom: 1rem;
  5639. }
  5640. }
  5641. .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 {
  5642. display: none;
  5643. }
  5644. @media (max-width: 479px) {
  5645. .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 {
  5646. padding-bottom: 1rem;
  5647. }
  5648. }
  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 input[type=radio] {
  5650. display: none;
  5651. }
  5652. .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 {
  5653. content: "";
  5654. display: inline-block;
  5655. width: 15px;
  5656. height: 15px;
  5657. background: #fff;
  5658. border-radius: 0px;
  5659. border-color: black;
  5660. border-style: solid;
  5661. border-width: 1px;
  5662. margin-right: 0.5rem;
  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-filters #views-exposed-form-projets-block-3 input[type=radio]:checked + label::before {
  5665. background: rgb(0, 158, 227);
  5666. }
  5667. .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 {
  5668. padding-right: 1rem;
  5669. }
  5670. .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 {
  5671. background-color: rgb(0, 158, 227);
  5672. color: white;
  5673. text-transform: uppercase;
  5674. border: none;
  5675. padding: 0.1rem 0.7rem;
  5676. margin-left: 2rem;
  5677. }
  5678. @media (max-width: 479px) {
  5679. .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 {
  5680. margin-left: 0rem;
  5681. margin-right: 2rem;
  5682. }
  5683. }
  5684. .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 {
  5685. background-color: rgb(0, 158, 227);
  5686. color: white;
  5687. text-transform: uppercase;
  5688. border: none;
  5689. padding: 0.1rem 0.7rem;
  5690. margin-left: 1rem;
  5691. }
  5692. @media (max-width: 479px) {
  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 .view-filters #views-exposed-form-projets-block-3 {
  5694. flex-direction: column;
  5695. }
  5696. }
  5697. .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 {
  5698. margin-top: 2rem;
  5699. display: flex;
  5700. flex-direction: row;
  5701. flex-wrap: wrap;
  5702. }
  5703. @media (max-width: 810px) {
  5704. .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 {
  5705. flex-direction: column;
  5706. }
  5707. }
  5708. .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 {
  5709. width: 25%;
  5710. }
  5711. @media (max-width: 810px) {
  5712. .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 {
  5713. width: 100%;
  5714. }
  5715. }
  5716. .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 {
  5717. color: rgb(9, 57, 139);
  5718. line-height: 1.5rem;
  5719. padding: 0.5rem;
  5720. padding-right: 1rem;
  5721. padding-left: 1rem;
  5722. }
  5723. @media (max-width: 479px) {
  5724. .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 {
  5725. padding-left: 0rem;
  5726. padding-right: 0rem;
  5727. padding-top: 2rem;
  5728. }
  5729. }
  5730. .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 {
  5731. display: flex;
  5732. flex-direction: column;
  5733. }
  5734. .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 {
  5735. color: rgb(9, 57, 139);
  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-field-photo {
  5738. order: 1;
  5739. }
  5740. .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 {
  5741. width: 100%;
  5742. max-height: 175px;
  5743. object-fit: cover;
  5744. }
  5745. .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 {
  5746. display: block;
  5747. 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>');
  5748. }
  5749. .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 {
  5750. order: 2;
  5751. display: flex;
  5752. text-transform: uppercase;
  5753. font-size: 0.9rem;
  5754. font-weight: 800;
  5755. margin-top: 0.8rem;
  5756. line-height: 0.6rem;
  5757. }
  5758. .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 {
  5759. display: flex;
  5760. flex-direction: row;
  5761. margin: 0;
  5762. }
  5763. .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 {
  5764. padding-top: 0 !important;
  5765. padding-bottom: 0 !important;
  5766. }
  5767. .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 {
  5768. content: ",";
  5769. margin-right: 0.3rem;
  5770. }
  5771. .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 {
  5772. padding-top: 0 !important;
  5773. padding-bottom: 0 !important;
  5774. }
  5775. .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 {
  5776. margin-top: 0.5rem;
  5777. font-size: 0.9rem;
  5778. font-weight: 800;
  5779. order: 4;
  5780. }
  5781. .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 {
  5782. order: 3;
  5783. margin-top: 0.5rem;
  5784. font-size: 0.9rem;
  5785. font-weight: 800;
  5786. }
  5787. .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 {
  5788. margin: 0;
  5789. }
  5790. .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 {
  5791. order: 4;
  5792. color: red;
  5793. margin-top: 0.8rem;
  5794. font-size: 0.7rem;
  5795. }
  5796. .node-id-201 {
  5797. background: url("../images/pictos/carre-contour-bleu_programme.svg");
  5798. background-repeat: no-repeat;
  5799. background-position-y: 7rem;
  5800. max-width: 100vw;
  5801. background-size: contain;
  5802. }
  5803. .node-id-201 #block-contenudelapageprincipale {
  5804. scroll-margin: 8rem;
  5805. }
  5806. .node-id-201 .layout__region--top {
  5807. padding-bottom: 3rem;
  5808. height: 30vh;
  5809. }
  5810. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  5811. display: none;
  5812. height: inherit;
  5813. }
  5814. .node-id-201 .layout__region--top .block-region-top .block-entity-fieldnodetitle .field--name-title {
  5815. font-family: "Source Code Pro";
  5816. font-size: 2rem;
  5817. font-weight: 800;
  5818. color: rgb(255, 255, 255);
  5819. background-color: rgb(0, 158, 227);
  5820. text-transform: uppercase;
  5821. }
  5822. .node-id-201 .layout__region--second {
  5823. width: 25%;
  5824. }
  5825. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes {
  5826. background-color: rgb(255, 255, 255);
  5827. }
  5828. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--name-field-titre {
  5829. font-size: 1.5rem;
  5830. font-weight: 1000;
  5831. font-family: "Source Code Pro";
  5832. color: rgb(9, 57, 139);
  5833. text-transform: uppercase;
  5834. }
  5835. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes h4 {
  5836. text-transform: none !important;
  5837. }
  5838. .node-id-201 .layout__region--second .block-entity-fieldnodefield-textes .field--type-text-long {
  5839. padding-right: 2rem;
  5840. }
  5841. .path-ressources .layout-container {
  5842. overflow: hidden;
  5843. }
  5844. @media (max-width: 810px) {
  5845. .path-ressources .layout-container {
  5846. overflow: hidden;
  5847. }
  5848. }
  5849. .path-ressources .layout-content {
  5850. min-height: 100vh;
  5851. width: 100vw;
  5852. }
  5853. .path-ressources .layout-content .region-content {
  5854. width: 100%;
  5855. margin: auto;
  5856. }
  5857. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5858. font-size: 4em;
  5859. color: rgb(9, 57, 139);
  5860. font-weight: 400;
  5861. text-align: center;
  5862. margin-bottom: 1rem;
  5863. width: fit-content;
  5864. margin-left: 28%;
  5865. }
  5866. @media (max-width: 810px) {
  5867. .path-ressources .layout-content .region-content #block-contenudelapageprincipale h2 {
  5868. margin-left: 2rem;
  5869. text-align: left;
  5870. line-height: 4rem;
  5871. }
  5872. }
  5873. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5874. display: flex;
  5875. flex-direction: column;
  5876. }
  5877. @media (max-width: 479px) {
  5878. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content {
  5879. display: flex;
  5880. flex-direction: column;
  5881. }
  5882. }
  5883. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5884. width: 60%;
  5885. margin: auto;
  5886. margin-left: 28%;
  5887. }
  5888. @media (max-width: 810px) {
  5889. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-config-pages-block {
  5890. margin-left: 2rem;
  5891. width: 85%;
  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-config-pages-block {
  5896. order: 1;
  5897. margin-left: 2rem;
  5898. }
  5899. }
  5900. .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 {
  5901. grid-column: 1/span 5;
  5902. }
  5903. @media (max-width: 810px) {
  5904. .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 {
  5905. padding-top: 1rem;
  5906. margin-top: 1rem;
  5907. }
  5908. }
  5909. @media (max-width: 479px) {
  5910. .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 {
  5911. padding-left: 0;
  5912. padding-right: 0;
  5913. }
  5914. }
  5915. .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 {
  5916. margin: auto;
  5917. background: rgb(255, 255, 255);
  5918. font-size: 1rem;
  5919. }
  5920. @media (max-width: 479px) {
  5921. .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 {
  5922. margin-top: 1rem;
  5923. }
  5924. }
  5925. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5926. grid-column: 6/span 5;
  5927. grid-row: 1;
  5928. margin-top: 4rem;
  5929. background-color: rgb(0, 158, 227);
  5930. height: fit-content;
  5931. width: 100%;
  5932. }
  5933. @media (max-width: 810px) {
  5934. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5935. grid-column: 5/span 5;
  5936. }
  5937. }
  5938. @media (max-width: 479px) {
  5939. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5940. grid-column: 5/span 5;
  5941. order: 2;
  5942. }
  5943. }
  5944. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d .display {
  5945. display: block;
  5946. }
  5947. .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 {
  5948. display: flex;
  5949. flex-direction: column;
  5950. margin-top: 2rem;
  5951. margin-bottom: 2rem;
  5952. margin-left: 1.5rem;
  5953. margin-right: 1.5rem;
  5954. text-align: center;
  5955. }
  5956. .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 {
  5957. font-weight: 800;
  5958. color: rgb(255, 255, 255);
  5959. font-size: 1.3rem;
  5960. }
  5961. .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 {
  5962. margin-left: auto;
  5963. padding-top: 1rem;
  5964. display: block;
  5965. content: url("../images/pictos/noun_Arrow_3771902.svg");
  5966. }
  5967. @media (max-width: 810px) {
  5968. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-block-content82917d0c-5004-4bfb-af66-ce334782d82d {
  5969. margin: auto;
  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 {
  5973. margin-top: 2rem;
  5974. width: 100%;
  5975. }
  5976. @media (max-width: 479px) {
  5977. .path-ressources .layout-content .region-content #block-contenudelapageprincipale .layout--onecol .layout__region--content .block-region-content .block-views-blockbase-de-donnees-block-1 {
  5978. order: 3;
  5979. }
  5980. }
  5981. @media (max-width: 810px) {
  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 {
  5983. display: flex;
  5984. flex-direction: column;
  5985. }
  5986. }
  5987. .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 {
  5988. position: fixed;
  5989. top: 25rem;
  5990. left: 0;
  5991. background-color: rgb(255, 255, 255);
  5992. border: solid 0.2px rgba(0, 0, 0, 0.1);
  5993. margin-bottom: 5rem;
  5994. padding: 1rem;
  5995. padding-left: 2rem;
  5996. padding-right: 1.5rem;
  5997. z-index: 1;
  5998. transform: translateY(-210px);
  5999. margin-bottom: -210px;
  6000. width: 20%;
  6001. }
  6002. @media (max-width: 810px) {
  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 {
  6004. position: static;
  6005. margin-bottom: 2rem;
  6006. transform: none;
  6007. margin-bottom: 0px;
  6008. width: 80%;
  6009. }
  6010. }
  6011. @media (max-width: 479px) {
  6012. .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 {
  6013. margin-left: 0;
  6014. }
  6015. }
  6016. .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 {
  6017. content: "Afficher : ";
  6018. padding-right: 1rem;
  6019. font-weight: 800;
  6020. font-size: 1rem;
  6021. margin-bottom: 1rem;
  6022. display: block;
  6023. width: 100%;
  6024. }
  6025. @media (max-width: 479px) {
  6026. .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 {
  6027. padding-bottom: 1rem;
  6028. }
  6029. }
  6030. .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 {
  6031. background-color: transparent;
  6032. border: 1px solid black;
  6033. padding: 0.3rem 0.5rem 0.1rem 0.3rem;
  6034. margin-bottom: 0.5rem;
  6035. margin-right: 0.5rem;
  6036. font-size: 0.8rem;
  6037. color: rgb(9, 57, 139);
  6038. display: inline-flex;
  6039. flex-direction: row;
  6040. align-items: center;
  6041. }
  6042. .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 {
  6043. cursor: grab;
  6044. background-color: rgb(9, 57, 139);
  6045. color: white;
  6046. }
  6047. .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 {
  6048. color: rgb(9, 57, 139);
  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-videos::before {
  6051. content: url("../images/pictos/videos.svg");
  6052. padding-right: 0.5rem;
  6053. display: block;
  6054. }
  6055. .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 {
  6056. content: url("../images/pictos/videos-blanc.svg");
  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-podcasts {
  6060. display: none !important;
  6061. }
  6062. .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 {
  6063. content: url("../images/pictos/podcasts.svg");
  6064. padding-right: 0.5rem;
  6065. display: block;
  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 a.button.button-podcasts:hover::before {
  6068. content: url("../images/pictos/podcasts-blanc.svg");
  6069. display: block;
  6070. }
  6071. .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 {
  6072. content: url("../images/pictos/en-images.svg");
  6073. display: block;
  6074. padding-right: 0.5rem;
  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 a.button.button-images---photos:hover::before {
  6077. content: url("../images/pictos/en-images-blanc.svg");
  6078. display: block;
  6079. }
  6080. .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 {
  6081. content: url("../images/pictos/ecrits.svg");
  6082. padding-right: 0.5rem;
  6083. display: block;
  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 a.button.button-livres:hover::before {
  6086. content: url("../images/pictos/ecrits-blanc.svg");
  6087. display: block;
  6088. }
  6089. .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 {
  6090. content: url("../images/pictos/ecrits.svg");
  6091. padding-right: 0.5rem;
  6092. display: block;
  6093. }
  6094. .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 {
  6095. content: url("../images/pictos/ecrits-blanc.svg");
  6096. display: block;
  6097. }
  6098. .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 {
  6099. content: url("../images/pictos/ecrits.svg");
  6100. padding-right: 0.5rem;
  6101. display: block;
  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 .buttons-filtres-ressources a.button.button-publications---rapports:hover::before {
  6104. content: url("../images/pictos/ecrits-blanc.svg");
  6105. display: block;
  6106. }
  6107. .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 {
  6108. background-color: rgb(9, 57, 139);
  6109. color: white;
  6110. }
  6111. .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 {
  6112. color: white;
  6113. }
  6114. .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 {
  6115. margin-top: 1rem;
  6116. }
  6117. .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 {
  6118. content: url("../images/pictos/videos-blanc.svg");
  6119. }
  6120. .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 {
  6121. content: url("../images/pictos/podcasts-blanc.svg");
  6122. }
  6123. .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 {
  6124. content: url("../images/pictos/en-images-blanc.svg");
  6125. }
  6126. .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 {
  6127. content: url("../images/pictos/ecrits-blanc.svg");
  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 .buttons-filtres-ressources button.is-active.button-articles a::before {
  6130. content: url("../images/pictos/ecrits-blanc.svg");
  6131. }
  6132. .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 {
  6133. content: url("../images/pictos/ecrits-blanc.svg");
  6134. }
  6135. .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 {
  6136. content: "Filtrer par : ";
  6137. padding-right: 1rem;
  6138. font-weight: 800;
  6139. font-size: 1rem;
  6140. margin-bottom: 1rem;
  6141. }
  6142. @media (max-width: 479px) {
  6143. .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 {
  6144. padding-bottom: 1rem;
  6145. }
  6146. }
  6147. .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 {
  6148. display: none;
  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 {
  6151. font-size: 0.8rem;
  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-combine {
  6154. border-top: none;
  6155. border-left: none;
  6156. border-right: none;
  6157. font-size: 0.8rem;
  6158. justify-content: flex-start !important;
  6159. }
  6160. .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 {
  6161. display: none;
  6162. }
  6163. .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 {
  6164. display: inline-flex;
  6165. position: relative;
  6166. font-size: 0.8rem;
  6167. width: -webkit-fill-available; /* Safari/Chrome */
  6168. width: -moz-available; /* Firefox */
  6169. width: fill-available; /* standard futur */
  6170. width: 100%; /* fallback */
  6171. max-width: 100%;
  6172. }
  6173. .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 {
  6174. content: url("../images/pictos/loupe.svg");
  6175. display: inline-block;
  6176. }
  6177. .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 {
  6178. text-align: start !important;
  6179. max-width: 100% !important;
  6180. }
  6181. .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 {
  6182. position: absolute;
  6183. right: -4px;
  6184. top: 50%;
  6185. transform: translateY(-50%);
  6186. background: white;
  6187. border: none;
  6188. padding: 0.5rem;
  6189. margin: 0;
  6190. cursor: pointer;
  6191. color: #888;
  6192. display: none; /* masqué par défaut */
  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-filters form .form-item-combine:not(.form-item-field-date-de-parution-value) .search-with-clear .clear-input:hover {
  6195. color: #000;
  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-filters form .form-item-field-date-de-parution-value .clear-input {
  6198. display: none;
  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-filters form select {
  6201. font-size: 0.8rem;
  6202. }
  6203. .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 {
  6204. display: none;
  6205. }
  6206. .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 {
  6207. font-size: 0.8rem;
  6208. }
  6209. .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 {
  6210. display: flex;
  6211. flex-direction: row;
  6212. flex-wrap: wrap;
  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 .filtered .views-row-wrapper {
  6215. flex-wrap: wrap;
  6216. width: 85%;
  6217. }
  6218. .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 {
  6219. padding: 1rem;
  6220. width: 30% !important;
  6221. }
  6222. .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 {
  6223. transition: opacity 0.3s ease;
  6224. display: flex;
  6225. flex-direction: row;
  6226. flex-wrap: wrap;
  6227. padding-left: 25%;
  6228. }
  6229. @media (max-width: 810px) {
  6230. .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 {
  6231. padding-left: 0;
  6232. }
  6233. }
  6234. .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 {
  6235. width: 80%;
  6236. border-top: solid 1px rgba(0, 0, 0, 0.3);
  6237. }
  6238. .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 {
  6239. order: 1;
  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.type-publications-issues-du-programme::before {
  6242. background-color: rgba(0, 158, 227, 0.2);
  6243. }
  6244. .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 {
  6245. width: 45%;
  6246. min-width: 350px !important;
  6247. max-width: 500px;
  6248. }
  6249. .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 {
  6250. order: 2;
  6251. }
  6252. .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 {
  6253. order: 3;
  6254. }
  6255. .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 {
  6256. padding-left: 0 !important;
  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.type-les-projets-en-images::before {
  6259. background-color: rgba(0, 158, 227, 0.2);
  6260. }
  6261. .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 {
  6262. order: 5;
  6263. }
  6264. .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 {
  6265. border: none;
  6266. }
  6267. .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 {
  6268. order: 4;
  6269. }
  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.type-autres {
  6271. order: 9;
  6272. }
  6273. .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 {
  6274. order: 6;
  6275. }
  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.type-these-et-memoire {
  6277. order: 8;
  6278. }
  6279. .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) {
  6280. width: 100%;
  6281. position: relative;
  6282. z-index: 0;
  6283. padding-bottom: 1rem;
  6284. }
  6285. .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 {
  6286. content: "";
  6287. position: absolute;
  6288. left: -35%;
  6289. height: 100%;
  6290. width: 110vw;
  6291. z-index: 0;
  6292. }
  6293. @media (max-width: 810px) {
  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)::before {
  6295. left: 0;
  6296. }
  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) > * {
  6299. position: relative;
  6300. z-index: 1;
  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) h3 {
  6303. top: 1rem;
  6304. text-transform: uppercase;
  6305. font-family: "Source Code Pro";
  6306. color: rgb(9, 57, 139) !important;
  6307. display: flex;
  6308. flex-direction: row;
  6309. align-items: center;
  6310. font-size: 1.7rem;
  6311. margin-block: 0em;
  6312. }
  6313. @media (max-width: 810px) {
  6314. .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 {
  6315. padding-left: 2rem;
  6316. width: 70%;
  6317. }
  6318. }
  6319. @media (max-width: 479px) {
  6320. .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 {
  6321. width: 65% !important;
  6322. }
  6323. }
  6324. .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 {
  6325. border: none;
  6326. }
  6327. .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 {
  6328. content: url("../images/pictos/picto-ressource-eqld.svg");
  6329. padding-right: 1rem;
  6330. }
  6331. .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 {
  6332. content: url("../images/pictos/picto-ressource-paroleslaureats.svg");
  6333. padding-right: 1rem;
  6334. }
  6335. .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 {
  6336. width: 80%;
  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) h3.type-les-projets-en-images:before {
  6339. content: url("../images/pictos/picto-ressource-projetsimages.svg");
  6340. padding-right: 1rem;
  6341. }
  6342. .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 {
  6343. content: url("../images/pictos/picto-ressource-presse.svg");
  6344. padding-right: 1rem;
  6345. }
  6346. .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 {
  6347. background-color: rgb(255, 255, 255);
  6348. border: 1px solid rgb(0, 158, 227);
  6349. list-style: none;
  6350. padding: 0.5rem;
  6351. position: relative;
  6352. left: 60vw;
  6353. top: -1.5rem;
  6354. text-transform: uppercase;
  6355. font-size: 0.7rem;
  6356. font-weight: 500;
  6357. color: rgb(0, 158, 227);
  6358. display: inline-flex;
  6359. align-items: center;
  6360. }
  6361. @media (max-width: 810px) {
  6362. .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 {
  6363. left: 81vw;
  6364. }
  6365. }
  6366. @media (max-width: 479px) {
  6367. .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 {
  6368. left: 76vw;
  6369. top: -1.5rem;
  6370. }
  6371. }
  6372. .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 {
  6373. display: flex;
  6374. flex-direction: row;
  6375. }
  6376. .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 {
  6377. width: 100% !important;
  6378. display: flex;
  6379. flex-direction: row;
  6380. transform: none;
  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-track .views-row {
  6383. width: 20%;
  6384. min-width: 250px;
  6385. max-width: 500px;
  6386. }
  6387. @media (max-width: 810px) {
  6388. .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 {
  6389. padding-left: 0rem !important;
  6390. flex-direction: column;
  6391. }
  6392. .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 {
  6393. width: 100% !important;
  6394. }
  6395. }
  6396. .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 {
  6397. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6398. display: inline-block;
  6399. transform: scale(0.5); /* Réduction à 50% */
  6400. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6401. }
  6402. @media (max-width: 810px) {
  6403. .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 {
  6404. transform: scale(0.5); /* Réduction à 50% */
  6405. transform-origin: top left; /* Point d’ancrage du redimensionnement */
  6406. }
  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-prev::before {
  6409. content: url("../images/pictos/fleche-droite-dans-rond.png");
  6410. display: block;
  6411. display: inline-block;
  6412. transform: scaleX(-1);
  6413. transform: scale(-0.5, 0.5);
  6414. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6415. }
  6416. @media (max-width: 810px) {
  6417. .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 {
  6418. transform: scale(-0.5, 0.5);
  6419. transform-origin: top right; /* Point d’ancrage du redimensionnement */
  6420. }
  6421. }
  6422. .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,
  6423. .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 {
  6424. opacity: 1 !important;
  6425. }
  6426. .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,
  6427. .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 {
  6428. opacity: 0.3 !important;
  6429. }
  6430. .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,
  6431. .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 {
  6432. top: 94%;
  6433. }
  6434. .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 {
  6435. right: 35vw;
  6436. }
  6437. .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 {
  6438. left: 25vw;
  6439. }
  6440. @media (max-width: 1400px) {
  6441. .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 {
  6442. left: 20vw;
  6443. }
  6444. .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 {
  6445. right: 30vw;
  6446. }
  6447. }
  6448. @media (max-width: 810px) {
  6449. .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 {
  6450. left: 15vw;
  6451. }
  6452. .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 {
  6453. right: 35vw;
  6454. }
  6455. }
  6456. @media (max-width: 479px) {
  6457. .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 {
  6458. left: 8vw;
  6459. }
  6460. .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 {
  6461. right: 30vw;
  6462. }
  6463. }
  6464. div.view-type-slide:nth-child(2) > div:nth-child(4) {
  6465. padding-left: 0 !important;
  6466. }
  6467. div.view-type-slide:nth-child(2) > div:nth-child(4) .slick-list {
  6468. padding-left: 8% !important;
  6469. padding-right: 8% !important;
  6470. }
  6471. div.view-type-slide:nth-child(2) > div:nth-child(4) article {
  6472. padding-right: 0;
  6473. }
  6474. footer {
  6475. z-index: 1;
  6476. }
  6477. .carousel {
  6478. display: none;
  6479. }
  6480. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6481. display: flex !important;
  6482. flex-direction: column;
  6483. margin-left: 11%;
  6484. }
  6485. @media screen and (min-width: 1100px) {
  6486. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6487. display: flex;
  6488. }
  6489. }
  6490. @media screen and (max-width: 810px) {
  6491. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top {
  6492. margin-left: 0;
  6493. }
  6494. }
  6495. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block {
  6496. margin-left: 0;
  6497. }
  6498. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6499. margin-top: 5rem;
  6500. padding: 0;
  6501. order: 7;
  6502. width: 85%;
  6503. }
  6504. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6505. display: grid;
  6506. grid-template-columns: 10fr 1fr;
  6507. gap: 4rem;
  6508. justify-content: center;
  6509. margin: auto;
  6510. }
  6511. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6512. display: flex;
  6513. align-items: center;
  6514. position: relative;
  6515. width: 100%;
  6516. margin: 0 auto;
  6517. }
  6518. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container {
  6519. flex: 1;
  6520. text-align: center;
  6521. }
  6522. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container img {
  6523. width: 100%;
  6524. height: auto;
  6525. object-fit: contain;
  6526. max-height: 550px;
  6527. border: none;
  6528. }
  6529. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-container .caption {
  6530. margin-top: 1rem;
  6531. font-family: sans-serif;
  6532. text-align: center;
  6533. font-size: 1rem;
  6534. color: #444;
  6535. }
  6536. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow {
  6537. font-size: 2rem;
  6538. color: #333;
  6539. background: none;
  6540. border-radius: 50%;
  6541. width: 40px;
  6542. height: 40px;
  6543. line-height: 40px;
  6544. text-align: center;
  6545. cursor: pointer;
  6546. user-select: none;
  6547. transition: background 0.3s ease;
  6548. }
  6549. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow:hover {
  6550. background: #bbb;
  6551. }
  6552. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.left {
  6553. margin-right: 10px;
  6554. }
  6555. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .arrow.right {
  6556. margin-left: 10px;
  6557. }
  6558. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .caption {
  6559. margin-top: 10px;
  6560. font-family: sans-serif;
  6561. grid-column: 2;
  6562. grid-row: 2;
  6563. }
  6564. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper {
  6565. grid-column: 2;
  6566. display: flex;
  6567. flex-direction: column;
  6568. align-items: center;
  6569. max-height: 60vh;
  6570. grid-row: 1/span 2;
  6571. top: 0px;
  6572. position: relative;
  6573. overflow: hidden;
  6574. }
  6575. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumb-arrow {
  6576. cursor: pointer;
  6577. padding: 5px 10px;
  6578. background: #00aaff;
  6579. color: white;
  6580. border-radius: 50%;
  6581. user-select: none;
  6582. z-index: 2;
  6583. position: relative;
  6584. }
  6585. .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 {
  6586. transform: rotate(90deg);
  6587. }
  6588. .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 {
  6589. transform: rotate(90deg);
  6590. }
  6591. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails {
  6592. display: flex;
  6593. flex-direction: column;
  6594. gap: 6px;
  6595. overflow-y: auto;
  6596. max-height: 100%;
  6597. scroll-behavior: smooth;
  6598. position: relative;
  6599. z-index: 0;
  6600. }
  6601. .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 {
  6602. display: none;
  6603. }
  6604. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .thumbnails-wrapper .thumbnails img {
  6605. width: 80px;
  6606. height: 60px;
  6607. object-fit: contain;
  6608. border: 2px solid transparent;
  6609. cursor: pointer;
  6610. opacity: 0.3;
  6611. transition: transform 0.3s ease, opacity 0.3s ease;
  6612. }
  6613. .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 {
  6614. transform: scale(1.3);
  6615. margin-top: 0.8rem;
  6616. margin-bottom: 0.8rem;
  6617. opacity: 1;
  6618. z-index: 1;
  6619. }
  6620. @media screen and (max-width: 810px) {
  6621. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel {
  6622. display: flex;
  6623. flex-direction: column;
  6624. gap: 2rem;
  6625. align-items: center;
  6626. width: 100vw;
  6627. }
  6628. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .carousel .main-image-block {
  6629. width: 90%;
  6630. }
  6631. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails-wrapper {
  6632. width: 100%;
  6633. display: flex !important;
  6634. flex-direction: row !important; /* 👈 corrige l'orientation */
  6635. justify-content: center;
  6636. align-items: center;
  6637. overflow-x: auto;
  6638. overflow-y: hidden;
  6639. max-height: none;
  6640. padding: 1rem 0;
  6641. position: relative;
  6642. }
  6643. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails {
  6644. display: flex !important;
  6645. flex-direction: row !important; /* 👈 force l'alignement horizontal */
  6646. gap: 0.8 rem !important;
  6647. overflow-x: auto;
  6648. overflow-y: hidden;
  6649. scroll-behavior: smooth;
  6650. padding: 0 1rem;
  6651. max-width: 100%;
  6652. flex-wrap: nowrap;
  6653. }
  6654. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails::-webkit-scrollbar {
  6655. display: none;
  6656. }
  6657. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumbnails img {
  6658. width: 60px;
  6659. height: 45px;
  6660. flex-shrink: 0; /* évite l’écrasement */
  6661. }
  6662. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .thumb-arrow {
  6663. display: none; /* inutile si scroll horizontal */
  6664. }
  6665. }
  6666. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-images .field__items {
  6667. display: none;
  6668. }
  6669. @media screen and (max-width: 810px) {
  6670. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource,
  6671. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodetitle,
  6672. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-edition,
  6673. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s-,
  6674. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution,
  6675. .page-node-type-ressource .type-les-projets-en-images.layout__region--top .block-region-top .block-entity-fieldnodefield-mots-clefs {
  6676. margin-left: 7%;
  6677. }
  6678. }
  6679. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-projets-liee {
  6680. transform: translateY(-45.5rem);
  6681. }
  6682. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-liens,
  6683. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-fichiers,
  6684. body.type-media-reportage-photos .block-region-third .block-entity-fieldnodefield-ress {
  6685. transform: translateY(-16rem);
  6686. }
  6687. .carousel {
  6688. display: none;
  6689. }
  6690. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6691. display: flex !important;
  6692. flex-direction: column;
  6693. margin-left: 11%;
  6694. width: 60%;
  6695. }
  6696. @media screen and (min-width: 1100px) {
  6697. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top {
  6698. display: flex;
  6699. }
  6700. }
  6701. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block {
  6702. margin-left: 0;
  6703. }
  6704. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-images {
  6705. display: none;
  6706. }
  6707. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-type-de-ressource {
  6708. order: 1;
  6709. }
  6710. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodetitle {
  6711. order: 2;
  6712. }
  6713. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-sous-titre {
  6714. order: 3;
  6715. }
  6716. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-edition {
  6717. order: 5;
  6718. }
  6719. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-auteur-s- {
  6720. order: 4;
  6721. }
  6722. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-date-de-parution {
  6723. order: 6;
  6724. }
  6725. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-videos {
  6726. order: 7;
  6727. margin-top: 2rem;
  6728. }
  6729. .page-node-type-ressource .type-media-vidéos.layout__region--top .block-region-top .block-entity-fieldnodefield-projets-liee {
  6730. margin-top: 0rem;
  6731. }
  6732. /*partials*/
  6733. .layout-container {
  6734. position: relative;
  6735. width: 100vw;
  6736. }
  6737. .layout-container header {
  6738. position: fixed;
  6739. z-index: 99;
  6740. width: 100vw;
  6741. }
  6742. #header-top {
  6743. height: 7rem;
  6744. background-color: rgb(255, 255, 255);
  6745. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  6746. display: flex;
  6747. flex-direction: row;
  6748. color: rgb(0, 0, 0);
  6749. top: 0%;
  6750. scroll-margin: 8rem;
  6751. }
  6752. @media (max-width: 810px) {
  6753. #header-top {
  6754. height: 5rem;
  6755. }
  6756. }
  6757. #header-top .region-header-top-left {
  6758. display: flex;
  6759. flex-direction: row;
  6760. padding-left: 4%;
  6761. align-items: center;
  6762. color: rgb(0, 0, 0);
  6763. flex: 1;
  6764. }
  6765. #header-top .region-header-top-left #block-logogouv {
  6766. display: flex;
  6767. height: 100%;
  6768. align-items: center;
  6769. }
  6770. @media (max-width: 810px) {
  6771. #header-top .region-header-top-left #block-logogouv .field--name-field-logo {
  6772. height: 100%;
  6773. }
  6774. }
  6775. #header-top .region-header-top-left #block-logogouv img {
  6776. width: auto;
  6777. height: 100%;
  6778. }
  6779. #header-top .region-header-top-left #block-eql-logoepau {
  6780. height: 100%;
  6781. align-content: center;
  6782. padding-left: 1rem;
  6783. }
  6784. #header-top .region-header-top-rigth {
  6785. display: flex;
  6786. flex-direction: row;
  6787. width: 40%;
  6788. align-items: center;
  6789. justify-content: flex-end;
  6790. }
  6791. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6792. text-transform: uppercase;
  6793. font-family: "Source Code Pro";
  6794. color: rgb(9, 57, 139) !important;
  6795. font-size: 1rem;
  6796. text-align: end;
  6797. width: 30%;
  6798. }
  6799. #header-top .region-header-top-rigth #block-eql-identitedusite :visited {
  6800. color: rgb(9, 57, 139) !important;
  6801. }
  6802. #header-top .region-header-top-rigth #block-eql-identitedusite :link {
  6803. color: rgb(9, 57, 139) !important;
  6804. }
  6805. @media (max-width: 883px) {
  6806. #header-top .region-header-top-rigth #block-eql-identitedusite {
  6807. display: none;
  6808. }
  6809. }
  6810. #header-top .region-header-top-rigth #block-logoeql {
  6811. padding-left: 1rem;
  6812. padding-right: 2rem;
  6813. height: 100%;
  6814. align-items: center;
  6815. }
  6816. @media (max-width: 810px) {
  6817. #header-top .region-header-top-rigth #block-logoeql {
  6818. padding-right: 1rem;
  6819. }
  6820. }
  6821. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo {
  6822. height: 100%;
  6823. }
  6824. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a {
  6825. display: flex;
  6826. align-items: center;
  6827. height: 100%;
  6828. }
  6829. #header-top .region-header-top-rigth #block-logoeql .field--name-field-logo a img {
  6830. width: auto;
  6831. height: 80%;
  6832. }
  6833. #header-top .region-header-top-rigth #block-burger {
  6834. z-index: 1;
  6835. background-color: rgb(0, 158, 227);
  6836. font-size: 0.7rem;
  6837. color: black;
  6838. display: block;
  6839. width: 7rem;
  6840. height: 100%;
  6841. margin-top: 0;
  6842. aspect-ratio: 1;
  6843. }
  6844. #header-top .region-header-top-rigth #block-burger :hover {
  6845. cursor: pointer;
  6846. }
  6847. @media (max-width: 810px) {
  6848. #header-top .region-header-top-rigth #block-burger {
  6849. width: 4rem;
  6850. }
  6851. }
  6852. #header-top .region-header-top-rigth #block-burger h2 {
  6853. padding-top: 1rem;
  6854. font-size: 1em;
  6855. font-weight: light;
  6856. color: rgb(0, 158, 227);
  6857. }
  6858. @media (max-width: 810px) {
  6859. #header-top .region-header-top-rigth #block-burger h2 {
  6860. padding-top: 0;
  6861. }
  6862. }
  6863. #header-top .region-header-top-rigth #block-burger h2:after {
  6864. display: block;
  6865. margin: auto;
  6866. height: 70px;
  6867. 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>');
  6868. }
  6869. @media (max-width: 810px) {
  6870. #header-top .region-header-top-rigth #block-burger h2:after {
  6871. 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>');
  6872. }
  6873. }
  6874. #header-top .region-header-top-rigth #block-burger #block-burger-menu {
  6875. display: block;
  6876. margin: 0;
  6877. align-self: center;
  6878. text-align: center;
  6879. }
  6880. #header-top .region-header-top-rigth #block-burger .ul1:not(.sous-liste) {
  6881. width: 300%;
  6882. position: relative;
  6883. right: 260px;
  6884. margin: 0;
  6885. padding-top: 2rem;
  6886. padding-bottom: 2rem;
  6887. z-index: 99;
  6888. }
  6889. #header-top .region-header-top-rigth #block-burger ul {
  6890. display: none;
  6891. background-color: rgb(0, 158, 227);
  6892. line-height: 2rem;
  6893. list-style: none;
  6894. }
  6895. #header-top .region-header-top-rigth #block-burger ul .ul1 .sous-liste a {
  6896. opacity: 1;
  6897. }
  6898. #header-top .region-header-top-rigth #block-burger ul a {
  6899. opacity: 1;
  6900. color: rgb(255, 255, 255);
  6901. font-weight: 800;
  6902. font-size: 1rem;
  6903. }
  6904. #header-top .region-header-top-rigth #block-burger.opened ul {
  6905. display: block;
  6906. }
  6907. #header-top #block-socialnetwork-2 {
  6908. display: none;
  6909. position: relative;
  6910. top: -33px;
  6911. align-self: flex-end;
  6912. margin-left: auto;
  6913. }
  6914. #header-top #block-socialnetwork-2 .field--name-body {
  6915. min-height: 75px;
  6916. }
  6917. #header-top #block-socialnetwork-2 p {
  6918. display: flex;
  6919. flex-direction: row-reverse;
  6920. margin-bottom: 0;
  6921. min-height: 65px;
  6922. justify-content: space-around;
  6923. width: 140px;
  6924. }
  6925. #header-top #block-socialnetwork-2 p a {
  6926. color: rgb(255, 255, 255);
  6927. font-size: 0;
  6928. }
  6929. #header-top #block-socialnetwork-2 p svg.ext {
  6930. display: none;
  6931. }
  6932. #header-top #block-socialnetwork-2 p .link-twitter {
  6933. display: flex;
  6934. background-color: black;
  6935. width: 40px;
  6936. justify-content: center;
  6937. align-items: flex-end;
  6938. }
  6939. #header-top #block-socialnetwork-2 p .link-twitter:before {
  6940. content: url("../images/pictos/logo_x_blanc.svg");
  6941. min-width: 30px;
  6942. padding-bottom: 0.5rem;
  6943. }
  6944. #header-top #block-socialnetwork-2 p .link-youtube {
  6945. display: flex;
  6946. background-color: black;
  6947. min-width: 40px;
  6948. justify-content: center;
  6949. align-items: flex-end;
  6950. }
  6951. #header-top #block-socialnetwork-2 p .link-youtube:before {
  6952. content: url("../images/pictos/youtube_white.svg");
  6953. min-width: 25px;
  6954. padding-bottom: 0.5rem;
  6955. }
  6956. #header-top #block-socialnetwork-2 p .link-linkedin {
  6957. display: flex;
  6958. background-color: black;
  6959. min-width: 40px;
  6960. justify-content: center;
  6961. align-items: flex-end;
  6962. }
  6963. #header-top #block-socialnetwork-2 p .link-linkedin:before {
  6964. content: url("../images/pictos/linkedin_white.svg");
  6965. min-width: 35px;
  6966. padding-bottom: 0.2rem;
  6967. }
  6968. .region-header-bottom {
  6969. box-shadow: 0 4px 4px 3px rgba(0, 0, 0, 0.1);
  6970. }
  6971. .region-header-bottom #block-headermenu {
  6972. align-self: baseline;
  6973. width: 100%;
  6974. background-color: white;
  6975. border-top: solid rgb(0, 158, 227) 1px;
  6976. }
  6977. .region-header-bottom ul {
  6978. font-size: 1rem;
  6979. font-weight: 900;
  6980. list-style: none;
  6981. display: flex;
  6982. flex-direction: row;
  6983. justify-content: space-evenly;
  6984. width: 100%;
  6985. padding-inline-start: 0px;
  6986. padding: 1rem;
  6987. margin-top: 0 !important;
  6988. padding-bottom: 0.5rem;
  6989. }
  6990. .region-header-bottom ul .is-active {
  6991. color: rgb(0, 158, 227);
  6992. }
  6993. .region-header-bottom ul ul {
  6994. position: absolute;
  6995. left: -28%;
  6996. z-index: 1000;
  6997. display: flex;
  6998. flex-direction: column;
  6999. min-width: 210px;
  7000. width: fit-content;
  7001. justify-content: space-between;
  7002. padding-inline-start: 0px;
  7003. }
  7004. .region-header-bottom ul ul .is-active {
  7005. color: rgb(0, 158, 227);
  7006. }
  7007. .region-header-bottom ul ul {
  7008. opacity: 0;
  7009. visibility: hidden;
  7010. transform: translateY(-10px);
  7011. transition: opacity 0.3s ease, transform 0.3s ease;
  7012. }
  7013. .region-header-bottom ul li {
  7014. position: relative;
  7015. display: flex;
  7016. flex-direction: column;
  7017. background-color: rgb(255, 255, 255);
  7018. padding-bottom: 0.8rem;
  7019. max-width: inherit;
  7020. padding-left: 1rem;
  7021. padding-right: 0.5rem;
  7022. height: fit-content;
  7023. }
  7024. .region-header-bottom ul li a {
  7025. color: rgb(0, 0, 0);
  7026. }
  7027. .region-header-bottom ul li .is-active {
  7028. color: rgb(0, 158, 227);
  7029. }
  7030. .region-header-bottom ul li :hover {
  7031. color: rgb(0, 158, 227);
  7032. }
  7033. .region-header-bottom ul li:hover ul {
  7034. opacity: 1;
  7035. visibility: visible;
  7036. transform: translateY(0);
  7037. }
  7038. .region-header-bottom ul .ul1.sous-liste.ul2 {
  7039. padding-left: 1rem;
  7040. }
  7041. #fotter-bottom {
  7042. box-shadow: 1px 0px 8px rgb(0, 0, 0);
  7043. display: flex;
  7044. flex: 1 1 120px;
  7045. flex-direction: row;
  7046. background-color: rgb(255, 255, 255);
  7047. padding-top: 3rem;
  7048. }
  7049. @media (max-width: 810px) {
  7050. #fotter-bottom {
  7051. flex-direction: column;
  7052. padding-right: 1rem;
  7053. }
  7054. }
  7055. #fotter-bottom .region {
  7056. display: block;
  7057. padding-left: 2rem;
  7058. padding-right: 1rem;
  7059. padding-bottom: 1rem;
  7060. border-left: rgb(0, 158, 227) solid 1px;
  7061. }
  7062. #fotter-bottom .region h2 {
  7063. margin-top: 0;
  7064. color: rgb(9, 57, 139);
  7065. font-size: 1.2rem;
  7066. }
  7067. #fotter-bottom .region-footer-bottom-left {
  7068. margin-left: 3rem;
  7069. border: none;
  7070. }
  7071. @media (max-width: 810px) {
  7072. #fotter-bottom .region-footer-bottom-left {
  7073. width: 100%;
  7074. margin-left: 0rem;
  7075. }
  7076. }
  7077. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content {
  7078. display: flex;
  7079. flex-direction: row;
  7080. justify-content: flex-start;
  7081. flex-wrap: wrap;
  7082. padding-top: 1rem;
  7083. }
  7084. #fotter-bottom .region-footer-bottom-left .view-id-partenaires .view-content .node-type-partenaires_logo_footer_ {
  7085. padding-right: 1rem;
  7086. padding-bottom: 1rem;
  7087. }
  7088. #fotter-bottom .region-footer-bottom-left .block-views-blockpartenaires-block-3 img {
  7089. width: auto;
  7090. height: 30px;
  7091. }
  7092. #fotter-bottom .region-footer-bottom-right {
  7093. display: flex;
  7094. flex-direction: column-reverse;
  7095. justify-content: flex-end;
  7096. }
  7097. @media (max-width: 810px) {
  7098. #fotter-bottom .region-footer-bottom-right {
  7099. width: 100%;
  7100. }
  7101. }
  7102. #fotter-bottom .region-footer-bottom-right #block-socialnetwork {
  7103. margin-bottom: 1rem;
  7104. }
  7105. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p {
  7106. margin-top: 0;
  7107. display: flex;
  7108. flex-direction: row-reverse;
  7109. justify-content: flex-end;
  7110. }
  7111. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a {
  7112. color: rgb(255, 255, 255);
  7113. font-size: 0;
  7114. padding-left: 1rem;
  7115. }
  7116. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p a.link-linkedin {
  7117. padding-left: 0;
  7118. }
  7119. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p svg.ext {
  7120. display: none;
  7121. }
  7122. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter {
  7123. display: none;
  7124. }
  7125. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-twitter:before {
  7126. content: url("../images/pictos/logo_x_rond.png");
  7127. min-width: 50px;
  7128. align-self: center;
  7129. }
  7130. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube {
  7131. display: flex;
  7132. }
  7133. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-youtube:before {
  7134. content: url("../images/pictos/youtube_rond.svg");
  7135. min-width: 50px;
  7136. }
  7137. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin {
  7138. display: flex;
  7139. }
  7140. #fotter-bottom .region-footer-bottom-right #block-socialnetwork .field--name-body p .link-linkedin:before {
  7141. content: url("../images/pictos/linkedin_rond.svg");
  7142. min-width: 50px;
  7143. }
  7144. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul {
  7145. margin-top: 0;
  7146. color: rgb(9, 57, 139);
  7147. font-weight: 800;
  7148. list-style: none;
  7149. padding-left: 0;
  7150. }
  7151. #fotter-bottom .region-footer-bottom-right #block-pieddepage ul a {
  7152. color: rgb(9, 57, 139);
  7153. font-size: 1.2rem;
  7154. text-decoration: underline;
  7155. margin-top: 0;
  7156. }
  7157. #fotter-bottom .region-footer-bottom-middle {
  7158. width: 60%;
  7159. }
  7160. @media (max-width: 810px) {
  7161. #fotter-bottom .region-footer-bottom-middle {
  7162. width: 100%;
  7163. }
  7164. }
  7165. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper {
  7166. display: flex;
  7167. flex-direction: row;
  7168. justify-content: flex-start;
  7169. flex-wrap: wrap;
  7170. }
  7171. #fotter-bottom .region-footer-bottom-middle .view-id-partenaires .views-row-wrapper .node-type-partenaires_logo_footer_ {
  7172. padding-right: 1rem;
  7173. padding-bottom: 1rem;
  7174. }
  7175. .slick-prev {
  7176. color: rgb(0, 158, 227);
  7177. left: 25px;
  7178. }
  7179. .path-frontpage .slick-dots {
  7180. bottom: -40px !important;
  7181. }
  7182. .path-frontpage .slick-prev::before,
  7183. .path-frontpage .slick-next::before {
  7184. opacity: 1;
  7185. }
  7186. /* Slider */
  7187. .slick-slider {
  7188. position: relative;
  7189. display: block;
  7190. box-sizing: border-box;
  7191. -webkit-touch-callout: none;
  7192. -webkit-user-select: none;
  7193. -khtml-user-select: none;
  7194. -moz-user-select: none;
  7195. -ms-user-select: none;
  7196. user-select: none;
  7197. -ms-touch-action: pan-y;
  7198. touch-action: pan-y;
  7199. -webkit-tap-highlight-color: transparent;
  7200. }
  7201. .slick-list {
  7202. position: relative;
  7203. overflow: hidden;
  7204. display: block;
  7205. margin: 0;
  7206. padding: 0;
  7207. }
  7208. .slick-list:focus {
  7209. outline: none;
  7210. }
  7211. .slick-list.dragging {
  7212. cursor: pointer;
  7213. cursor: hand;
  7214. }
  7215. .slick-slider .slick-track,
  7216. .slick-slider .slick-list {
  7217. -webkit-transform: translate3d(0, 0, 0);
  7218. -moz-transform: translate3d(0, 0, 0);
  7219. -ms-transform: translate3d(0, 0, 0);
  7220. -o-transform: translate3d(0, 0, 0);
  7221. transform: translate3d(0, 0, 0);
  7222. }
  7223. .slick-track {
  7224. position: relative;
  7225. left: 0;
  7226. top: 0;
  7227. display: block;
  7228. margin-left: auto;
  7229. margin-right: auto;
  7230. }
  7231. .slick-track:before, .slick-track:after {
  7232. content: "";
  7233. display: table;
  7234. }
  7235. .slick-track:after {
  7236. clear: both;
  7237. }
  7238. .slick-loading .slick-track {
  7239. visibility: hidden;
  7240. }
  7241. .slick-slide {
  7242. float: left;
  7243. height: 100%;
  7244. min-height: 1px;
  7245. }
  7246. [dir=rtl] .slick-slide {
  7247. float: right;
  7248. }
  7249. .slick-slide img {
  7250. display: block;
  7251. }
  7252. .slick-slide.slick-loading img {
  7253. display: none;
  7254. }
  7255. .slick-slide {
  7256. display: none;
  7257. }
  7258. .slick-slide.dragging img {
  7259. pointer-events: none;
  7260. }
  7261. .slick-initialized .slick-slide {
  7262. display: block;
  7263. }
  7264. .slick-loading .slick-slide {
  7265. visibility: hidden;
  7266. }
  7267. .slick-vertical .slick-slide {
  7268. display: block;
  7269. height: auto;
  7270. border: 1px solid transparent;
  7271. }
  7272. .slick-arrow.slick-hidden {
  7273. display: none;
  7274. }
  7275. /* Slider */
  7276. .slick-loading .slick-list {
  7277. background: #fff url("./ajax-loader.gif") center center no-repeat;
  7278. }
  7279. /* Icons */
  7280. /* Arrows */
  7281. .slick-prev,
  7282. .slick-next {
  7283. position: absolute;
  7284. display: block;
  7285. height: 60px;
  7286. width: 60px;
  7287. line-height: 0px;
  7288. font-size: 0px;
  7289. cursor: pointer;
  7290. background: transparent;
  7291. color: transparent;
  7292. top: 50%;
  7293. -webkit-transform: translate(0, -50%);
  7294. -ms-transform: translate(0, -50%);
  7295. transform: translate(0, -50%);
  7296. padding: 0;
  7297. border: none;
  7298. outline: none;
  7299. }
  7300. .slick-prev:hover,
  7301. .slick-next:hover {
  7302. outline: none;
  7303. background: transparent;
  7304. color: transparent;
  7305. }
  7306. .slick-prev:hover:before,
  7307. .slick-next:hover:before {
  7308. opacity: 0.2;
  7309. }
  7310. .slick-prev.slick-disabled:before,
  7311. .slick-next.slick-disabled:before {
  7312. opacity: 0;
  7313. }
  7314. .slick-prev:before,
  7315. .slick-next:before {
  7316. font-family: "marianne";
  7317. font-size: 60px;
  7318. line-height: 1;
  7319. color: rgb(0, 158, 227);
  7320. opacity: 0;
  7321. -webkit-font-smoothing: antialiased;
  7322. -moz-osx-font-smoothing: grayscale;
  7323. }
  7324. .slick-prev {
  7325. z-index: 1;
  7326. left: 25px;
  7327. }
  7328. [dir=rtl] .slick-prev {
  7329. left: auto;
  7330. right: 25px;
  7331. }
  7332. .slick-prev:before {
  7333. content: "←";
  7334. }
  7335. [dir=rtl] .slick-prev:before {
  7336. content: "→";
  7337. }
  7338. .slick-next {
  7339. right: 25px;
  7340. }
  7341. [dir=rtl] .slick-next {
  7342. left: 25px;
  7343. right: auto;
  7344. }
  7345. .slick-next:before {
  7346. content: "→";
  7347. }
  7348. [dir=rtl] .slick-next:before {
  7349. content: "←";
  7350. }
  7351. /* Dots */
  7352. .slick-dotted.slick-slider {
  7353. margin-bottom: 30px;
  7354. }
  7355. 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 {
  7356. width: 600px;
  7357. }
  7358. .slick-dots {
  7359. list-style: none;
  7360. display: block;
  7361. text-align: center;
  7362. padding: 0;
  7363. margin: 0;
  7364. width: 100%;
  7365. }
  7366. .slick-dots li {
  7367. position: relative;
  7368. display: inline-block;
  7369. height: 20px;
  7370. width: 20px;
  7371. margin: 0 5px;
  7372. padding: 0;
  7373. cursor: pointer;
  7374. }
  7375. .slick-dots li button {
  7376. border: 0;
  7377. background: transparent;
  7378. display: block;
  7379. height: 20px;
  7380. width: 20px;
  7381. outline: none;
  7382. line-height: 0px;
  7383. font-size: 0px;
  7384. color: transparent;
  7385. padding: 5px;
  7386. cursor: pointer;
  7387. }
  7388. .slick-dots li button:hover, .slick-dots li button:focus {
  7389. outline: none;
  7390. }
  7391. .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  7392. opacity: 0.2;
  7393. }
  7394. .slick-dots li button:before {
  7395. position: absolute;
  7396. top: 0;
  7397. left: 0;
  7398. content: "•";
  7399. width: 20px;
  7400. height: 20px;
  7401. font-family: "marianne";
  7402. font-size: 50px;
  7403. line-height: 20px;
  7404. text-align: center;
  7405. color: black;
  7406. opacity: 0.2;
  7407. -webkit-font-smoothing: antialiased;
  7408. -moz-osx-font-smoothing: grayscale;
  7409. }
  7410. .slick-dots li.slick-active button:before {
  7411. color: black;
  7412. opacity: 0.5;
  7413. }
  7414. #views-exposed-form-projets-block-1 {
  7415. flex-direction: row;
  7416. position: relative;
  7417. align-items: center;
  7418. }
  7419. @media (max-width: 810px) {
  7420. #views-exposed-form-projets-block-1 select {
  7421. max-width: 58%;
  7422. }
  7423. }
  7424. #views-exposed-form-base-de-donnees-block-1 {
  7425. flex-direction: column;
  7426. margin-top: 1rem;
  7427. }
  7428. @media (max-width: 479px) {
  7429. #views-exposed-form-base-de-donnees-block-1 {
  7430. justify-content: center;
  7431. }
  7432. }
  7433. #views-exposed-form-base-de-donnees-block-1 .js-form-item {
  7434. margin-right: 0 !important;
  7435. margin-bottom: 0.5rem !important;
  7436. padding: 0.2rem !important;
  7437. }
  7438. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7439. #views-exposed-form-base-de-donnees-block-1 .js-form-item select {
  7440. width: 100%;
  7441. text-align: end;
  7442. }
  7443. #views-exposed-form-base-de-donnees-block-1 .js-form-item label {
  7444. padding-right: 0.5rem !important;
  7445. flex: 2 0 auto !important;
  7446. }
  7447. #views-exposed-form-base-de-donnees-block-1,
  7448. #views-exposed-form-projets-block-1 {
  7449. display: flex;
  7450. flex-wrap: wrap;
  7451. }
  7452. @media (max-width: 810px) {
  7453. #views-exposed-form-base-de-donnees-block-1,
  7454. #views-exposed-form-projets-block-1 {
  7455. font-size: 0.8rem;
  7456. }
  7457. }
  7458. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7459. #views-exposed-form-projets-block-1 .js-form-item {
  7460. display: flex;
  7461. flex-direction: row;
  7462. max-width: 100%;
  7463. margin-right: 1rem;
  7464. margin-bottom: 1rem;
  7465. padding: 0.5rem 1rem;
  7466. align-items: baseline;
  7467. border: solid black 0.5px;
  7468. justify-content: space-evenly;
  7469. }
  7470. @media (max-width: 810px) {
  7471. #views-exposed-form-base-de-donnees-block-1 .js-form-item,
  7472. #views-exposed-form-projets-block-1 .js-form-item {
  7473. display: flex;
  7474. flex-direction: row;
  7475. justify-content: space-between;
  7476. max-width: 85%;
  7477. }
  7478. }
  7479. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7480. #views-exposed-form-projets-block-1 .js-form-item label {
  7481. flex: 2 1 auto;
  7482. padding-right: 2rem;
  7483. }
  7484. #views-exposed-form-base-de-donnees-block-1 .js-form-item label::after,
  7485. #views-exposed-form-projets-block-1 .js-form-item label::after {
  7486. content: " : ";
  7487. }
  7488. @media (max-width: 810px) {
  7489. #views-exposed-form-base-de-donnees-block-1 .js-form-item label,
  7490. #views-exposed-form-projets-block-1 .js-form-item label {
  7491. padding-right: 1rem;
  7492. }
  7493. }
  7494. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7495. #views-exposed-form-projets-block-1 .js-form-item input {
  7496. flex: 2 1 auto;
  7497. max-width: 55%;
  7498. }
  7499. @media (max-width: 810px) {
  7500. #views-exposed-form-base-de-donnees-block-1 .js-form-item input,
  7501. #views-exposed-form-projets-block-1 .js-form-item input {
  7502. max-width: 100%;
  7503. }
  7504. }
  7505. #views-exposed-form-base-de-donnees-block-1 .js-form-item .form-checkbox,
  7506. #views-exposed-form-projets-block-1 .js-form-item .form-checkbox {
  7507. margin-right: 1rem;
  7508. }
  7509. #views-exposed-form-base-de-donnees-block-1 .js-form-item .select-wrapper,
  7510. #views-exposed-form-projets-block-1 .js-form-item .select-wrapper {
  7511. margin: 0;
  7512. }
  7513. #views-exposed-form-base-de-donnees-block-1 .js-form-type-checkbox label::after,
  7514. #views-exposed-form-projets-block-1 .js-form-type-checkbox label::after {
  7515. content: none;
  7516. }
  7517. #views-exposed-form-base-de-donnees-block-1 .form-actions input,
  7518. #views-exposed-form-projets-block-1 .form-actions input {
  7519. color: white;
  7520. font-weight: 600;
  7521. text-transform: uppercase;
  7522. padding: 0.3rem 0.7rem;
  7523. background-color: rgb(0, 158, 227);
  7524. border: none;
  7525. }
  7526. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7527. #views-exposed-form-projets-block-1 input,
  7528. #views-exposed-form-projets-block-1 select {
  7529. border: none;
  7530. background-color: transparent;
  7531. font-family: "Marianne";
  7532. font-size: 1rem;
  7533. }
  7534. @media (max-width: 810px) {
  7535. #views-exposed-form-base-de-donnees-block-1 input, #views-exposed-form-base-de-donnees-block-1 select,
  7536. #views-exposed-form-projets-block-1 input,
  7537. #views-exposed-form-projets-block-1 select {
  7538. font-size: 0.8rem;
  7539. }
  7540. }
  7541. article.node-type-ressource {
  7542. margin-bottom: 1rem;
  7543. padding-right: 1rem;
  7544. }
  7545. article.node-type-ressource h2 {
  7546. text-align: left !important;
  7547. }
  7548. article.node-type-ressource .ext {
  7549. color: black;
  7550. }
  7551. article.node-type-ressource svg.ext {
  7552. display: none;
  7553. }
  7554. article.node-type-ressource :visited {
  7555. color: black;
  7556. }
  7557. article.node-type-ressource a {
  7558. color: black;
  7559. }
  7560. article.node-type-ressource .wrapper-ressource {
  7561. display: flex;
  7562. flex-direction: column;
  7563. }
  7564. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource {
  7565. order: 2;
  7566. }
  7567. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7568. order: 1;
  7569. }
  7570. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource,
  7571. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media {
  7572. grid-column: 1;
  7573. text-transform: uppercase;
  7574. line-height: 1.1rem;
  7575. margin-top: 0.5rem;
  7576. }
  7577. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-ressource a,
  7578. article.node-type-ressource .wrapper-ressource .field--name-field-type-de-media a {
  7579. color: rgb(0, 158, 227);
  7580. font-weight: 900;
  7581. font-size: 0.8rem;
  7582. pointer-events: none;
  7583. cursor: default;
  7584. }
  7585. article.node-type-ressource .wrapper-ressource .field--name-title {
  7586. grid-column: 2;
  7587. margin-top: 0.5rem;
  7588. order: 4;
  7589. margin-bottom: 0;
  7590. }
  7591. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7592. margin: 0;
  7593. line-height: 1rem;
  7594. margin-left: 0 !important;
  7595. line-height: 0;
  7596. margin-bottom: 0 !important;
  7597. }
  7598. article.node-type-ressource .wrapper-ressource .field--name-title h2 a {
  7599. color: rgb(0, 0, 0);
  7600. font-size: 0.9rem;
  7601. font-weight: 900;
  7602. font-style: normal;
  7603. }
  7604. @media (max-width: 810px) {
  7605. article.node-type-ressource .wrapper-ressource .field--name-title h2 {
  7606. line-height: 0 !important;
  7607. }
  7608. }
  7609. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- {
  7610. grid-column: 2;
  7611. margin-top: 0.5rem;
  7612. font-weight: 800;
  7613. line-height: 1.1rem;
  7614. order: 6 !important;
  7615. font-size: 0.8rem;
  7616. }
  7617. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- p {
  7618. margin: 0;
  7619. }
  7620. article.node-type-ressource .wrapper-ressource .field--name-field-auteur-s- .field__label {
  7621. display: none;
  7622. }
  7623. article.node-type-ressource .wrapper-ressource .field--name-field-sous-titre {
  7624. grid-column: 2;
  7625. margin-top: 0.8rem;
  7626. order: 5;
  7627. font-size: 0.9rem;
  7628. font-weight: 900;
  7629. line-height: 1.5;
  7630. }
  7631. article.node-type-ressource .wrapper-ressource .field--name-field-edition {
  7632. order: 7;
  7633. grid-column: 2;
  7634. margin-top: 0.5rem;
  7635. font-size: 0.8rem;
  7636. }
  7637. article.node-type-ressource .wrapper-ressource .field--name-field-edition p {
  7638. margin: 0;
  7639. }
  7640. article.node-type-ressource .wrapper-ressource .field--name-field-edition .field__label {
  7641. display: none;
  7642. }
  7643. article.node-type-ressource .wrapper-ressource .field--name-field-images {
  7644. order: 3;
  7645. grid-column: 1;
  7646. }
  7647. article.node-type-ressource .wrapper-ressource .field--name-field-images .field__item {
  7648. height: 100px;
  7649. }
  7650. article.node-type-ressource .wrapper-ressource .field--name-field-images img {
  7651. height: 100%;
  7652. width: auto;
  7653. border: solid 1px gray;
  7654. }
  7655. article.node-type-ressource .wrapper-ressource .field--name-field-date-de-parution {
  7656. grid-column: 2;
  7657. margin-top: 0.3rem;
  7658. order: 8;
  7659. font-size: 0.8rem;
  7660. }
  7661. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs {
  7662. order: 9;
  7663. grid-column: 2;
  7664. display: flex;
  7665. margin-top: 0.5rem;
  7666. flex-direction: row;
  7667. flex-wrap: wrap;
  7668. }
  7669. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item {
  7670. margin-right: 0.5rem;
  7671. padding-right: 0.3rem;
  7672. font-size: 0.7rem;
  7673. }
  7674. article.node-type-ressource .wrapper-ressource .field--name-field-mots-clefs .field__item a {
  7675. background: rgb(9, 57, 139);
  7676. color: rgb(255, 255, 255);
  7677. font-weight: 800;
  7678. vertical-align: super;
  7679. padding-left: 0.1rem;
  7680. padding-right: 0.1rem;
  7681. display: inline-flex;
  7682. pointer-events: none;
  7683. cursor: default;
  7684. }
  7685. article.node-type-ressource .wrapper-ressource ul.links.inline {
  7686. display: none;
  7687. }
  7688. article.node-type-ressource.type-publications-issues-du-programme {
  7689. min-width: 300px;
  7690. }
  7691. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource {
  7692. display: grid;
  7693. grid-template-columns: 1fr 1.8fr;
  7694. grid-template-rows: repeat(5 1fr);
  7695. }
  7696. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-ressource {
  7697. order: 2;
  7698. grid-row: 2;
  7699. grid-column: 1/span 2;
  7700. margin-bottom: 0.5rem;
  7701. }
  7702. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-type-de-media {
  7703. order: 1;
  7704. grid-row: 1;
  7705. grid-column: 1/span 2;
  7706. }
  7707. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images {
  7708. order: 3;
  7709. grid-row: 3/span 5;
  7710. height: auto;
  7711. width: 90%;
  7712. }
  7713. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-images img {
  7714. height: auto;
  7715. width: 90%;
  7716. border: 1px solid #a3a3a3;
  7717. }
  7718. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title {
  7719. grid-row: 3;
  7720. margin-top: 0;
  7721. padding-bottom: 0.8rem;
  7722. }
  7723. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 {
  7724. margin-left: 0 !important;
  7725. line-height: 0;
  7726. }
  7727. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-title h2 a {
  7728. color: rgb(0, 158, 227);
  7729. font-size: 1.3rem;
  7730. font-style: normal;
  7731. }
  7732. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre {
  7733. margin-top: 0;
  7734. line-height: 1;
  7735. grid-row: 4;
  7736. }
  7737. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a,
  7738. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-sous-titre a:visited {
  7739. grid-row: 4;
  7740. color: rgb(0, 158, 227);
  7741. font-size: 1rem;
  7742. font-weight: 800;
  7743. }
  7744. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-edition {
  7745. grid-row: 6;
  7746. line-height: 1.1;
  7747. }
  7748. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-date-de-parution {
  7749. grid-row: 7;
  7750. }
  7751. article.node-type-ressource.type-publications-issues-du-programme .wrapper-ressource .field--name-field-mots-clefs {
  7752. grid-row: 8;
  7753. margin-top: 0.5rem;
  7754. left: -0.2rem;
  7755. position: relative;
  7756. }
  7757. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-ressource {
  7758. order: 2;
  7759. }
  7760. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-type-de-media {
  7761. order: 1;
  7762. }
  7763. article.node-type-ressource.type-paroles-de-laureats .wrapper-ressource .field--name-field-images {
  7764. order: 3;
  7765. }
  7766. @media (max-width: 479px) {
  7767. article.node-type-ressource {
  7768. margin-left: 0;
  7769. }
  7770. }
  7771. article.node-type-ressource.type-presse .field--name-field-images {
  7772. display: none;
  7773. }
  7774. .type-les-projets-en-images.views-row {
  7775. width: 50% !important;
  7776. min-width: 550px !important;
  7777. max-width: 0 !important;
  7778. }
  7779. @media (max-width: 479px) {
  7780. .type-les-projets-en-images.views-row {
  7781. min-width: 100% !important;
  7782. }
  7783. }
  7784. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7785. display: grid;
  7786. grid-template-columns: 2fr 1fr !important;
  7787. width: 100%;
  7788. max-width: 100%;
  7789. column-gap: 1rem;
  7790. align-items: start;
  7791. }
  7792. @media (max-width: 479px) {
  7793. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource {
  7794. display: flex;
  7795. flex-direction: column;
  7796. padding-left: 1rem !important;
  7797. }
  7798. }
  7799. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images {
  7800. grid-column: 1;
  7801. grid-row: 3/span 8;
  7802. width: 100%;
  7803. }
  7804. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images img {
  7805. width: 100%;
  7806. height: auto;
  7807. margin-top: 1rem;
  7808. object-fit: cover;
  7809. border: 1px solid #ccc;
  7810. }
  7811. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7812. height: fit-content;
  7813. }
  7814. @media (max-width: 479px) {
  7815. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-images .field__item {
  7816. height: auto;
  7817. }
  7818. }
  7819. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-media {
  7820. grid-column: 1/span 2;
  7821. grid-row: 2;
  7822. }
  7823. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-type-de-ressource {
  7824. grid-column: 1/span 2;
  7825. grid-row: 1;
  7826. }
  7827. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title,
  7828. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre,
  7829. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s-,
  7830. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition,
  7831. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution,
  7832. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7833. grid-column: 2;
  7834. width: 100%;
  7835. box-sizing: border-box;
  7836. padding: 0;
  7837. margin: 0;
  7838. }
  7839. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-title {
  7840. grid-row: 3;
  7841. margin-bottom: 0.5rem;
  7842. }
  7843. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-sous-titre {
  7844. grid-row: 4;
  7845. }
  7846. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-auteur-s- {
  7847. grid-row: 5;
  7848. }
  7849. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-edition {
  7850. grid-row: 6;
  7851. line-height: 1;
  7852. }
  7853. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-date-de-parution {
  7854. grid-row: 7;
  7855. }
  7856. .type-les-projets-en-images.views-row article.node-type-ressource.type-les-projets-en-images .wrapper-ressource .field--name-field-mots-clefs {
  7857. grid-row: 8;
  7858. }
  7859. .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 {
  7860. margin: 0;
  7861. padding: 0;
  7862. }