bundle.css 341 KB

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