styles.css 320 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695
  1. /**
  2. * Primary Drupal Styles
  3. * Author: g-u-i.net
  4. */
  5. /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
  6. /**
  7. * 1. Set default font family to sans-serif.
  8. * 2. Prevent iOS text size adjust after orientation change, without disabling
  9. * user zoom.
  10. */
  11. @import url(../fonts/icon/foundation-icons.css);
  12. /* line 9, ../bower_components/foundation/scss/normalize.scss */
  13. html {
  14. font-family: sans-serif;
  15. /* 1 */
  16. -ms-text-size-adjust: 100%;
  17. /* 2 */
  18. -webkit-text-size-adjust: 100%;
  19. /* 2 */
  20. }
  21. /**
  22. * Remove default margin.
  23. */
  24. /* line 19, ../bower_components/foundation/scss/normalize.scss */
  25. body {
  26. margin: 0;
  27. }
  28. /* HTML5 display definitions
  29. ========================================================================== */
  30. /**
  31. * Correct `block` display not defined for any HTML5 element in IE 8/9.
  32. * Correct `block` display not defined for `details` or `summary` in IE 10/11
  33. * and Firefox.
  34. * Correct `block` display not defined for `main` in IE 11.
  35. */
  36. /* line 33, ../bower_components/foundation/scss/normalize.scss */
  37. article,
  38. aside,
  39. details,
  40. figcaption,
  41. figure,
  42. footer,
  43. header,
  44. hgroup,
  45. main,
  46. menu,
  47. nav,
  48. section,
  49. summary {
  50. display: block;
  51. }
  52. /**
  53. * 1. Correct `inline-block` display not defined in IE 8/9.
  54. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
  55. */
  56. /* line 54, ../bower_components/foundation/scss/normalize.scss */
  57. audio,
  58. canvas,
  59. progress,
  60. video {
  61. display: inline-block;
  62. /* 1 */
  63. vertical-align: baseline;
  64. /* 2 */
  65. }
  66. /**
  67. * Prevent modern browsers from displaying `audio` without controls.
  68. * Remove excess height in iOS 5 devices.
  69. */
  70. /* line 67, ../bower_components/foundation/scss/normalize.scss */
  71. audio:not([controls]) {
  72. display: none;
  73. height: 0;
  74. }
  75. /**
  76. * Address `[hidden]` styling not present in IE 8/9/10.
  77. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
  78. */
  79. /* line 77, ../bower_components/foundation/scss/normalize.scss */
  80. [hidden],
  81. template {
  82. display: none;
  83. }
  84. /* Links
  85. ========================================================================== */
  86. /**
  87. * Remove the gray background color from active links in IE 10.
  88. */
  89. /* line 89, ../bower_components/foundation/scss/normalize.scss */
  90. a {
  91. background-color: transparent;
  92. }
  93. /**
  94. * Improve readability when focused and also mouse hovered in all browsers.
  95. */
  96. /* line 97, ../bower_components/foundation/scss/normalize.scss */
  97. a:active,
  98. a:hover {
  99. outline: 0;
  100. }
  101. /* Text-level semantics
  102. ========================================================================== */
  103. /**
  104. * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
  105. */
  106. /* line 109, ../bower_components/foundation/scss/normalize.scss */
  107. abbr[title] {
  108. border-bottom: 1px dotted;
  109. }
  110. /**
  111. * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
  112. */
  113. /* line 117, ../bower_components/foundation/scss/normalize.scss */
  114. b,
  115. strong {
  116. font-weight: bold;
  117. }
  118. /**
  119. * Address styling not present in Safari and Chrome.
  120. */
  121. /* line 126, ../bower_components/foundation/scss/normalize.scss */
  122. dfn {
  123. font-style: italic;
  124. }
  125. /**
  126. * Address variable `h1` font-size and margin within `section` and `article`
  127. * contexts in Firefox 4+, Safari, and Chrome.
  128. */
  129. /* line 135, ../bower_components/foundation/scss/normalize.scss */
  130. h1 {
  131. font-size: 2em;
  132. margin: 0.67em 0;
  133. }
  134. /**
  135. * Address styling not present in IE 8/9.
  136. */
  137. /* line 144, ../bower_components/foundation/scss/normalize.scss */
  138. mark {
  139. background: #ff0;
  140. color: #000;
  141. }
  142. /**
  143. * Address inconsistent and variable font size in all browsers.
  144. */
  145. /* line 153, ../bower_components/foundation/scss/normalize.scss */
  146. small {
  147. font-size: 80%;
  148. }
  149. /**
  150. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  151. */
  152. /* line 161, ../bower_components/foundation/scss/normalize.scss */
  153. sub,
  154. sup {
  155. font-size: 75%;
  156. line-height: 0;
  157. position: relative;
  158. vertical-align: baseline;
  159. }
  160. /* line 169, ../bower_components/foundation/scss/normalize.scss */
  161. sup {
  162. top: -0.5em;
  163. }
  164. /* line 173, ../bower_components/foundation/scss/normalize.scss */
  165. sub {
  166. bottom: -0.25em;
  167. }
  168. /* Embedded content
  169. ========================================================================== */
  170. /**
  171. * Remove border when inside `a` element in IE 8/9/10.
  172. */
  173. /* line 184, ../bower_components/foundation/scss/normalize.scss */
  174. img {
  175. border: 0;
  176. }
  177. /**
  178. * Correct overflow not hidden in IE 9/10/11.
  179. */
  180. /* line 192, ../bower_components/foundation/scss/normalize.scss */
  181. svg:not(:root) {
  182. overflow: hidden;
  183. }
  184. /* Grouping content
  185. ========================================================================== */
  186. /**
  187. * Address margin not present in IE 8/9 and Safari.
  188. */
  189. /* line 203, ../bower_components/foundation/scss/normalize.scss */
  190. figure {
  191. margin: 1em 40px;
  192. }
  193. /**
  194. * Address differences between Firefox and other browsers.
  195. */
  196. /* line 211, ../bower_components/foundation/scss/normalize.scss */
  197. hr {
  198. box-sizing: content-box;
  199. height: 0;
  200. }
  201. /**
  202. * Contain overflow in all browsers.
  203. */
  204. /* line 221, ../bower_components/foundation/scss/normalize.scss */
  205. pre {
  206. overflow: auto;
  207. }
  208. /**
  209. * Address odd `em`-unit font size rendering in all browsers.
  210. */
  211. /* line 229, ../bower_components/foundation/scss/normalize.scss */
  212. code,
  213. kbd,
  214. pre,
  215. samp {
  216. font-family: monospace, monospace;
  217. font-size: 1em;
  218. }
  219. /* Forms
  220. ========================================================================== */
  221. /**
  222. * Known limitation: by default, Chrome and Safari on OS X allow very limited
  223. * styling of `select`, unless a `border` property is set.
  224. */
  225. /**
  226. * 1. Correct color not being inherited.
  227. * Known issue: affects color of disabled elements.
  228. * 2. Correct font properties not being inherited.
  229. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
  230. */
  231. /* line 252, ../bower_components/foundation/scss/normalize.scss */
  232. button,
  233. input,
  234. optgroup,
  235. select,
  236. textarea {
  237. color: inherit;
  238. /* 1 */
  239. font: inherit;
  240. /* 2 */
  241. margin: 0;
  242. /* 3 */
  243. }
  244. /**
  245. * Address `overflow` set to `hidden` in IE 8/9/10/11.
  246. */
  247. /* line 266, ../bower_components/foundation/scss/normalize.scss */
  248. button {
  249. overflow: visible;
  250. }
  251. /**
  252. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  253. * All other form control elements do not inherit `text-transform` values.
  254. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
  255. * Correct `select` style inheritance in Firefox.
  256. */
  257. /* line 277, ../bower_components/foundation/scss/normalize.scss */
  258. button,
  259. select {
  260. text-transform: none;
  261. }
  262. /**
  263. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  264. * and `video` controls.
  265. * 2. Correct inability to style clickable `input` types in iOS.
  266. * 3. Improve usability and consistency of cursor style between image-type
  267. * `input` and others.
  268. */
  269. /* line 290, ../bower_components/foundation/scss/normalize.scss */
  270. button,
  271. html input[type="button"],
  272. input[type="reset"],
  273. input[type="submit"] {
  274. -webkit-appearance: button;
  275. /* 2 */
  276. cursor: pointer;
  277. /* 3 */
  278. }
  279. /**
  280. * Re-set default cursor for disabled elements.
  281. */
  282. /* line 302, ../bower_components/foundation/scss/normalize.scss */
  283. button[disabled],
  284. html input[disabled] {
  285. cursor: default;
  286. }
  287. /**
  288. * Remove inner padding and border in Firefox 4+.
  289. */
  290. /* line 311, ../bower_components/foundation/scss/normalize.scss */
  291. button::-moz-focus-inner,
  292. input::-moz-focus-inner {
  293. border: 0;
  294. padding: 0;
  295. }
  296. /**
  297. * Address Firefox 4+ setting `line-height` on `input` using `!important` in
  298. * the UA stylesheet.
  299. */
  300. /* line 322, ../bower_components/foundation/scss/normalize.scss */
  301. input {
  302. line-height: normal;
  303. }
  304. /**
  305. * It's recommended that you don't attempt to style these elements.
  306. * Firefox's implementation doesn't respect box-sizing, padding, or width.
  307. *
  308. * 1. Address box sizing set to `content-box` in IE 8/9/10.
  309. * 2. Remove excess padding in IE 8/9/10.
  310. */
  311. /* line 334, ../bower_components/foundation/scss/normalize.scss */
  312. input[type="checkbox"],
  313. input[type="radio"] {
  314. box-sizing: border-box;
  315. /* 1 */
  316. padding: 0;
  317. /* 2 */
  318. }
  319. /**
  320. * Fix the cursor style for Chrome's increment/decrement buttons. For certain
  321. * `font-size` values of the `input`, it causes the cursor style of the
  322. * decrement button to change from `default` to `text`.
  323. */
  324. /* line 346, ../bower_components/foundation/scss/normalize.scss */
  325. input[type="number"]::-webkit-inner-spin-button,
  326. input[type="number"]::-webkit-outer-spin-button {
  327. height: auto;
  328. }
  329. /**
  330. * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
  331. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
  332. * (include `-moz` to future-proof).
  333. */
  334. /* line 357, ../bower_components/foundation/scss/normalize.scss */
  335. input[type="search"] {
  336. -webkit-appearance: textfield;
  337. /* 1 */
  338. /* 2 */
  339. box-sizing: content-box;
  340. }
  341. /**
  342. * Remove inner padding and search cancel button in Safari and Chrome on OS X.
  343. * Safari (but not Chrome) clips the cancel button when the search input has
  344. * padding (and `textfield` appearance).
  345. */
  346. /* line 370, ../bower_components/foundation/scss/normalize.scss */
  347. input[type="search"]::-webkit-search-cancel-button,
  348. input[type="search"]::-webkit-search-decoration {
  349. -webkit-appearance: none;
  350. }
  351. /**
  352. * Define consistent border, margin, and padding.
  353. */
  354. /* line 379, ../bower_components/foundation/scss/normalize.scss */
  355. fieldset {
  356. border: 1px solid #c0c0c0;
  357. margin: 0 2px;
  358. padding: 0.35em 0.625em 0.75em;
  359. }
  360. /**
  361. * 1. Correct `color` not being inherited in IE 8/9/10/11.
  362. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  363. */
  364. /* line 390, ../bower_components/foundation/scss/normalize.scss */
  365. legend {
  366. border: 0;
  367. /* 1 */
  368. padding: 0;
  369. /* 2 */
  370. }
  371. /**
  372. * Remove default vertical scrollbar in IE 8/9/10/11.
  373. */
  374. /* line 399, ../bower_components/foundation/scss/normalize.scss */
  375. textarea {
  376. overflow: auto;
  377. }
  378. /**
  379. * Don't inherit the `font-weight` (applied by a rule above).
  380. * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
  381. */
  382. /* line 408, ../bower_components/foundation/scss/normalize.scss */
  383. optgroup {
  384. font-weight: bold;
  385. }
  386. /* Tables
  387. ========================================================================== */
  388. /**
  389. * Remove most spacing between table cells.
  390. */
  391. /* line 419, ../bower_components/foundation/scss/normalize.scss */
  392. table {
  393. border-collapse: collapse;
  394. border-spacing: 0;
  395. }
  396. /* line 424, ../bower_components/foundation/scss/normalize.scss */
  397. td,
  398. th {
  399. padding: 0;
  400. }
  401. /* line 348, ../bower_components/foundation/scss/foundation/components/_global.scss */
  402. meta.foundation-version {
  403. font-family: "/5.5.1/";
  404. }
  405. /* line 352, ../bower_components/foundation/scss/foundation/components/_global.scss */
  406. meta.foundation-mq-small {
  407. font-family: "/only screen/";
  408. width: 0;
  409. }
  410. /* line 357, ../bower_components/foundation/scss/foundation/components/_global.scss */
  411. meta.foundation-mq-small-only {
  412. font-family: "/only screen and (max-width: 40em)/";
  413. width: 0;
  414. }
  415. /* line 362, ../bower_components/foundation/scss/foundation/components/_global.scss */
  416. meta.foundation-mq-medium {
  417. font-family: "/only screen and (min-width:40.063em)/";
  418. width: 40.063em;
  419. }
  420. /* line 367, ../bower_components/foundation/scss/foundation/components/_global.scss */
  421. meta.foundation-mq-medium-only {
  422. font-family: "/only screen and (min-width:40.063em) and (max-width:64em)/";
  423. width: 40.063em;
  424. }
  425. /* line 372, ../bower_components/foundation/scss/foundation/components/_global.scss */
  426. meta.foundation-mq-large {
  427. font-family: "/only screen and (min-width:64.063em)/";
  428. width: 64.063em;
  429. }
  430. /* line 377, ../bower_components/foundation/scss/foundation/components/_global.scss */
  431. meta.foundation-mq-large-only {
  432. font-family: "/only screen and (min-width:64.063em) and (max-width:90em)/";
  433. width: 64.063em;
  434. }
  435. /* line 382, ../bower_components/foundation/scss/foundation/components/_global.scss */
  436. meta.foundation-mq-xlarge {
  437. font-family: "/only screen and (min-width:90.063em)/";
  438. width: 90.063em;
  439. }
  440. /* line 387, ../bower_components/foundation/scss/foundation/components/_global.scss */
  441. meta.foundation-mq-xlarge-only {
  442. font-family: "/only screen and (min-width:90.063em) and (max-width:120em)/";
  443. width: 90.063em;
  444. }
  445. /* line 392, ../bower_components/foundation/scss/foundation/components/_global.scss */
  446. meta.foundation-mq-xxlarge {
  447. font-family: "/only screen and (min-width:120.063em)/";
  448. width: 120.063em;
  449. }
  450. /* line 397, ../bower_components/foundation/scss/foundation/components/_global.scss */
  451. meta.foundation-data-attribute-namespace {
  452. font-family: false;
  453. }
  454. /* line 404, ../bower_components/foundation/scss/foundation/components/_global.scss */
  455. html, body {
  456. height: 100%;
  457. }
  458. /* line 407, ../bower_components/foundation/scss/foundation/components/_global.scss */
  459. *,
  460. *:before,
  461. *:after {
  462. box-sizing: border-box;
  463. }
  464. /* line 413, ../bower_components/foundation/scss/foundation/components/_global.scss */
  465. html,
  466. body {
  467. font-size: 100%;
  468. }
  469. /* line 417, ../bower_components/foundation/scss/foundation/components/_global.scss */
  470. body {
  471. background: #fff;
  472. color: #222;
  473. padding: 0;
  474. margin: 0;
  475. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  476. font-weight: normal;
  477. font-style: normal;
  478. line-height: 1.5;
  479. position: relative;
  480. cursor: auto;
  481. }
  482. /* line 430, ../bower_components/foundation/scss/foundation/components/_global.scss */
  483. a:hover {
  484. cursor: pointer;
  485. }
  486. /* line 433, ../bower_components/foundation/scss/foundation/components/_global.scss */
  487. img {
  488. max-width: 100%;
  489. height: auto;
  490. }
  491. /* line 435, ../bower_components/foundation/scss/foundation/components/_global.scss */
  492. img {
  493. -ms-interpolation-mode: bicubic;
  494. }
  495. /* line 439, ../bower_components/foundation/scss/foundation/components/_global.scss */
  496. #map_canvas img,
  497. #map_canvas embed,
  498. #map_canvas object,
  499. .map_canvas img,
  500. .map_canvas embed,
  501. .map_canvas object {
  502. max-width: none !important;
  503. }
  504. /* line 446, ../bower_components/foundation/scss/foundation/components/_global.scss */
  505. .left {
  506. float: left !important;
  507. }
  508. /* line 447, ../bower_components/foundation/scss/foundation/components/_global.scss */
  509. .right {
  510. float: right !important;
  511. }
  512. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  513. .clearfix:before, .clearfix:after {
  514. content: " ";
  515. display: table;
  516. }
  517. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  518. .clearfix:after {
  519. clear: both;
  520. }
  521. /* line 451, ../bower_components/foundation/scss/foundation/components/_global.scss */
  522. .hide {
  523. display: none;
  524. }
  525. /* line 456, ../bower_components/foundation/scss/foundation/components/_global.scss */
  526. .invisible {
  527. visibility: hidden;
  528. }
  529. /* line 462, ../bower_components/foundation/scss/foundation/components/_global.scss */
  530. .antialiased {
  531. -webkit-font-smoothing: antialiased;
  532. -moz-osx-font-smoothing: grayscale;
  533. }
  534. /* line 465, ../bower_components/foundation/scss/foundation/components/_global.scss */
  535. img {
  536. display: inline-block;
  537. vertical-align: middle;
  538. }
  539. /* line 475, ../bower_components/foundation/scss/foundation/components/_global.scss */
  540. textarea {
  541. height: auto;
  542. min-height: 50px;
  543. }
  544. /* line 478, ../bower_components/foundation/scss/foundation/components/_global.scss */
  545. select {
  546. width: 100%;
  547. }
  548. /* line 155, ../bower_components/foundation/scss/foundation/components/_type.scss */
  549. .text-left {
  550. text-align: left !important;
  551. }
  552. /* line 156, ../bower_components/foundation/scss/foundation/components/_type.scss */
  553. .text-right {
  554. text-align: right !important;
  555. }
  556. /* line 157, ../bower_components/foundation/scss/foundation/components/_type.scss */
  557. .text-center {
  558. text-align: center !important;
  559. }
  560. /* line 158, ../bower_components/foundation/scss/foundation/components/_type.scss */
  561. .text-justify {
  562. text-align: justify !important;
  563. }
  564. @media only screen and (max-width: 40em) {
  565. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  566. .small-only-text-left {
  567. text-align: left !important;
  568. }
  569. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  570. .small-only-text-right {
  571. text-align: right !important;
  572. }
  573. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  574. .small-only-text-center {
  575. text-align: center !important;
  576. }
  577. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  578. .small-only-text-justify {
  579. text-align: justify !important;
  580. }
  581. }
  582. @media only screen {
  583. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  584. .small-text-left {
  585. text-align: left !important;
  586. }
  587. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  588. .small-text-right {
  589. text-align: right !important;
  590. }
  591. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  592. .small-text-center {
  593. text-align: center !important;
  594. }
  595. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  596. .small-text-justify {
  597. text-align: justify !important;
  598. }
  599. }
  600. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  601. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  602. .medium-only-text-left {
  603. text-align: left !important;
  604. }
  605. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  606. .medium-only-text-right {
  607. text-align: right !important;
  608. }
  609. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  610. .medium-only-text-center {
  611. text-align: center !important;
  612. }
  613. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  614. .medium-only-text-justify {
  615. text-align: justify !important;
  616. }
  617. }
  618. @media only screen and (min-width: 40.063em) {
  619. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  620. .medium-text-left {
  621. text-align: left !important;
  622. }
  623. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  624. .medium-text-right {
  625. text-align: right !important;
  626. }
  627. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  628. .medium-text-center {
  629. text-align: center !important;
  630. }
  631. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  632. .medium-text-justify {
  633. text-align: justify !important;
  634. }
  635. }
  636. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  637. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  638. .large-only-text-left {
  639. text-align: left !important;
  640. }
  641. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  642. .large-only-text-right {
  643. text-align: right !important;
  644. }
  645. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  646. .large-only-text-center {
  647. text-align: center !important;
  648. }
  649. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  650. .large-only-text-justify {
  651. text-align: justify !important;
  652. }
  653. }
  654. @media only screen and (min-width: 64.063em) {
  655. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  656. .large-text-left {
  657. text-align: left !important;
  658. }
  659. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  660. .large-text-right {
  661. text-align: right !important;
  662. }
  663. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  664. .large-text-center {
  665. text-align: center !important;
  666. }
  667. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  668. .large-text-justify {
  669. text-align: justify !important;
  670. }
  671. }
  672. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  673. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  674. .xlarge-only-text-left {
  675. text-align: left !important;
  676. }
  677. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  678. .xlarge-only-text-right {
  679. text-align: right !important;
  680. }
  681. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  682. .xlarge-only-text-center {
  683. text-align: center !important;
  684. }
  685. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  686. .xlarge-only-text-justify {
  687. text-align: justify !important;
  688. }
  689. }
  690. @media only screen and (min-width: 90.063em) {
  691. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  692. .xlarge-text-left {
  693. text-align: left !important;
  694. }
  695. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  696. .xlarge-text-right {
  697. text-align: right !important;
  698. }
  699. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  700. .xlarge-text-center {
  701. text-align: center !important;
  702. }
  703. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  704. .xlarge-text-justify {
  705. text-align: justify !important;
  706. }
  707. }
  708. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  709. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  710. .xxlarge-only-text-left {
  711. text-align: left !important;
  712. }
  713. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  714. .xxlarge-only-text-right {
  715. text-align: right !important;
  716. }
  717. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  718. .xxlarge-only-text-center {
  719. text-align: center !important;
  720. }
  721. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  722. .xxlarge-only-text-justify {
  723. text-align: justify !important;
  724. }
  725. }
  726. @media only screen and (min-width: 120.063em) {
  727. /* line 162, ../bower_components/foundation/scss/foundation/components/_type.scss */
  728. .xxlarge-text-left {
  729. text-align: left !important;
  730. }
  731. /* line 163, ../bower_components/foundation/scss/foundation/components/_type.scss */
  732. .xxlarge-text-right {
  733. text-align: right !important;
  734. }
  735. /* line 164, ../bower_components/foundation/scss/foundation/components/_type.scss */
  736. .xxlarge-text-center {
  737. text-align: center !important;
  738. }
  739. /* line 165, ../bower_components/foundation/scss/foundation/components/_type.scss */
  740. .xxlarge-text-justify {
  741. text-align: justify !important;
  742. }
  743. }
  744. /* Typography resets */
  745. /* line 193, ../bower_components/foundation/scss/foundation/components/_type.scss */
  746. div,
  747. dl,
  748. dt,
  749. dd,
  750. ul,
  751. ol,
  752. li,
  753. h1,
  754. h2,
  755. h3,
  756. h4,
  757. h5,
  758. h6,
  759. pre,
  760. form,
  761. p,
  762. blockquote,
  763. th,
  764. td {
  765. margin: 0;
  766. padding: 0;
  767. }
  768. /* Default Link Styles */
  769. /* line 217, ../bower_components/foundation/scss/foundation/components/_type.scss */
  770. a {
  771. color: #008CBA;
  772. text-decoration: none;
  773. line-height: inherit;
  774. }
  775. /* line 222, ../bower_components/foundation/scss/foundation/components/_type.scss */
  776. a:hover, a:focus {
  777. color: #0078a0;
  778. }
  779. /* line 230, ../bower_components/foundation/scss/foundation/components/_type.scss */
  780. a img {
  781. border: none;
  782. }
  783. /* Default paragraph styles */
  784. /* line 234, ../bower_components/foundation/scss/foundation/components/_type.scss */
  785. p {
  786. font-family: inherit;
  787. font-weight: normal;
  788. font-size: 1rem;
  789. line-height: 1.6;
  790. margin-bottom: 1.25rem;
  791. text-rendering: optimizeLegibility;
  792. }
  793. /* line 242, ../bower_components/foundation/scss/foundation/components/_type.scss */
  794. p.lead {
  795. font-size: 1.21875rem;
  796. line-height: 1.6;
  797. }
  798. /* line 244, ../bower_components/foundation/scss/foundation/components/_type.scss */
  799. p aside {
  800. font-size: 0.875rem;
  801. line-height: 1.35;
  802. font-style: italic;
  803. }
  804. /* Default header styles */
  805. /* line 252, ../bower_components/foundation/scss/foundation/components/_type.scss */
  806. h1, h2, h3, h4, h5, h6 {
  807. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  808. font-weight: normal;
  809. font-style: normal;
  810. color: #222222;
  811. text-rendering: optimizeLegibility;
  812. margin-top: 0.2rem;
  813. margin-bottom: 0.5rem;
  814. line-height: 1.4;
  815. }
  816. /* line 262, ../bower_components/foundation/scss/foundation/components/_type.scss */
  817. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  818. font-size: 60%;
  819. color: #6f6f6f;
  820. line-height: 0;
  821. }
  822. /* line 269, ../bower_components/foundation/scss/foundation/components/_type.scss */
  823. h1 {
  824. font-size: 2.125rem;
  825. }
  826. /* line 270, ../bower_components/foundation/scss/foundation/components/_type.scss */
  827. h2 {
  828. font-size: 1.6875rem;
  829. }
  830. /* line 271, ../bower_components/foundation/scss/foundation/components/_type.scss */
  831. h3 {
  832. font-size: 1.375rem;
  833. }
  834. /* line 272, ../bower_components/foundation/scss/foundation/components/_type.scss */
  835. h4 {
  836. font-size: 1.125rem;
  837. }
  838. /* line 273, ../bower_components/foundation/scss/foundation/components/_type.scss */
  839. h5 {
  840. font-size: 1.125rem;
  841. }
  842. /* line 274, ../bower_components/foundation/scss/foundation/components/_type.scss */
  843. h6 {
  844. font-size: 1rem;
  845. }
  846. /* line 276, ../bower_components/foundation/scss/foundation/components/_type.scss */
  847. .subheader {
  848. line-height: 1.4;
  849. color: #6f6f6f;
  850. font-weight: normal;
  851. margin-top: 0.2rem;
  852. margin-bottom: 0.5rem;
  853. }
  854. /* line 278, ../bower_components/foundation/scss/foundation/components/_type.scss */
  855. hr {
  856. border: solid #DDDDDD;
  857. border-width: 1px 0 0;
  858. clear: both;
  859. margin: 1.25rem 0 1.1875rem;
  860. height: 0;
  861. }
  862. /* Helpful Typography Defaults */
  863. /* line 287, ../bower_components/foundation/scss/foundation/components/_type.scss */
  864. em,
  865. i {
  866. font-style: italic;
  867. line-height: inherit;
  868. }
  869. /* line 293, ../bower_components/foundation/scss/foundation/components/_type.scss */
  870. strong,
  871. b {
  872. font-weight: bold;
  873. line-height: inherit;
  874. }
  875. /* line 299, ../bower_components/foundation/scss/foundation/components/_type.scss */
  876. small {
  877. font-size: 60%;
  878. line-height: inherit;
  879. }
  880. /* line 304, ../bower_components/foundation/scss/foundation/components/_type.scss */
  881. code {
  882. font-family: Consolas, "Liberation Mono", Courier, monospace;
  883. font-weight: normal;
  884. color: #333333;
  885. background-color: #f8f8f8;
  886. border-width: 1px;
  887. border-style: solid;
  888. border-color: #dfdfdf;
  889. padding: 0.125rem 0.3125rem 0.0625rem;
  890. }
  891. /* Lists */
  892. /* line 316, ../bower_components/foundation/scss/foundation/components/_type.scss */
  893. ul,
  894. ol,
  895. dl {
  896. font-size: 1rem;
  897. line-height: 1.6;
  898. margin-bottom: 1.25rem;
  899. list-style-position: outside;
  900. font-family: inherit;
  901. }
  902. /* line 326, ../bower_components/foundation/scss/foundation/components/_type.scss */
  903. ul {
  904. margin-left: 1.1rem;
  905. }
  906. /* line 328, ../bower_components/foundation/scss/foundation/components/_type.scss */
  907. ul.no-bullet {
  908. margin-left: 0;
  909. }
  910. /* line 331, ../bower_components/foundation/scss/foundation/components/_type.scss */
  911. ul.no-bullet li ul,
  912. ul.no-bullet li ol {
  913. margin-left: 1.25rem;
  914. margin-bottom: 0;
  915. list-style: none;
  916. }
  917. /* Unordered Lists */
  918. /* line 344, ../bower_components/foundation/scss/foundation/components/_type.scss */
  919. ul li ul,
  920. ul li ol {
  921. margin-left: 1.25rem;
  922. margin-bottom: 0;
  923. }
  924. /* line 353, ../bower_components/foundation/scss/foundation/components/_type.scss */
  925. ul.square li ul, ul.circle li ul, ul.disc li ul {
  926. list-style: inherit;
  927. }
  928. /* line 356, ../bower_components/foundation/scss/foundation/components/_type.scss */
  929. ul.square {
  930. list-style-type: square;
  931. margin-left: 1.1rem;
  932. }
  933. /* line 357, ../bower_components/foundation/scss/foundation/components/_type.scss */
  934. ul.circle {
  935. list-style-type: circle;
  936. margin-left: 1.1rem;
  937. }
  938. /* line 358, ../bower_components/foundation/scss/foundation/components/_type.scss */
  939. ul.disc {
  940. list-style-type: disc;
  941. margin-left: 1.1rem;
  942. }
  943. /* line 359, ../bower_components/foundation/scss/foundation/components/_type.scss */
  944. ul.no-bullet {
  945. list-style: none;
  946. }
  947. /* Ordered Lists */
  948. /* line 363, ../bower_components/foundation/scss/foundation/components/_type.scss */
  949. ol {
  950. margin-left: 1.4rem;
  951. }
  952. /* line 366, ../bower_components/foundation/scss/foundation/components/_type.scss */
  953. ol li ul,
  954. ol li ol {
  955. margin-left: 1.25rem;
  956. margin-bottom: 0;
  957. }
  958. /* Definition Lists */
  959. /* line 376, ../bower_components/foundation/scss/foundation/components/_type.scss */
  960. dl dt {
  961. margin-bottom: 0.3rem;
  962. font-weight: bold;
  963. }
  964. /* line 380, ../bower_components/foundation/scss/foundation/components/_type.scss */
  965. dl dd {
  966. margin-bottom: 0.75rem;
  967. }
  968. /* Abbreviations */
  969. /* line 384, ../bower_components/foundation/scss/foundation/components/_type.scss */
  970. abbr,
  971. acronym {
  972. text-transform: uppercase;
  973. font-size: 90%;
  974. color: #222;
  975. cursor: help;
  976. }
  977. /* line 391, ../bower_components/foundation/scss/foundation/components/_type.scss */
  978. abbr {
  979. text-transform: none;
  980. }
  981. /* line 393, ../bower_components/foundation/scss/foundation/components/_type.scss */
  982. abbr[title] {
  983. border-bottom: 1px dotted #DDDDDD;
  984. }
  985. /* Blockquotes */
  986. /* line 399, ../bower_components/foundation/scss/foundation/components/_type.scss */
  987. blockquote {
  988. margin: 0 0 1.25rem;
  989. padding: 0.5625rem 1.25rem 0 1.1875rem;
  990. border-left: 1px solid #DDDDDD;
  991. }
  992. /* line 404, ../bower_components/foundation/scss/foundation/components/_type.scss */
  993. blockquote cite {
  994. display: block;
  995. font-size: 0.8125rem;
  996. color: #555555;
  997. }
  998. /* line 408, ../bower_components/foundation/scss/foundation/components/_type.scss */
  999. blockquote cite:before {
  1000. content: "\2014 \0020";
  1001. }
  1002. /* line 412, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1003. blockquote cite a,
  1004. blockquote cite a:visited {
  1005. color: #555555;
  1006. }
  1007. /* line 418, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1008. blockquote,
  1009. blockquote p {
  1010. line-height: 1.6;
  1011. color: #6f6f6f;
  1012. }
  1013. /* Microformats */
  1014. /* line 425, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1015. .vcard {
  1016. display: inline-block;
  1017. margin: 0 0 1.25rem 0;
  1018. border: 1px solid #DDDDDD;
  1019. padding: 0.625rem 0.75rem;
  1020. }
  1021. /* line 431, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1022. .vcard li {
  1023. margin: 0;
  1024. display: block;
  1025. }
  1026. /* line 435, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1027. .vcard .fn {
  1028. font-weight: bold;
  1029. font-size: 0.9375rem;
  1030. }
  1031. /* line 442, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1032. .vevent .summary {
  1033. font-weight: bold;
  1034. }
  1035. /* line 444, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1036. .vevent abbr {
  1037. cursor: default;
  1038. text-decoration: none;
  1039. font-weight: bold;
  1040. border: none;
  1041. padding: 0 0.0625rem;
  1042. }
  1043. @media only screen and (min-width: 40.063em) {
  1044. /* line 455, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1045. h1, h2, h3, h4, h5, h6 {
  1046. line-height: 1.4;
  1047. }
  1048. /* line 456, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1049. h1 {
  1050. font-size: 2.75rem;
  1051. }
  1052. /* line 457, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1053. h2 {
  1054. font-size: 2.3125rem;
  1055. }
  1056. /* line 458, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1057. h3 {
  1058. font-size: 1.6875rem;
  1059. }
  1060. /* line 459, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1061. h4 {
  1062. font-size: 1.4375rem;
  1063. }
  1064. /* line 460, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1065. h5 {
  1066. font-size: 1.125rem;
  1067. }
  1068. /* line 461, ../bower_components/foundation/scss/foundation/components/_type.scss */
  1069. h6 {
  1070. font-size: 1rem;
  1071. }
  1072. }
  1073. /* Clearing Styles */
  1074. /* line 44, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1075. .clearing-thumbs, [data-clearing] {
  1076. margin-bottom: 0;
  1077. margin-left: 0;
  1078. list-style: none;
  1079. }
  1080. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1081. .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
  1082. content: " ";
  1083. display: table;
  1084. }
  1085. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1086. .clearing-thumbs:after, [data-clearing]:after {
  1087. clear: both;
  1088. }
  1089. /* line 50, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1090. .clearing-thumbs li, [data-clearing] li {
  1091. float: left;
  1092. margin-right: 10px;
  1093. }
  1094. /* line 55, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1095. .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
  1096. margin-right: 0;
  1097. }
  1098. /* line 60, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1099. .clearing-blackout {
  1100. background: #333333;
  1101. position: fixed;
  1102. width: 100%;
  1103. height: 100%;
  1104. top: 0;
  1105. left: 0;
  1106. z-index: 998;
  1107. }
  1108. /* line 69, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1109. .clearing-blackout .clearing-close {
  1110. display: block;
  1111. }
  1112. /* line 72, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1113. .clearing-container {
  1114. position: relative;
  1115. z-index: 998;
  1116. height: 100%;
  1117. overflow: hidden;
  1118. margin: 0;
  1119. }
  1120. /* line 80, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1121. .clearing-touch-label {
  1122. position: absolute;
  1123. top: 50%;
  1124. left: 50%;
  1125. color: #AAAAAA;
  1126. font-size: 0.6em;
  1127. }
  1128. /* line 88, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1129. .visible-img {
  1130. height: 95%;
  1131. position: relative;
  1132. }
  1133. /* line 92, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1134. .visible-img img {
  1135. position: absolute;
  1136. left: 50%;
  1137. top: 50%;
  1138. transform: translateY(-50%) translateX(-50%);
  1139. -webkit-transform: translateY(-50%) translateX(-50%);
  1140. -ms-transform: translateY(-50%) translateX(-50%);
  1141. max-height: 100%;
  1142. max-width: 100%;
  1143. }
  1144. /* line 111, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1145. .clearing-caption {
  1146. color: #CCCCCC;
  1147. font-size: 0.875em;
  1148. line-height: 1.3;
  1149. margin-bottom: 0;
  1150. text-align: center;
  1151. bottom: 0;
  1152. background: #333333;
  1153. width: 100%;
  1154. padding: 10px 30px 20px;
  1155. position: absolute;
  1156. left: 0;
  1157. }
  1158. /* line 125, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1159. .clearing-close {
  1160. z-index: 999;
  1161. padding-left: 20px;
  1162. padding-top: 10px;
  1163. font-size: 30px;
  1164. line-height: 1;
  1165. color: #CCCCCC;
  1166. display: none;
  1167. }
  1168. /* line 134, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1169. .clearing-close:hover, .clearing-close:focus {
  1170. color: #CCCCCC;
  1171. }
  1172. /* line 138, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1173. .clearing-assembled .clearing-container {
  1174. height: 100%;
  1175. }
  1176. /* line 139, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1177. .clearing-assembled .clearing-container .carousel > ul {
  1178. display: none;
  1179. }
  1180. /* line 143, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1181. .clearing-feature li {
  1182. display: none;
  1183. }
  1184. /* line 145, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1185. .clearing-feature li.clearing-featured-img {
  1186. display: block;
  1187. }
  1188. @media only screen and (min-width: 40.063em) {
  1189. /* line 152, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1190. .clearing-main-prev,
  1191. .clearing-main-next {
  1192. position: absolute;
  1193. height: 100%;
  1194. width: 40px;
  1195. top: 0;
  1196. }
  1197. /* line 158, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1198. .clearing-main-prev > span,
  1199. .clearing-main-next > span {
  1200. position: absolute;
  1201. top: 50%;
  1202. display: block;
  1203. width: 0;
  1204. height: 0;
  1205. border: solid 12px;
  1206. }
  1207. /* line 165, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1208. .clearing-main-prev > span:hover,
  1209. .clearing-main-next > span:hover {
  1210. opacity: 0.8;
  1211. }
  1212. /* line 168, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1213. .clearing-main-prev {
  1214. left: 0;
  1215. }
  1216. /* line 170, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1217. .clearing-main-prev > span {
  1218. left: 5px;
  1219. border-color: transparent;
  1220. border-right-color: #CCCCCC;
  1221. }
  1222. /* line 176, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1223. .clearing-main-next {
  1224. right: 0;
  1225. }
  1226. /* line 178, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1227. .clearing-main-next > span {
  1228. border-color: transparent;
  1229. border-left-color: #CCCCCC;
  1230. }
  1231. /* line 184, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1232. .clearing-main-prev.disabled,
  1233. .clearing-main-next.disabled {
  1234. opacity: 0.3;
  1235. }
  1236. /* line 189, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1237. .clearing-assembled .clearing-container .carousel {
  1238. background: rgba(51, 51, 51, 0.8);
  1239. height: 120px;
  1240. margin-top: 10px;
  1241. text-align: center;
  1242. }
  1243. /* line 195, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1244. .clearing-assembled .clearing-container .carousel > ul {
  1245. display: inline-block;
  1246. z-index: 999;
  1247. height: 100%;
  1248. position: relative;
  1249. float: none;
  1250. }
  1251. /* line 202, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1252. .clearing-assembled .clearing-container .carousel > ul li {
  1253. display: block;
  1254. width: 120px;
  1255. min-height: inherit;
  1256. float: left;
  1257. overflow: hidden;
  1258. margin-right: 0;
  1259. padding: 0;
  1260. position: relative;
  1261. cursor: pointer;
  1262. opacity: 0.4;
  1263. clear: none;
  1264. }
  1265. /* line 216, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1266. .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
  1267. height: 100%;
  1268. max-width: none;
  1269. }
  1270. /* line 222, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1271. .clearing-assembled .clearing-container .carousel > ul li a.th {
  1272. border: none;
  1273. box-shadow: none;
  1274. display: block;
  1275. }
  1276. /* line 228, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1277. .clearing-assembled .clearing-container .carousel > ul li img {
  1278. cursor: pointer !important;
  1279. width: 100% !important;
  1280. }
  1281. /* line 233, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1282. .clearing-assembled .clearing-container .carousel > ul li.visible {
  1283. opacity: 1;
  1284. }
  1285. /* line 234, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1286. .clearing-assembled .clearing-container .carousel > ul li:hover {
  1287. opacity: 0.8;
  1288. }
  1289. /* line 239, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1290. .clearing-assembled .clearing-container .visible-img {
  1291. background: #333333;
  1292. overflow: hidden;
  1293. height: 85%;
  1294. }
  1295. /* line 246, ../bower_components/foundation/scss/foundation/components/_clearing.scss */
  1296. .clearing-close {
  1297. position: absolute;
  1298. top: 10px;
  1299. right: 20px;
  1300. padding-left: 0;
  1301. padding-top: 0;
  1302. }
  1303. }
  1304. /* line 53, ../bower_components/foundation/scss/foundation/components/_inline-lists.scss */
  1305. .inline-list {
  1306. margin: 0 auto 1.0625rem auto;
  1307. margin-left: -1.375rem;
  1308. margin-right: 0;
  1309. padding: 0;
  1310. list-style: none;
  1311. overflow: hidden;
  1312. }
  1313. /* line 42, ../bower_components/foundation/scss/foundation/components/_inline-lists.scss */
  1314. .inline-list > li {
  1315. list-style: none;
  1316. float: left;
  1317. margin-left: 1.375rem;
  1318. display: block;
  1319. }
  1320. /* line 47, ../bower_components/foundation/scss/foundation/components/_inline-lists.scss */
  1321. .inline-list > li > * {
  1322. display: block;
  1323. }
  1324. /* line 217, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1325. button, .button {
  1326. border-style: solid;
  1327. border-width: 0;
  1328. cursor: pointer;
  1329. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  1330. font-weight: normal;
  1331. line-height: normal;
  1332. margin: 0 0 1.25rem;
  1333. position: relative;
  1334. text-decoration: none;
  1335. text-align: center;
  1336. -webkit-appearance: none;
  1337. -moz-appearance: none;
  1338. border-radius: 0;
  1339. display: inline-block;
  1340. padding-top: 1rem;
  1341. padding-right: 2rem;
  1342. padding-bottom: 1.0625rem;
  1343. padding-left: 2rem;
  1344. font-size: 1rem;
  1345. background-color: #008CBA;
  1346. border-color: #007095;
  1347. color: #FFFFFF;
  1348. -webkit-transition: background-color 300ms ease-out;
  1349. transition: background-color 300ms ease-out;
  1350. }
  1351. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1352. button:hover, button:focus, .button:hover, .button:focus {
  1353. background-color: #007095;
  1354. }
  1355. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1356. button:hover, button:focus, .button:hover, .button:focus {
  1357. color: #FFFFFF;
  1358. }
  1359. /* line 224, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1360. button.secondary, .button.secondary {
  1361. background-color: #e7e7e7;
  1362. border-color: #b9b9b9;
  1363. color: #333333;
  1364. }
  1365. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1366. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  1367. background-color: #b9b9b9;
  1368. }
  1369. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1370. button.secondary:hover, button.secondary:focus, .button.secondary:hover, .button.secondary:focus {
  1371. color: #333333;
  1372. }
  1373. /* line 225, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1374. button.success, .button.success {
  1375. background-color: #43AC6A;
  1376. border-color: #368a55;
  1377. color: #FFFFFF;
  1378. }
  1379. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1380. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  1381. background-color: #368a55;
  1382. }
  1383. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1384. button.success:hover, button.success:focus, .button.success:hover, .button.success:focus {
  1385. color: #FFFFFF;
  1386. }
  1387. /* line 226, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1388. button.alert, .button.alert {
  1389. background-color: #f04124;
  1390. border-color: #cf2a0e;
  1391. color: #FFFFFF;
  1392. }
  1393. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1394. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  1395. background-color: #cf2a0e;
  1396. }
  1397. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1398. button.alert:hover, button.alert:focus, .button.alert:hover, .button.alert:focus {
  1399. color: #FFFFFF;
  1400. }
  1401. /* line 227, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1402. button.warning, .button.warning {
  1403. background-color: #f08a24;
  1404. border-color: #cf6e0e;
  1405. color: #FFFFFF;
  1406. }
  1407. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1408. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  1409. background-color: #cf6e0e;
  1410. }
  1411. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1412. button.warning:hover, button.warning:focus, .button.warning:hover, .button.warning:focus {
  1413. color: #FFFFFF;
  1414. }
  1415. /* line 228, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1416. button.info, .button.info {
  1417. background-color: #a0d3e8;
  1418. border-color: #61b6d9;
  1419. color: #333333;
  1420. }
  1421. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1422. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1423. background-color: #61b6d9;
  1424. }
  1425. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1426. button.info:hover, button.info:focus, .button.info:hover, .button.info:focus {
  1427. color: #FFFFFF;
  1428. }
  1429. /* line 230, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1430. button.large, .button.large {
  1431. padding-top: 1.125rem;
  1432. padding-right: 2.25rem;
  1433. padding-bottom: 1.1875rem;
  1434. padding-left: 2.25rem;
  1435. font-size: 1.25rem;
  1436. }
  1437. /* line 231, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1438. button.small, .button.small {
  1439. padding-top: 0.875rem;
  1440. padding-right: 1.75rem;
  1441. padding-bottom: 0.9375rem;
  1442. padding-left: 1.75rem;
  1443. font-size: 0.8125rem;
  1444. }
  1445. /* line 232, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1446. button.tiny, .button.tiny {
  1447. padding-top: 0.625rem;
  1448. padding-right: 1.25rem;
  1449. padding-bottom: 0.6875rem;
  1450. padding-left: 1.25rem;
  1451. font-size: 0.6875rem;
  1452. }
  1453. /* line 233, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1454. button.expand, .button.expand {
  1455. padding-right: 0;
  1456. padding-left: 0;
  1457. width: 100%;
  1458. }
  1459. /* line 235, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1460. button.left-align, .button.left-align {
  1461. text-align: left;
  1462. text-indent: 0.75rem;
  1463. }
  1464. /* line 236, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1465. button.right-align, .button.right-align {
  1466. text-align: right;
  1467. padding-right: 0.75rem;
  1468. }
  1469. /* line 238, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1470. button.radius, .button.radius {
  1471. border-radius: 3px;
  1472. }
  1473. /* line 239, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1474. button.round, .button.round {
  1475. border-radius: 1000px;
  1476. }
  1477. /* line 241, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1478. button.disabled, button[disabled], .button.disabled, .button[disabled] {
  1479. background-color: #008CBA;
  1480. border-color: #007095;
  1481. color: #FFFFFF;
  1482. cursor: default;
  1483. opacity: 0.7;
  1484. box-shadow: none;
  1485. }
  1486. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1487. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1488. background-color: #007095;
  1489. }
  1490. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1491. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1492. color: #FFFFFF;
  1493. }
  1494. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1495. button.disabled:hover, button.disabled:focus, button[disabled]:hover, button[disabled]:focus, .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  1496. background-color: #008CBA;
  1497. }
  1498. /* line 242, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1499. button.disabled.secondary, button[disabled].secondary, .button.disabled.secondary, .button[disabled].secondary {
  1500. background-color: #e7e7e7;
  1501. border-color: #b9b9b9;
  1502. color: #333333;
  1503. cursor: default;
  1504. opacity: 0.7;
  1505. box-shadow: none;
  1506. }
  1507. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1508. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1509. background-color: #b9b9b9;
  1510. }
  1511. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1512. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1513. color: #333333;
  1514. }
  1515. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1516. button.disabled.secondary:hover, button.disabled.secondary:focus, button[disabled].secondary:hover, button[disabled].secondary:focus, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  1517. background-color: #e7e7e7;
  1518. }
  1519. /* line 243, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1520. button.disabled.success, button[disabled].success, .button.disabled.success, .button[disabled].success {
  1521. background-color: #43AC6A;
  1522. border-color: #368a55;
  1523. color: #FFFFFF;
  1524. cursor: default;
  1525. opacity: 0.7;
  1526. box-shadow: none;
  1527. }
  1528. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1529. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1530. background-color: #368a55;
  1531. }
  1532. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1533. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1534. color: #FFFFFF;
  1535. }
  1536. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1537. button.disabled.success:hover, button.disabled.success:focus, button[disabled].success:hover, button[disabled].success:focus, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
  1538. background-color: #43AC6A;
  1539. }
  1540. /* line 244, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1541. button.disabled.alert, button[disabled].alert, .button.disabled.alert, .button[disabled].alert {
  1542. background-color: #f04124;
  1543. border-color: #cf2a0e;
  1544. color: #FFFFFF;
  1545. cursor: default;
  1546. opacity: 0.7;
  1547. box-shadow: none;
  1548. }
  1549. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1550. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1551. background-color: #cf2a0e;
  1552. }
  1553. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1554. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1555. color: #FFFFFF;
  1556. }
  1557. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1558. button.disabled.alert:hover, button.disabled.alert:focus, button[disabled].alert:hover, button[disabled].alert:focus, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
  1559. background-color: #f04124;
  1560. }
  1561. /* line 245, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1562. button.disabled.warning, button[disabled].warning, .button.disabled.warning, .button[disabled].warning {
  1563. background-color: #f08a24;
  1564. border-color: #cf6e0e;
  1565. color: #FFFFFF;
  1566. cursor: default;
  1567. opacity: 0.7;
  1568. box-shadow: none;
  1569. }
  1570. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1571. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1572. background-color: #cf6e0e;
  1573. }
  1574. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1575. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1576. color: #FFFFFF;
  1577. }
  1578. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1579. button.disabled.warning:hover, button.disabled.warning:focus, button[disabled].warning:hover, button[disabled].warning:focus, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
  1580. background-color: #f08a24;
  1581. }
  1582. /* line 246, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1583. button.disabled.info, button[disabled].info, .button.disabled.info, .button[disabled].info {
  1584. background-color: #a0d3e8;
  1585. border-color: #61b6d9;
  1586. color: #333333;
  1587. cursor: default;
  1588. opacity: 0.7;
  1589. box-shadow: none;
  1590. }
  1591. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1592. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1593. background-color: #61b6d9;
  1594. }
  1595. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1596. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1597. color: #FFFFFF;
  1598. }
  1599. /* line 179, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1600. button.disabled.info:hover, button.disabled.info:focus, button[disabled].info:hover, button[disabled].info:focus, .button.disabled.info:hover, .button.disabled.info:focus, .button[disabled].info:hover, .button[disabled].info:focus {
  1601. background-color: #a0d3e8;
  1602. }
  1603. /* line 251, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1604. button::-moz-focus-inner {
  1605. border: 0;
  1606. padding: 0;
  1607. }
  1608. @media only screen and (min-width: 40.063em) {
  1609. /* line 254, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  1610. button, .button {
  1611. display: inline-block;
  1612. }
  1613. }
  1614. /* line 151, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1615. .button-group {
  1616. list-style: none;
  1617. margin: 0;
  1618. left: 0;
  1619. }
  1620. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1621. .button-group:before, .button-group:after {
  1622. content: " ";
  1623. display: table;
  1624. }
  1625. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  1626. .button-group:after {
  1627. clear: both;
  1628. }
  1629. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1630. .button-group.even-2 li {
  1631. margin: 0 -2px;
  1632. display: inline-block;
  1633. width: 50%;
  1634. }
  1635. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1636. .button-group.even-2 li > button, .button-group.even-2 li .button {
  1637. border-left: 1px solid;
  1638. border-color: rgba(255, 255, 255, 0.5);
  1639. }
  1640. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1641. .button-group.even-2 li:first-child button, .button-group.even-2 li:first-child .button {
  1642. border-left: 0;
  1643. }
  1644. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1645. .button-group.even-2 li button, .button-group.even-2 li .button {
  1646. width: 100%;
  1647. }
  1648. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1649. .button-group.even-3 li {
  1650. margin: 0 -2px;
  1651. display: inline-block;
  1652. width: 33.33333%;
  1653. }
  1654. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1655. .button-group.even-3 li > button, .button-group.even-3 li .button {
  1656. border-left: 1px solid;
  1657. border-color: rgba(255, 255, 255, 0.5);
  1658. }
  1659. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1660. .button-group.even-3 li:first-child button, .button-group.even-3 li:first-child .button {
  1661. border-left: 0;
  1662. }
  1663. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1664. .button-group.even-3 li button, .button-group.even-3 li .button {
  1665. width: 100%;
  1666. }
  1667. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1668. .button-group.even-4 li {
  1669. margin: 0 -2px;
  1670. display: inline-block;
  1671. width: 25%;
  1672. }
  1673. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1674. .button-group.even-4 li > button, .button-group.even-4 li .button {
  1675. border-left: 1px solid;
  1676. border-color: rgba(255, 255, 255, 0.5);
  1677. }
  1678. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1679. .button-group.even-4 li:first-child button, .button-group.even-4 li:first-child .button {
  1680. border-left: 0;
  1681. }
  1682. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1683. .button-group.even-4 li button, .button-group.even-4 li .button {
  1684. width: 100%;
  1685. }
  1686. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1687. .button-group.even-5 li {
  1688. margin: 0 -2px;
  1689. display: inline-block;
  1690. width: 20%;
  1691. }
  1692. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1693. .button-group.even-5 li > button, .button-group.even-5 li .button {
  1694. border-left: 1px solid;
  1695. border-color: rgba(255, 255, 255, 0.5);
  1696. }
  1697. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1698. .button-group.even-5 li:first-child button, .button-group.even-5 li:first-child .button {
  1699. border-left: 0;
  1700. }
  1701. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1702. .button-group.even-5 li button, .button-group.even-5 li .button {
  1703. width: 100%;
  1704. }
  1705. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1706. .button-group.even-6 li {
  1707. margin: 0 -2px;
  1708. display: inline-block;
  1709. width: 16.66667%;
  1710. }
  1711. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1712. .button-group.even-6 li > button, .button-group.even-6 li .button {
  1713. border-left: 1px solid;
  1714. border-color: rgba(255, 255, 255, 0.5);
  1715. }
  1716. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1717. .button-group.even-6 li:first-child button, .button-group.even-6 li:first-child .button {
  1718. border-left: 0;
  1719. }
  1720. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1721. .button-group.even-6 li button, .button-group.even-6 li .button {
  1722. width: 100%;
  1723. }
  1724. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1725. .button-group.even-7 li {
  1726. margin: 0 -2px;
  1727. display: inline-block;
  1728. width: 14.28571%;
  1729. }
  1730. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1731. .button-group.even-7 li > button, .button-group.even-7 li .button {
  1732. border-left: 1px solid;
  1733. border-color: rgba(255, 255, 255, 0.5);
  1734. }
  1735. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1736. .button-group.even-7 li:first-child button, .button-group.even-7 li:first-child .button {
  1737. border-left: 0;
  1738. }
  1739. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1740. .button-group.even-7 li button, .button-group.even-7 li .button {
  1741. width: 100%;
  1742. }
  1743. /* line 154, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1744. .button-group.even-8 li {
  1745. margin: 0 -2px;
  1746. display: inline-block;
  1747. width: 12.5%;
  1748. }
  1749. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1750. .button-group.even-8 li > button, .button-group.even-8 li .button {
  1751. border-left: 1px solid;
  1752. border-color: rgba(255, 255, 255, 0.5);
  1753. }
  1754. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1755. .button-group.even-8 li:first-child button, .button-group.even-8 li:first-child .button {
  1756. border-left: 0;
  1757. }
  1758. /* line 145, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1759. .button-group.even-8 li button, .button-group.even-8 li .button {
  1760. width: 100%;
  1761. }
  1762. /* line 157, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1763. .button-group > li {
  1764. margin: 0 -2px;
  1765. display: inline-block;
  1766. }
  1767. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1768. .button-group > li > button, .button-group > li .button {
  1769. border-left: 1px solid;
  1770. border-color: rgba(255, 255, 255, 0.5);
  1771. }
  1772. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1773. .button-group > li:first-child button, .button-group > li:first-child .button {
  1774. border-left: 0;
  1775. }
  1776. /* line 160, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1777. .button-group.stack > li {
  1778. margin: 0 -2px;
  1779. display: inline-block;
  1780. display: block;
  1781. margin: 0;
  1782. float: none;
  1783. }
  1784. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1785. .button-group.stack > li > button, .button-group.stack > li .button {
  1786. border-left: 1px solid;
  1787. border-color: rgba(255, 255, 255, 0.5);
  1788. }
  1789. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1790. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1791. border-left: 0;
  1792. }
  1793. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1794. .button-group.stack > li > button, .button-group.stack > li .button {
  1795. border-top: 1px solid;
  1796. border-color: rgba(255, 255, 255, 0.5);
  1797. border-left-width: 0;
  1798. margin: 0;
  1799. display: block;
  1800. }
  1801. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1802. .button-group.stack > li > button {
  1803. width: 100%;
  1804. }
  1805. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1806. .button-group.stack > li:first-child button, .button-group.stack > li:first-child .button {
  1807. border-top: 0;
  1808. }
  1809. /* line 164, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1810. .button-group.stack-for-small > li {
  1811. margin: 0 -2px;
  1812. display: inline-block;
  1813. }
  1814. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1815. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1816. border-left: 1px solid;
  1817. border-color: rgba(255, 255, 255, 0.5);
  1818. }
  1819. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1820. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1821. border-left: 0;
  1822. }
  1823. @media only screen and (max-width: 40em) {
  1824. /* line 164, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1825. .button-group.stack-for-small > li {
  1826. margin: 0 -2px;
  1827. display: inline-block;
  1828. display: block;
  1829. margin: 0;
  1830. }
  1831. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1832. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1833. border-left: 1px solid;
  1834. border-color: rgba(255, 255, 255, 0.5);
  1835. }
  1836. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1837. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1838. border-left: 0;
  1839. }
  1840. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1841. .button-group.stack-for-small > li > button, .button-group.stack-for-small > li .button {
  1842. border-top: 1px solid;
  1843. border-color: rgba(255, 255, 255, 0.5);
  1844. border-left-width: 0;
  1845. margin: 0;
  1846. display: block;
  1847. }
  1848. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1849. .button-group.stack-for-small > li > button {
  1850. width: 100%;
  1851. }
  1852. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1853. .button-group.stack-for-small > li:first-child button, .button-group.stack-for-small > li:first-child .button {
  1854. border-top: 0;
  1855. }
  1856. }
  1857. /* line 172, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1858. .button-group.radius > * {
  1859. margin: 0 -2px;
  1860. display: inline-block;
  1861. }
  1862. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1863. .button-group.radius > * > button, .button-group.radius > * .button {
  1864. border-left: 1px solid;
  1865. border-color: rgba(255, 255, 255, 0.5);
  1866. }
  1867. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1868. .button-group.radius > *:first-child button, .button-group.radius > *:first-child .button {
  1869. border-left: 0;
  1870. }
  1871. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1872. .button-group.radius > *, .button-group.radius > * > a, .button-group.radius > * > button, .button-group.radius > * > .button {
  1873. border-radius: 0;
  1874. }
  1875. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1876. .button-group.radius > *:first-child, .button-group.radius > *:first-child > a, .button-group.radius > *:first-child > button, .button-group.radius > *:first-child > .button {
  1877. -webkit-border-bottom-left-radius: 3px;
  1878. -webkit-border-top-left-radius: 3px;
  1879. border-bottom-left-radius: 3px;
  1880. border-top-left-radius: 3px;
  1881. }
  1882. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1883. .button-group.radius > *:last-child, .button-group.radius > *:last-child > a, .button-group.radius > *:last-child > button, .button-group.radius > *:last-child > .button {
  1884. -webkit-border-bottom-right-radius: 3px;
  1885. -webkit-border-top-right-radius: 3px;
  1886. border-bottom-right-radius: 3px;
  1887. border-top-right-radius: 3px;
  1888. }
  1889. /* line 173, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1890. .button-group.radius.stack > * {
  1891. margin: 0 -2px;
  1892. display: inline-block;
  1893. display: block;
  1894. margin: 0;
  1895. }
  1896. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1897. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1898. border-left: 1px solid;
  1899. border-color: rgba(255, 255, 255, 0.5);
  1900. }
  1901. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1902. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1903. border-left: 0;
  1904. }
  1905. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1906. .button-group.radius.stack > * > button, .button-group.radius.stack > * .button {
  1907. border-top: 1px solid;
  1908. border-color: rgba(255, 255, 255, 0.5);
  1909. border-left-width: 0;
  1910. margin: 0;
  1911. display: block;
  1912. }
  1913. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1914. .button-group.radius.stack > * > button {
  1915. width: 100%;
  1916. }
  1917. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1918. .button-group.radius.stack > *:first-child button, .button-group.radius.stack > *:first-child .button {
  1919. border-top: 0;
  1920. }
  1921. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1922. .button-group.radius.stack > *, .button-group.radius.stack > * > a, .button-group.radius.stack > * > button, .button-group.radius.stack > * > .button {
  1923. border-radius: 0;
  1924. }
  1925. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1926. .button-group.radius.stack > *:first-child, .button-group.radius.stack > *:first-child > a, .button-group.radius.stack > *:first-child > button, .button-group.radius.stack > *:first-child > .button {
  1927. -webkit-top-left-radius: 3px;
  1928. -webkit-top-right-radius: 3px;
  1929. border-top-left-radius: 3px;
  1930. border-top-right-radius: 3px;
  1931. }
  1932. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1933. .button-group.radius.stack > *:last-child, .button-group.radius.stack > *:last-child > a, .button-group.radius.stack > *:last-child > button, .button-group.radius.stack > *:last-child > .button {
  1934. -webkit-bottom-left-radius: 3px;
  1935. -webkit-bottom-right-radius: 3px;
  1936. border-bottom-left-radius: 3px;
  1937. border-bottom-right-radius: 3px;
  1938. }
  1939. @media only screen and (min-width: 40.063em) {
  1940. /* line 174, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1941. .button-group.radius.stack-for-small > * {
  1942. margin: 0 -2px;
  1943. display: inline-block;
  1944. }
  1945. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1946. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1947. border-left: 1px solid;
  1948. border-color: rgba(255, 255, 255, 0.5);
  1949. }
  1950. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1951. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1952. border-left: 0;
  1953. }
  1954. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1955. .button-group.radius.stack-for-small > *, .button-group.radius.stack-for-small > * > a, .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * > .button {
  1956. border-radius: 0;
  1957. }
  1958. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1959. .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
  1960. -webkit-border-bottom-left-radius: 3px;
  1961. -webkit-border-top-left-radius: 3px;
  1962. border-bottom-left-radius: 3px;
  1963. border-top-left-radius: 3px;
  1964. }
  1965. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1966. .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
  1967. -webkit-border-bottom-right-radius: 3px;
  1968. -webkit-border-top-right-radius: 3px;
  1969. border-bottom-right-radius: 3px;
  1970. border-top-right-radius: 3px;
  1971. }
  1972. }
  1973. @media only screen and (max-width: 40em) {
  1974. /* line 174, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1975. .button-group.radius.stack-for-small > * {
  1976. margin: 0 -2px;
  1977. display: inline-block;
  1978. display: block;
  1979. margin: 0;
  1980. }
  1981. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1982. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1983. border-left: 1px solid;
  1984. border-color: rgba(255, 255, 255, 0.5);
  1985. }
  1986. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1987. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  1988. border-left: 0;
  1989. }
  1990. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1991. .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * .button {
  1992. border-top: 1px solid;
  1993. border-color: rgba(255, 255, 255, 0.5);
  1994. border-left-width: 0;
  1995. margin: 0;
  1996. display: block;
  1997. }
  1998. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  1999. .button-group.radius.stack-for-small > * > button {
  2000. width: 100%;
  2001. }
  2002. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2003. .button-group.radius.stack-for-small > *:first-child button, .button-group.radius.stack-for-small > *:first-child .button {
  2004. border-top: 0;
  2005. }
  2006. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2007. .button-group.radius.stack-for-small > *, .button-group.radius.stack-for-small > * > a, .button-group.radius.stack-for-small > * > button, .button-group.radius.stack-for-small > * > .button {
  2008. border-radius: 0;
  2009. }
  2010. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2011. .button-group.radius.stack-for-small > *:first-child, .button-group.radius.stack-for-small > *:first-child > a, .button-group.radius.stack-for-small > *:first-child > button, .button-group.radius.stack-for-small > *:first-child > .button {
  2012. -webkit-top-left-radius: 3px;
  2013. -webkit-top-right-radius: 3px;
  2014. border-top-left-radius: 3px;
  2015. border-top-right-radius: 3px;
  2016. }
  2017. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2018. .button-group.radius.stack-for-small > *:last-child, .button-group.radius.stack-for-small > *:last-child > a, .button-group.radius.stack-for-small > *:last-child > button, .button-group.radius.stack-for-small > *:last-child > .button {
  2019. -webkit-bottom-left-radius: 3px;
  2020. -webkit-bottom-right-radius: 3px;
  2021. border-bottom-left-radius: 3px;
  2022. border-bottom-right-radius: 3px;
  2023. }
  2024. }
  2025. /* line 183, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2026. .button-group.round > * {
  2027. margin: 0 -2px;
  2028. display: inline-block;
  2029. }
  2030. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2031. .button-group.round > * > button, .button-group.round > * .button {
  2032. border-left: 1px solid;
  2033. border-color: rgba(255, 255, 255, 0.5);
  2034. }
  2035. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2036. .button-group.round > *:first-child button, .button-group.round > *:first-child .button {
  2037. border-left: 0;
  2038. }
  2039. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2040. .button-group.round > *, .button-group.round > * > a, .button-group.round > * > button, .button-group.round > * > .button {
  2041. border-radius: 0;
  2042. }
  2043. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2044. .button-group.round > *:first-child, .button-group.round > *:first-child > a, .button-group.round > *:first-child > button, .button-group.round > *:first-child > .button {
  2045. -webkit-border-bottom-left-radius: 1000px;
  2046. -webkit-border-top-left-radius: 1000px;
  2047. border-bottom-left-radius: 1000px;
  2048. border-top-left-radius: 1000px;
  2049. }
  2050. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2051. .button-group.round > *:last-child, .button-group.round > *:last-child > a, .button-group.round > *:last-child > button, .button-group.round > *:last-child > .button {
  2052. -webkit-border-bottom-right-radius: 1000px;
  2053. -webkit-border-top-right-radius: 1000px;
  2054. border-bottom-right-radius: 1000px;
  2055. border-top-right-radius: 1000px;
  2056. }
  2057. /* line 184, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2058. .button-group.round.stack > * {
  2059. margin: 0 -2px;
  2060. display: inline-block;
  2061. display: block;
  2062. margin: 0;
  2063. }
  2064. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2065. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  2066. border-left: 1px solid;
  2067. border-color: rgba(255, 255, 255, 0.5);
  2068. }
  2069. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2070. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  2071. border-left: 0;
  2072. }
  2073. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2074. .button-group.round.stack > * > button, .button-group.round.stack > * .button {
  2075. border-top: 1px solid;
  2076. border-color: rgba(255, 255, 255, 0.5);
  2077. border-left-width: 0;
  2078. margin: 0;
  2079. display: block;
  2080. }
  2081. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2082. .button-group.round.stack > * > button {
  2083. width: 100%;
  2084. }
  2085. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2086. .button-group.round.stack > *:first-child button, .button-group.round.stack > *:first-child .button {
  2087. border-top: 0;
  2088. }
  2089. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2090. .button-group.round.stack > *, .button-group.round.stack > * > a, .button-group.round.stack > * > button, .button-group.round.stack > * > .button {
  2091. border-radius: 0;
  2092. }
  2093. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2094. .button-group.round.stack > *:first-child, .button-group.round.stack > *:first-child > a, .button-group.round.stack > *:first-child > button, .button-group.round.stack > *:first-child > .button {
  2095. -webkit-top-left-radius: 1rem;
  2096. -webkit-top-right-radius: 1rem;
  2097. border-top-left-radius: 1rem;
  2098. border-top-right-radius: 1rem;
  2099. }
  2100. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2101. .button-group.round.stack > *:last-child, .button-group.round.stack > *:last-child > a, .button-group.round.stack > *:last-child > button, .button-group.round.stack > *:last-child > .button {
  2102. -webkit-bottom-left-radius: 1rem;
  2103. -webkit-bottom-right-radius: 1rem;
  2104. border-bottom-left-radius: 1rem;
  2105. border-bottom-right-radius: 1rem;
  2106. }
  2107. @media only screen and (min-width: 40.063em) {
  2108. /* line 185, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2109. .button-group.round.stack-for-small > * {
  2110. margin: 0 -2px;
  2111. display: inline-block;
  2112. }
  2113. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2114. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2115. border-left: 1px solid;
  2116. border-color: rgba(255, 255, 255, 0.5);
  2117. }
  2118. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2119. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2120. border-left: 0;
  2121. }
  2122. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2123. .button-group.round.stack-for-small > *, .button-group.round.stack-for-small > * > a, .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * > .button {
  2124. border-radius: 0;
  2125. }
  2126. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2127. .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
  2128. -webkit-border-bottom-left-radius: 1000px;
  2129. -webkit-border-top-left-radius: 1000px;
  2130. border-bottom-left-radius: 1000px;
  2131. border-top-left-radius: 1000px;
  2132. }
  2133. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2134. .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
  2135. -webkit-border-bottom-right-radius: 1000px;
  2136. -webkit-border-top-right-radius: 1000px;
  2137. border-bottom-right-radius: 1000px;
  2138. border-top-right-radius: 1000px;
  2139. }
  2140. }
  2141. @media only screen and (max-width: 40em) {
  2142. /* line 185, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2143. .button-group.round.stack-for-small > * {
  2144. margin: 0 -2px;
  2145. display: inline-block;
  2146. display: block;
  2147. margin: 0;
  2148. }
  2149. /* line 39, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2150. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2151. border-left: 1px solid;
  2152. border-color: rgba(255, 255, 255, 0.5);
  2153. }
  2154. /* line 45, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2155. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2156. border-left: 0;
  2157. }
  2158. /* line 66, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2159. .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * .button {
  2160. border-top: 1px solid;
  2161. border-color: rgba(255, 255, 255, 0.5);
  2162. border-left-width: 0;
  2163. margin: 0;
  2164. display: block;
  2165. }
  2166. /* line 73, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2167. .button-group.round.stack-for-small > * > button {
  2168. width: 100%;
  2169. }
  2170. /* line 78, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2171. .button-group.round.stack-for-small > *:first-child button, .button-group.round.stack-for-small > *:first-child .button {
  2172. border-top: 0;
  2173. }
  2174. /* line 114, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2175. .button-group.round.stack-for-small > *, .button-group.round.stack-for-small > * > a, .button-group.round.stack-for-small > * > button, .button-group.round.stack-for-small > * > .button {
  2176. border-radius: 0;
  2177. }
  2178. /* line 118, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2179. .button-group.round.stack-for-small > *:first-child, .button-group.round.stack-for-small > *:first-child > a, .button-group.round.stack-for-small > *:first-child > button, .button-group.round.stack-for-small > *:first-child > .button {
  2180. -webkit-top-left-radius: 1rem;
  2181. -webkit-top-right-radius: 1rem;
  2182. border-top-left-radius: 1rem;
  2183. border-top-right-radius: 1rem;
  2184. }
  2185. /* line 129, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2186. .button-group.round.stack-for-small > *:last-child, .button-group.round.stack-for-small > *:last-child > a, .button-group.round.stack-for-small > *:last-child > button, .button-group.round.stack-for-small > *:last-child > .button {
  2187. -webkit-bottom-left-radius: 1rem;
  2188. -webkit-bottom-right-radius: 1rem;
  2189. border-bottom-left-radius: 1rem;
  2190. border-bottom-right-radius: 1rem;
  2191. }
  2192. }
  2193. /* line 172, ../bower_components/foundation/scss/foundation/components/_global.scss */
  2194. .button-bar:before, .button-bar:after {
  2195. content: " ";
  2196. display: table;
  2197. }
  2198. /* line 173, ../bower_components/foundation/scss/foundation/components/_global.scss */
  2199. .button-bar:after {
  2200. clear: both;
  2201. }
  2202. /* line 197, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2203. .button-bar .button-group {
  2204. float: left;
  2205. margin-right: 0.625rem;
  2206. }
  2207. /* line 32, ../bower_components/foundation/scss/foundation/components/_button-groups.scss */
  2208. .button-bar .button-group div {
  2209. overflow: hidden;
  2210. }
  2211. /*
  2212. * www.g-u-i.net
  2213. */
  2214. /* line 3, ../scss/fonts.scss */
  2215. body {
  2216. font-size: 16px;
  2217. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2218. font-weight: 500;
  2219. font-style: normal;
  2220. line-height: 1.3;
  2221. }
  2222. /* line 5, ../scss/fonts.scss */
  2223. a {
  2224. color: #007BC2;
  2225. text-decoration: none;
  2226. }
  2227. /* line 7, ../scss/fonts.scss */
  2228. h1 {
  2229. font-size: 1.6em;
  2230. }
  2231. /* line 8, ../scss/fonts.scss */
  2232. h2 {
  2233. font-size: 1.5em;
  2234. }
  2235. /* line 9, ../scss/fonts.scss */
  2236. h3 {
  2237. font-size: 1.4em;
  2238. }
  2239. /* line 10, ../scss/fonts.scss */
  2240. h4 {
  2241. font-size: 1.3em;
  2242. }
  2243. /* line 11, ../scss/fonts.scss */
  2244. h5 {
  2245. font-size: 1.2em;
  2246. }
  2247. /* line 12, ../scss/fonts.scss */
  2248. h6 {
  2249. font-size: 1.1em;
  2250. }
  2251. /* line 14, ../scss/fonts.scss */
  2252. input, button, select, textarea {
  2253. font-family: "Ubuntu", Arial, "MS Trebuchet", sans-serif;
  2254. font-weight: 500;
  2255. font-style: normal;
  2256. }
  2257. /* line 21, ../scss/fonts.scss */
  2258. #footer #footer-bottom {
  2259. text-align: center;
  2260. }
  2261. /* line 22, ../scss/fonts.scss */
  2262. #footer #footer-bottom .block {
  2263. font-size: 8px;
  2264. }
  2265. /** RESPONSIVE break points */
  2266. /* 0, 480px */
  2267. /* 481px, 768px */
  2268. /* 769px, 980px */
  2269. /* 981px, 1200px */
  2270. /* 1201px, ... */
  2271. /* line 66, ../scss/layout.scss */
  2272. * {
  2273. box-sizing: content-box;
  2274. }
  2275. /* line 68, ../scss/layout.scss */
  2276. *:before, *:after {
  2277. box-sizing: content-box;
  2278. }
  2279. /* line 79, ../scss/layout.scss */
  2280. body {
  2281. overflow-y: scroll;
  2282. top: 0;
  2283. }
  2284. /* line 83, ../scss/layout.scss */
  2285. h1, h2, h3, h4, h5, h6 {
  2286. font-family: inherit;
  2287. }
  2288. /* line 87, ../scss/layout.scss */
  2289. h1 {
  2290. font-weight: bold;
  2291. }
  2292. /* line 91, ../scss/layout.scss */
  2293. figure {
  2294. margin: 0;
  2295. }
  2296. /* line 95, ../scss/layout.scss */
  2297. input[type="checkbox"] + label {
  2298. margin: 0;
  2299. }
  2300. /* line 99, ../scss/layout.scss */
  2301. p {
  2302. font-family: inherit;
  2303. font-weight: inherit;
  2304. font-size: inherit;
  2305. line-height: inherit;
  2306. margin-bottom: inherit;
  2307. }
  2308. /* line 107, ../scss/layout.scss */
  2309. a {
  2310. font-size: inherit;
  2311. }
  2312. /* line 111, ../scss/layout.scss */
  2313. .column, .columns {
  2314. padding: inherit;
  2315. float: inherit;
  2316. }
  2317. /** NIVEAU 0 */
  2318. /* line 119, ../scss/layout.scss */
  2319. #root {
  2320. min-width: 320px;
  2321. }
  2322. /* line 122, ../scss/layout.scss */
  2323. .ie8 #root {
  2324. min-width: 1024px;
  2325. }
  2326. /** NIVEAU 1 */
  2327. /* line 126, ../scss/layout.scss */
  2328. #container {
  2329. margin: 0 auto;
  2330. position: relative;
  2331. -webkit-transition: padding-top 0.5s ease-out, 1s, ease-out;
  2332. transition: padding-top 0.5s ease-out, 1s, ease-out;
  2333. }
  2334. /** NIVEAU 2 */
  2335. /* line 135, ../scss/layout.scss */
  2336. #header {
  2337. z-index: 1000;
  2338. width: 96%;
  2339. padding-left: 2%;
  2340. padding-right: 2%;
  2341. }
  2342. @media only screen and (min-width: 40.063em) {
  2343. /* line 135, ../scss/layout.scss */
  2344. #header {
  2345. position: fixed;
  2346. top: 0;
  2347. margin: 0 auto;
  2348. background-color: #fff;
  2349. min-width: 310.4px;
  2350. }
  2351. }
  2352. /* line 141, ../scss/layout.scss */
  2353. .editmenu-enabled #header {
  2354. margin-top: 30px;
  2355. }
  2356. /* line 142, ../scss/layout.scss */
  2357. .admin-menu #header {
  2358. margin-top: 35px;
  2359. }
  2360. /* line 145, ../scss/layout.scss */
  2361. #utilities {
  2362. z-index: 999;
  2363. background-color: #fff;
  2364. width: 96%;
  2365. padding-left: 2%;
  2366. padding-right: 2%;
  2367. }
  2368. @media only screen and (min-width: 40.063em) {
  2369. /* line 147, ../scss/layout.scss */
  2370. html.no-touch #utilities {
  2371. position: fixed;
  2372. top: 0;
  2373. margin: 0 auto;
  2374. min-width: 310.4px;
  2375. margin-top: 60px;
  2376. }
  2377. /* line 151, ../scss/layout.scss */
  2378. html.no-touch .editmenu-enabled #utilities {
  2379. margin-top: 80px;
  2380. }
  2381. /* line 152, ../scss/layout.scss */
  2382. html.no-touch .admin-menu #utilities {
  2383. margin-top: 85px;
  2384. }
  2385. }
  2386. @media only screen and (max-width: 40em) {
  2387. /* line 155, ../scss/layout.scss */
  2388. #utilities > .region {
  2389. padding-top: 5px;
  2390. padding-bottom: 5px;
  2391. }
  2392. }
  2393. /* line 163, ../scss/layout.scss */
  2394. #main {
  2395. width: 96%;
  2396. padding-left: 2%;
  2397. padding-right: 2%;
  2398. overflow-x: hidden;
  2399. }
  2400. /* line 165, ../scss/layout.scss */
  2401. #footer {
  2402. width: 96%;
  2403. padding-left: 2%;
  2404. padding-right: 2%;
  2405. }
  2406. /** NIVEAU 3 */
  2407. /** NIVEAU 4 */
  2408. /* line 179, ../scss/layout.scss */
  2409. #center {
  2410. padding: 5px;
  2411. }
  2412. /** Z-INDEX */
  2413. /* line 182, ../scss/layout.scss */
  2414. #block-feedback-form {
  2415. z-index: 1001;
  2416. }
  2417. /* line 183, ../scss/layout.scss */
  2418. #admin-menu {
  2419. z-index: 1002;
  2420. }
  2421. /* line 184, ../scss/layout.scss */
  2422. #admin-toolbar {
  2423. z-index: 1003;
  2424. }
  2425. /* line 87, ../scss/styles.scss */
  2426. .op-visible {
  2427. visibility: visible;
  2428. }
  2429. /* line 89, ../scss/styles.scss */
  2430. .csstransitions .op-visible {
  2431. opacity: 1;
  2432. -webkit-transition: opacity 0.3s ease-out;
  2433. transition: opacity 0.3s ease-out;
  2434. }
  2435. /* line 94, ../scss/styles.scss */
  2436. .op-hidden {
  2437. visibility: hidden;
  2438. }
  2439. /* line 96, ../scss/styles.scss */
  2440. .op-hidden > * {
  2441. margin-top: -100000px;
  2442. }
  2443. /* line 99, ../scss/styles.scss */
  2444. .csstransition .op-hidden {
  2445. opacity: 0;
  2446. -webkit-transition: visibility 0s 0.3s;
  2447. transition: visibility 0s 0.3s;
  2448. }
  2449. /* line 102, ../scss/styles.scss */
  2450. .csstransition .op-hidden > * {
  2451. -webkit-transition: margin-top 0s 0.3s;
  2452. transition: margin-top 0s 0.3s;
  2453. }
  2454. /** colomnized() */
  2455. /** HEADER */
  2456. /* line 194, ../scss/styles.scss */
  2457. #header {
  2458. padding-top: 5px;
  2459. padding-bottom: 10px;
  2460. height: 45px;
  2461. }
  2462. /* line 201, ../scss/styles.scss */
  2463. #header a, #header a:active, #header a:visited {
  2464. color: #000;
  2465. }
  2466. /* line 205, ../scss/styles.scss */
  2467. #header .logo {
  2468. display: moz-inline-stack;
  2469. display: inline-block;
  2470. vertical-align: top;
  2471. zoom: 1;
  2472. *display: inline;
  2473. }
  2474. /* line 208, ../scss/styles.scss */
  2475. #header .logo h1 {
  2476. margin: 0;
  2477. font-size: 36px;
  2478. display: moz-inline-stack;
  2479. display: inline-block;
  2480. vertical-align: top;
  2481. zoom: 1;
  2482. *display: inline;
  2483. vertical-align: baseline;
  2484. position: relative;
  2485. line-height: 1.25;
  2486. }
  2487. /* line 212, ../scss/styles.scss */
  2488. #header .logo h1 a:hover {
  2489. text-decoration: none;
  2490. }
  2491. /* line 214, ../scss/styles.scss */
  2492. #header .logo span.beta {
  2493. line-height: 1;
  2494. letter-spacing: 0.1em;
  2495. color: #00007a;
  2496. font-size: 12px;
  2497. position: absolute;
  2498. left: 0;
  2499. padding-left: 0;
  2500. margin-left: 0;
  2501. }
  2502. /* line 220, ../scss/styles.scss */
  2503. #header .logo span.slogan {
  2504. font-size: 14px;
  2505. margin-top: -3px;
  2506. margin-left: -0.5em;
  2507. font-weight: 900;
  2508. }
  2509. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2510. /* line 220, ../scss/styles.scss */
  2511. #header .logo span.slogan {
  2512. display: none;
  2513. }
  2514. }
  2515. /* line 226, ../scss/styles.scss */
  2516. .ie8 #header .logo span.slogan {
  2517. position: absolute;
  2518. margin-top: 22px;
  2519. }
  2520. /* line 230, ../scss/styles.scss */
  2521. #header #header-blocks {
  2522. padding-top: 17px;
  2523. float: right;
  2524. text-align: right;
  2525. text-transform: capitalize;
  2526. }
  2527. /* line 237, ../scss/styles.scss */
  2528. #header #header-blocks > .region {
  2529. display: moz-inline-stack;
  2530. display: inline-block;
  2531. vertical-align: top;
  2532. zoom: 1;
  2533. *display: inline;
  2534. vertical-align: middle;
  2535. padding-right: 1em;
  2536. margin-right: 1em;
  2537. border-right: 1px solid #707070;
  2538. }
  2539. @media only screen and (max-width: 40em) {
  2540. /* line 237, ../scss/styles.scss */
  2541. #header #header-blocks > .region {
  2542. padding-right: 0.3em;
  2543. margin-right: 0.3em;
  2544. }
  2545. }
  2546. /* line 242, ../scss/styles.scss */
  2547. #header #header-blocks > .region:last-child {
  2548. border: none;
  2549. padding: 0;
  2550. margin: 0;
  2551. }
  2552. /* line 245, ../scss/styles.scss */
  2553. #header #header-blocks .block {
  2554. display: moz-inline-stack;
  2555. display: inline-block;
  2556. vertical-align: top;
  2557. zoom: 1;
  2558. *display: inline;
  2559. vertical-align: middle;
  2560. }
  2561. /* line 247, ../scss/styles.scss */
  2562. #header #header-blocks .block h2 {
  2563. font-size: 12px;
  2564. margin: 0;
  2565. line-height: 1.2;
  2566. font-weight: normal;
  2567. }
  2568. /* line 250, ../scss/styles.scss */
  2569. #header #header-blocks .block:not(:last-child) {
  2570. padding-right: 0.8em;
  2571. }
  2572. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  2573. /* line 250, ../scss/styles.scss */
  2574. #header #header-blocks .block:not(:last-child) {
  2575. padding-right: 0.3em;
  2576. }
  2577. }
  2578. /* line 256, ../scss/styles.scss */
  2579. #header #header-blocks #block-user-login {
  2580. font-size: 12px;
  2581. text-align: left;
  2582. position: relative;
  2583. }
  2584. /* line 259, ../scss/styles.scss */
  2585. #header #header-blocks #block-user-login h2 {
  2586. padding-right: 5px;
  2587. }
  2588. /* line 262, ../scss/styles.scss */
  2589. #header #header-blocks #block-user-login h2 i {
  2590. vertical-align: text-bottom;
  2591. margin: 0 2px 2px 0;
  2592. }
  2593. /* line 264, ../scss/styles.scss */
  2594. #header #header-blocks #block-user-login form#user-login-form {
  2595. position: absolute;
  2596. overflow: hidden;
  2597. right: 0;
  2598. margin: 0;
  2599. height: 0;
  2600. -webkit-transition: height 0.3s ease-out;
  2601. transition: height 0.3s ease-out;
  2602. }
  2603. /* line 268, ../scss/styles.scss */
  2604. #header #header-blocks #block-user-login form#user-login-form > div {
  2605. padding: 5px;
  2606. margin: 5px;
  2607. background-color: #e6e6e6;
  2608. border-radius: 5px;
  2609. background-clip: padding-box;
  2610. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  2611. }
  2612. /* line 272, ../scss/styles.scss */
  2613. #header #header-blocks #block-user-login form#user-login-form .form-item {
  2614. margin: 0;
  2615. padding-bottom: 5px;
  2616. }
  2617. /* line 273, ../scss/styles.scss */
  2618. #header #header-blocks #block-user-login form#user-login-form label, #header #header-blocks #block-user-login form#user-login-form input {
  2619. margin: 0;
  2620. font-size: 10px;
  2621. }
  2622. /* line 278, ../scss/styles.scss */
  2623. #header #header-blocks #block-user-login form#user-login-form input.form-text {
  2624. width: 150px;
  2625. }
  2626. /* line 280, ../scss/styles.scss */
  2627. #header #header-blocks #block-user-login form#user-login-form #edit-actions {
  2628. margin: 5px 0;
  2629. padding: 0;
  2630. background-color: transparent;
  2631. text-align: right;
  2632. }
  2633. /* line 282, ../scss/styles.scss */
  2634. #header #header-blocks #block-user-login form#user-login-form #edit-actions input.form-submit {
  2635. font-size: 12px;
  2636. padding: 10px;
  2637. }
  2638. /* line 287, ../scss/styles.scss */
  2639. #header #header-blocks #block-user-login form#user-login-form div.newpass a {
  2640. font-size: 12px;
  2641. color: #686868;
  2642. }
  2643. /* line 298, ../scss/styles.scss */
  2644. html.no-touch #header #header-blocks #block-user-login:hover form#user-login-form, #header #header-blocks #block-user-login.hovered form#user-login-form {
  2645. height: 300px;
  2646. z-index: 1000;
  2647. }
  2648. @media only screen and (max-width: 40em) {
  2649. /* line 307, ../scss/styles.scss */
  2650. #header #header-blocks #block-user-login span.login {
  2651. display: none;
  2652. }
  2653. }
  2654. /* line 311, ../scss/styles.scss */
  2655. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav {
  2656. position: relative;
  2657. }
  2658. /* line 313, ../scss/styles.scss */
  2659. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 {
  2660. margin: 0;
  2661. font-size: 12px;
  2662. line-height: 1.1;
  2663. }
  2664. /* line 318, ../scss/styles.scss */
  2665. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2666. position: absolute;
  2667. z-index: 20;
  2668. background-color: rgba(255, 255, 255, 0.9);
  2669. min-width: 100%;
  2670. margin: 0 0 0 -5px;
  2671. border-radius: 3px;
  2672. background-clip: padding-box;
  2673. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  2674. }
  2675. /* line 321, ../scss/styles.scss */
  2676. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2677. background: #FFF;
  2678. }
  2679. /* line 322, ../scss/styles.scss */
  2680. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2681. margin: 0;
  2682. }
  2683. /* line 323, ../scss/styles.scss */
  2684. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2685. list-style: none;
  2686. font-size: 12px;
  2687. font-weight: 700;
  2688. padding: 0 10px;
  2689. text-align: left;
  2690. width: 200px;
  2691. height: 0;
  2692. overflow: hidden;
  2693. -webkit-transition: height 0.3s ease-out;
  2694. transition: height 0.3s ease-out;
  2695. }
  2696. /* line 330, ../scss/styles.scss */
  2697. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview {
  2698. white-space: nowrap;
  2699. cursor: pointer;
  2700. }
  2701. /* line 331, ../scss/styles.scss */
  2702. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2703. max-width: 150px;
  2704. }
  2705. /* line 332, ../scss/styles.scss */
  2706. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2707. font-weight: 300;
  2708. padding: 0 5px;
  2709. }
  2710. /* line 335, ../scss/styles.scss */
  2711. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.preview, #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.edit-list {
  2712. padding-right: 5px;
  2713. }
  2714. /* line 338, ../scss/styles.scss */
  2715. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2716. visibility: hidden;
  2717. }
  2718. /* line 118, ../scss/styles.scss */
  2719. .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2720. margin-top: -100000px;
  2721. }
  2722. /* line 121, ../scss/styles.scss */
  2723. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list {
  2724. opacity: 0;
  2725. -webkit-transition: visibility 0s 0.3s;
  2726. transition: visibility 0s 0.3s;
  2727. }
  2728. /* line 124, ../scss/styles.scss */
  2729. .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) span.preview > *, .csstransition .no-touch #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li:not(:hover) a.edit-list > * {
  2730. -webkit-transition: margin-top 0s 0.3s;
  2731. transition: margin-top 0s 0.3s;
  2732. }
  2733. /* line 345, ../scss/styles.scss */
  2734. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2735. padding-bottom: 5px;
  2736. }
  2737. /* line 347, ../scss/styles.scss */
  2738. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2739. height: 15px;
  2740. padding: 3px 10px;
  2741. }
  2742. /* line 352, ../scss/styles.scss */
  2743. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2744. vertical-align: text-bottom;
  2745. margin: 0 2px 2px 0;
  2746. }
  2747. @media only screen and (min-width: 90.063em) {
  2748. /* line 353, ../scss/styles.scss */
  2749. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2750. display: none;
  2751. }
  2752. }
  2753. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2754. /* line 354, ../scss/styles.scss */
  2755. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2756. display: none;
  2757. }
  2758. }
  2759. /* line 358, ../scss/styles.scss */
  2760. #header #header-blocks #block-ajax-register-ajax-register-block {
  2761. font-size: 12px;
  2762. text-transform: lowercase;
  2763. }
  2764. /* line 363, ../scss/styles.scss */
  2765. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2766. font-size: 12px;
  2767. }
  2768. /* line 365, ../scss/styles.scss */
  2769. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2770. vertical-align: text-bottom;
  2771. margin: 0 5px 1px 0;
  2772. }
  2773. /* line 369, ../scss/styles.scss */
  2774. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2775. text-transform: lowercase;
  2776. }
  2777. /* line 370, ../scss/styles.scss */
  2778. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2779. display: none;
  2780. margin-left: 5px;
  2781. }
  2782. /* line 371, ../scss/styles.scss */
  2783. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2784. margin: 0 0.5em 0 0.5em;
  2785. }
  2786. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  2787. /* line 372, ../scss/styles.scss */
  2788. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2789. display: none;
  2790. }
  2791. }
  2792. @media only screen and (min-width: 40.063em) {
  2793. /* line 373, ../scss/styles.scss */
  2794. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2795. display: none;
  2796. }
  2797. }
  2798. @media only screen and (max-width: 40em) {
  2799. /* line 375, ../scss/styles.scss */
  2800. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2801. display: none;
  2802. }
  2803. }
  2804. /* line 379, ../scss/styles.scss */
  2805. #header #header-blocks #headerblock-right .block {
  2806. display: moz-inline-stack;
  2807. display: inline-block;
  2808. vertical-align: top;
  2809. zoom: 1;
  2810. *display: inline;
  2811. vertical-align: middle;
  2812. padding: 0;
  2813. }
  2814. /* line 381, ../scss/styles.scss */
  2815. #header #header-blocks #headerblock-right .block:first-child {
  2816. padding: 0;
  2817. }
  2818. /* line 385, ../scss/styles.scss */
  2819. #header #header-blocks #block-locale-language {
  2820. margin-left: 1em;
  2821. }
  2822. /* line 388, ../scss/styles.scss */
  2823. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  2824. margin: 0;
  2825. padding: 0;
  2826. list-style-type: none;
  2827. font-size: 12px;
  2828. line-height: 1;
  2829. }
  2830. /* line 392, ../scss/styles.scss */
  2831. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  2832. display: none;
  2833. }
  2834. /* line 394, ../scss/styles.scss */
  2835. .ie8 #header #header-blocks #block-locale-language {
  2836. padding-top: 5px;
  2837. }
  2838. /* line 422, ../scss/styles.scss */
  2839. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2840. display: none;
  2841. }
  2842. /* line 423, ../scss/styles.scss */
  2843. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2844. vertical-align: text-bottom;
  2845. margin: 0 0 2px 0;
  2846. }
  2847. /* line 426, ../scss/styles.scss */
  2848. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2849. font-size: 12px;
  2850. list-style: none;
  2851. }
  2852. /* line 429, ../scss/styles.scss */
  2853. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2854. display: inline;
  2855. }
  2856. @media only screen and (min-width: 40.063em) {
  2857. /* line 433, ../scss/styles.scss */
  2858. #header #header-blocks #block-menu-menu-top-menu h2 {
  2859. display: none;
  2860. }
  2861. /* line 434, ../scss/styles.scss */
  2862. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2863. display: moz-inline-stack;
  2864. display: inline-block;
  2865. vertical-align: top;
  2866. zoom: 1;
  2867. *display: inline;
  2868. vertical-align: middle;
  2869. padding: 0;
  2870. margin: 0;
  2871. }
  2872. /* line 438, ../scss/styles.scss */
  2873. #header #header-blocks #block-menu-menu-top-menu a {
  2874. padding: 0 0.5em 0 0;
  2875. }
  2876. }
  2877. @media only screen and (max-width: 40em) {
  2878. /* line 420, ../scss/styles.scss */
  2879. #header #header-blocks #block-menu-menu-top-menu {
  2880. position: relative;
  2881. }
  2882. /* line 444, ../scss/styles.scss */
  2883. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  2884. display: none;
  2885. }
  2886. /* line 445, ../scss/styles.scss */
  2887. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  2888. position: absolute;
  2889. width: 150px;
  2890. display: none;
  2891. right: 0;
  2892. padding-top: 5px;
  2893. }
  2894. /* line 447, ../scss/styles.scss */
  2895. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  2896. background-color: #e6e6e6;
  2897. border-radius: 5px;
  2898. background-clip: padding-box;
  2899. padding: 0 5px 5px 5px;
  2900. margin: 0;
  2901. text-align: right;
  2902. }
  2903. /* line 450, ../scss/styles.scss */
  2904. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  2905. height: 0;
  2906. overflow: hidden;
  2907. -webkit-transition: height 0.3s ease-out;
  2908. transition: height 0.3s ease-out;
  2909. }
  2910. /* line 454, ../scss/styles.scss */
  2911. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  2912. display: block;
  2913. width: 100%;
  2914. padding: 2px 5px;
  2915. font-size: 12px;
  2916. }
  2917. /* line 460, ../scss/styles.scss */
  2918. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  2919. z-index: 1000;
  2920. }
  2921. /* line 462, ../scss/styles.scss */
  2922. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper {
  2923. display: block;
  2924. }
  2925. /* line 464, ../scss/styles.scss */
  2926. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover .menu-wrapper ul.menu li, #header #header-blocks #block-menu-menu-top-menu.hovered .menu-wrapper ul.menu li {
  2927. height: 25px;
  2928. }
  2929. }
  2930. /* line 471, ../scss/styles.scss */
  2931. #header #header-blocks #block-materio-user-old-database-link a {
  2932. font-size: 12px;
  2933. }
  2934. /* line 477, ../scss/styles.scss */
  2935. #header #header-blocks #block-materio-user-front-link a {
  2936. font-size: 12px;
  2937. }
  2938. /* line 480, ../scss/styles.scss */
  2939. #header #header-blocks #block-materio-user-front-link i {
  2940. vertical-align: text-bottom;
  2941. margin: 0 2px 2px 0;
  2942. }
  2943. /* line 481, ../scss/styles.scss */
  2944. #header #header-blocks #block-materio-user-front-link span.text {
  2945. display: none;
  2946. }
  2947. /* line 486, ../scss/styles.scss */
  2948. #utilities {
  2949. margin-top: 60px;
  2950. }
  2951. /* line 488, ../scss/styles.scss */
  2952. .not-logged-in #utilities {
  2953. overflow: hidden;
  2954. }
  2955. /* line 490, ../scss/styles.scss */
  2956. #utilities.closed {
  2957. height: 0;
  2958. }
  2959. /* line 491, ../scss/styles.scss */
  2960. #utilities.closed .tabs, #utilities.closed .node-didactique {
  2961. display: none;
  2962. }
  2963. /* line 495, ../scss/styles.scss */
  2964. #highlighted {
  2965. border-radius: 5px;
  2966. background-clip: padding-box;
  2967. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  2968. padding: 0.5em;
  2969. position: relative;
  2970. }
  2971. @media only screen and (min-width: 40.063em) {
  2972. /* line 495, ../scss/styles.scss */
  2973. #highlighted {
  2974. margin: 20px 0 6px;
  2975. }
  2976. /* line 505, ../scss/styles.scss */
  2977. #highlighted .block {
  2978. display: moz-inline-stack;
  2979. display: inline-block;
  2980. vertical-align: top;
  2981. zoom: 1;
  2982. *display: inline;
  2983. vertical-align: top;
  2984. }
  2985. /* line 506, ../scss/styles.scss */
  2986. #highlighted .block-materio-didactique {
  2987. width: 65%;
  2988. }
  2989. /* line 508, ../scss/styles.scss */
  2990. #highlighted .block-materio-didactique .side {
  2991. display: moz-inline-stack;
  2992. display: inline-block;
  2993. vertical-align: top;
  2994. zoom: 1;
  2995. *display: inline;
  2996. vertical-align: top;
  2997. position: relative;
  2998. }
  2999. /* line 512, ../scss/styles.scss */
  3000. #highlighted .block-materio-didactique .group-sideleft {
  3001. width: 65%;
  3002. }
  3003. /* line 513, ../scss/styles.scss */
  3004. #highlighted .block-materio-didactique .group-sideright {
  3005. width: 30%;
  3006. }
  3007. /* line 515, ../scss/styles.scss */
  3008. #highlighted .block-materio-didactique .field-name-title-field {
  3009. font-size: 24px;
  3010. }
  3011. /* line 519, ../scss/styles.scss */
  3012. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3013. width: 47%;
  3014. }
  3015. /* line 520, ../scss/styles.scss */
  3016. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3017. margin-right: 2%;
  3018. }
  3019. /* line 525, ../scss/styles.scss */
  3020. #highlighted #block-materio-user-user-register {
  3021. width: 30%;
  3022. padding: 5px;
  3023. height: 290px;
  3024. }
  3025. }
  3026. @media only screen {
  3027. /* line 532, ../scss/styles.scss */
  3028. #highlighted .block-materio-didactique .side {
  3029. display: moz-inline-stack;
  3030. display: inline-block;
  3031. vertical-align: top;
  3032. zoom: 1;
  3033. *display: inline;
  3034. vertical-align: top;
  3035. }
  3036. }
  3037. @media only screen and (max-width: 40em) {
  3038. /* line 495, ../scss/styles.scss */
  3039. #highlighted {
  3040. margin: 10px 0 6px;
  3041. }
  3042. /* line 539, ../scss/styles.scss */
  3043. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3044. width: 100%;
  3045. }
  3046. /* line 540, ../scss/styles.scss */
  3047. #highlighted .block-materio-didactique .field-name-title-field {
  3048. font-size: 20px;
  3049. cursor: pointer;
  3050. }
  3051. /* line 543, ../scss/styles.scss */
  3052. #highlighted .block-materio-didactique .node-didactique:not(:first-child) .field-name-title-field {
  3053. font-weight: normal;
  3054. }
  3055. /* line 543, ../scss/styles.scss */
  3056. #highlighted .block-materio-didactique .node-didactique:not(:first-child) .field-name-title-field:before {
  3057. content: "- ";
  3058. }
  3059. /* line 546, ../scss/styles.scss */
  3060. html.js #highlighted .block-materio-didactique .node-didactique {
  3061. height: auto;
  3062. height: 25px;
  3063. overflow: hidden;
  3064. }
  3065. /* line 549, ../scss/styles.scss */
  3066. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3067. height: auto;
  3068. }
  3069. }
  3070. @media only screen and (max-width: 40em) {
  3071. /* line 557, ../scss/styles.scss */
  3072. #highlighted .block-materio-didactique .group-sideleft {
  3073. width: 50%;
  3074. }
  3075. /* line 558, ../scss/styles.scss */
  3076. #highlighted .block-materio-didactique .group-sideright {
  3077. width: 50%;
  3078. }
  3079. }
  3080. /* line 563, ../scss/styles.scss */
  3081. .oldie #highlighted .block {
  3082. display: moz-inline-stack;
  3083. display: inline-block;
  3084. vertical-align: top;
  3085. zoom: 1;
  3086. *display: inline;
  3087. }
  3088. /* line 568, ../scss/styles.scss */
  3089. #highlighted .block-materio-didactique .node-didactique {
  3090. font-size: 14px;
  3091. background-color: #fff;
  3092. margin: 0 auto;
  3093. }
  3094. /* line 574, ../scss/styles.scss */
  3095. #highlighted .block-materio-didactique .node-didactique .side {
  3096. position: relative;
  3097. }
  3098. /* line 576, ../scss/styles.scss */
  3099. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3100. font-weight: 900;
  3101. font-style: italic;
  3102. padding: 5px 0;
  3103. }
  3104. /* line 581, ../scss/styles.scss */
  3105. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3106. text-align: center;
  3107. }
  3108. /* line 583, ../scss/styles.scss */
  3109. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3110. display: inline;
  3111. }
  3112. /* line 586, ../scss/styles.scss */
  3113. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3114. display: none;
  3115. }
  3116. /* line 594, ../scss/styles.scss */
  3117. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3118. display: none;
  3119. }
  3120. /* line 600, ../scss/styles.scss */
  3121. html.js #highlighted .block-materio-didactique {
  3122. position: relative;
  3123. overflow: hidden;
  3124. }
  3125. /* line 603, ../scss/styles.scss */
  3126. html.js #highlighted .block-materio-didactique .slides {
  3127. height: 270px;
  3128. margin: 0;
  3129. position: relative;
  3130. width: 100%;
  3131. overflow: hidden;
  3132. }
  3133. /* line 605, ../scss/styles.scss */
  3134. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3135. position: absolute;
  3136. width: 100%;
  3137. height: 100%;
  3138. top: 0;
  3139. left: 0;
  3140. }
  3141. /* line 606, ../scss/styles.scss */
  3142. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3143. height: 30px;
  3144. }
  3145. /* line 607, ../scss/styles.scss */
  3146. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3147. height: 240px;
  3148. }
  3149. /* line 609, ../scss/styles.scss */
  3150. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3151. height: 100%;
  3152. }
  3153. @media only screen and (max-width: 40em) {
  3154. /* line 610, ../scss/styles.scss */
  3155. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3156. width: 290px;
  3157. height: 163.125px;
  3158. }
  3159. }
  3160. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3161. /* line 610, ../scss/styles.scss */
  3162. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3163. width: 216px;
  3164. height: 121.5px;
  3165. }
  3166. }
  3167. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  3168. /* line 610, ../scss/styles.scss */
  3169. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3170. width: 216px;
  3171. height: 121.5px;
  3172. }
  3173. }
  3174. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  3175. /* line 610, ../scss/styles.scss */
  3176. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3177. width: 280px;
  3178. height: 157.5px;
  3179. }
  3180. }
  3181. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  3182. /* line 610, ../scss/styles.scss */
  3183. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3184. width: 340px;
  3185. height: 191.25px;
  3186. }
  3187. }
  3188. /* line 617, ../scss/styles.scss */
  3189. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3190. height: 100%;
  3191. width: 100%;
  3192. }
  3193. /* line 621, ../scss/styles.scss */
  3194. html.js #highlighted .block-materio-didactique .tabs {
  3195. height: 30px;
  3196. margin: 0;
  3197. text-align: left;
  3198. }
  3199. /* line 623, ../scss/styles.scss */
  3200. html.js #highlighted .block-materio-didactique .tabs > * {
  3201. display: moz-inline-stack;
  3202. display: inline-block;
  3203. vertical-align: top;
  3204. zoom: 1;
  3205. *display: inline;
  3206. vertical-align: top;
  3207. padding: 5px 10px;
  3208. font-size: 12px;
  3209. cursor: pointer;
  3210. color: #bfbfbf;
  3211. }
  3212. /* line 625, ../scss/styles.scss */
  3213. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3214. color: #3f3f3f;
  3215. }
  3216. /** block register */
  3217. /* line 633, ../scss/styles.scss */
  3218. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3219. min-height: 120px;
  3220. padding: 5px;
  3221. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  3222. }
  3223. /* line 636, ../scss/styles.scss */
  3224. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3225. max-width: 250px;
  3226. float: right;
  3227. background-image: none;
  3228. }
  3229. /* line 639, ../scss/styles.scss */
  3230. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3231. font-weight: 900;
  3232. font-style: italic;
  3233. padding: 5px 0;
  3234. margin: 0;
  3235. line-height: 1;
  3236. background-color: #fff;
  3237. display: moz-inline-stack;
  3238. display: inline-block;
  3239. vertical-align: top;
  3240. zoom: 1;
  3241. *display: inline;
  3242. min-width: 50%;
  3243. }
  3244. /* line 640, ../scss/styles.scss */
  3245. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3246. font-size: 24px;
  3247. }
  3248. /* line 640, ../scss/styles.scss */
  3249. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3250. font-size: 16px;
  3251. }
  3252. /* line 642, ../scss/styles.scss */
  3253. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3254. margin: 0;
  3255. background-color: rgba(255, 255, 255, 0.7);
  3256. padding-bottom: 5px;
  3257. display: moz-inline-stack;
  3258. display: inline-block;
  3259. vertical-align: top;
  3260. zoom: 1;
  3261. *display: inline;
  3262. }
  3263. /* line 644, ../scss/styles.scss */
  3264. #block-materio-user-user-register .form-item, #block-materio-user-user-register .form-wrapper, #block-materio-user-user-createaccount .form-item, #block-materio-user-user-createaccount .form-wrapper {
  3265. margin: 0;
  3266. display: moz-inline-stack;
  3267. display: inline-block;
  3268. vertical-align: top;
  3269. zoom: 1;
  3270. *display: inline;
  3271. vertical-align: middle;
  3272. position: relative;
  3273. }
  3274. /* line 648, ../scss/styles.scss */
  3275. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3276. margin-right: 5px;
  3277. }
  3278. /* line 650, ../scss/styles.scss */
  3279. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3280. font-size: 12px;
  3281. border-radius: 5px;
  3282. background-clip: padding-box;
  3283. margin-bottom: 4px;
  3284. }
  3285. /* line 650, ../scss/styles.scss */
  3286. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3287. margin-right: 5px;
  3288. }
  3289. /* line 651, ../scss/styles.scss */
  3290. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3291. width: 11em;
  3292. }
  3293. /* line 652, ../scss/styles.scss */
  3294. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3295. width: 7em;
  3296. }
  3297. /* line 654, ../scss/styles.scss */
  3298. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3299. position: absolute;
  3300. bottom: 100%;
  3301. z-index: 9999;
  3302. background-image: none;
  3303. height: auto;
  3304. padding: 5px;
  3305. border-radius: 5px;
  3306. background-clip: padding-box;
  3307. margin-bottom: 10px;
  3308. font-size: 10px;
  3309. background-color: #fff;
  3310. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3311. -webkit-transition: bottom 0.1s ease-out;
  3312. transition: bottom 0.1s ease-out;
  3313. }
  3314. /* line 662, ../scss/styles.scss */
  3315. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3316. background-color: #f3968d;
  3317. color: #fff;
  3318. }
  3319. /* line 668, ../scss/styles.scss */
  3320. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3321. display: none;
  3322. }
  3323. /* line 671, ../scss/styles.scss */
  3324. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3325. font-size: 16px;
  3326. padding: 0.1em 0.6em 0.2em;
  3327. border-radius: 0.3em;
  3328. background-clip: padding-box;
  3329. font-weight: bold;
  3330. margin-bottom: 4px;
  3331. }
  3332. /* line 678, ../scss/styles.scss */
  3333. #block-materio-user-user-register .form-item-termsofservices, #block-materio-user-user-register #edit-field-newsletter, #block-materio-user-user-createaccount .form-item-termsofservices, #block-materio-user-user-createaccount #edit-field-newsletter {
  3334. margin-bottom: 0;
  3335. display: block;
  3336. line-height: 1;
  3337. }
  3338. /* line 680, ../scss/styles.scss */
  3339. #block-materio-user-user-register .form-item-termsofservices > *, #block-materio-user-user-register #edit-field-newsletter > *, #block-materio-user-user-createaccount .form-item-termsofservices > *, #block-materio-user-user-createaccount #edit-field-newsletter > * {
  3340. display: moz-inline-stack;
  3341. display: inline-block;
  3342. vertical-align: top;
  3343. zoom: 1;
  3344. *display: inline;
  3345. vertical-align: middle;
  3346. margin: 0;
  3347. }
  3348. /* line 681, ../scss/styles.scss */
  3349. #block-materio-user-user-register .form-item-termsofservices label, #block-materio-user-user-register #edit-field-newsletter label, #block-materio-user-user-createaccount .form-item-termsofservices label, #block-materio-user-user-createaccount #edit-field-newsletter label {
  3350. font-size: 10px;
  3351. background-color: #fff;
  3352. border-radius: 3px;
  3353. background-clip: padding-box;
  3354. }
  3355. /* line 685, ../scss/styles.scss */
  3356. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3357. border: 2px solid #69CDCF;
  3358. background-color: #69CDCF;
  3359. color: #fff;
  3360. cursor: pointer;
  3361. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3362. -webkit-transition: text-shadow 0.2s ease-out;
  3363. transition: text-shadow 0.2s ease-out;
  3364. }
  3365. /* line 66, ../scss/styles.scss */
  3366. #block-materio-user-user-register #user-register-form .form-submit:hover, #block-materio-user-user-register #user-register-form .form-submit:focus, #block-materio-user-user-createaccount #user-register-form .form-submit:hover, #block-materio-user-user-createaccount #user-register-form .form-submit:focus {
  3367. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3368. }
  3369. /* line 69, ../scss/styles.scss */
  3370. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3371. -webkit-transition: text-shadow 0s ease-out;
  3372. transition: text-shadow 0s ease-out;
  3373. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3374. }
  3375. /* line 688, ../scss/styles.scss */
  3376. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3377. background-color: #ddd;
  3378. border: 2px solid #ddd;
  3379. }
  3380. /* line 695, ../scss/styles.scss */
  3381. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3382. border: 2px solid #E6DE1C;
  3383. background-color: #E6DE1C;
  3384. color: #fff;
  3385. cursor: pointer;
  3386. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3387. -webkit-transition: text-shadow 0.2s ease-out;
  3388. transition: text-shadow 0.2s ease-out;
  3389. }
  3390. /* line 66, ../scss/styles.scss */
  3391. #block-materio-user-user-register #user-login .form-submit:hover, #block-materio-user-user-register #user-login .form-submit:focus, #block-materio-user-user-createaccount #user-login .form-submit:hover, #block-materio-user-user-createaccount #user-login .form-submit:focus {
  3392. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3393. }
  3394. /* line 69, ../scss/styles.scss */
  3395. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3396. -webkit-transition: text-shadow 0s ease-out;
  3397. transition: text-shadow 0s ease-out;
  3398. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3399. }
  3400. /* line 701, ../scss/styles.scss */
  3401. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3402. padding-top: 0.5em;
  3403. }
  3404. /* line 703, ../scss/styles.scss */
  3405. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3406. font-size: 12px;
  3407. }
  3408. /* line 707, ../scss/styles.scss */
  3409. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3410. display: block;
  3411. }
  3412. /* line 709, ../scss/styles.scss */
  3413. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3414. font-size: 12px;
  3415. }
  3416. /* line 714, ../scss/styles.scss */
  3417. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3418. display: block;
  3419. width: 5em;
  3420. font-size: 16px;
  3421. padding: 0.1em 0.3em 0.2em;
  3422. border-radius: 0.3em;
  3423. background-clip: padding-box;
  3424. font-weight: bold;
  3425. border: 2px solid #69CDCF;
  3426. background-color: #69CDCF;
  3427. color: #fff;
  3428. cursor: pointer;
  3429. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3430. -webkit-transition: text-shadow 0.2s ease-out;
  3431. transition: text-shadow 0.2s ease-out;
  3432. text-align: center;
  3433. text-decoration: none;
  3434. }
  3435. /* line 66, ../scss/styles.scss */
  3436. #block-materio-user-user-register a.join:hover, #block-materio-user-user-register a.join:focus, #block-materio-user-user-createaccount a.join:hover, #block-materio-user-user-createaccount a.join:focus {
  3437. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3438. }
  3439. /* line 69, ../scss/styles.scss */
  3440. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3441. -webkit-transition: text-shadow 0s ease-out;
  3442. transition: text-shadow 0s ease-out;
  3443. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3444. }
  3445. @media only screen and (max-width: 40em) {
  3446. /* line 633, ../scss/styles.scss */
  3447. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3448. background-position: 160% 50%;
  3449. }
  3450. /* line 728, ../scss/styles.scss */
  3451. #block-materio-user-user-register .form-item-mail input.form-text, #block-materio-user-user-register .form-item-name input.form-text, #block-materio-user-user-createaccount .form-item-mail input.form-text, #block-materio-user-user-createaccount .form-item-name input.form-text {
  3452. width: 7em;
  3453. }
  3454. }
  3455. @media only screen and (max-width: 40em) {
  3456. /* line 633, ../scss/styles.scss */
  3457. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3458. min-height: 60px;
  3459. padding: 15px 0;
  3460. }
  3461. /* line 733, ../scss/styles.scss */
  3462. #block-materio-user-user-register #user-login, #block-materio-user-user-register > h3:first-child, #block-materio-user-user-register > h3 span, #block-materio-user-user-createaccount #user-login, #block-materio-user-user-createaccount > h3:first-child, #block-materio-user-user-createaccount > h3 span {
  3463. display: none;
  3464. }
  3465. }
  3466. /* line 736, ../scss/styles.scss */
  3467. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3468. color: #b94a48;
  3469. font-size: 12px;
  3470. }
  3471. /* line 740, ../scss/styles.scss */
  3472. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3473. padding: 0.5em 0.5em 5em 0.5em;
  3474. width: 400px;
  3475. background-color: #fff;
  3476. padding: 5px;
  3477. border-radius: 5px;
  3478. background-clip: padding-box;
  3479. }
  3480. /* line 750, ../scss/styles.scss */
  3481. .modal-content #block-materio-user-user-register #user-register-form div.homepage-textfield, .modal-content #block-materio-user-user-createaccount #user-register-form div.homepage-textfield {
  3482. display: none;
  3483. }
  3484. /* line 752, ../scss/styles.scss */
  3485. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3486. font-size: 12px;
  3487. }
  3488. /** content-top */
  3489. /* line 761, ../scss/styles.scss */
  3490. #content-top {
  3491. /** flag-list */
  3492. }
  3493. /* line 765, ../scss/styles.scss */
  3494. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3495. font-size: 10px;
  3496. color: #666666;
  3497. font-weight: 300;
  3498. }
  3499. /* line 768, ../scss/styles.scss */
  3500. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3501. margin-top: 40px;
  3502. }
  3503. /* line 770, ../scss/styles.scss */
  3504. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3505. font-size: 12px;
  3506. font-weight: 700;
  3507. margin: 0;
  3508. line-height: 1.2;
  3509. color: #000;
  3510. }
  3511. /* line 772, ../scss/styles.scss */
  3512. #content-top #block-materio-flag-materio-flag-mybookmarks h2 a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks h2 i.fi-xicon-remove, #content-top #block-materio-flag-materio-flag-mylists h2 a.open-list, #content-top #block-materio-flag-materio-flag-mylists h2 i.fi-xicon-remove {
  3513. display: moz-inline-stack;
  3514. display: inline-block;
  3515. vertical-align: top;
  3516. zoom: 1;
  3517. *display: inline;
  3518. cursor: pointer;
  3519. color: #000;
  3520. opacity: 0;
  3521. -webkit-transition: opacity 0.1s ease-out;
  3522. transition: opacity 0.1s ease-out;
  3523. }
  3524. /* line 779, ../scss/styles.scss */
  3525. #content-top #block-materio-flag-materio-flag-mybookmarks:hover a.open-list, #content-top #block-materio-flag-materio-flag-mybookmarks:hover i.fi-x, #content-top #block-materio-flag-materio-flag-mylists:hover a.open-list, #content-top #block-materio-flag-materio-flag-mylists:hover i.fi-x {
  3526. opacity: 1;
  3527. }
  3528. /* line 784, ../scss/styles.scss */
  3529. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3530. cursor: pointer;
  3531. }
  3532. /* line 788, ../scss/styles.scss */
  3533. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3534. height: 0;
  3535. overflow: hidden;
  3536. }
  3537. /* line 790, ../scss/styles.scss */
  3538. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3539. height: auto;
  3540. }
  3541. /* line 793, ../scss/styles.scss */
  3542. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks article.node.vm-bookmark, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks article.node.vm-bookmark {
  3543. overflow: hidden;
  3544. }
  3545. /* line 801, ../scss/styles.scss */
  3546. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section .flaged {
  3547. height: 0;
  3548. overflow: hidden;
  3549. }
  3550. /* line 805, ../scss/styles.scss */
  3551. #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mybookmarks .mylists section.active .flaged, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active h2, #content-top #block-materio-flag-materio-flag-mylists .mylists section.active .flaged {
  3552. height: auto;
  3553. }
  3554. /* line 817, ../scss/styles.scss */
  3555. #tool-bar {
  3556. position: relative;
  3557. }
  3558. /* line 820, ../scss/styles.scss */
  3559. #tool-bar .inner-content {
  3560. padding-top: 10px;
  3561. padding-bottom: 10px;
  3562. }
  3563. /* line 822, ../scss/styles.scss */
  3564. #tool-bar .inner-content > * {
  3565. display: moz-inline-stack;
  3566. display: inline-block;
  3567. vertical-align: top;
  3568. zoom: 1;
  3569. *display: inline;
  3570. vertical-align: middle;
  3571. }
  3572. @media only screen and (max-width: 40em) {
  3573. /* line 820, ../scss/styles.scss */
  3574. #tool-bar .inner-content {
  3575. padding: 0;
  3576. }
  3577. /* line 829, ../scss/styles.scss */
  3578. #tool-bar .inner-content h1 {
  3579. line-height: 0.5;
  3580. }
  3581. }
  3582. /* line 840, ../scss/styles.scss */
  3583. .oldie #tool-bar {
  3584. background-color: #B1ADAD;
  3585. padding: 0 10px;
  3586. }
  3587. /* line 842, ../scss/styles.scss */
  3588. #tool-bar .btn-group {
  3589. padding: 0;
  3590. border-radius: 3px;
  3591. background-clip: padding-box;
  3592. background-color: #fff;
  3593. margin: 4px;
  3594. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3595. -webkit-transition: box-shadow 0.3s ease-out;
  3596. transition: box-shadow 0.3s ease-out;
  3597. }
  3598. /* line 40, ../scss/styles.scss */
  3599. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3600. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  3601. }
  3602. /* line 43, ../scss/styles.scss */
  3603. #tool-bar .btn-group:active {
  3604. -webkit-transition: box-shadow 0s ease-out;
  3605. transition: box-shadow 0s ease-out;
  3606. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3607. }
  3608. /* line 847, ../scss/styles.scss */
  3609. #tool-bar #block-materio-page-title-materio-page-title {
  3610. margin: 0 10px 0 0;
  3611. }
  3612. /* line 850, ../scss/styles.scss */
  3613. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3614. margin: 0;
  3615. font-size: 24px;
  3616. text-transform: capitalize;
  3617. font-weight: 300;
  3618. line-height: 1;
  3619. }
  3620. /* line 852, ../scss/styles.scss */
  3621. #tool-bar #block-materio-page-title-materio-page-title i {
  3622. vertical-align: middle;
  3623. margin-right: 5px;
  3624. }
  3625. /* line 853, ../scss/styles.scss */
  3626. #tool-bar #block-materio-page-title-materio-page-title i.icon-materio-folder {
  3627. margin-bottom: 2px;
  3628. }
  3629. /* line 854, ../scss/styles.scss */
  3630. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3631. visibility: hidden;
  3632. }
  3633. /* line 118, ../scss/styles.scss */
  3634. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3635. margin-top: -100000px;
  3636. }
  3637. /* line 121, ../scss/styles.scss */
  3638. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3639. opacity: 0;
  3640. -webkit-transition: visibility 0s 0.3s;
  3641. transition: visibility 0s 0.3s;
  3642. }
  3643. /* line 124, ../scss/styles.scss */
  3644. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3645. -webkit-transition: margin-top 0s 0.3s;
  3646. transition: margin-top 0s 0.3s;
  3647. }
  3648. /* line 856, ../scss/styles.scss */
  3649. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3650. margin: 0 0 0 5px;
  3651. }
  3652. /* line 859, ../scss/styles.scss */
  3653. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3654. visibility: visible;
  3655. }
  3656. /* line 110, ../scss/styles.scss */
  3657. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3658. opacity: 1;
  3659. -webkit-transition: opacity 0.3s ease-out;
  3660. transition: opacity 0.3s ease-out;
  3661. }
  3662. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3663. /* line 847, ../scss/styles.scss */
  3664. #tool-bar #block-materio-page-title-materio-page-title {
  3665. display: block;
  3666. }
  3667. }
  3668. /* line 868, ../scss/styles.scss */
  3669. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3670. display: moz-inline-stack;
  3671. display: inline-block;
  3672. vertical-align: top;
  3673. zoom: 1;
  3674. *display: inline;
  3675. margin: 0 2px;
  3676. }
  3677. /* line 870, ../scss/styles.scss */
  3678. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3679. cursor: normal;
  3680. }
  3681. /* line 871, ../scss/styles.scss */
  3682. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3683. display: none;
  3684. font-size: 10px;
  3685. }
  3686. @media only screen and (max-width: 40em) {
  3687. /* line 874, ../scss/styles.scss */
  3688. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3689. display: block;
  3690. }
  3691. /* line 874, ../scss/styles.scss */
  3692. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3693. display: none;
  3694. }
  3695. }
  3696. @media only screen and (max-width: 40em) {
  3697. /* line 877, ../scss/styles.scss */
  3698. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium {
  3699. display: block;
  3700. }
  3701. }
  3702. @media only screen and (max-width: 40em) {
  3703. /* line 881, ../scss/styles.scss */
  3704. html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardsmall, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardmedium, html.no-touch #tool-bar #block-materio-search-api-materio-search-api-viewmode:hover .viewmode-link.viewmode-cardbig, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardsmall, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardmedium, #tool-bar #block-materio-search-api-materio-search-api-viewmode.hovered .viewmode-link.viewmode-cardbig {
  3705. display: block;
  3706. }
  3707. }
  3708. /* line 885, ../scss/styles.scss */
  3709. #tool-bar #block-materio-search-api-materio-search-api-search {
  3710. float: right;
  3711. }
  3712. /* line 889, ../scss/styles.scss */
  3713. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3714. display: moz-inline-stack;
  3715. display: inline-block;
  3716. vertical-align: top;
  3717. zoom: 1;
  3718. *display: inline;
  3719. margin: 0 0 0 10px;
  3720. padding: 3px 10px;
  3721. background-color: #fff;
  3722. border-radius: 3px;
  3723. background-clip: padding-box;
  3724. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3725. -webkit-transition: box-shadow 0.3s ease-out;
  3726. transition: box-shadow 0.3s ease-out;
  3727. text-align: right;
  3728. }
  3729. /* line 40, ../scss/styles.scss */
  3730. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3731. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  3732. }
  3733. /* line 43, ../scss/styles.scss */
  3734. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3735. -webkit-transition: box-shadow 0s ease-out;
  3736. transition: box-shadow 0s ease-out;
  3737. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3738. }
  3739. /* line 896, ../scss/styles.scss */
  3740. #tool-bar #materio-search-api-search-form {
  3741. text-align: right;
  3742. display: moz-inline-stack;
  3743. display: inline-block;
  3744. vertical-align: top;
  3745. zoom: 1;
  3746. *display: inline;
  3747. margin: 0;
  3748. }
  3749. /* line 900, ../scss/styles.scss */
  3750. #tool-bar #materio-search-api-search-form .form-item, #tool-bar #materio-search-api-search-form input, #tool-bar #materio-search-api-search-form .form-checkboxes {
  3751. display: moz-inline-stack;
  3752. display: inline-block;
  3753. vertical-align: top;
  3754. zoom: 1;
  3755. *display: inline;
  3756. margin: 0;
  3757. vertical-align: middle;
  3758. padding: 0;
  3759. }
  3760. /* line 902, ../scss/styles.scss */
  3761. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3762. padding: 3px;
  3763. font-size: 12px;
  3764. }
  3765. /* line 904, ../scss/styles.scss */
  3766. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3767. margin: 0 5px;
  3768. }
  3769. /* line 906, ../scss/styles.scss */
  3770. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3771. font-size: 10px;
  3772. }
  3773. /* line 910, ../scss/styles.scss */
  3774. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3775. border: 1px solid #ccc;
  3776. border-radius: 20px;
  3777. background-clip: padding-box;
  3778. padding: 4px 5px;
  3779. height: 25px;
  3780. font-size: 12px;
  3781. line-height: 1;
  3782. background-position: 100% 5px;
  3783. width: 105%;
  3784. }
  3785. /* line 916, ../scss/styles.scss */
  3786. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3787. background-position: 100% -15px;
  3788. }
  3789. /* line 920, ../scss/styles.scss */
  3790. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3791. background-color: #1a1a1a;
  3792. }
  3793. /* line 925, ../scss/styles.scss */
  3794. #tool-bar #materio-search-api-search-form input#edit-create {
  3795. padding: 3px;
  3796. }
  3797. /* line 927, ../scss/styles.scss */
  3798. #tool-bar #materio-search-api-search-form.loading {
  3799. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  3800. }
  3801. /* line 929, ../scss/styles.scss */
  3802. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3803. visibility: hidden;
  3804. }
  3805. @media only screen and (max-width: 40em) {
  3806. /* line 933, ../scss/styles.scss */
  3807. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3808. width: 16em;
  3809. }
  3810. /* line 934, ../scss/styles.scss */
  3811. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3812. display: none;
  3813. }
  3814. }
  3815. /* line 940, ../scss/styles.scss */
  3816. #center {
  3817. background-color: #e6e6e6;
  3818. border-radius: 10px;
  3819. background-clip: padding-box;
  3820. }
  3821. /* line 942, ../scss/styles.scss */
  3822. .node-type-page #center {
  3823. background-color: #fff;
  3824. }
  3825. /* line 943, ../scss/styles.scss */
  3826. .ie8 #center {
  3827. height: 100%;
  3828. margin-top: 20px;
  3829. }
  3830. /* line 947, ../scss/styles.scss */
  3831. #content {
  3832. -webkit-transition: height 0.3s ease-out;
  3833. transition: height 0.3s ease-out;
  3834. }
  3835. /* line 951, ../scss/styles.scss */
  3836. #content.faded {
  3837. opacity: 0.5;
  3838. -webkit-transition: opacity 0.3s ease-out;
  3839. transition: opacity 0.3s ease-out;
  3840. }
  3841. /* line 956, ../scss/styles.scss */
  3842. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3843. padding: 0 0 30px 0;
  3844. margin: 0 0 20px 0;
  3845. }
  3846. /* line 959, ../scss/styles.scss */
  3847. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3848. background-image: url("../img/ajax-loader.gif");
  3849. background-position: center bottom;
  3850. background-repeat: no-repeat;
  3851. }
  3852. /* line 965, ../scss/styles.scss */
  3853. #content .materiobase-results p.search-performance, #content .materiobase-results p.flaglist-infos, #content .materiobase-results p.actualities-infos, #content .materiobase-actuality p.search-performance, #content .materiobase-actuality p.flaglist-infos, #content .materiobase-actuality p.actualities-infos, #content .materio-flags-list p.search-performance, #content .materio-flags-list p.flaglist-infos, #content .materio-flags-list p.actualities-infos {
  3854. font-size: 12px;
  3855. font-weight: 500;
  3856. margin: 0;
  3857. padding: 10px 0 5px 15px;
  3858. }
  3859. /* line 971, ../scss/styles.scss */
  3860. #content .materiobase-results .search-results, #content .materiobase-results .actuality-items, #content .materiobase-results .flaglist-items, #content .materiobase-actuality .search-results, #content .materiobase-actuality .actuality-items, #content .materiobase-actuality .flaglist-items, #content .materio-flags-list .search-results, #content .materio-flags-list .actuality-items, #content .materio-flags-list .flaglist-items {
  3861. font-size: 0;
  3862. text-align: center;
  3863. }
  3864. /* line 973, ../scss/styles.scss */
  3865. #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * {
  3866. font-size: 16px;
  3867. }
  3868. /* line 975, ../scss/styles.scss */
  3869. #content .materiobase-results .search-results > *, #content .materiobase-results .actuality-items > *, #content .materiobase-results .flaglist-items > *, #content .materiobase-actuality .search-results > *, #content .materiobase-actuality .actuality-items > *, #content .materiobase-actuality .flaglist-items > *, #content .materio-flags-list .search-results > *, #content .materio-flags-list .actuality-items > *, #content .materio-flags-list .flaglist-items > * {
  3870. text-align: left;
  3871. }
  3872. /* line 981, ../scss/styles.scss */
  3873. #content ul.pager {
  3874. padding: 1em 0;
  3875. text-align: left;
  3876. }
  3877. /* line 983, ../scss/styles.scss */
  3878. .ie8 #content ul.pager {
  3879. position: absolute;
  3880. left: 37px;
  3881. bottom: 35px;
  3882. }
  3883. /* line 985, ../scss/styles.scss */
  3884. #content ul.pager li {
  3885. margin: 0;
  3886. display: moz-inline-stack;
  3887. display: inline-block;
  3888. vertical-align: top;
  3889. zoom: 1;
  3890. *display: inline;
  3891. vertical-align: middle;
  3892. }
  3893. /* line 987, ../scss/styles.scss */
  3894. #content ul.pager .pager-current, #content ul.pager a {
  3895. color: #000;
  3896. font-size: 12px;
  3897. }
  3898. /* line 988, ../scss/styles.scss */
  3899. #content ul.pager .pager-current {
  3900. font-weight: 900;
  3901. font-size: 14px;
  3902. }
  3903. /* line 988, ../scss/styles.scss */
  3904. .ie8 #content ul.pager .pager-current {
  3905. background: #fff;
  3906. padding: 0.3em 1em 0.3em 1em;
  3907. margin-top: 0.05em;
  3908. border: 1px solid #333333;
  3909. }
  3910. /* line 989, ../scss/styles.scss */
  3911. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3912. font-size: 24px;
  3913. font-weight: 300;
  3914. }
  3915. /** #content-bottom */
  3916. /* line 1000, ../scss/styles.scss */
  3917. #content-bottom {
  3918. padding-top: 10px;
  3919. }
  3920. /** CARDS */
  3921. /** card search performance */
  3922. /* line 1179, ../scss/styles.scss */
  3923. article.search-performance .inner {
  3924. padding: 1em;
  3925. }
  3926. /* line 1183, ../scss/styles.scss */
  3927. article.search-performance p {
  3928. font-size: 14px;
  3929. }
  3930. /* line 1185, ../scss/styles.scss */
  3931. article.search-performance a.button {
  3932. display: block;
  3933. margin: 10px auto;
  3934. max-width: 10em;
  3935. font-size: 18px;
  3936. padding: 0.1em 0.6em 0.2em;
  3937. border-radius: 0.3em;
  3938. background-clip: padding-box;
  3939. font-weight: bold;
  3940. border: 2px solid #69CDCF;
  3941. background-color: #69CDCF;
  3942. color: #fff;
  3943. cursor: pointer;
  3944. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3945. -webkit-transition: text-shadow 0.2s ease-out;
  3946. transition: text-shadow 0.2s ease-out;
  3947. text-align: center;
  3948. text-decoration: none;
  3949. }
  3950. /* line 66, ../scss/styles.scss */
  3951. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3952. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3953. }
  3954. /* line 69, ../scss/styles.scss */
  3955. article.search-performance a.button:active {
  3956. -webkit-transition: text-shadow 0s ease-out;
  3957. transition: text-shadow 0s ease-out;
  3958. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3959. }
  3960. /* line 1193, ../scss/styles.scss */
  3961. article.search-performance.view-mode-cardsmall {
  3962. width: 327px;
  3963. height: 140px;
  3964. display: moz-inline-stack;
  3965. display: inline-block;
  3966. vertical-align: top;
  3967. zoom: 1;
  3968. *display: inline;
  3969. position: relative;
  3970. margin: 7px;
  3971. border-radius: 5px;
  3972. background-clip: padding-box;
  3973. background-color: #FFF;
  3974. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3975. -webkit-transition: box-shadow 0.3s ease-out;
  3976. transition: box-shadow 0.3s ease-out;
  3977. }
  3978. /* line 1196, ../scss/styles.scss */
  3979. article.search-performance.view-mode-cardmedium {
  3980. width: 210px;
  3981. height: 295px;
  3982. display: moz-inline-stack;
  3983. display: inline-block;
  3984. vertical-align: top;
  3985. zoom: 1;
  3986. *display: inline;
  3987. position: relative;
  3988. margin: 7px;
  3989. border-radius: 5px;
  3990. background-clip: padding-box;
  3991. background-color: #FFF;
  3992. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3993. -webkit-transition: box-shadow 0.3s ease-out;
  3994. transition: box-shadow 0.3s ease-out;
  3995. }
  3996. /* line 1198, ../scss/styles.scss */
  3997. article.search-performance.view-mode-cardmedium .inner {
  3998. padding: 4em 1em 0;
  3999. }
  4000. /* line 1202, ../scss/styles.scss */
  4001. article.search-performance.view-mode-cardbig {
  4002. width: 425px;
  4003. height: 115px;
  4004. display: moz-inline-stack;
  4005. display: inline-block;
  4006. vertical-align: top;
  4007. zoom: 1;
  4008. *display: inline;
  4009. position: relative;
  4010. margin: 7px;
  4011. border-radius: 5px;
  4012. background-clip: padding-box;
  4013. background-color: #FFF;
  4014. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4015. -webkit-transition: box-shadow 0.3s ease-out;
  4016. transition: box-shadow 0.3s ease-out;
  4017. display: block;
  4018. margin: 0 auto;
  4019. }
  4020. /* line 1206, ../scss/styles.scss */
  4021. article.search-performance.view-mode-cardfull {
  4022. width: 850px;
  4023. height: 115px;
  4024. display: moz-inline-stack;
  4025. display: inline-block;
  4026. vertical-align: top;
  4027. zoom: 1;
  4028. *display: inline;
  4029. position: relative;
  4030. margin: 7px;
  4031. border-radius: 5px;
  4032. background-clip: padding-box;
  4033. background-color: #FFF;
  4034. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4035. -webkit-transition: box-shadow 0.3s ease-out;
  4036. transition: box-shadow 0.3s ease-out;
  4037. display: block;
  4038. margin: 0 auto;
  4039. }
  4040. /* line 1208, ../scss/styles.scss */
  4041. article.search-performance.view-mode-cardfull .inner {
  4042. padding: 1em 212px;
  4043. }
  4044. /** CARD BOOKMARKS */
  4045. /* line 1216, ../scss/styles.scss */
  4046. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  4047. width: 50px;
  4048. height: 70px;
  4049. display: moz-inline-stack;
  4050. display: inline-block;
  4051. vertical-align: top;
  4052. zoom: 1;
  4053. *display: inline;
  4054. position: relative;
  4055. margin: 7px;
  4056. border-radius: 5px;
  4057. background-clip: padding-box;
  4058. background-color: #FFF;
  4059. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4060. -webkit-transition: box-shadow 0.3s ease-out;
  4061. transition: box-shadow 0.3s ease-out;
  4062. margin: 3px;
  4063. }
  4064. /* line 1034, ../scss/styles.scss */
  4065. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  4066. border-radius: 5px;
  4067. background-clip: padding-box;
  4068. overflow: hidden;
  4069. }
  4070. /* line 1039, ../scss/styles.scss */
  4071. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  4072. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  4073. }
  4074. /* line 1041, ../scss/styles.scss */
  4075. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  4076. opacity: 0;
  4077. }
  4078. /* line 1043, ../scss/styles.scss */
  4079. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  4080. -webkit-transition: margin 0.3s ease-out;
  4081. transition: margin 0.3s ease-out;
  4082. }
  4083. /* line 1045, ../scss/styles.scss */
  4084. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  4085. margin-left: -50px;
  4086. margin-right: 50px;
  4087. }
  4088. /* line 1047, ../scss/styles.scss */
  4089. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  4090. position: absolute;
  4091. top: 0;
  4092. left: 0;
  4093. z-index: 999;
  4094. }
  4095. /* line 1055, ../scss/styles.scss */
  4096. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  4097. -webkit-transition: width 0.3s ease-out;
  4098. transition: width 0.3s ease-out;
  4099. width: 0;
  4100. padding-left: 0;
  4101. padding-right: 0;
  4102. margin-right: 0;
  4103. margin-left: 0;
  4104. overflow: hidden;
  4105. }
  4106. /* line 1065, ../scss/styles.scss */
  4107. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  4108. position: absolute;
  4109. top: 0;
  4110. right: 0;
  4111. z-index: 11;
  4112. padding: 5px 0;
  4113. border-radius: 0 5px 0 3px;
  4114. background-clip: padding-box;
  4115. font-size: 10px;
  4116. background-color: rgba(255, 255, 255, 0.9);
  4117. color: #000;
  4118. }
  4119. /* line 1077, ../scss/styles.scss */
  4120. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  4121. color: #000;
  4122. }
  4123. /* line 1078, ../scss/styles.scss */
  4124. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4125. background-color: rgba(255, 255, 255, 0.9);
  4126. }
  4127. /* line 1079, ../scss/styles.scss */
  4128. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  4129. font-weight: 900;
  4130. font-size: 14px;
  4131. }
  4132. /* line 1081, ../scss/styles.scss */
  4133. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4134. padding: 0;
  4135. margin: 0;
  4136. }
  4137. /* line 1083, ../scss/styles.scss */
  4138. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  4139. position: relative;
  4140. }
  4141. /* line 1086, ../scss/styles.scss */
  4142. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  4143. margin: 0 5px;
  4144. }
  4145. /* line 1086, ../scss/styles.scss */
  4146. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  4147. cursor: pointer;
  4148. }
  4149. /* line 1089, ../scss/styles.scss */
  4150. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4151. position: absolute;
  4152. right: 0;
  4153. top: 0;
  4154. margin-right: 22px;
  4155. min-width: 80px;
  4156. padding: 0;
  4157. display: block;
  4158. border-radius: 3px;
  4159. background-clip: padding-box;
  4160. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  4161. }
  4162. /* line 1093, ../scss/styles.scss */
  4163. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  4164. padding: 0;
  4165. margin: 0;
  4166. line-height: 1;
  4167. display: block;
  4168. height: 0;
  4169. overflow: hidden;
  4170. -webkit-transition: height 0.2s ease-out;
  4171. transition: height 0.2s ease-out;
  4172. }
  4173. /* line 1097, ../scss/styles.scss */
  4174. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  4175. display: block;
  4176. }
  4177. /* line 1100, ../scss/styles.scss */
  4178. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  4179. width: 160px;
  4180. font-size: 0;
  4181. }
  4182. /* line 1103, ../scss/styles.scss */
  4183. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  4184. font-size: 11px;
  4185. }
  4186. /* line 1108, ../scss/styles.scss */
  4187. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li {
  4188. display: moz-inline-stack;
  4189. display: inline-block;
  4190. vertical-align: top;
  4191. zoom: 1;
  4192. *display: inline;
  4193. min-width: 48%;
  4194. max-width: 98%;
  4195. padding-left: 2px;
  4196. }
  4197. /* line 1110, ../scss/styles.scss */
  4198. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a {
  4199. color: #a6a6a6;
  4200. -webkit-transition: color 0.2s ease-out;
  4201. transition: color 0.2s ease-out;
  4202. }
  4203. /* line 1112, ../scss/styles.scss */
  4204. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li a.unflag-action {
  4205. color: #000;
  4206. text-decoration: none;
  4207. }
  4208. /* line 1116, ../scss/styles.scss */
  4209. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4210. display: block;
  4211. width: 100%;
  4212. }
  4213. /* line 1118, ../scss/styles.scss */
  4214. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  4215. margin-top: 1px;
  4216. padding-top: 1px;
  4217. border-top: 1px solid #e6e6e6;
  4218. }
  4219. /* line 1119, ../scss/styles.scss */
  4220. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  4221. color: #000;
  4222. }
  4223. /* line 1121, ../scss/styles.scss */
  4224. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading {
  4225. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  4226. }
  4227. /* line 1122, ../scss/styles.scss */
  4228. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links li.loading a {
  4229. visibility: hidden;
  4230. }
  4231. /* line 1127, ../scss/styles.scss */
  4232. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  4233. background: #FFF;
  4234. }
  4235. /* line 1132, ../scss/styles.scss */
  4236. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  4237. padding: 5px 5px;
  4238. }
  4239. /* line 1134, ../scss/styles.scss */
  4240. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  4241. height: 17px;
  4242. }
  4243. /* line 1147, ../scss/styles.scss */
  4244. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4245. position: absolute;
  4246. top: 0;
  4247. left: 0;
  4248. z-index: 11;
  4249. padding: 5px;
  4250. border-radius: 5px 0 3px 0;
  4251. background-clip: padding-box;
  4252. font-size: 10px;
  4253. vertical-align: top;
  4254. background-color: rgba(255, 255, 255, 0.9);
  4255. color: #000;
  4256. }
  4257. /* line 1153, ../scss/styles.scss */
  4258. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  4259. padding: 3px 0 0 4px;
  4260. display: moz-inline-stack;
  4261. display: inline-block;
  4262. vertical-align: top;
  4263. zoom: 1;
  4264. *display: inline;
  4265. }
  4266. /* line 1156, ../scss/styles.scss */
  4267. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  4268. font-size: 12px;
  4269. padding-top: 4em;
  4270. margin-top: -4.5em;
  4271. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4272. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4273. position: relative;
  4274. }
  4275. /* line 1164, ../scss/styles.scss */
  4276. article.node-materiau.vm-bookmark .side.oops p, article.node-materiau.vm-bookmark .side .upgrade p, article.node-breve.vm-bookmark .side.oops p, article.node-breve.vm-bookmark .side .upgrade p {
  4277. padding: 10px;
  4278. font-size: 12px;
  4279. }
  4280. /* line 1166, ../scss/styles.scss */
  4281. article.node-materiau.vm-bookmark .side.oops p a, article.node-materiau.vm-bookmark .side .upgrade p a, article.node-breve.vm-bookmark .side.oops p a, article.node-breve.vm-bookmark .side .upgrade p a {
  4282. display: block;
  4283. margin: 10px 0;
  4284. font-size: 18px;
  4285. padding: 0.1em 0.6em 0.2em;
  4286. border-radius: 0.3em;
  4287. background-clip: padding-box;
  4288. font-weight: bold;
  4289. border: 2px solid #69CDCF;
  4290. background-color: #69CDCF;
  4291. color: #fff;
  4292. cursor: pointer;
  4293. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4294. -webkit-transition: text-shadow 0.2s ease-out;
  4295. transition: text-shadow 0.2s ease-out;
  4296. text-align: center;
  4297. text-decoration: none;
  4298. }
  4299. /* line 66, ../scss/styles.scss */
  4300. article.node-materiau.vm-bookmark .side.oops p a:hover, article.node-materiau.vm-bookmark .side.oops p a:focus, article.node-materiau.vm-bookmark .side .upgrade p a:hover, article.node-materiau.vm-bookmark .side .upgrade p a:focus, article.node-breve.vm-bookmark .side.oops p a:hover, article.node-breve.vm-bookmark .side.oops p a:focus, article.node-breve.vm-bookmark .side .upgrade p a:hover, article.node-breve.vm-bookmark .side .upgrade p a:focus {
  4301. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  4302. }
  4303. /* line 69, ../scss/styles.scss */
  4304. article.node-materiau.vm-bookmark .side.oops p a:active, article.node-materiau.vm-bookmark .side .upgrade p a:active, article.node-breve.vm-bookmark .side.oops p a:active, article.node-breve.vm-bookmark .side .upgrade p a:active {
  4305. -webkit-transition: text-shadow 0s ease-out;
  4306. transition: text-shadow 0s ease-out;
  4307. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4308. }
  4309. /* line 1219, ../scss/styles.scss */
  4310. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4311. display: none;
  4312. }
  4313. /* line 1223, ../scss/styles.scss */
  4314. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4315. position: relative;
  4316. z-index: 1;
  4317. background-color: #fff;
  4318. }
  4319. /* line 77, ../scss/styles.scss */
  4320. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4321. position: absolute;
  4322. top: 0;
  4323. left: 0;
  4324. }
  4325. /* line 79, ../scss/styles.scss */
  4326. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4327. position: relative;
  4328. z-index: 1;
  4329. }
  4330. /* line 1225, ../scss/styles.scss */
  4331. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4332. display: none;
  4333. }
  4334. /** CARD SMALL */
  4335. /* line 1229, ../scss/styles.scss */
  4336. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4337. width: 100px;
  4338. height: 140px;
  4339. display: moz-inline-stack;
  4340. display: inline-block;
  4341. vertical-align: top;
  4342. zoom: 1;
  4343. *display: inline;
  4344. position: relative;
  4345. margin: 7px;
  4346. border-radius: 5px;
  4347. background-clip: padding-box;
  4348. background-color: #FFF;
  4349. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4350. -webkit-transition: box-shadow 0.3s ease-out;
  4351. transition: box-shadow 0.3s ease-out;
  4352. }
  4353. /* line 1034, ../scss/styles.scss */
  4354. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4355. border-radius: 5px;
  4356. background-clip: padding-box;
  4357. overflow: hidden;
  4358. }
  4359. /* line 1039, ../scss/styles.scss */
  4360. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4361. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  4362. }
  4363. /* line 1041, ../scss/styles.scss */
  4364. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4365. opacity: 0;
  4366. }
  4367. /* line 1043, ../scss/styles.scss */
  4368. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4369. -webkit-transition: margin 0.3s ease-out;
  4370. transition: margin 0.3s ease-out;
  4371. }
  4372. /* line 1045, ../scss/styles.scss */
  4373. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4374. margin-left: -100px;
  4375. margin-right: 100px;
  4376. }
  4377. /* line 1047, ../scss/styles.scss */
  4378. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4379. position: absolute;
  4380. top: 0;
  4381. left: 0;
  4382. z-index: 999;
  4383. }
  4384. /* line 1055, ../scss/styles.scss */
  4385. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4386. -webkit-transition: width 0.3s ease-out;
  4387. transition: width 0.3s ease-out;
  4388. width: 0;
  4389. padding-left: 0;
  4390. padding-right: 0;
  4391. margin-right: 0;
  4392. margin-left: 0;
  4393. overflow: hidden;
  4394. }
  4395. /* line 1065, ../scss/styles.scss */
  4396. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4397. position: absolute;
  4398. top: 0;
  4399. right: 0;
  4400. z-index: 11;
  4401. padding: 5px 0;
  4402. border-radius: 0 5px 0 3px;
  4403. background-clip: padding-box;
  4404. font-size: 10px;
  4405. background-color: rgba(255, 255, 255, 0.9);
  4406. color: #000;
  4407. }
  4408. /* line 1077, ../scss/styles.scss */
  4409. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4410. color: #000;
  4411. }
  4412. /* line 1078, ../scss/styles.scss */
  4413. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4414. background-color: rgba(255, 255, 255, 0.9);
  4415. }
  4416. /* line 1079, ../scss/styles.scss */
  4417. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4418. font-weight: 900;
  4419. font-size: 14px;
  4420. }
  4421. /* line 1081, ../scss/styles.scss */
  4422. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4423. padding: 0;
  4424. margin: 0;
  4425. }
  4426. /* line 1083, ../scss/styles.scss */
  4427. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4428. position: relative;
  4429. }
  4430. /* line 1086, ../scss/styles.scss */
  4431. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4432. margin: 0 5px;
  4433. }
  4434. /* line 1086, ../scss/styles.scss */
  4435. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4436. cursor: pointer;
  4437. }
  4438. /* line 1089, ../scss/styles.scss */
  4439. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4440. position: absolute;
  4441. right: 0;
  4442. top: 0;
  4443. margin-right: 22px;
  4444. min-width: 80px;
  4445. padding: 0;
  4446. display: block;
  4447. border-radius: 3px;
  4448. background-clip: padding-box;
  4449. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  4450. }
  4451. /* line 1093, ../scss/styles.scss */
  4452. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4453. padding: 0;
  4454. margin: 0;
  4455. line-height: 1;
  4456. display: block;
  4457. height: 0;
  4458. overflow: hidden;
  4459. -webkit-transition: height 0.2s ease-out;
  4460. transition: height 0.2s ease-out;
  4461. }
  4462. /* line 1097, ../scss/styles.scss */
  4463. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4464. display: block;
  4465. }
  4466. /* line 1100, ../scss/styles.scss */
  4467. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4468. width: 160px;
  4469. font-size: 0;
  4470. }
  4471. /* line 1103, ../scss/styles.scss */
  4472. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4473. font-size: 11px;
  4474. }
  4475. /* line 1108, ../scss/styles.scss */
  4476. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li {
  4477. display: moz-inline-stack;
  4478. display: inline-block;
  4479. vertical-align: top;
  4480. zoom: 1;
  4481. *display: inline;
  4482. min-width: 48%;
  4483. max-width: 98%;
  4484. padding-left: 2px;
  4485. }
  4486. /* line 1110, ../scss/styles.scss */
  4487. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a {
  4488. color: #a6a6a6;
  4489. -webkit-transition: color 0.2s ease-out;
  4490. transition: color 0.2s ease-out;
  4491. }
  4492. /* line 1112, ../scss/styles.scss */
  4493. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li a.unflag-action {
  4494. color: #000;
  4495. text-decoration: none;
  4496. }
  4497. /* line 1116, ../scss/styles.scss */
  4498. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4499. display: block;
  4500. width: 100%;
  4501. }
  4502. /* line 1118, ../scss/styles.scss */
  4503. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  4504. margin-top: 1px;
  4505. padding-top: 1px;
  4506. border-top: 1px solid #e6e6e6;
  4507. }
  4508. /* line 1119, ../scss/styles.scss */
  4509. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  4510. color: #000;
  4511. }
  4512. /* line 1121, ../scss/styles.scss */
  4513. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading {
  4514. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  4515. }
  4516. /* line 1122, ../scss/styles.scss */
  4517. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li.loading a {
  4518. visibility: hidden;
  4519. }
  4520. /* line 1127, ../scss/styles.scss */
  4521. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4522. background: #FFF;
  4523. }
  4524. /* line 1132, ../scss/styles.scss */
  4525. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4526. padding: 5px 5px;
  4527. }
  4528. /* line 1134, ../scss/styles.scss */
  4529. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4530. height: 17px;
  4531. }
  4532. /* line 1147, ../scss/styles.scss */
  4533. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4534. position: absolute;
  4535. top: 0;
  4536. left: 0;
  4537. z-index: 11;
  4538. padding: 5px;
  4539. border-radius: 5px 0 3px 0;
  4540. background-clip: padding-box;
  4541. font-size: 10px;
  4542. vertical-align: top;
  4543. background-color: rgba(255, 255, 255, 0.9);
  4544. color: #000;
  4545. }
  4546. /* line 1153, ../scss/styles.scss */
  4547. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4548. padding: 3px 0 0 4px;
  4549. display: moz-inline-stack;
  4550. display: inline-block;
  4551. vertical-align: top;
  4552. zoom: 1;
  4553. *display: inline;
  4554. }
  4555. /* line 1156, ../scss/styles.scss */
  4556. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4557. font-size: 12px;
  4558. padding-top: 4em;
  4559. margin-top: -4.5em;
  4560. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4561. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4562. position: relative;
  4563. }
  4564. /* line 1164, ../scss/styles.scss */
  4565. article.node-materiau.vm-cardsmall .side.oops p, article.node-materiau.vm-cardsmall .side .upgrade p, article.node-breve.vm-cardsmall .side.oops p, article.node-breve.vm-cardsmall .side .upgrade p {
  4566. padding: 10px;
  4567. font-size: 12px;
  4568. }
  4569. /* line 1166, ../scss/styles.scss */
  4570. article.node-materiau.vm-cardsmall .side.oops p a, article.node-materiau.vm-cardsmall .side .upgrade p a, article.node-breve.vm-cardsmall .side.oops p a, article.node-breve.vm-cardsmall .side .upgrade p a {
  4571. display: block;
  4572. margin: 10px 0;
  4573. font-size: 18px;
  4574. padding: 0.1em 0.6em 0.2em;
  4575. border-radius: 0.3em;
  4576. background-clip: padding-box;
  4577. font-weight: bold;
  4578. border: 2px solid #69CDCF;
  4579. background-color: #69CDCF;
  4580. color: #fff;
  4581. cursor: pointer;
  4582. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4583. -webkit-transition: text-shadow 0.2s ease-out;
  4584. transition: text-shadow 0.2s ease-out;
  4585. text-align: center;
  4586. text-decoration: none;
  4587. }
  4588. /* line 66, ../scss/styles.scss */
  4589. article.node-materiau.vm-cardsmall .side.oops p a:hover, article.node-materiau.vm-cardsmall .side.oops p a:focus, article.node-materiau.vm-cardsmall .side .upgrade p a:hover, article.node-materiau.vm-cardsmall .side .upgrade p a:focus, article.node-breve.vm-cardsmall .side.oops p a:hover, article.node-breve.vm-cardsmall .side.oops p a:focus, article.node-breve.vm-cardsmall .side .upgrade p a:hover, article.node-breve.vm-cardsmall .side .upgrade p a:focus {
  4590. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  4591. }
  4592. /* line 69, ../scss/styles.scss */
  4593. article.node-materiau.vm-cardsmall .side.oops p a:active, article.node-materiau.vm-cardsmall .side .upgrade p a:active, article.node-breve.vm-cardsmall .side.oops p a:active, article.node-breve.vm-cardsmall .side .upgrade p a:active {
  4594. -webkit-transition: text-shadow 0s ease-out;
  4595. transition: text-shadow 0s ease-out;
  4596. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4597. }
  4598. /* line 1231, ../scss/styles.scss */
  4599. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4600. display: none;
  4601. position: absolute;
  4602. font-size: 14px;
  4603. font-weight: 500;
  4604. }
  4605. /* line 1234, ../scss/styles.scss */
  4606. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4607. font-weight: 700;
  4608. }
  4609. /* line 1235, ../scss/styles.scss */
  4610. article.node-materiau.vm-cardsmall .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-reference-materio, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4611. display: moz-inline-stack;
  4612. display: inline-block;
  4613. vertical-align: top;
  4614. zoom: 1;
  4615. *display: inline;
  4616. font-size: 12px;
  4617. }
  4618. /* line 1236, ../scss/styles.scss */
  4619. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4620. float: right;
  4621. }
  4622. /* line 1238, ../scss/styles.scss */
  4623. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4624. position: relative;
  4625. z-index: 1;
  4626. background-color: #fff;
  4627. border-radius: 5px;
  4628. background-clip: padding-box;
  4629. overflow: hidden;
  4630. }
  4631. /* line 77, ../scss/styles.scss */
  4632. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4633. position: absolute;
  4634. top: 0;
  4635. left: 0;
  4636. }
  4637. /* line 79, ../scss/styles.scss */
  4638. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4639. position: relative;
  4640. z-index: 1;
  4641. }
  4642. /* line 1241, ../scss/styles.scss */
  4643. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4644. width: 75px;
  4645. min-width: 75px;
  4646. }
  4647. /* line 1243, ../scss/styles.scss */
  4648. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links li {
  4649. width: 98%;
  4650. }
  4651. /* line 1245, ../scss/styles.scss */
  4652. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4653. background: #FFF;
  4654. }
  4655. /* line 1247, ../scss/styles.scss */
  4656. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4657. visibility: hidden;
  4658. }
  4659. /* line 118, ../scss/styles.scss */
  4660. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4661. margin-top: -100000px;
  4662. }
  4663. /* line 121, ../scss/styles.scss */
  4664. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4665. opacity: 0;
  4666. -webkit-transition: visibility 0s 0.3s;
  4667. transition: visibility 0s 0.3s;
  4668. }
  4669. /* line 124, ../scss/styles.scss */
  4670. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4671. -webkit-transition: margin-top 0s 0.3s;
  4672. transition: margin-top 0s 0.3s;
  4673. }
  4674. /* line 1249, ../scss/styles.scss */
  4675. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4676. visibility: hidden;
  4677. }
  4678. /* line 118, ../scss/styles.scss */
  4679. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4680. margin-top: -100000px;
  4681. }
  4682. /* line 121, ../scss/styles.scss */
  4683. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4684. opacity: 0;
  4685. -webkit-transition: visibility 0s 0.3s;
  4686. transition: visibility 0s 0.3s;
  4687. }
  4688. /* line 124, ../scss/styles.scss */
  4689. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4690. -webkit-transition: margin-top 0s 0.3s;
  4691. transition: margin-top 0s 0.3s;
  4692. }
  4693. /** TOOLTIP SMALL CARD */
  4694. /* line 1254, ../scss/styles.scss */
  4695. #tooltip .group-header.smallcard {
  4696. font-size: 14px;
  4697. font-weight: 500;
  4698. }
  4699. /* line 1256, ../scss/styles.scss */
  4700. #tooltip .group-header.smallcard .field-name-title-field {
  4701. font-weight: 700;
  4702. }
  4703. /* line 1257, ../scss/styles.scss */
  4704. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4705. display: moz-inline-stack;
  4706. display: inline-block;
  4707. vertical-align: top;
  4708. zoom: 1;
  4709. *display: inline;
  4710. font-size: 12px;
  4711. }
  4712. /* line 1258, ../scss/styles.scss */
  4713. #tooltip .group-header.smallcard .field-name-field-localisation {
  4714. float: right;
  4715. }
  4716. /** CARD MEDIUM */
  4717. /* line 1263, ../scss/styles.scss */
  4718. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4719. width: 210px;
  4720. height: 295px;
  4721. display: moz-inline-stack;
  4722. display: inline-block;
  4723. vertical-align: top;
  4724. zoom: 1;
  4725. *display: inline;
  4726. position: relative;
  4727. margin: 7px;
  4728. border-radius: 5px;
  4729. background-clip: padding-box;
  4730. background-color: #FFF;
  4731. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4732. -webkit-transition: box-shadow 0.3s ease-out;
  4733. transition: box-shadow 0.3s ease-out;
  4734. }
  4735. /* line 1034, ../scss/styles.scss */
  4736. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4737. border-radius: 5px;
  4738. background-clip: padding-box;
  4739. overflow: hidden;
  4740. }
  4741. /* line 1039, ../scss/styles.scss */
  4742. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4743. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  4744. }
  4745. /* line 1041, ../scss/styles.scss */
  4746. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4747. opacity: 0;
  4748. }
  4749. /* line 1043, ../scss/styles.scss */
  4750. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4751. -webkit-transition: margin 0.3s ease-out;
  4752. transition: margin 0.3s ease-out;
  4753. }
  4754. /* line 1045, ../scss/styles.scss */
  4755. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4756. margin-left: -210px;
  4757. margin-right: 210px;
  4758. }
  4759. /* line 1047, ../scss/styles.scss */
  4760. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4761. position: absolute;
  4762. top: 0;
  4763. left: 0;
  4764. z-index: 999;
  4765. }
  4766. /* line 1055, ../scss/styles.scss */
  4767. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4768. -webkit-transition: width 0.3s ease-out;
  4769. transition: width 0.3s ease-out;
  4770. width: 0;
  4771. padding-left: 0;
  4772. padding-right: 0;
  4773. margin-right: 0;
  4774. margin-left: 0;
  4775. overflow: hidden;
  4776. }
  4777. /* line 1065, ../scss/styles.scss */
  4778. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4779. position: absolute;
  4780. top: 0;
  4781. right: 0;
  4782. z-index: 11;
  4783. padding: 5px 0;
  4784. border-radius: 0 5px 0 3px;
  4785. background-clip: padding-box;
  4786. font-size: 10px;
  4787. background-color: rgba(255, 255, 255, 0.9);
  4788. color: #000;
  4789. }
  4790. /* line 1077, ../scss/styles.scss */
  4791. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4792. color: #000;
  4793. }
  4794. /* line 1078, ../scss/styles.scss */
  4795. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4796. background-color: rgba(255, 255, 255, 0.9);
  4797. }
  4798. /* line 1079, ../scss/styles.scss */
  4799. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4800. font-weight: 900;
  4801. font-size: 14px;
  4802. }
  4803. /* line 1081, ../scss/styles.scss */
  4804. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4805. padding: 0;
  4806. margin: 0;
  4807. }
  4808. /* line 1083, ../scss/styles.scss */
  4809. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4810. position: relative;
  4811. }
  4812. /* line 1086, ../scss/styles.scss */
  4813. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4814. margin: 0 5px;
  4815. }
  4816. /* line 1086, ../scss/styles.scss */
  4817. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4818. cursor: pointer;
  4819. }
  4820. /* line 1089, ../scss/styles.scss */
  4821. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4822. position: absolute;
  4823. right: 0;
  4824. top: 0;
  4825. margin-right: 22px;
  4826. min-width: 80px;
  4827. padding: 0;
  4828. display: block;
  4829. border-radius: 3px;
  4830. background-clip: padding-box;
  4831. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  4832. }
  4833. /* line 1093, ../scss/styles.scss */
  4834. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4835. padding: 0;
  4836. margin: 0;
  4837. line-height: 1;
  4838. display: block;
  4839. height: 0;
  4840. overflow: hidden;
  4841. -webkit-transition: height 0.2s ease-out;
  4842. transition: height 0.2s ease-out;
  4843. }
  4844. /* line 1097, ../scss/styles.scss */
  4845. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4846. display: block;
  4847. }
  4848. /* line 1100, ../scss/styles.scss */
  4849. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4850. width: 160px;
  4851. font-size: 0;
  4852. }
  4853. /* line 1103, ../scss/styles.scss */
  4854. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4855. font-size: 11px;
  4856. }
  4857. /* line 1108, ../scss/styles.scss */
  4858. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li {
  4859. display: moz-inline-stack;
  4860. display: inline-block;
  4861. vertical-align: top;
  4862. zoom: 1;
  4863. *display: inline;
  4864. min-width: 48%;
  4865. max-width: 98%;
  4866. padding-left: 2px;
  4867. }
  4868. /* line 1110, ../scss/styles.scss */
  4869. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a {
  4870. color: #a6a6a6;
  4871. -webkit-transition: color 0.2s ease-out;
  4872. transition: color 0.2s ease-out;
  4873. }
  4874. /* line 1112, ../scss/styles.scss */
  4875. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li a.unflag-action {
  4876. color: #000;
  4877. text-decoration: none;
  4878. }
  4879. /* line 1116, ../scss/styles.scss */
  4880. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  4881. display: block;
  4882. width: 100%;
  4883. }
  4884. /* line 1118, ../scss/styles.scss */
  4885. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  4886. margin-top: 1px;
  4887. padding-top: 1px;
  4888. border-top: 1px solid #e6e6e6;
  4889. }
  4890. /* line 1119, ../scss/styles.scss */
  4891. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  4892. color: #000;
  4893. }
  4894. /* line 1121, ../scss/styles.scss */
  4895. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading {
  4896. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  4897. }
  4898. /* line 1122, ../scss/styles.scss */
  4899. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links li.loading a {
  4900. visibility: hidden;
  4901. }
  4902. /* line 1127, ../scss/styles.scss */
  4903. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4904. background: #FFF;
  4905. }
  4906. /* line 1132, ../scss/styles.scss */
  4907. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4908. padding: 5px 5px;
  4909. }
  4910. /* line 1134, ../scss/styles.scss */
  4911. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4912. height: 17px;
  4913. }
  4914. /* line 1147, ../scss/styles.scss */
  4915. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4916. position: absolute;
  4917. top: 0;
  4918. left: 0;
  4919. z-index: 11;
  4920. padding: 5px;
  4921. border-radius: 5px 0 3px 0;
  4922. background-clip: padding-box;
  4923. font-size: 10px;
  4924. vertical-align: top;
  4925. background-color: rgba(255, 255, 255, 0.9);
  4926. color: #000;
  4927. }
  4928. /* line 1153, ../scss/styles.scss */
  4929. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4930. padding: 3px 0 0 4px;
  4931. display: moz-inline-stack;
  4932. display: inline-block;
  4933. vertical-align: top;
  4934. zoom: 1;
  4935. *display: inline;
  4936. }
  4937. /* line 1156, ../scss/styles.scss */
  4938. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4939. font-size: 12px;
  4940. padding-top: 4em;
  4941. margin-top: -4.5em;
  4942. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4943. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4944. position: relative;
  4945. }
  4946. /* line 1164, ../scss/styles.scss */
  4947. article.node-materiau.vm-cardmedium .side.oops p, article.node-materiau.vm-cardmedium .side .upgrade p, article.node-breve.vm-cardmedium .side.oops p, article.node-breve.vm-cardmedium .side .upgrade p {
  4948. padding: 10px;
  4949. font-size: 12px;
  4950. }
  4951. /* line 1166, ../scss/styles.scss */
  4952. article.node-materiau.vm-cardmedium .side.oops p a, article.node-materiau.vm-cardmedium .side .upgrade p a, article.node-breve.vm-cardmedium .side.oops p a, article.node-breve.vm-cardmedium .side .upgrade p a {
  4953. display: block;
  4954. margin: 10px 0;
  4955. font-size: 18px;
  4956. padding: 0.1em 0.6em 0.2em;
  4957. border-radius: 0.3em;
  4958. background-clip: padding-box;
  4959. font-weight: bold;
  4960. border: 2px solid #69CDCF;
  4961. background-color: #69CDCF;
  4962. color: #fff;
  4963. cursor: pointer;
  4964. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4965. -webkit-transition: text-shadow 0.2s ease-out;
  4966. transition: text-shadow 0.2s ease-out;
  4967. text-align: center;
  4968. text-decoration: none;
  4969. }
  4970. /* line 66, ../scss/styles.scss */
  4971. article.node-materiau.vm-cardmedium .side.oops p a:hover, article.node-materiau.vm-cardmedium .side.oops p a:focus, article.node-materiau.vm-cardmedium .side .upgrade p a:hover, article.node-materiau.vm-cardmedium .side .upgrade p a:focus, article.node-breve.vm-cardmedium .side.oops p a:hover, article.node-breve.vm-cardmedium .side.oops p a:focus, article.node-breve.vm-cardmedium .side .upgrade p a:hover, article.node-breve.vm-cardmedium .side .upgrade p a:focus {
  4972. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  4973. }
  4974. /* line 69, ../scss/styles.scss */
  4975. article.node-materiau.vm-cardmedium .side.oops p a:active, article.node-materiau.vm-cardmedium .side .upgrade p a:active, article.node-breve.vm-cardmedium .side.oops p a:active, article.node-breve.vm-cardmedium .side .upgrade p a:active {
  4976. -webkit-transition: text-shadow 0s ease-out;
  4977. transition: text-shadow 0s ease-out;
  4978. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4979. }
  4980. /* line 1266, ../scss/styles.scss */
  4981. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  4982. position: absolute;
  4983. width: 100%;
  4984. height: 100%;
  4985. top: 0;
  4986. left: 0;
  4987. background-color: #fff;
  4988. cursor: pointer;
  4989. }
  4990. /* line 1268, ../scss/styles.scss */
  4991. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  4992. z-index: 1;
  4993. }
  4994. /* line 1271, ../scss/styles.scss */
  4995. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  4996. position: absolute;
  4997. bottom: 0;
  4998. z-index: 2;
  4999. width: 190px;
  5000. padding: 5px 15px 5px 5px;
  5001. min-height: 55px;
  5002. font-size: 20px;
  5003. font-weight: 300;
  5004. line-height: 1;
  5005. background-color: rgba(255, 255, 255, 0.8);
  5006. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  5007. -webkit-transition: background-color 0.2s ease-out;
  5008. transition: background-color 0.2s ease-out;
  5009. border-radius: 0 0 4px 4px;
  5010. background-clip: padding-box;
  5011. overflow: hidden;
  5012. }
  5013. /* line 1275, ../scss/styles.scss */
  5014. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  5015. font-weight: 700;
  5016. }
  5017. /* line 1276, ../scss/styles.scss */
  5018. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  5019. font-size: 14px;
  5020. }
  5021. /* line 1281, ../scss/styles.scss */
  5022. article.node-materiau.vm-cardmedium .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-materiau.vm-cardmedium .group-header .field-name-field-authored-on, article.node-breve.vm-cardmedium .group-header .field-name-field-reference-materio, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-authored-on {
  5023. display: moz-inline-stack;
  5024. display: inline-block;
  5025. vertical-align: top;
  5026. zoom: 1;
  5027. *display: inline;
  5028. font-size: 12px;
  5029. vertical-align: bottom;
  5030. width: 48%;
  5031. }
  5032. /* line 1282, ../scss/styles.scss */
  5033. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  5034. text-align: right;
  5035. }
  5036. /* line 1283, ../scss/styles.scss */
  5037. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  5038. background: #fff;
  5039. font-color: #000;
  5040. line-height: 1em;
  5041. padding: 10px;
  5042. }
  5043. /* line 1287, ../scss/styles.scss */
  5044. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  5045. color: #fff;
  5046. background-color: rgba(0, 0, 0, 0.7);
  5047. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5048. -webkit-transition: background-color 0.2s ease-out;
  5049. transition: background-color 0.2s ease-out;
  5050. }
  5051. /* line 1290, ../scss/styles.scss */
  5052. article.node-materiau.vm-cardmedium.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardmedium.node-breve .group-header .field-name-field-authored-on {
  5053. font-size: 12px;
  5054. font-weight: 500;
  5055. }
  5056. /* line 1291, ../scss/styles.scss */
  5057. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  5058. background: #000;
  5059. font-size: 15px;
  5060. line-height: 1.2em;
  5061. }
  5062. /* line 1298, ../scss/styles.scss */
  5063. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  5064. position: relative;
  5065. z-index: 1;
  5066. background-color: #fff;
  5067. }
  5068. /* line 77, ../scss/styles.scss */
  5069. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  5070. position: absolute;
  5071. top: 0;
  5072. left: 0;
  5073. }
  5074. /* line 79, ../scss/styles.scss */
  5075. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  5076. position: relative;
  5077. z-index: 1;
  5078. }
  5079. /* line 1301, ../scss/styles.scss */
  5080. article.node-materiau.vm-cardmedium .field-name-field-description, article.node-materiau.vm-cardmedium .field-name-body, article.node-breve.vm-cardmedium .field-name-field-description, article.node-breve.vm-cardmedium .field-name-body {
  5081. font-size: 12px;
  5082. font-weight: 300;
  5083. overflow: hidden;
  5084. z-index: -1;
  5085. padding: 5px;
  5086. }
  5087. /* line 155, ../scss/styles.scss */
  5088. article.node-materiau.vm-cardmedium .field-name-field-description.columnized, article.node-materiau.vm-cardmedium .field-name-body.columnized, article.node-breve.vm-cardmedium .field-name-field-description.columnized, article.node-breve.vm-cardmedium .field-name-body.columnized {
  5089. padding: 0;
  5090. -webkit-transition: margin-left 0.3s ease-out;
  5091. transition: margin-left 0.3s ease-out;
  5092. }
  5093. /* line 157, ../scss/styles.scss */
  5094. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column > *, article.node-materiau.vm-cardmedium .field-name-body.columnized .column > *, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column > *, article.node-breve.vm-cardmedium .field-name-body.columnized .column > * {
  5095. padding: 5px;
  5096. }
  5097. /* line 159, ../scss/styles.scss */
  5098. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher {
  5099. display: inline-block;
  5100. border-radius: 3px;
  5101. background-clip: padding-box;
  5102. color: #fff;
  5103. background-color: #3e3e3e;
  5104. vertical-align: middle;
  5105. font-weight: 700;
  5106. font-size: 22px;
  5107. padding: 0.05em 0.15em 0.2em 0.2em;
  5108. line-height: 0.5;
  5109. font-weight: normal;
  5110. }
  5111. /* line 164, ../scss/styles.scss */
  5112. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher.prev-column, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher.prev-column {
  5113. cursor: w-resize;
  5114. }
  5115. /* line 165, ../scss/styles.scss */
  5116. article.node-materiau.vm-cardmedium .field-name-field-description.columnized .column-switcher.next-column, article.node-materiau.vm-cardmedium .field-name-body.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .field-name-field-description.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .field-name-body.columnized .column-switcher.next-column {
  5117. cursor: e-resize;
  5118. }
  5119. /* line 1303, ../scss/styles.scss */
  5120. article.node-materiau.vm-cardmedium .field-name-field-description .column > *, article.node-materiau.vm-cardmedium .field-name-body .column > *, article.node-breve.vm-cardmedium .field-name-field-description .column > *, article.node-breve.vm-cardmedium .field-name-body .column > * {
  5121. padding-right: 25px;
  5122. }
  5123. /* line 1307, ../scss/styles.scss */
  5124. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  5125. padding: 5px;
  5126. }
  5127. /* line 155, ../scss/styles.scss */
  5128. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  5129. padding: 0;
  5130. -webkit-transition: margin-left 0.3s ease-out;
  5131. transition: margin-left 0.3s ease-out;
  5132. }
  5133. /* line 157, ../scss/styles.scss */
  5134. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  5135. padding: 5px;
  5136. }
  5137. /* line 159, ../scss/styles.scss */
  5138. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  5139. display: inline-block;
  5140. border-radius: 3px;
  5141. background-clip: padding-box;
  5142. color: #fff;
  5143. background-color: #3e3e3e;
  5144. vertical-align: middle;
  5145. font-weight: 700;
  5146. font-size: 22px;
  5147. padding: 0.05em 0.15em 0.2em 0.2em;
  5148. line-height: 0.5;
  5149. font-weight: normal;
  5150. }
  5151. /* line 164, ../scss/styles.scss */
  5152. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  5153. cursor: w-resize;
  5154. }
  5155. /* line 165, ../scss/styles.scss */
  5156. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  5157. cursor: e-resize;
  5158. }
  5159. /* line 1310, ../scss/styles.scss */
  5160. article.node-materiau.vm-cardmedium .field-name-field-company-fab, article.node-materiau.vm-cardmedium .field-name-field-company-distrib, article.node-breve.vm-cardmedium .field-name-field-company-fab, article.node-breve.vm-cardmedium .field-name-field-company-distrib {
  5161. font-size: 12px;
  5162. padding: 5px;
  5163. font-weight: 300;
  5164. }
  5165. /* line 1312, ../scss/styles.scss */
  5166. article.node-materiau.vm-cardmedium .field-name-field-company-fab .field-label, article.node-materiau.vm-cardmedium .field-name-field-company-distrib .field-label, article.node-breve.vm-cardmedium .field-name-field-company-fab .field-label, article.node-breve.vm-cardmedium .field-name-field-company-distrib .field-label {
  5167. font-size: 10px;
  5168. text-transform: lowercase;
  5169. margin: 0;
  5170. }
  5171. /* line 1313, ../scss/styles.scss */
  5172. article.node-materiau.vm-cardmedium .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardmedium .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardmedium .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardmedium .field-name-field-company-distrib .field-name-field-tode-company {
  5173. font-size: 14px;
  5174. }
  5175. /* line 1317, ../scss/styles.scss */
  5176. article.node-materiau.vm-cardmedium .field-name-field-materiau-ref, article.node-materiau.vm-cardmedium .field-name-field-source, article.node-materiau.vm-cardmedium .field-name-field-attachments, article.node-breve.vm-cardmedium .field-name-field-materiau-ref, article.node-breve.vm-cardmedium .field-name-field-source, article.node-breve.vm-cardmedium .field-name-field-attachments {
  5177. font-size: 12px;
  5178. padding: 5px;
  5179. font-weight: 300;
  5180. }
  5181. /* line 1319, ../scss/styles.scss */
  5182. article.node-materiau.vm-cardmedium .field-name-field-materiau-ref a, article.node-materiau.vm-cardmedium .field-name-field-source a, article.node-materiau.vm-cardmedium .field-name-field-attachments a, article.node-breve.vm-cardmedium .field-name-field-materiau-ref a, article.node-breve.vm-cardmedium .field-name-field-source a, article.node-breve.vm-cardmedium .field-name-field-attachments a {
  5183. color: #000;
  5184. }
  5185. /* line 1321, ../scss/styles.scss */
  5186. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  5187. font-weight: 900;
  5188. margin: 1em 0 0.5em;
  5189. }
  5190. /* line 1323, ../scss/styles.scss */
  5191. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  5192. visibility: hidden;
  5193. }
  5194. /* line 118, ../scss/styles.scss */
  5195. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  5196. margin-top: -100000px;
  5197. }
  5198. /* line 121, ../scss/styles.scss */
  5199. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  5200. opacity: 0;
  5201. -webkit-transition: visibility 0s 0.3s;
  5202. transition: visibility 0s 0.3s;
  5203. }
  5204. /* line 124, ../scss/styles.scss */
  5205. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  5206. -webkit-transition: margin-top 0s 0.3s;
  5207. transition: margin-top 0s 0.3s;
  5208. }
  5209. /* line 1325, ../scss/styles.scss */
  5210. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  5211. visibility: hidden;
  5212. }
  5213. /* line 118, ../scss/styles.scss */
  5214. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  5215. margin-top: -100000px;
  5216. }
  5217. /* line 121, ../scss/styles.scss */
  5218. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  5219. opacity: 0;
  5220. -webkit-transition: visibility 0s 0.3s;
  5221. transition: visibility 0s 0.3s;
  5222. }
  5223. /* line 124, ../scss/styles.scss */
  5224. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  5225. -webkit-transition: margin-top 0s 0.3s;
  5226. transition: margin-top 0s 0.3s;
  5227. }
  5228. /* line 1327, ../scss/styles.scss */
  5229. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  5230. background: #FFF;
  5231. }
  5232. /** CARD BIG */
  5233. /* line 1331, ../scss/styles.scss */
  5234. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  5235. width: 425px;
  5236. height: 610px;
  5237. display: moz-inline-stack;
  5238. display: inline-block;
  5239. vertical-align: top;
  5240. zoom: 1;
  5241. *display: inline;
  5242. position: relative;
  5243. margin: 7px;
  5244. border-radius: 5px;
  5245. background-clip: padding-box;
  5246. background-color: #FFF;
  5247. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5248. -webkit-transition: box-shadow 0.3s ease-out;
  5249. transition: box-shadow 0.3s ease-out;
  5250. }
  5251. /* line 1034, ../scss/styles.scss */
  5252. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  5253. border-radius: 5px;
  5254. background-clip: padding-box;
  5255. overflow: hidden;
  5256. }
  5257. /* line 1039, ../scss/styles.scss */
  5258. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  5259. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  5260. }
  5261. /* line 1041, ../scss/styles.scss */
  5262. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  5263. opacity: 0;
  5264. }
  5265. /* line 1043, ../scss/styles.scss */
  5266. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  5267. -webkit-transition: margin 0.3s ease-out;
  5268. transition: margin 0.3s ease-out;
  5269. }
  5270. /* line 1045, ../scss/styles.scss */
  5271. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  5272. margin-left: -425px;
  5273. margin-right: 425px;
  5274. }
  5275. /* line 1047, ../scss/styles.scss */
  5276. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  5277. position: absolute;
  5278. top: 0;
  5279. left: 0;
  5280. z-index: 999;
  5281. }
  5282. /* line 1055, ../scss/styles.scss */
  5283. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  5284. -webkit-transition: width 0.3s ease-out;
  5285. transition: width 0.3s ease-out;
  5286. width: 0;
  5287. padding-left: 0;
  5288. padding-right: 0;
  5289. margin-right: 0;
  5290. margin-left: 0;
  5291. overflow: hidden;
  5292. }
  5293. /* line 1065, ../scss/styles.scss */
  5294. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  5295. position: absolute;
  5296. top: 0;
  5297. right: 0;
  5298. z-index: 11;
  5299. padding: 5px 0;
  5300. border-radius: 0 5px 0 3px;
  5301. background-clip: padding-box;
  5302. font-size: 10px;
  5303. background-color: rgba(255, 255, 255, 0.9);
  5304. color: #000;
  5305. }
  5306. /* line 1077, ../scss/styles.scss */
  5307. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  5308. color: #000;
  5309. }
  5310. /* line 1078, ../scss/styles.scss */
  5311. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  5312. background-color: rgba(255, 255, 255, 0.9);
  5313. }
  5314. /* line 1079, ../scss/styles.scss */
  5315. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  5316. font-weight: 900;
  5317. font-size: 14px;
  5318. }
  5319. /* line 1081, ../scss/styles.scss */
  5320. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  5321. padding: 0;
  5322. margin: 0;
  5323. }
  5324. /* line 1083, ../scss/styles.scss */
  5325. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  5326. position: relative;
  5327. }
  5328. /* line 1086, ../scss/styles.scss */
  5329. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  5330. margin: 0 5px;
  5331. }
  5332. /* line 1086, ../scss/styles.scss */
  5333. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  5334. cursor: pointer;
  5335. }
  5336. /* line 1089, ../scss/styles.scss */
  5337. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  5338. position: absolute;
  5339. right: 0;
  5340. top: 0;
  5341. margin-right: 22px;
  5342. min-width: 80px;
  5343. padding: 0;
  5344. display: block;
  5345. border-radius: 3px;
  5346. background-clip: padding-box;
  5347. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  5348. }
  5349. /* line 1093, ../scss/styles.scss */
  5350. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  5351. padding: 0;
  5352. margin: 0;
  5353. line-height: 1;
  5354. display: block;
  5355. height: 0;
  5356. overflow: hidden;
  5357. -webkit-transition: height 0.2s ease-out;
  5358. transition: height 0.2s ease-out;
  5359. }
  5360. /* line 1097, ../scss/styles.scss */
  5361. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  5362. display: block;
  5363. }
  5364. /* line 1100, ../scss/styles.scss */
  5365. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  5366. width: 160px;
  5367. font-size: 0;
  5368. }
  5369. /* line 1103, ../scss/styles.scss */
  5370. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  5371. font-size: 11px;
  5372. }
  5373. /* line 1108, ../scss/styles.scss */
  5374. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li {
  5375. display: moz-inline-stack;
  5376. display: inline-block;
  5377. vertical-align: top;
  5378. zoom: 1;
  5379. *display: inline;
  5380. min-width: 48%;
  5381. max-width: 98%;
  5382. padding-left: 2px;
  5383. }
  5384. /* line 1110, ../scss/styles.scss */
  5385. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a {
  5386. color: #a6a6a6;
  5387. -webkit-transition: color 0.2s ease-out;
  5388. transition: color 0.2s ease-out;
  5389. }
  5390. /* line 1112, ../scss/styles.scss */
  5391. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li a.unflag-action {
  5392. color: #000;
  5393. text-decoration: none;
  5394. }
  5395. /* line 1116, ../scss/styles.scss */
  5396. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5397. display: block;
  5398. width: 100%;
  5399. }
  5400. /* line 1118, ../scss/styles.scss */
  5401. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5402. margin-top: 1px;
  5403. padding-top: 1px;
  5404. border-top: 1px solid #e6e6e6;
  5405. }
  5406. /* line 1119, ../scss/styles.scss */
  5407. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5408. color: #000;
  5409. }
  5410. /* line 1121, ../scss/styles.scss */
  5411. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading {
  5412. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  5413. }
  5414. /* line 1122, ../scss/styles.scss */
  5415. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links li.loading a {
  5416. visibility: hidden;
  5417. }
  5418. /* line 1127, ../scss/styles.scss */
  5419. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  5420. background: #FFF;
  5421. }
  5422. /* line 1132, ../scss/styles.scss */
  5423. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  5424. padding: 5px 5px;
  5425. }
  5426. /* line 1134, ../scss/styles.scss */
  5427. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  5428. height: 17px;
  5429. }
  5430. /* line 1147, ../scss/styles.scss */
  5431. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  5432. position: absolute;
  5433. top: 0;
  5434. left: 0;
  5435. z-index: 11;
  5436. padding: 5px;
  5437. border-radius: 5px 0 3px 0;
  5438. background-clip: padding-box;
  5439. font-size: 10px;
  5440. vertical-align: top;
  5441. background-color: rgba(255, 255, 255, 0.9);
  5442. color: #000;
  5443. }
  5444. /* line 1153, ../scss/styles.scss */
  5445. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  5446. padding: 3px 0 0 4px;
  5447. display: moz-inline-stack;
  5448. display: inline-block;
  5449. vertical-align: top;
  5450. zoom: 1;
  5451. *display: inline;
  5452. }
  5453. /* line 1156, ../scss/styles.scss */
  5454. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  5455. font-size: 12px;
  5456. padding-top: 4em;
  5457. margin-top: -4.5em;
  5458. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5459. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5460. position: relative;
  5461. }
  5462. /* line 1164, ../scss/styles.scss */
  5463. article.node-materiau.vm-cardbig .side.oops p, article.node-materiau.vm-cardbig .side .upgrade p, article.node-breve.vm-cardbig .side.oops p, article.node-breve.vm-cardbig .side .upgrade p {
  5464. padding: 10px;
  5465. font-size: 12px;
  5466. }
  5467. /* line 1166, ../scss/styles.scss */
  5468. article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbig .side .upgrade p a, article.node-breve.vm-cardbig .side.oops p a, article.node-breve.vm-cardbig .side .upgrade p a {
  5469. display: block;
  5470. margin: 10px 0;
  5471. font-size: 18px;
  5472. padding: 0.1em 0.6em 0.2em;
  5473. border-radius: 0.3em;
  5474. background-clip: padding-box;
  5475. font-weight: bold;
  5476. border: 2px solid #69CDCF;
  5477. background-color: #69CDCF;
  5478. color: #fff;
  5479. cursor: pointer;
  5480. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5481. -webkit-transition: text-shadow 0.2s ease-out;
  5482. transition: text-shadow 0.2s ease-out;
  5483. text-align: center;
  5484. text-decoration: none;
  5485. }
  5486. /* line 66, ../scss/styles.scss */
  5487. article.node-materiau.vm-cardbig .side.oops p a:hover, article.node-materiau.vm-cardbig .side.oops p a:focus, article.node-materiau.vm-cardbig .side .upgrade p a:hover, article.node-materiau.vm-cardbig .side .upgrade p a:focus, article.node-breve.vm-cardbig .side.oops p a:hover, article.node-breve.vm-cardbig .side.oops p a:focus, article.node-breve.vm-cardbig .side .upgrade p a:hover, article.node-breve.vm-cardbig .side .upgrade p a:focus {
  5488. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  5489. }
  5490. /* line 69, ../scss/styles.scss */
  5491. article.node-materiau.vm-cardbig .side.oops p a:active, article.node-materiau.vm-cardbig .side .upgrade p a:active, article.node-breve.vm-cardbig .side.oops p a:active, article.node-breve.vm-cardbig .side .upgrade p a:active {
  5492. -webkit-transition: text-shadow 0s ease-out;
  5493. transition: text-shadow 0s ease-out;
  5494. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5495. }
  5496. /* line 1334, ../scss/styles.scss */
  5497. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  5498. position: absolute;
  5499. width: 100%;
  5500. height: 100%;
  5501. top: 0;
  5502. left: 0;
  5503. background-color: #fff;
  5504. height: 270px;
  5505. top: 340px;
  5506. cursor: pointer;
  5507. }
  5508. /* line 1336, ../scss/styles.scss */
  5509. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  5510. z-index: 1;
  5511. }
  5512. /* line 1339, ../scss/styles.scss */
  5513. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  5514. position: relative;
  5515. border-radius: 5px 5px 0 0;
  5516. background-clip: padding-box;
  5517. overflow: hidden;
  5518. }
  5519. /* line 1341, ../scss/styles.scss */
  5520. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  5521. position: absolute;
  5522. bottom: 0;
  5523. z-index: 2;
  5524. width: 405px;
  5525. padding: 10px;
  5526. font-size: 20px;
  5527. font-weight: 300;
  5528. line-height: 1.1;
  5529. background-color: rgba(255, 255, 255, 0.8);
  5530. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  5531. -webkit-transition: background-color 0.2s ease-out;
  5532. transition: background-color 0.2s ease-out;
  5533. }
  5534. /* line 1345, ../scss/styles.scss */
  5535. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  5536. font-weight: 700;
  5537. }
  5538. /* line 1346, ../scss/styles.scss */
  5539. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  5540. font-size: 14px;
  5541. }
  5542. /* line 1348, ../scss/styles.scss */
  5543. article.node-materiau.vm-cardbig .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-materiau.vm-cardbig .group-header .field-name-field-authored-on, article.node-breve.vm-cardbig .group-header .field-name-field-reference-materio, article.node-breve.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-authored-on {
  5544. display: moz-inline-stack;
  5545. display: inline-block;
  5546. vertical-align: top;
  5547. zoom: 1;
  5548. *display: inline;
  5549. font-size: 12px;
  5550. vertical-align: bottom;
  5551. width: 48%;
  5552. }
  5553. /* line 1349, ../scss/styles.scss */
  5554. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  5555. text-align: right;
  5556. }
  5557. /* line 1350, ../scss/styles.scss */
  5558. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  5559. background: #fff;
  5560. font-color: #000;
  5561. line-height: 1em;
  5562. padding: 20px;
  5563. border-bottom: 1px solid #C6C6C6;
  5564. }
  5565. /* line 1354, ../scss/styles.scss */
  5566. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  5567. color: #fff;
  5568. background-color: rgba(0, 0, 0, 0.7);
  5569. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5570. -webkit-transition: background-color 0.2s ease-out;
  5571. transition: background-color 0.2s ease-out;
  5572. }
  5573. /* line 1356, ../scss/styles.scss */
  5574. article.node-materiau.vm-cardbig.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardbig.node-breve .group-header .field-name-field-authored-on {
  5575. font-size: 12px;
  5576. font-weight: 500;
  5577. }
  5578. /* line 1357, ../scss/styles.scss */
  5579. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  5580. background: #000;
  5581. font-color: #fff;
  5582. line-height: 1em;
  5583. padding: 20px;
  5584. }
  5585. /* line 1360, ../scss/styles.scss */
  5586. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  5587. position: relative;
  5588. z-index: 1;
  5589. background-color: #fff;
  5590. height: auto;
  5591. }
  5592. /* line 77, ../scss/styles.scss */
  5593. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  5594. position: absolute;
  5595. top: 0;
  5596. left: 0;
  5597. }
  5598. /* line 79, ../scss/styles.scss */
  5599. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  5600. position: relative;
  5601. z-index: 1;
  5602. }
  5603. /* line 1363, ../scss/styles.scss */
  5604. article.node-materiau.vm-cardbig .field-name-field-description, article.node-materiau.vm-cardbig .field-name-body, article.node-breve.vm-cardbig .field-name-field-description, article.node-breve.vm-cardbig .field-name-body {
  5605. font-size: 12px;
  5606. font-weight: 300;
  5607. padding: 10px;
  5608. }
  5609. /* line 155, ../scss/styles.scss */
  5610. article.node-materiau.vm-cardbig .field-name-field-description.columnized, article.node-materiau.vm-cardbig .field-name-body.columnized, article.node-breve.vm-cardbig .field-name-field-description.columnized, article.node-breve.vm-cardbig .field-name-body.columnized {
  5611. padding: 0;
  5612. -webkit-transition: margin-left 0.3s ease-out;
  5613. transition: margin-left 0.3s ease-out;
  5614. }
  5615. /* line 157, ../scss/styles.scss */
  5616. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column > *, article.node-materiau.vm-cardbig .field-name-body.columnized .column > *, article.node-breve.vm-cardbig .field-name-field-description.columnized .column > *, article.node-breve.vm-cardbig .field-name-body.columnized .column > * {
  5617. padding: 10px;
  5618. }
  5619. /* line 159, ../scss/styles.scss */
  5620. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher {
  5621. display: inline-block;
  5622. border-radius: 3px;
  5623. background-clip: padding-box;
  5624. color: #fff;
  5625. background-color: #3e3e3e;
  5626. vertical-align: middle;
  5627. font-weight: 700;
  5628. font-size: 22px;
  5629. padding: 0.05em 0.15em 0.2em 0.2em;
  5630. line-height: 0.5;
  5631. font-weight: normal;
  5632. }
  5633. /* line 164, ../scss/styles.scss */
  5634. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher.prev-column, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher.prev-column {
  5635. cursor: w-resize;
  5636. }
  5637. /* line 165, ../scss/styles.scss */
  5638. article.node-materiau.vm-cardbig .field-name-field-description.columnized .column-switcher.next-column, article.node-materiau.vm-cardbig .field-name-body.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .field-name-field-description.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .field-name-body.columnized .column-switcher.next-column {
  5639. cursor: e-resize;
  5640. }
  5641. /* line 1367, ../scss/styles.scss */
  5642. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  5643. padding: 10px;
  5644. }
  5645. /* line 155, ../scss/styles.scss */
  5646. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  5647. padding: 0;
  5648. -webkit-transition: margin-left 0.3s ease-out;
  5649. transition: margin-left 0.3s ease-out;
  5650. }
  5651. /* line 157, ../scss/styles.scss */
  5652. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  5653. padding: 10px;
  5654. }
  5655. /* line 159, ../scss/styles.scss */
  5656. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  5657. display: inline-block;
  5658. border-radius: 3px;
  5659. background-clip: padding-box;
  5660. color: #fff;
  5661. background-color: #3e3e3e;
  5662. vertical-align: middle;
  5663. font-weight: 700;
  5664. font-size: 22px;
  5665. padding: 0.05em 0.15em 0.2em 0.2em;
  5666. line-height: 0.5;
  5667. font-weight: normal;
  5668. }
  5669. /* line 164, ../scss/styles.scss */
  5670. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  5671. cursor: w-resize;
  5672. }
  5673. /* line 165, ../scss/styles.scss */
  5674. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  5675. cursor: e-resize;
  5676. }
  5677. /* line 1371, ../scss/styles.scss */
  5678. article.node-materiau.vm-cardbig .field-name-field-company-fab, article.node-materiau.vm-cardbig .field-name-field-company-distrib, article.node-breve.vm-cardbig .field-name-field-company-fab, article.node-breve.vm-cardbig .field-name-field-company-distrib {
  5679. font-size: 12px;
  5680. padding: 10px;
  5681. font-weight: 300;
  5682. }
  5683. /* line 1373, ../scss/styles.scss */
  5684. article.node-materiau.vm-cardbig .field-name-field-company-fab .field-label, article.node-materiau.vm-cardbig .field-name-field-company-distrib .field-label, article.node-breve.vm-cardbig .field-name-field-company-fab .field-label, article.node-breve.vm-cardbig .field-name-field-company-distrib .field-label {
  5685. font-size: 10px;
  5686. text-transform: lowercase;
  5687. float: none;
  5688. }
  5689. /* line 1374, ../scss/styles.scss */
  5690. article.node-materiau.vm-cardbig .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardbig .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardbig .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardbig .field-name-field-company-distrib .field-name-field-tode-company {
  5691. font-size: 14px;
  5692. }
  5693. /* line 1378, ../scss/styles.scss */
  5694. article.node-materiau.vm-cardbig .field-name-field-materiau-ref, article.node-materiau.vm-cardbig .field-name-field-source, article.node-materiau.vm-cardbig .field-name-field-attachments, article.node-breve.vm-cardbig .field-name-field-materiau-ref, article.node-breve.vm-cardbig .field-name-field-source, article.node-breve.vm-cardbig .field-name-field-attachments {
  5695. font-size: 12px;
  5696. padding: 10px;
  5697. font-weight: 300;
  5698. }
  5699. /* line 1379, ../scss/styles.scss */
  5700. article.node-materiau.vm-cardbig .field-name-field-materiau-ref a, article.node-materiau.vm-cardbig .field-name-field-source a, article.node-materiau.vm-cardbig .field-name-field-attachments a, article.node-breve.vm-cardbig .field-name-field-materiau-ref a, article.node-breve.vm-cardbig .field-name-field-source a, article.node-breve.vm-cardbig .field-name-field-attachments a {
  5701. color: #000;
  5702. }
  5703. /* line 1381, ../scss/styles.scss */
  5704. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  5705. font-weight: 900;
  5706. margin: 0 0 0.5em;
  5707. }
  5708. /* line 1385, ../scss/styles.scss */
  5709. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  5710. background: #FFF;
  5711. }
  5712. /* line 1388, ../scss/styles.scss */
  5713. article.node-materiau.vm-cardbig .side.oops p, article.node-materiau.vm-cardbig .side .upgrade p, article.node-breve.vm-cardbig .side.oops p, article.node-breve.vm-cardbig .side .upgrade p {
  5714. padding: 3em;
  5715. }
  5716. /* line 1390, ../scss/styles.scss */
  5717. article.node-materiau.vm-cardbig .side.oops p a, article.node-materiau.vm-cardbig .side .upgrade p a, article.node-breve.vm-cardbig .side.oops p a, article.node-breve.vm-cardbig .side .upgrade p a {
  5718. border: 2px solid #eee;
  5719. background-color: #eee;
  5720. color: #fff;
  5721. -webkit-transition: border 0.3s ease-out;
  5722. transition: border 0.3s ease-out;
  5723. -webkit-transition: background-color 0.3s ease-out;
  5724. transition: background-color 0.3s ease-out;
  5725. }
  5726. /* line 1397, ../scss/styles.scss */
  5727. article.node-materiau.vm-cardbig:hover .side.oops p a, article.node-materiau.vm-cardbig:hover .side .upgrade p a, article.node-breve.vm-cardbig:hover .side.oops p a, article.node-breve.vm-cardbig:hover .side .upgrade p a {
  5728. border: 2px solid #69CDCF;
  5729. background-color: #69CDCF;
  5730. }
  5731. /** CARD FULL */
  5732. /* line 1404, ../scss/styles.scss */
  5733. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  5734. width: 850px;
  5735. height: 610px;
  5736. display: moz-inline-stack;
  5737. display: inline-block;
  5738. vertical-align: top;
  5739. zoom: 1;
  5740. *display: inline;
  5741. position: relative;
  5742. margin: 7px;
  5743. border-radius: 5px;
  5744. background-clip: padding-box;
  5745. background-color: #FFF;
  5746. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5747. -webkit-transition: box-shadow 0.3s ease-out;
  5748. transition: box-shadow 0.3s ease-out;
  5749. font-size: 0px;
  5750. }
  5751. /* line 1034, ../scss/styles.scss */
  5752. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5753. border-radius: 5px;
  5754. background-clip: padding-box;
  5755. overflow: hidden;
  5756. }
  5757. /* line 1039, ../scss/styles.scss */
  5758. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5759. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  5760. }
  5761. /* line 1041, ../scss/styles.scss */
  5762. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5763. opacity: 0;
  5764. }
  5765. /* line 1043, ../scss/styles.scss */
  5766. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5767. -webkit-transition: margin 0.3s ease-out;
  5768. transition: margin 0.3s ease-out;
  5769. }
  5770. /* line 1045, ../scss/styles.scss */
  5771. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5772. margin-left: -850px;
  5773. margin-right: 850px;
  5774. }
  5775. /* line 1047, ../scss/styles.scss */
  5776. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5777. position: absolute;
  5778. top: 0;
  5779. left: 0;
  5780. z-index: 999;
  5781. }
  5782. /* line 1055, ../scss/styles.scss */
  5783. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5784. -webkit-transition: width 0.3s ease-out;
  5785. transition: width 0.3s ease-out;
  5786. width: 0;
  5787. padding-left: 0;
  5788. padding-right: 0;
  5789. margin-right: 0;
  5790. margin-left: 0;
  5791. overflow: hidden;
  5792. }
  5793. /* line 1065, ../scss/styles.scss */
  5794. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5795. position: absolute;
  5796. top: 0;
  5797. right: 0;
  5798. z-index: 11;
  5799. padding: 5px 0;
  5800. border-radius: 0 5px 0 3px;
  5801. background-clip: padding-box;
  5802. font-size: 10px;
  5803. background-color: rgba(255, 255, 255, 0.9);
  5804. color: #000;
  5805. }
  5806. /* line 1077, ../scss/styles.scss */
  5807. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5808. color: #000;
  5809. }
  5810. /* line 1078, ../scss/styles.scss */
  5811. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5812. background-color: rgba(255, 255, 255, 0.9);
  5813. }
  5814. /* line 1079, ../scss/styles.scss */
  5815. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5816. font-weight: 900;
  5817. font-size: 14px;
  5818. }
  5819. /* line 1081, ../scss/styles.scss */
  5820. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5821. padding: 0;
  5822. margin: 0;
  5823. }
  5824. /* line 1083, ../scss/styles.scss */
  5825. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5826. position: relative;
  5827. }
  5828. /* line 1086, ../scss/styles.scss */
  5829. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5830. margin: 0 5px;
  5831. }
  5832. /* line 1086, ../scss/styles.scss */
  5833. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5834. cursor: pointer;
  5835. }
  5836. /* line 1089, ../scss/styles.scss */
  5837. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5838. position: absolute;
  5839. right: 0;
  5840. top: 0;
  5841. margin-right: 22px;
  5842. min-width: 80px;
  5843. padding: 0;
  5844. display: block;
  5845. border-radius: 3px;
  5846. background-clip: padding-box;
  5847. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  5848. }
  5849. /* line 1093, ../scss/styles.scss */
  5850. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5851. padding: 0;
  5852. margin: 0;
  5853. line-height: 1;
  5854. display: block;
  5855. height: 0;
  5856. overflow: hidden;
  5857. -webkit-transition: height 0.2s ease-out;
  5858. transition: height 0.2s ease-out;
  5859. }
  5860. /* line 1097, ../scss/styles.scss */
  5861. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5862. display: block;
  5863. }
  5864. /* line 1100, ../scss/styles.scss */
  5865. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5866. width: 160px;
  5867. font-size: 0;
  5868. }
  5869. /* line 1103, ../scss/styles.scss */
  5870. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5871. font-size: 11px;
  5872. }
  5873. /* line 1108, ../scss/styles.scss */
  5874. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li {
  5875. display: moz-inline-stack;
  5876. display: inline-block;
  5877. vertical-align: top;
  5878. zoom: 1;
  5879. *display: inline;
  5880. min-width: 48%;
  5881. max-width: 98%;
  5882. padding-left: 2px;
  5883. }
  5884. /* line 1110, ../scss/styles.scss */
  5885. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a {
  5886. color: #a6a6a6;
  5887. -webkit-transition: color 0.2s ease-out;
  5888. transition: color 0.2s ease-out;
  5889. }
  5890. /* line 1112, ../scss/styles.scss */
  5891. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a:hover, article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li a.unflag-action, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a:hover, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li a.unflag-action {
  5892. color: #000;
  5893. text-decoration: none;
  5894. }
  5895. /* line 1116, ../scss/styles.scss */
  5896. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create {
  5897. display: block;
  5898. width: 100%;
  5899. }
  5900. /* line 1118, ../scss/styles.scss */
  5901. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create > * {
  5902. margin-top: 1px;
  5903. padding-top: 1px;
  5904. border-top: 1px solid #e6e6e6;
  5905. }
  5906. /* line 1119, ../scss/styles.scss */
  5907. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.flag-lists-create a {
  5908. color: #000;
  5909. }
  5910. /* line 1121, ../scss/styles.scss */
  5911. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading {
  5912. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  5913. }
  5914. /* line 1122, ../scss/styles.scss */
  5915. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading a, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links li.loading a {
  5916. visibility: hidden;
  5917. }
  5918. /* line 1127, ../scss/styles.scss */
  5919. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5920. background: #FFF;
  5921. }
  5922. /* line 1132, ../scss/styles.scss */
  5923. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5924. padding: 5px 5px;
  5925. }
  5926. /* line 1134, ../scss/styles.scss */
  5927. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5928. height: 17px;
  5929. }
  5930. /* line 1147, ../scss/styles.scss */
  5931. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5932. position: absolute;
  5933. top: 0;
  5934. left: 0;
  5935. z-index: 11;
  5936. padding: 5px;
  5937. border-radius: 5px 0 3px 0;
  5938. background-clip: padding-box;
  5939. font-size: 10px;
  5940. vertical-align: top;
  5941. background-color: rgba(255, 255, 255, 0.9);
  5942. color: #000;
  5943. }
  5944. /* line 1153, ../scss/styles.scss */
  5945. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5946. padding: 3px 0 0 4px;
  5947. display: moz-inline-stack;
  5948. display: inline-block;
  5949. vertical-align: top;
  5950. zoom: 1;
  5951. *display: inline;
  5952. }
  5953. /* line 1156, ../scss/styles.scss */
  5954. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5955. font-size: 12px;
  5956. padding-top: 4em;
  5957. margin-top: -4.5em;
  5958. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5959. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5960. position: relative;
  5961. }
  5962. /* line 1164, ../scss/styles.scss */
  5963. article.node-materiau.vm-cardfull .side.oops p, article.node-materiau.vm-cardfull .side .upgrade p, article.node-breve.vm-cardfull .side.oops p, article.node-breve.vm-cardfull .side .upgrade p {
  5964. padding: 10px;
  5965. font-size: 12px;
  5966. }
  5967. /* line 1166, ../scss/styles.scss */
  5968. article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardfull .side .upgrade p a, article.node-breve.vm-cardfull .side.oops p a, article.node-breve.vm-cardfull .side .upgrade p a {
  5969. display: block;
  5970. margin: 10px 0;
  5971. font-size: 18px;
  5972. padding: 0.1em 0.6em 0.2em;
  5973. border-radius: 0.3em;
  5974. background-clip: padding-box;
  5975. font-weight: bold;
  5976. border: 2px solid #69CDCF;
  5977. background-color: #69CDCF;
  5978. color: #fff;
  5979. cursor: pointer;
  5980. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5981. -webkit-transition: text-shadow 0.2s ease-out;
  5982. transition: text-shadow 0.2s ease-out;
  5983. text-align: center;
  5984. text-decoration: none;
  5985. }
  5986. /* line 66, ../scss/styles.scss */
  5987. article.node-materiau.vm-cardfull .side.oops p a:hover, article.node-materiau.vm-cardfull .side.oops p a:focus, article.node-materiau.vm-cardfull .side .upgrade p a:hover, article.node-materiau.vm-cardfull .side .upgrade p a:focus, article.node-breve.vm-cardfull .side.oops p a:hover, article.node-breve.vm-cardfull .side.oops p a:focus, article.node-breve.vm-cardfull .side .upgrade p a:hover, article.node-breve.vm-cardfull .side .upgrade p a:focus {
  5988. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  5989. }
  5990. /* line 69, ../scss/styles.scss */
  5991. article.node-materiau.vm-cardfull .side.oops p a:active, article.node-materiau.vm-cardfull .side .upgrade p a:active, article.node-breve.vm-cardfull .side.oops p a:active, article.node-breve.vm-cardfull .side .upgrade p a:active {
  5992. -webkit-transition: text-shadow 0s ease-out;
  5993. transition: text-shadow 0s ease-out;
  5994. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5995. }
  5996. /* line 1406, ../scss/styles.scss */
  5997. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5998. top: 0;
  5999. }
  6000. /* line 1410, ../scss/styles.scss */
  6001. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  6002. font-size: 16px;
  6003. }
  6004. /* line 1412, ../scss/styles.scss */
  6005. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  6006. display: moz-inline-stack;
  6007. display: inline-block;
  6008. vertical-align: top;
  6009. zoom: 1;
  6010. *display: inline;
  6011. width: 50%;
  6012. }
  6013. /* line 1413, ../scss/styles.scss */
  6014. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  6015. border-radius: 5px 0 0 5px;
  6016. background-clip: padding-box;
  6017. }
  6018. /* line 1416, ../scss/styles.scss */
  6019. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  6020. border-radius: 0 5px 5px 0;
  6021. background-clip: padding-box;
  6022. }
  6023. /* line 1422, ../scss/styles.scss */
  6024. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  6025. position: relative;
  6026. z-index: 1;
  6027. background-color: #fff;
  6028. }
  6029. /* line 77, ../scss/styles.scss */
  6030. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  6031. position: absolute;
  6032. top: 0;
  6033. left: 0;
  6034. }
  6035. /* line 79, ../scss/styles.scss */
  6036. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  6037. position: relative;
  6038. z-index: 1;
  6039. }
  6040. /* line 1424, ../scss/styles.scss */
  6041. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  6042. font-size: 20px;
  6043. font-weight: 300;
  6044. padding: 10px;
  6045. }
  6046. /* line 1426, ../scss/styles.scss */
  6047. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  6048. font-weight: 700;
  6049. }
  6050. /* line 1427, ../scss/styles.scss */
  6051. article.node-materiau.vm-cardfull .group-header .field-name-field-reference-materio, article.node-materiau.vm-cardfull .group-header .field-name-field-localisation, article.node-materiau.vm-cardfull .group-header .field-name-field-authored-on, article.node-breve.vm-cardfull .group-header .field-name-field-reference-materio, article.node-breve.vm-cardfull .group-header .field-name-field-localisation, article.node-breve.vm-cardfull .group-header .field-name-field-authored-on {
  6052. display: moz-inline-stack;
  6053. display: inline-block;
  6054. vertical-align: top;
  6055. zoom: 1;
  6056. *display: inline;
  6057. font-size: 12px;
  6058. padding-right: 15px;
  6059. }
  6060. /* line 1431, ../scss/styles.scss */
  6061. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  6062. color: #fff;
  6063. background-color: rgba(0, 0, 0, 0.7);
  6064. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  6065. -webkit-transition: background-color 0.2s ease-out;
  6066. transition: background-color 0.2s ease-out;
  6067. }
  6068. /* line 1433, ../scss/styles.scss */
  6069. article.node-materiau.vm-cardfull.node-breve .group-header .field-name-field-authored-on, article.node-breve.vm-cardfull.node-breve .group-header .field-name-field-authored-on {
  6070. font-weight: 500;
  6071. }
  6072. /* line 1437, ../scss/styles.scss */
  6073. article.node-materiau.vm-cardfull .field-name-field-description, article.node-materiau.vm-cardfull .field-name-body, article.node-breve.vm-cardfull .field-name-field-description, article.node-breve.vm-cardfull .field-name-body {
  6074. font-size: 12px;
  6075. font-weight: 300;
  6076. padding: 10px;
  6077. }
  6078. /* line 1441, ../scss/styles.scss */
  6079. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  6080. padding: 10px;
  6081. font-size: 12px;
  6082. }
  6083. /* line 1447, ../scss/styles.scss */
  6084. article.node-materiau.vm-cardfull .field-name-field-company-fab, article.node-materiau.vm-cardfull .field-name-field-company-distrib, article.node-breve.vm-cardfull .field-name-field-company-fab, article.node-breve.vm-cardfull .field-name-field-company-distrib {
  6085. font-size: 12px;
  6086. padding: 10px;
  6087. font-weight: 300;
  6088. display: moz-inline-stack;
  6089. display: inline-block;
  6090. vertical-align: top;
  6091. zoom: 1;
  6092. *display: inline;
  6093. width: 40%;
  6094. }
  6095. /* line 1450, ../scss/styles.scss */
  6096. article.node-materiau.vm-cardfull .field-name-field-company-fab .field-item, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-item, article.node-breve.vm-cardfull .field-name-field-company-fab .field-item, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-item {
  6097. margin-top: 1em;
  6098. }
  6099. /* line 1451, ../scss/styles.scss */
  6100. article.node-materiau.vm-cardfull .field-name-field-company-fab .field-label, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-label, article.node-breve.vm-cardfull .field-name-field-company-fab .field-label, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-label {
  6101. font-size: 10px;
  6102. text-transform: lowercase;
  6103. float: none;
  6104. }
  6105. /* line 1452, ../scss/styles.scss */
  6106. article.node-materiau.vm-cardfull .field-name-field-company-fab .field-name-field-tode-company, article.node-materiau.vm-cardfull .field-name-field-company-distrib .field-name-field-tode-company, article.node-breve.vm-cardfull .field-name-field-company-fab .field-name-field-tode-company, article.node-breve.vm-cardfull .field-name-field-company-distrib .field-name-field-tode-company {
  6107. font-size: 14px;
  6108. }
  6109. /* line 1455, ../scss/styles.scss */
  6110. article.node-materiau.vm-cardfull .field-name-field-materiau-ref, article.node-materiau.vm-cardfull .field-name-field-source, article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-materiau-ref, article.node-breve.vm-cardfull .field-name-field-source, article.node-breve.vm-cardfull .field-name-field-attachments {
  6111. font-size: 12px;
  6112. padding: 10px;
  6113. font-weight: 300;
  6114. }
  6115. /* line 1456, ../scss/styles.scss */
  6116. article.node-materiau.vm-cardfull .field-name-field-materiau-ref a, article.node-materiau.vm-cardfull .field-name-field-source a, article.node-materiau.vm-cardfull .field-name-field-attachments a, article.node-breve.vm-cardfull .field-name-field-materiau-ref a, article.node-breve.vm-cardfull .field-name-field-source a, article.node-breve.vm-cardfull .field-name-field-attachments a {
  6117. color: #000;
  6118. }
  6119. /* line 1458, ../scss/styles.scss */
  6120. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  6121. font-weight: 900;
  6122. margin: 0 0 0.5em;
  6123. }
  6124. /* line 1461, ../scss/styles.scss */
  6125. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  6126. margin: 5px;
  6127. }
  6128. /* line 1463, ../scss/styles.scss */
  6129. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  6130. margin: 5px;
  6131. }
  6132. /* line 1466, ../scss/styles.scss */
  6133. article.node-materiau.vm-cardfull .side.oops p, article.node-materiau.vm-cardfull .side .upgrade p, article.node-breve.vm-cardfull .side.oops p, article.node-breve.vm-cardfull .side .upgrade p {
  6134. padding: 3em;
  6135. }
  6136. /* line 1468, ../scss/styles.scss */
  6137. article.node-materiau.vm-cardfull .side.oops p a, article.node-materiau.vm-cardfull .side .upgrade p a, article.node-breve.vm-cardfull .side.oops p a, article.node-breve.vm-cardfull .side .upgrade p a {
  6138. border: 2px solid #eee;
  6139. background-color: #eee;
  6140. color: #fff;
  6141. -webkit-transition: border 0.3s ease-out;
  6142. transition: border 0.3s ease-out;
  6143. -webkit-transition: background-color 0.3s ease-out;
  6144. transition: background-color 0.3s ease-out;
  6145. }
  6146. /* line 1475, ../scss/styles.scss */
  6147. article.node-materiau.vm-cardfull:hover .side.oops p a, article.node-materiau.vm-cardfull:hover .side .upgrade p a, article.node-breve.vm-cardfull:hover .side.oops p a, article.node-breve.vm-cardfull:hover .side .upgrade p a {
  6148. border: 2px solid #69CDCF;
  6149. background-color: #69CDCF;
  6150. }
  6151. /* line 36, ../scss/misc.scss */
  6152. div.messages {
  6153. padding: 9px;
  6154. margin: 0.5em 0 0;
  6155. color: #3a87ad;
  6156. background: #d9edf7;
  6157. border: 1px solid #bce8f1;
  6158. border-radius: 5px;
  6159. font-size: 12px;
  6160. }
  6161. /* line 14, ../scss/misc.scss */
  6162. div.messages.warning {
  6163. color: #c09853;
  6164. background-color: #fcf8e3;
  6165. border-color: #fbeed5;
  6166. }
  6167. /* line 20, ../scss/misc.scss */
  6168. div.messages.error {
  6169. color: #b94a48;
  6170. background-color: #f2dede;
  6171. border-color: #eed3d7;
  6172. }
  6173. /* line 27, ../scss/misc.scss */
  6174. div.messages.status {
  6175. color: #468847;
  6176. background-color: #dff0d8;
  6177. border-color: #d6e9c6;
  6178. font-size: 14px;
  6179. }
  6180. /* line 38, ../scss/misc.scss */
  6181. .messages-label {
  6182. display: none;
  6183. }
  6184. /* line 40, ../scss/misc.scss */
  6185. #better-messages-wrapper {
  6186. background-color: rgba(255, 255, 255, 0.7);
  6187. padding: 10px;
  6188. border-radius: 5px;
  6189. background-clip: padding-box;
  6190. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  6191. }
  6192. /* line 44, ../scss/misc.scss */
  6193. #better-messages-wrapper #better-messages-default div.messages {
  6194. padding: 9px;
  6195. margin: 0.5em 0 0;
  6196. color: #3a87ad;
  6197. background: #d9edf7;
  6198. border: 1px solid #bce8f1;
  6199. border-radius: 5px;
  6200. font-size: 12px;
  6201. margin: 0 0 10px 0;
  6202. }
  6203. /* line 14, ../scss/misc.scss */
  6204. #better-messages-wrapper #better-messages-default div.messages.warning {
  6205. color: #c09853;
  6206. background-color: #fcf8e3;
  6207. border-color: #fbeed5;
  6208. }
  6209. /* line 20, ../scss/misc.scss */
  6210. #better-messages-wrapper #better-messages-default div.messages.error {
  6211. color: #b94a48;
  6212. background-color: #f2dede;
  6213. border-color: #eed3d7;
  6214. }
  6215. /* line 27, ../scss/misc.scss */
  6216. #better-messages-wrapper #better-messages-default div.messages.status {
  6217. color: #468847;
  6218. background-color: #dff0d8;
  6219. border-color: #d6e9c6;
  6220. font-size: 14px;
  6221. }
  6222. /* line 47, ../scss/misc.scss */
  6223. #better-messages-wrapper #better-messages-default .footer {
  6224. border: none;
  6225. padding: 0;
  6226. margin: 0;
  6227. }
  6228. /* line 49, ../scss/misc.scss */
  6229. #better-messages-wrapper #better-messages-default .footer a.message-close {
  6230. background: #fff url("../img/close.png") no-repeat center center;
  6231. width: 15px;
  6232. height: 15px;
  6233. border-radius: 3px;
  6234. background-clip: padding-box;
  6235. display: block;
  6236. }
  6237. /** Tab navigation */
  6238. /**
  6239. * icons
  6240. */
  6241. /**
  6242. * figures
  6243. */
  6244. /* line 176, ../scss/misc.scss */
  6245. figure figcaption {
  6246. display: none;
  6247. }
  6248. /* line 179, ../scss/misc.scss */
  6249. figure .blank {
  6250. position: absolute;
  6251. top: 0;
  6252. left: 0;
  6253. width: 100%;
  6254. height: 100%;
  6255. }
  6256. /* ==|== print styles =======================================================
  6257. Print styles.
  6258. Inlined to avoid required HTTP connection: h5bp.com/r
  6259. ========================================================================== */
  6260. /* line 206, ../scss/misc.scss */
  6261. a:focus {
  6262. outline: 0;
  6263. }
  6264. /*
  6265. * Improves readability when focused and also mouse hovered in all browsers.
  6266. */
  6267. /* line 214, ../scss/misc.scss */
  6268. a:active,
  6269. a:hover {
  6270. outline: 0;
  6271. }
  6272. /** COLORBOX */
  6273. /* line 221, ../scss/misc.scss */
  6274. #colorbox {
  6275. border-radius: 2px;
  6276. background-clip: padding-box;
  6277. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  6278. }
  6279. /* line 223, ../scss/misc.scss */
  6280. #colorbox #cboxLoadedContent {
  6281. background-color: #fff;
  6282. }
  6283. /** embed player */
  6284. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6285. /* line 229, ../scss/misc.scss */
  6286. .embedded-video .player iframe {
  6287. max-width: 100%;
  6288. height: auto;
  6289. }
  6290. }
  6291. /** devel */
  6292. /* line 239, ../scss/misc.scss */
  6293. .not-logged-in #tasks ul.tabs.primary {
  6294. display: none;
  6295. }
  6296. /** AUTOCOMPLETE */
  6297. /* line 1485, ../scss/styles.scss */
  6298. #autocomplete {
  6299. border: 0;
  6300. border-radius: 3px;
  6301. background-clip: padding-box;
  6302. background-color: rgba(0, 0, 0, 0.6);
  6303. text-align: left;
  6304. margin-left: 2px;
  6305. }
  6306. /* line 1490, ../scss/styles.scss */
  6307. .oldie #autocomplete {
  6308. background-color: #545454;
  6309. }
  6310. /* line 1491, ../scss/styles.scss */
  6311. #autocomplete li {
  6312. color: #FFF;
  6313. background-color: transparent;
  6314. font-size: 12px;
  6315. }
  6316. /* line 1493, ../scss/styles.scss */
  6317. #autocomplete li.selected {
  6318. background-color: rgba(0, 0, 0, 0.8);
  6319. }
  6320. /* line 1494, ../scss/styles.scss */
  6321. #autocomplete li div {
  6322. padding: 0.1em 5px;
  6323. }
  6324. /**
  6325. * the old modal api (balck bg) for contextual forms (create new flag list)
  6326. */
  6327. /* line 1535, ../scss/styles.scss */
  6328. #modal {
  6329. background-color: rgba(0, 0, 0, 0.7);
  6330. border-radius: 5px;
  6331. background-clip: padding-box;
  6332. border: 0;
  6333. font-size: 12px;
  6334. }
  6335. /* line 1505, ../scss/styles.scss */
  6336. #modal * {
  6337. color: #fff;
  6338. background-color: transparent;
  6339. }
  6340. /* line 1507, ../scss/styles.scss */
  6341. #modal form {
  6342. background-color: transparent;
  6343. color: #fff;
  6344. border: 0px;
  6345. }
  6346. /* line 1510, ../scss/styles.scss */
  6347. #modal form .form-actions {
  6348. background-color: transparent;
  6349. margin: 0;
  6350. padding: 0;
  6351. border: 0;
  6352. }
  6353. /* line 1513, ../scss/styles.scss */
  6354. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  6355. background-color: #fff;
  6356. color: #000;
  6357. border: 0;
  6358. }
  6359. /* line 1515, ../scss/styles.scss */
  6360. #modal form .form-actions {
  6361. text-align: right;
  6362. }
  6363. /* line 1516, ../scss/styles.scss */
  6364. #modal form input.form-submit {
  6365. border-style: solid;
  6366. border-width: 0;
  6367. cursor: pointer;
  6368. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6369. font-weight: normal;
  6370. line-height: normal;
  6371. margin: 0 0 1.25rem;
  6372. position: relative;
  6373. text-decoration: none;
  6374. text-align: center;
  6375. -webkit-appearance: none;
  6376. -moz-appearance: none;
  6377. border-radius: 0;
  6378. display: inline-block;
  6379. padding-top: 0.625rem;
  6380. padding-right: 1.25rem;
  6381. padding-bottom: 0.6875rem;
  6382. padding-left: 1.25rem;
  6383. font-size: 0.6875rem;
  6384. background-color: #008CBA;
  6385. border-color: #007095;
  6386. color: #FFFFFF;
  6387. -webkit-transition: background-color 300ms ease-out;
  6388. transition: background-color 300ms ease-out;
  6389. }
  6390. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6391. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  6392. background-color: #007095;
  6393. }
  6394. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6395. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  6396. color: #FFFFFF;
  6397. }
  6398. /* line 1519, ../scss/styles.scss */
  6399. #modal form input.form-submit[name="create"] {
  6400. border-style: solid;
  6401. border-width: 0;
  6402. cursor: pointer;
  6403. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6404. font-weight: normal;
  6405. line-height: normal;
  6406. margin: 0 0 1.25rem;
  6407. position: relative;
  6408. text-decoration: none;
  6409. text-align: center;
  6410. -webkit-appearance: none;
  6411. -moz-appearance: none;
  6412. border-radius: 0;
  6413. display: inline-block;
  6414. padding-top: 0.625rem;
  6415. padding-right: 1.25rem;
  6416. padding-bottom: 0.6875rem;
  6417. padding-left: 1.25rem;
  6418. font-size: 0.6875rem;
  6419. background-color: #43AC6A;
  6420. border-color: #368a55;
  6421. color: #FFFFFF;
  6422. -webkit-transition: background-color 300ms ease-out;
  6423. transition: background-color 300ms ease-out;
  6424. }
  6425. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6426. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  6427. background-color: #368a55;
  6428. }
  6429. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6430. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  6431. color: #FFFFFF;
  6432. }
  6433. /* line 1522, ../scss/styles.scss */
  6434. #modal form input.form-submit[name="save"] {
  6435. border-style: solid;
  6436. border-width: 0;
  6437. cursor: pointer;
  6438. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6439. font-weight: normal;
  6440. line-height: normal;
  6441. margin: 0 0 1.25rem;
  6442. position: relative;
  6443. text-decoration: none;
  6444. text-align: center;
  6445. -webkit-appearance: none;
  6446. -moz-appearance: none;
  6447. border-radius: 0;
  6448. display: inline-block;
  6449. padding-top: 0.625rem;
  6450. padding-right: 1.25rem;
  6451. padding-bottom: 0.6875rem;
  6452. padding-left: 1.25rem;
  6453. font-size: 0.6875rem;
  6454. background-color: #43AC6A;
  6455. border-color: #368a55;
  6456. color: #FFFFFF;
  6457. -webkit-transition: background-color 300ms ease-out;
  6458. transition: background-color 300ms ease-out;
  6459. }
  6460. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6461. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  6462. background-color: #368a55;
  6463. }
  6464. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6465. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  6466. color: #FFFFFF;
  6467. }
  6468. /* line 1525, ../scss/styles.scss */
  6469. #modal form input.form-submit[name="delete"] {
  6470. border-style: solid;
  6471. border-width: 0;
  6472. cursor: pointer;
  6473. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6474. font-weight: normal;
  6475. line-height: normal;
  6476. margin: 0 0 1.25rem;
  6477. position: relative;
  6478. text-decoration: none;
  6479. text-align: center;
  6480. -webkit-appearance: none;
  6481. -moz-appearance: none;
  6482. border-radius: 0;
  6483. display: inline-block;
  6484. padding-top: 0.625rem;
  6485. padding-right: 1.25rem;
  6486. padding-bottom: 0.6875rem;
  6487. padding-left: 1.25rem;
  6488. font-size: 0.6875rem;
  6489. background-color: #f04124;
  6490. border-color: #cf2a0e;
  6491. color: #FFFFFF;
  6492. -webkit-transition: background-color 300ms ease-out;
  6493. transition: background-color 300ms ease-out;
  6494. }
  6495. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6496. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  6497. background-color: #cf2a0e;
  6498. }
  6499. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6500. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  6501. color: #FFFFFF;
  6502. }
  6503. /* line 1528, ../scss/styles.scss */
  6504. #modal form input.form-submit[name="cancel"] {
  6505. border-style: solid;
  6506. border-width: 0;
  6507. cursor: pointer;
  6508. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6509. font-weight: normal;
  6510. line-height: normal;
  6511. margin: 0 0 1.25rem;
  6512. position: relative;
  6513. text-decoration: none;
  6514. text-align: center;
  6515. -webkit-appearance: none;
  6516. -moz-appearance: none;
  6517. border-radius: 0;
  6518. display: inline-block;
  6519. padding-top: 0.625rem;
  6520. padding-right: 1.25rem;
  6521. padding-bottom: 0.6875rem;
  6522. padding-left: 1.25rem;
  6523. font-size: 0.6875rem;
  6524. background-color: #e7e7e7;
  6525. border-color: #b9b9b9;
  6526. color: #333333;
  6527. -webkit-transition: background-color 300ms ease-out;
  6528. transition: background-color 300ms ease-out;
  6529. }
  6530. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6531. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  6532. background-color: #b9b9b9;
  6533. }
  6534. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6535. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  6536. color: #333333;
  6537. }
  6538. /* line 1537, ../scss/styles.scss */
  6539. #modal > * {
  6540. padding: 10px;
  6541. }
  6542. /* line 1541, ../scss/styles.scss */
  6543. #modal .form-item-flag-lists-name input {
  6544. width: 95%;
  6545. }
  6546. /* line 1544, ../scss/styles.scss */
  6547. #modal .actions {
  6548. text-align: right;
  6549. }
  6550. /**
  6551. * the new modal api used for preview and register modal
  6552. */
  6553. /* line 1552, ../scss/styles.scss */
  6554. .modal-wrapper {
  6555. bottom: 0;
  6556. left: 0;
  6557. position: fixed;
  6558. right: 0;
  6559. text-align: center;
  6560. top: 0;
  6561. white-space: nowrap;
  6562. z-index: 99998;
  6563. }
  6564. /* line 1553, ../scss/styles.scss */
  6565. .modal-wrapper:before {
  6566. content: "";
  6567. display: inline-block;
  6568. height: 100%;
  6569. margin-right: -0.25em;
  6570. vertical-align: middle;
  6571. }
  6572. /* line 1560, ../scss/styles.scss */
  6573. .modal-wrapper:after, .modal-wrapper:before {
  6574. -moz-box-sizing: border-box;
  6575. }
  6576. /* line 1575, ../scss/styles.scss */
  6577. .modal-wrapper .modal-bg {
  6578. background-color: #000;
  6579. position: absolute;
  6580. top: 0;
  6581. left: 0;
  6582. width: 100%;
  6583. height: 100%;
  6584. opacity: 0.5;
  6585. }
  6586. /* line 1583, ../scss/styles.scss */
  6587. .modal-wrapper .modal-content {
  6588. position: relative;
  6589. display: inline-block;
  6590. margin: 0 auto;
  6591. text-align: left;
  6592. vertical-align: middle;
  6593. white-space: normal;
  6594. min-height: 200px;
  6595. }
  6596. /** MODALCONTENT */
  6597. /** JSCROLLPAN */
  6598. /* line 1642, ../scss/styles.scss */
  6599. .jspContainer .jspVerticalBar {
  6600. background-color: transparent;
  6601. width: 5px;
  6602. }
  6603. /* line 1646, ../scss/styles.scss */
  6604. .jspContainer .jspVerticalBar .jspTrack {
  6605. background-color: transparent;
  6606. }
  6607. /* line 1648, ../scss/styles.scss */
  6608. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  6609. background-color: #ccc;
  6610. border-radius: 3px;
  6611. background-clip: padding-box;
  6612. }
  6613. /** TOOLTIP */
  6614. /* line 1657, ../scss/styles.scss */
  6615. #tooltip {
  6616. position: absolute;
  6617. z-index: 999;
  6618. max-width: 180px;
  6619. background-color: white;
  6620. padding: 5px;
  6621. border-radius: 3px;
  6622. background-clip: padding-box;
  6623. font-size: 12px;
  6624. font-weight: 500;
  6625. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  6626. }
  6627. /* line 1661, ../scss/styles.scss */
  6628. #tooltip.op-visible {
  6629. -webkit-transition: opacity 0.1s ease-out;
  6630. transition: opacity 0.1s ease-out;
  6631. }
  6632. /** FEEDBACK */
  6633. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6634. /* line 1668, ../scss/styles.scss */
  6635. #block-feedback-form {
  6636. bottom: 5px;
  6637. left: 5px;
  6638. right: auto;
  6639. }
  6640. }
  6641. /* line 1672, ../scss/styles.scss */
  6642. #block-feedback-form h2 {
  6643. line-height: 1.2;
  6644. font-size: 14px;
  6645. margin: 0;
  6646. }
  6647. /* line 1674, ../scss/styles.scss */
  6648. #block-feedback-form h2 .title {
  6649. display: none;
  6650. }
  6651. /* line 1677, ../scss/styles.scss */
  6652. #block-feedback-form #feedback-form-toggle {
  6653. padding: 2px 3px;
  6654. border-radius: 3px;
  6655. background-clip: padding-box;
  6656. background-color: #ff7600;
  6657. color: #fff;
  6658. line-height: 2;
  6659. font-weight: 900;
  6660. }
  6661. /* line 1681, ../scss/styles.scss */
  6662. #block-feedback-form .content {
  6663. background-color: rgba(0, 0, 0, 0.7);
  6664. border-radius: 5px;
  6665. background-clip: padding-box;
  6666. border: 0;
  6667. font-size: 12px;
  6668. }
  6669. /* line 1505, ../scss/styles.scss */
  6670. #block-feedback-form .content * {
  6671. color: #fff;
  6672. background-color: transparent;
  6673. }
  6674. /* line 1507, ../scss/styles.scss */
  6675. #block-feedback-form .content form {
  6676. background-color: transparent;
  6677. color: #fff;
  6678. border: 0px;
  6679. }
  6680. /* line 1510, ../scss/styles.scss */
  6681. #block-feedback-form .content form .form-actions {
  6682. background-color: transparent;
  6683. margin: 0;
  6684. padding: 0;
  6685. border: 0;
  6686. }
  6687. /* line 1513, ../scss/styles.scss */
  6688. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  6689. background-color: #fff;
  6690. color: #000;
  6691. border: 0;
  6692. }
  6693. /* line 1515, ../scss/styles.scss */
  6694. #block-feedback-form .content form .form-actions {
  6695. text-align: right;
  6696. }
  6697. /* line 1516, ../scss/styles.scss */
  6698. #block-feedback-form .content form input.form-submit {
  6699. border-style: solid;
  6700. border-width: 0;
  6701. cursor: pointer;
  6702. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6703. font-weight: normal;
  6704. line-height: normal;
  6705. margin: 0 0 1.25rem;
  6706. position: relative;
  6707. text-decoration: none;
  6708. text-align: center;
  6709. -webkit-appearance: none;
  6710. -moz-appearance: none;
  6711. border-radius: 0;
  6712. display: inline-block;
  6713. padding-top: 0.625rem;
  6714. padding-right: 1.25rem;
  6715. padding-bottom: 0.6875rem;
  6716. padding-left: 1.25rem;
  6717. font-size: 0.6875rem;
  6718. background-color: #008CBA;
  6719. border-color: #007095;
  6720. color: #FFFFFF;
  6721. -webkit-transition: background-color 300ms ease-out;
  6722. transition: background-color 300ms ease-out;
  6723. }
  6724. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6725. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6726. background-color: #007095;
  6727. }
  6728. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6729. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6730. color: #FFFFFF;
  6731. }
  6732. /* line 1519, ../scss/styles.scss */
  6733. #block-feedback-form .content form input.form-submit[name="create"] {
  6734. border-style: solid;
  6735. border-width: 0;
  6736. cursor: pointer;
  6737. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6738. font-weight: normal;
  6739. line-height: normal;
  6740. margin: 0 0 1.25rem;
  6741. position: relative;
  6742. text-decoration: none;
  6743. text-align: center;
  6744. -webkit-appearance: none;
  6745. -moz-appearance: none;
  6746. border-radius: 0;
  6747. display: inline-block;
  6748. padding-top: 0.625rem;
  6749. padding-right: 1.25rem;
  6750. padding-bottom: 0.6875rem;
  6751. padding-left: 1.25rem;
  6752. font-size: 0.6875rem;
  6753. background-color: #43AC6A;
  6754. border-color: #368a55;
  6755. color: #FFFFFF;
  6756. -webkit-transition: background-color 300ms ease-out;
  6757. transition: background-color 300ms ease-out;
  6758. }
  6759. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6760. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6761. background-color: #368a55;
  6762. }
  6763. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6764. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6765. color: #FFFFFF;
  6766. }
  6767. /* line 1522, ../scss/styles.scss */
  6768. #block-feedback-form .content form input.form-submit[name="save"] {
  6769. border-style: solid;
  6770. border-width: 0;
  6771. cursor: pointer;
  6772. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6773. font-weight: normal;
  6774. line-height: normal;
  6775. margin: 0 0 1.25rem;
  6776. position: relative;
  6777. text-decoration: none;
  6778. text-align: center;
  6779. -webkit-appearance: none;
  6780. -moz-appearance: none;
  6781. border-radius: 0;
  6782. display: inline-block;
  6783. padding-top: 0.625rem;
  6784. padding-right: 1.25rem;
  6785. padding-bottom: 0.6875rem;
  6786. padding-left: 1.25rem;
  6787. font-size: 0.6875rem;
  6788. background-color: #43AC6A;
  6789. border-color: #368a55;
  6790. color: #FFFFFF;
  6791. -webkit-transition: background-color 300ms ease-out;
  6792. transition: background-color 300ms ease-out;
  6793. }
  6794. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6795. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6796. background-color: #368a55;
  6797. }
  6798. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6799. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6800. color: #FFFFFF;
  6801. }
  6802. /* line 1525, ../scss/styles.scss */
  6803. #block-feedback-form .content form input.form-submit[name="delete"] {
  6804. border-style: solid;
  6805. border-width: 0;
  6806. cursor: pointer;
  6807. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6808. font-weight: normal;
  6809. line-height: normal;
  6810. margin: 0 0 1.25rem;
  6811. position: relative;
  6812. text-decoration: none;
  6813. text-align: center;
  6814. -webkit-appearance: none;
  6815. -moz-appearance: none;
  6816. border-radius: 0;
  6817. display: inline-block;
  6818. padding-top: 0.625rem;
  6819. padding-right: 1.25rem;
  6820. padding-bottom: 0.6875rem;
  6821. padding-left: 1.25rem;
  6822. font-size: 0.6875rem;
  6823. background-color: #f04124;
  6824. border-color: #cf2a0e;
  6825. color: #FFFFFF;
  6826. -webkit-transition: background-color 300ms ease-out;
  6827. transition: background-color 300ms ease-out;
  6828. }
  6829. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6830. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6831. background-color: #cf2a0e;
  6832. }
  6833. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6834. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6835. color: #FFFFFF;
  6836. }
  6837. /* line 1528, ../scss/styles.scss */
  6838. #block-feedback-form .content form input.form-submit[name="cancel"] {
  6839. border-style: solid;
  6840. border-width: 0;
  6841. cursor: pointer;
  6842. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6843. font-weight: normal;
  6844. line-height: normal;
  6845. margin: 0 0 1.25rem;
  6846. position: relative;
  6847. text-decoration: none;
  6848. text-align: center;
  6849. -webkit-appearance: none;
  6850. -moz-appearance: none;
  6851. border-radius: 0;
  6852. display: inline-block;
  6853. padding-top: 0.625rem;
  6854. padding-right: 1.25rem;
  6855. padding-bottom: 0.6875rem;
  6856. padding-left: 1.25rem;
  6857. font-size: 0.6875rem;
  6858. background-color: #e7e7e7;
  6859. border-color: #b9b9b9;
  6860. color: #333333;
  6861. -webkit-transition: background-color 300ms ease-out;
  6862. transition: background-color 300ms ease-out;
  6863. }
  6864. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6865. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6866. background-color: #b9b9b9;
  6867. }
  6868. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6869. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6870. color: #333333;
  6871. }
  6872. /* line 1683, ../scss/styles.scss */
  6873. .ie8 #block-feedback-form .content {
  6874. background: #000;
  6875. }
  6876. /* line 1686, ../scss/styles.scss */
  6877. #block-feedback-form #feedback-status-message {
  6878. background-color: #fff;
  6879. padding: 5px;
  6880. }
  6881. /** TASK / TABS **/
  6882. /* line 1704, ../scss/styles.scss */
  6883. #tasks ul.tabs {
  6884. display: moz-inline-stack;
  6885. display: inline-block;
  6886. vertical-align: top;
  6887. zoom: 1;
  6888. *display: inline;
  6889. border: 0 solid #fff;
  6890. padding: 0;
  6891. margin: 0;
  6892. }
  6893. /* line 1708, ../scss/styles.scss */
  6894. #tasks ul.tabs li {
  6895. padding: 0;
  6896. margin: 2px 5px;
  6897. border: 0 solid #fff;
  6898. }
  6899. /* line 1709, ../scss/styles.scss */
  6900. #tasks ul.tabs a {
  6901. border: 0;
  6902. color: #7f7f7f;
  6903. }
  6904. /* line 1711, ../scss/styles.scss */
  6905. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6906. font-weight: 900;
  6907. color: #000;
  6908. }
  6909. /* line 1691, ../scss/styles.scss */
  6910. #tasks ul.tabs.primary a {
  6911. font-size: 12px;
  6912. padding: 5px 10px;
  6913. background-color: #e6e6e6;
  6914. border-radius: 3px;
  6915. background-clip: padding-box;
  6916. }
  6917. /* line 1695, ../scss/styles.scss */
  6918. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6919. background-color: #e6e6e6;
  6920. }
  6921. /* line 1718, ../scss/styles.scss */
  6922. #tasks ul.tabs.secondary {
  6923. font-size: 10px;
  6924. padding: 0.5em 1em;
  6925. }
  6926. /** STATICS */
  6927. /** user */
  6928. /* line 1729, ../scss/styles.scss */
  6929. .page-user #main, .page-user-edit #main, .page-user-password #main, .page-user-reset #main, .page-toboggan #main {
  6930. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right;
  6931. }
  6932. /* line 1731, ../scss/styles.scss */
  6933. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6934. width: 800px;
  6935. margin: 0 auto;
  6936. }
  6937. /* line 1733, ../scss/styles.scss */
  6938. .page-user.role-6 #tasks .tabs.primary, .page-user-edit.role-6 #tasks .tabs.primary, .page-user-password.role-6 #tasks .tabs.primary, .page-user-reset.role-6 #tasks .tabs.primary, .page-toboggan.role-6 #tasks .tabs.primary {
  6939. display: none;
  6940. }
  6941. /* line 1691, ../scss/styles.scss */
  6942. .page-user.role-6 #tasks .tabs.secondary a, .page-user-edit.role-6 #tasks .tabs.secondary a, .page-user-password.role-6 #tasks .tabs.secondary a, .page-user-reset.role-6 #tasks .tabs.secondary a, .page-toboggan.role-6 #tasks .tabs.secondary a {
  6943. font-size: 12px;
  6944. padding: 5px 10px;
  6945. background-color: #e6e6e6;
  6946. border-radius: 3px;
  6947. background-clip: padding-box;
  6948. }
  6949. /* line 1695, ../scss/styles.scss */
  6950. .page-user.role-6 #tasks .tabs.secondary a.active, .page-user.role-6 #tasks .tabs.secondary a:hover, .page-user-edit.role-6 #tasks .tabs.secondary a.active, .page-user-edit.role-6 #tasks .tabs.secondary a:hover, .page-user-password.role-6 #tasks .tabs.secondary a.active, .page-user-password.role-6 #tasks .tabs.secondary a:hover, .page-user-reset.role-6 #tasks .tabs.secondary a.active, .page-user-reset.role-6 #tasks .tabs.secondary a:hover, .page-toboggan.role-6 #tasks .tabs.secondary a.active, .page-toboggan.role-6 #tasks .tabs.secondary a:hover {
  6951. background-color: #e6e6e6;
  6952. }
  6953. /* line 1736, ../scss/styles.scss */
  6954. .page-user #content .inner-content > *, .page-user-edit #content .inner-content > *, .page-user-password #content .inner-content > *, .page-user-reset #content .inner-content > *, .page-toboggan #content .inner-content > * {
  6955. width: 800px;
  6956. margin: 0 auto;
  6957. padding-top: 1em;
  6958. font-size: 14px;
  6959. /* #user-profile-form */
  6960. }
  6961. /* line 1739, ../scss/styles.scss */
  6962. .page-user #content .inner-content > * fieldset, .page-user-edit #content .inner-content > * fieldset, .page-user-password #content .inner-content > * fieldset, .page-user-reset #content .inner-content > * fieldset, .page-toboggan #content .inner-content > * fieldset {
  6963. margin-bottom: 1em;
  6964. }
  6965. /* line 1743, ../scss/styles.scss */
  6966. .page-user #content .inner-content > * legend, .page-user-edit #content .inner-content > * legend, .page-user-password #content .inner-content > * legend, .page-user-reset #content .inner-content > * legend, .page-toboggan #content .inner-content > * legend {
  6967. font-size: 16px;
  6968. margin: 0;
  6969. padding: 10px 0 5px 0;
  6970. line-height: 1;
  6971. border: 0 solid #fff;
  6972. }
  6973. /* line 1745, ../scss/styles.scss */
  6974. .page-user #content .inner-content > * legend a, .page-user-edit #content .inner-content > * legend a, .page-user-password #content .inner-content > * legend a, .page-user-reset #content .inner-content > * legend a, .page-toboggan #content .inner-content > * legend a {
  6975. color: #000;
  6976. }
  6977. /* line 1748, ../scss/styles.scss */
  6978. .page-user #content .inner-content > * .form-item, .page-user-edit #content .inner-content > * .form-item, .page-user-password #content .inner-content > * .form-item, .page-user-reset #content .inner-content > * .form-item, .page-toboggan #content .inner-content > * .form-item {
  6979. margin: 0 0 0.5em 0;
  6980. width: 100%;
  6981. }
  6982. /* line 1750, ../scss/styles.scss */
  6983. .page-user #content .inner-content > * .form-item label, .page-user #content .inner-content > * .form-item input.form-text, .page-user-edit #content .inner-content > * .form-item label, .page-user-edit #content .inner-content > * .form-item input.form-text, .page-user-password #content .inner-content > * .form-item label, .page-user-password #content .inner-content > * .form-item input.form-text, .page-user-reset #content .inner-content > * .form-item label, .page-user-reset #content .inner-content > * .form-item input.form-text, .page-toboggan #content .inner-content > * .form-item label, .page-toboggan #content .inner-content > * .form-item input.form-text {
  6984. display: moz-inline-stack;
  6985. display: inline-block;
  6986. vertical-align: top;
  6987. zoom: 1;
  6988. *display: inline;
  6989. vertical-align: middle;
  6990. }
  6991. /* line 1753, ../scss/styles.scss */
  6992. .page-user #content .inner-content > * .form-item label, .page-user-edit #content .inner-content > * .form-item label, .page-user-password #content .inner-content > * .form-item label, .page-user-reset #content .inner-content > * .form-item label, .page-toboggan #content .inner-content > * .form-item label {
  6993. margin-right: 1em;
  6994. min-width: 6em;
  6995. }
  6996. /* line 1754, ../scss/styles.scss */
  6997. .page-user #content .inner-content > * .form-item input.form-text, .page-user-edit #content .inner-content > * .form-item input.form-text, .page-user-password #content .inner-content > * .form-item input.form-text, .page-user-reset #content .inner-content > * .form-item input.form-text, .page-toboggan #content .inner-content > * .form-item input.form-text {
  6998. padding: 2px 4px;
  6999. }
  7000. /* line 1759, ../scss/styles.scss */
  7001. .page-user #content .inner-content > * .form-wrapper > .form-item, .page-user-edit #content .inner-content > * .form-wrapper > .form-item, .page-user-password #content .inner-content > * .form-wrapper > .form-item, .page-user-reset #content .inner-content > * .form-wrapper > .form-item, .page-toboggan #content .inner-content > * .form-wrapper > .form-item {
  7002. margin: 0 0 2em 0;
  7003. }
  7004. /* line 1763, ../scss/styles.scss */
  7005. .page-user #content .inner-content > * .form-type-password-confirm label, .page-user #content .inner-content > * .form-type-new-password-confirm label, .page-user-edit #content .inner-content > * .form-type-password-confirm label, .page-user-edit #content .inner-content > * .form-type-new-password-confirm label, .page-user-password #content .inner-content > * .form-type-password-confirm label, .page-user-password #content .inner-content > * .form-type-new-password-confirm label, .page-user-reset #content .inner-content > * .form-type-password-confirm label, .page-user-reset #content .inner-content > * .form-type-new-password-confirm label, .page-toboggan #content .inner-content > * .form-type-password-confirm label, .page-toboggan #content .inner-content > * .form-type-new-password-confirm label {
  7006. width: 9em;
  7007. }
  7008. /* line 1764, ../scss/styles.scss */
  7009. .page-user #content .inner-content > * .form-type-password-confirm .password-parent, .page-user #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-user-edit #content .inner-content > * .form-type-password-confirm .password-parent, .page-user-edit #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-user-password #content .inner-content > * .form-type-password-confirm .password-parent, .page-user-password #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-user-reset #content .inner-content > * .form-type-password-confirm .password-parent, .page-user-reset #content .inner-content > * .form-type-new-password-confirm .password-parent, .page-toboggan #content .inner-content > * .form-type-password-confirm .password-parent, .page-toboggan #content .inner-content > * .form-type-new-password-confirm .password-parent {
  7010. width: auto;
  7011. }
  7012. /* line 1765, ../scss/styles.scss */
  7013. .page-user #content .inner-content > * .form-type-password-confirm .password-strength, .page-user #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-user-edit #content .inner-content > * .form-type-password-confirm .password-strength, .page-user-edit #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user-edit #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user-edit #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-user-password #content .inner-content > * .form-type-password-confirm .password-strength, .page-user-password #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user-password #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user-password #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-user-reset #content .inner-content > * .form-type-password-confirm .password-strength, .page-user-reset #content .inner-content > * .form-type-password-confirm .password-confirm, .page-user-reset #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-user-reset #content .inner-content > * .form-type-new-password-confirm .password-confirm, .page-toboggan #content .inner-content > * .form-type-password-confirm .password-strength, .page-toboggan #content .inner-content > * .form-type-password-confirm .password-confirm, .page-toboggan #content .inner-content > * .form-type-new-password-confirm .password-strength, .page-toboggan #content .inner-content > * .form-type-new-password-confirm .password-confirm {
  7014. width: 15em;
  7015. margin-top: 0;
  7016. }
  7017. /* line 1771, ../scss/styles.scss */
  7018. .page-user #content .inner-content > * .form-type-checkbox input, .page-user-edit #content .inner-content > * .form-type-checkbox input, .page-user-password #content .inner-content > * .form-type-checkbox input, .page-user-reset #content .inner-content > * .form-type-checkbox input, .page-toboggan #content .inner-content > * .form-type-checkbox input {
  7019. margin: 0;
  7020. }
  7021. /* line 1772, ../scss/styles.scss */
  7022. .page-user #content .inner-content > * .form-type-checkbox label, .page-user-edit #content .inner-content > * .form-type-checkbox label, .page-user-password #content .inner-content > * .form-type-checkbox label, .page-user-reset #content .inner-content > * .form-type-checkbox label, .page-toboggan #content .inner-content > * .form-type-checkbox label {
  7023. font-size: 14px;
  7024. margin: 0;
  7025. }
  7026. /* line 1776, ../scss/styles.scss */
  7027. .page-user #content .inner-content > * #edit-language .form-item, .page-user-edit #content .inner-content > * #edit-language .form-item, .page-user-password #content .inner-content > * #edit-language .form-item, .page-user-reset #content .inner-content > * #edit-language .form-item, .page-toboggan #content .inner-content > * #edit-language .form-item {
  7028. display: moz-inline-stack;
  7029. display: inline-block;
  7030. vertical-align: top;
  7031. zoom: 1;
  7032. *display: inline;
  7033. width: auto;
  7034. margin-right: 1em;
  7035. }
  7036. /* line 1778, ../scss/styles.scss */
  7037. .page-user #content .inner-content > * #edit-language .form-item input, .page-user #content .inner-content > * #edit-language .form-item label, .page-user-edit #content .inner-content > * #edit-language .form-item input, .page-user-edit #content .inner-content > * #edit-language .form-item label, .page-user-password #content .inner-content > * #edit-language .form-item input, .page-user-password #content .inner-content > * #edit-language .form-item label, .page-user-reset #content .inner-content > * #edit-language .form-item input, .page-user-reset #content .inner-content > * #edit-language .form-item label, .page-toboggan #content .inner-content > * #edit-language .form-item input, .page-toboggan #content .inner-content > * #edit-language .form-item label {
  7038. margin: 0;
  7039. }
  7040. /* line 1782, ../scss/styles.scss */
  7041. .page-user #content .inner-content > * select.form-select, .page-user-edit #content .inner-content > * select.form-select, .page-user-password #content .inner-content > * select.form-select, .page-user-reset #content .inner-content > * select.form-select, .page-toboggan #content .inner-content > * select.form-select {
  7042. width: auto;
  7043. padding: 2px 4px;
  7044. height: auto;
  7045. }
  7046. /* line 1786, ../scss/styles.scss */
  7047. .page-user #content .inner-content > * div.description, .page-user-edit #content .inner-content > * div.description, .page-user-password #content .inner-content > * div.description, .page-user-reset #content .inner-content > * div.description, .page-toboggan #content .inner-content > * div.description {
  7048. font-size: 10px;
  7049. }
  7050. /* line 1789, ../scss/styles.scss */
  7051. .page-user #content .inner-content > * div.form-actions, .page-user-edit #content .inner-content > * div.form-actions, .page-user-password #content .inner-content > * div.form-actions, .page-user-reset #content .inner-content > * div.form-actions, .page-toboggan #content .inner-content > * div.form-actions {
  7052. margin: 0;
  7053. text-align: right;
  7054. padding: 1em 0.5em;
  7055. }
  7056. /* line 1796, ../scss/styles.scss */
  7057. .page-user #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user #content .inner-content > * #edit-profile-adherent-field-name,
  7058. .page-user #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user #content .inner-content > * #edit-profile-adherent-field-service, .page-user #content .inner-content > * #edit-profile-adherent-field-employee,
  7059. .page-user #content .inner-content > * #edit-profile-adherent-field-naf, .page-user #content .inner-content > * #edit-profile-adherent-field-siret, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-name,
  7060. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-service, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-employee,
  7061. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret, .page-user-password #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user-password #content .inner-content > * #edit-profile-adherent-field-name,
  7062. .page-user-password #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user-password #content .inner-content > * #edit-profile-adherent-field-service, .page-user-password #content .inner-content > * #edit-profile-adherent-field-employee,
  7063. .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-name,
  7064. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-service, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-employee,
  7065. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-first-name, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-name,
  7066. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-private-quality, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-service, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-employee,
  7067. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret {
  7068. display: moz-inline-stack;
  7069. display: inline-block;
  7070. vertical-align: top;
  7071. zoom: 1;
  7072. *display: inline;
  7073. vertical-align: middle;
  7074. width: auto;
  7075. margin: 0 1em 0.5em 0;
  7076. }
  7077. /* line 1800, ../scss/styles.scss */
  7078. .page-user #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user #content .inner-content > * #edit-profile-adherent-field-name div,
  7079. .page-user #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user #content .inner-content > * #edit-profile-adherent-field-service div, .page-user #content .inner-content > * #edit-profile-adherent-field-employee div,
  7080. .page-user #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user #content .inner-content > * #edit-profile-adherent-field-siret div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-name div,
  7081. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-service div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-employee div,
  7082. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-name div,
  7083. .page-user-password #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-service div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-employee div,
  7084. .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-name div,
  7085. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-service div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-employee div,
  7086. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf div, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-name div,
  7087. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-private-quality div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-service div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-employee div,
  7088. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret div {
  7089. width: auto;
  7090. margin: 0;
  7091. padding: 0;
  7092. }
  7093. /* line 1806, ../scss/styles.scss */
  7094. .page-user #content .inner-content > * #edit-profile-adherent-field-name label, .page-user #content .inner-content > * #edit-profile-adherent-field-service label,
  7095. .page-user #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-name label, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-service label,
  7096. .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user-edit #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-user-password #content .inner-content > * #edit-profile-adherent-field-name label, .page-user-password #content .inner-content > * #edit-profile-adherent-field-service label,
  7097. .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user-password #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-name label, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-service label,
  7098. .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf label, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret label, .page-user-reset #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-name label, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-service label,
  7099. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf label, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret label, .page-toboggan #content .inner-content > * .form-item-profile-adherent-field-adresse-und-0-locality label {
  7100. min-width: auto;
  7101. }
  7102. /* line 1809, ../scss/styles.scss */
  7103. .page-user #content .inner-content > * #edit-profile-adherent-field-siret input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-siret input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-siret input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-siret input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret input {
  7104. width: 8em;
  7105. }
  7106. /* line 1810, ../scss/styles.scss */
  7107. .page-user #content .inner-content > * #edit-profile-adherent-field-naf input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-naf input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-naf input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-naf input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf input {
  7108. width: 13em;
  7109. }
  7110. /* line 1812, ../scss/styles.scss */
  7111. .page-user #content .inner-content > * #edit-profile-adherent-field-organization, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-organization, .page-user-password #content .inner-content > * #edit-profile-adherent-field-organization, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-organization, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-organization {
  7112. margin: 2em 0 0 0;
  7113. }
  7114. /* line 1812, ../scss/styles.scss */
  7115. .page-user #content .inner-content > * #edit-profile-adherent-field-organization input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-organization input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-organization input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-organization input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-organization input {
  7116. width: 35em;
  7117. }
  7118. /* line 1814, ../scss/styles.scss */
  7119. .page-user #content .inner-content > * #edit-profile-adherent-field-employee input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-employee input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-employee input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-employee input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-employee input {
  7120. width: 4em;
  7121. }
  7122. /* line 1818, ../scss/styles.scss */
  7123. .page-user #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-password #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-private-phone .form-phone-number {
  7124. display: moz-inline-stack;
  7125. display: inline-block;
  7126. vertical-align: top;
  7127. zoom: 1;
  7128. *display: inline;
  7129. vertical-align: middle;
  7130. }
  7131. /* line 1825, ../scss/styles.scss */
  7132. .page-user #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-adresse .street-block input {
  7133. width: 35em;
  7134. }
  7135. /* line 1828, ../scss/styles.scss */
  7136. .page-user #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-user-password #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-adresse .locality-block .form-item {
  7137. width: auto;
  7138. margin-right: 1em;
  7139. }
  7140. /* line 1832, ../scss/styles.scss */
  7141. .page-user #content .inner-content > * #edit-profile-adherent-field-user-website, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-user-website, .page-user-password #content .inner-content > * #edit-profile-adherent-field-user-website, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-user-website, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-user-website {
  7142. margin: 2em 0 0 0;
  7143. }
  7144. /* line 1834, ../scss/styles.scss */
  7145. .page-user #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-password #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > *, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-user-website .form-item > * {
  7146. display: moz-inline-stack;
  7147. display: inline-block;
  7148. vertical-align: top;
  7149. zoom: 1;
  7150. *display: inline;
  7151. vertical-align: middle;
  7152. }
  7153. /* line 1835, ../scss/styles.scss */
  7154. .page-user #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-user-edit #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-user-password #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-user-reset #content .inner-content > * #edit-profile-adherent-field-user-website input, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-user-website input {
  7155. width: 35em;
  7156. }
  7157. /* line 1839, ../scss/styles.scss */
  7158. .page-user #content .inner-content > *.profile h3, .page-user-edit #content .inner-content > *.profile h3, .page-user-password #content .inner-content > *.profile h3, .page-user-reset #content .inner-content > *.profile h3, .page-toboggan #content .inner-content > *.profile h3 {
  7159. border: 0 solid transparent;
  7160. }
  7161. /* line 1840, ../scss/styles.scss */
  7162. .page-user #content .inner-content > *.profile .field-label, .page-user-edit #content .inner-content > *.profile .field-label, .page-user-password #content .inner-content > *.profile .field-label, .page-user-reset #content .inner-content > *.profile .field-label, .page-toboggan #content .inner-content > *.profile .field-label {
  7163. display: inline;
  7164. }
  7165. /** SIMPLENEWS */
  7166. /* line 1848, ../scss/styles.scss */
  7167. body.node-type-simplenews #content .inner-content {
  7168. text-align: center;
  7169. }
  7170. /* line 1851, ../scss/styles.scss */
  7171. body.node-type-simplenews #content article.node.node-simplenews {
  7172. display: moz-inline-stack;
  7173. display: inline-block;
  7174. vertical-align: top;
  7175. zoom: 1;
  7176. *display: inline;
  7177. max-width: 600px;
  7178. padding: 1em 0;
  7179. }
  7180. /* line 1855, ../scss/styles.scss */
  7181. body.node-type-simplenews #content article.node.node-simplenews tbody {
  7182. border-top: 0px;
  7183. }
  7184. /** PAGE CONTACT */
  7185. /* line 1864, ../scss/styles.scss */
  7186. .page-node-11175 #main {
  7187. background: #fff url("../img/bg-contact.gif") no-repeat bottom right;
  7188. }
  7189. /* line 1868, ../scss/styles.scss */
  7190. .page-node-11175 #main .field-name-body p {
  7191. display: moz-inline-stack;
  7192. display: inline-block;
  7193. vertical-align: top;
  7194. zoom: 1;
  7195. *display: inline;
  7196. margin: 15px;
  7197. }
  7198. /* line 1870, ../scss/styles.scss */
  7199. .page-node-11175 #main .field-name-body p strong {
  7200. font-size: 18px;
  7201. }
  7202. /** PRICING */
  7203. @media only screen and (min-width: 40.063em) {
  7204. /* line 1882, ../scss/styles.scss */
  7205. body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  7206. display: moz-inline-stack;
  7207. display: inline-block;
  7208. vertical-align: top;
  7209. zoom: 1;
  7210. *display: inline;
  7211. margin: 10px;
  7212. }
  7213. /* line 1885, ../scss/styles.scss */
  7214. body.page-node-11187 .node-11187 .field-name-body div.column {
  7215. width: 22.4%;
  7216. }
  7217. /* line 1887, ../scss/styles.scss */
  7218. body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text {
  7219. min-height: 170px;
  7220. }
  7221. /* line 1889, ../scss/styles.scss */
  7222. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  7223. width: 46%;
  7224. }
  7225. /* line 1891, ../scss/styles.scss */
  7226. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  7227. min-height: 110px;
  7228. }
  7229. /* line 1893, ../scss/styles.scss */
  7230. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  7231. width: 92%;
  7232. }
  7233. /* line 1897, ../scss/styles.scss */
  7234. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  7235. width: auto;
  7236. max-width: 98%;
  7237. }
  7238. /* line 1904, ../scss/styles.scss */
  7239. body.page-node-11187 #block-materio-user-user-register {
  7240. width: 600px;
  7241. margin: 0 auto;
  7242. }
  7243. }
  7244. @media only screen and (max-width: 40em) {
  7245. /* line 1911, ../scss/styles.scss */
  7246. body.page-node-11187 #block-system-help {
  7247. text-align: center;
  7248. }
  7249. }
  7250. /* line 1915, ../scss/styles.scss */
  7251. body.page-node-11187 .node-11187 .field-name-body {
  7252. text-align: center;
  7253. }
  7254. /* line 1917, ../scss/styles.scss */
  7255. body.page-node-11187 .node-11187 .field-name-body > * {
  7256. text-align: left;
  7257. }
  7258. /* line 1918, ../scss/styles.scss */
  7259. body.page-node-11187 .node-11187 .field-name-body div.column, body.page-node-11187 .node-11187 .field-name-body div.column-demi, body.page-node-11187 .node-11187 .field-name-body div.column-full, body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  7260. position: relative;
  7261. border-radius: 5px;
  7262. background-clip: padding-box;
  7263. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  7264. overflow: hidden;
  7265. }
  7266. /* line 1921, ../scss/styles.scss */
  7267. .ie8 body.page-node-11187 .node-11187 .field-name-body div.column, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-demi, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-full, .ie8 body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  7268. max-width: 500px;
  7269. margin: auto;
  7270. margin-bottom: 15px;
  7271. border: 1px solid #C6C6C6;
  7272. }
  7273. /* line 1924, ../scss/styles.scss */
  7274. body.page-node-11187 .node-11187 .field-name-body div.column > *, body.page-node-11187 .node-11187 .field-name-body div.column-demi > *, body.page-node-11187 .node-11187 .field-name-body div.column-full > *, body.page-node-11187 .node-11187 .field-name-body div.column-auto > * {
  7275. padding: 0 10px;
  7276. }
  7277. /* line 1925, ../scss/styles.scss */
  7278. body.page-node-11187 .node-11187 .field-name-body div.column img, body.page-node-11187 .node-11187 .field-name-body div.column-demi img, body.page-node-11187 .node-11187 .field-name-body div.column-full img, body.page-node-11187 .node-11187 .field-name-body div.column-auto img {
  7279. float: left;
  7280. padding: 0;
  7281. }
  7282. /* line 1926, ../scss/styles.scss */
  7283. body.page-node-11187 .node-11187 .field-name-body div.column h2, body.page-node-11187 .node-11187 .field-name-body div.column-demi h2, body.page-node-11187 .node-11187 .field-name-body div.column-full h2, body.page-node-11187 .node-11187 .field-name-body div.column-auto h2 {
  7284. text-align: left;
  7285. margin: 5px 0 0;
  7286. }
  7287. /* line 1927, ../scss/styles.scss */
  7288. body.page-node-11187 .node-11187 .field-name-body div.column .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-full .subtitle, body.page-node-11187 .node-11187 .field-name-body div.column-auto .subtitle {
  7289. padding: 0 0 0 1em;
  7290. font-size: 18px;
  7291. font-style: italic;
  7292. font-weight: bold;
  7293. line-height: 1;
  7294. }
  7295. /* line 1931, ../scss/styles.scss */
  7296. body.page-node-11187 .node-11187 .field-name-body div.column ul, body.page-node-11187 .node-11187 .field-name-body div.column-demi ul, body.page-node-11187 .node-11187 .field-name-body div.column-full ul, body.page-node-11187 .node-11187 .field-name-body div.column-auto ul {
  7297. margin: 0;
  7298. padding: 0 15px;
  7299. }
  7300. /* line 1932, ../scss/styles.scss */
  7301. body.page-node-11187 .node-11187 .field-name-body div.column li, body.page-node-11187 .node-11187 .field-name-body div.column-demi li, body.page-node-11187 .node-11187 .field-name-body div.column-full li, body.page-node-11187 .node-11187 .field-name-body div.column-auto li {
  7302. list-style: none;
  7303. font-size: 12px;
  7304. }
  7305. /* line 1934, ../scss/styles.scss */
  7306. body.page-node-11187 .node-11187 .field-name-body div.column li:before, body.page-node-11187 .node-11187 .field-name-body div.column-demi li:before, body.page-node-11187 .node-11187 .field-name-body div.column-full li:before, body.page-node-11187 .node-11187 .field-name-body div.column-auto li:before {
  7307. content: "+ ";
  7308. font-weight: 900;
  7309. }
  7310. /* line 1939, ../scss/styles.scss */
  7311. body.page-node-11187 .node-11187 .field-name-body div.column .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link {
  7312. margin: 0;
  7313. border-radius: 0 0 5px 5px 0 0 0;
  7314. background-clip: padding-box;
  7315. border: 1px solid #fff;
  7316. min-height: 92px;
  7317. }
  7318. /* line 1941, ../scss/styles.scss */
  7319. body.page-node-11187 .node-11187 .field-name-body div.column .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-full .get-link a, body.page-node-11187 .node-11187 .field-name-body div.column-auto .get-link a {
  7320. display: block;
  7321. width: 100%;
  7322. padding: 15px 0;
  7323. color: #1A1A1A;
  7324. text-decoration: none;
  7325. }
  7326. /* line 1943, ../scss/styles.scss */
  7327. body.page-node-11187 .node-11187 .field-name-body div.column.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.gratos .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.gratos .get-link {
  7328. background-color: #4BA13D;
  7329. }
  7330. /* line 1944, ../scss/styles.scss */
  7331. body.page-node-11187 .node-11187 .field-name-body div.column.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.flocon .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.flocon .get-link {
  7332. background-color: #69CDCF;
  7333. }
  7334. /* line 1945, ../scss/styles.scss */
  7335. body.page-node-11187 .node-11187 .field-name-body div.column.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.etoile .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.etoile .get-link {
  7336. background-color: #D476AE;
  7337. }
  7338. /* line 1946, ../scss/styles.scss */
  7339. body.page-node-11187 .node-11187 .field-name-body div.column.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-demi.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-full.cinqetoiles .get-link, body.page-node-11187 .node-11187 .field-name-body div.column-auto.cinqetoiles .get-link {
  7340. background-color: #E6DE1C;
  7341. }
  7342. /* line 1947, ../scss/styles.scss */
  7343. body.page-node-11187 .node-11187 .field-name-body div.column.ecole-de-neige, body.page-node-11187 .node-11187 .field-name-body div.column-demi.ecole-de-neige, body.page-node-11187 .node-11187 .field-name-body div.column-full.ecole-de-neige, body.page-node-11187 .node-11187 .field-name-body div.column-auto.ecole-de-neige {
  7344. float: none;
  7345. }
  7346. /* line 1953, ../scss/styles.scss */
  7347. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  7348. padding: 10px 0 0;
  7349. font-size: 24px;
  7350. }
  7351. /* line 1954, ../scss/styles.scss */
  7352. body.page-node-11187 .node-11187 .field-name-body div.column .subtitle {
  7353. min-height: 3em;
  7354. }
  7355. /* line 1955, ../scss/styles.scss */
  7356. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  7357. padding: 0;
  7358. font-size: 24px;
  7359. text-align: center;
  7360. font-style: italic;
  7361. font-weight: 900;
  7362. cursor: pointer;
  7363. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7364. -webkit-transition: text-shadow 0.3s ease-out;
  7365. transition: text-shadow 0.3s ease-out;
  7366. }
  7367. /* line 1959, ../scss/styles.scss */
  7368. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  7369. font-size: 20px;
  7370. }
  7371. /* line 53, ../scss/styles.scss */
  7372. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:hover, body.page-node-11187 .node-11187 .field-name-body div.column .get-link:focus {
  7373. text-shadow: 0 0 3px white;
  7374. }
  7375. /* line 56, ../scss/styles.scss */
  7376. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  7377. -webkit-transition: text-shadow 0s ease-out;
  7378. transition: text-shadow 0s ease-out;
  7379. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7380. }
  7381. /* line 1964, ../scss/styles.scss */
  7382. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  7383. padding: 10px 0 0;
  7384. font-size: 24px;
  7385. top: 0;
  7386. }
  7387. /* line 1965, ../scss/styles.scss */
  7388. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  7389. min-height: 2em;
  7390. }
  7391. /* line 1966, ../scss/styles.scss */
  7392. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  7393. font-size: 14px;
  7394. min-height: 120px;
  7395. }
  7396. /* line 1967, ../scss/styles.scss */
  7397. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  7398. font-size: 14px;
  7399. text-align: left;
  7400. padding: 0 1em;
  7401. background-color: #ddd;
  7402. }
  7403. /* line 1976, ../scss/styles.scss */
  7404. body.page-node-11187.logged-in .column.gratos .get-link {
  7405. cursor: auto !important;
  7406. }
  7407. /* line 1978, ../scss/styles.scss */
  7408. body.page-node-11187.logged-in .column.gratos .get-link a {
  7409. display: none !important;
  7410. }
  7411. /* line 1981, ../scss/styles.scss */
  7412. body.page-node-11187.logged-in.role-6 .column.flocon .get-link {
  7413. cursor: auto !important;
  7414. }
  7415. /* line 1983, ../scss/styles.scss */
  7416. body.page-node-11187.logged-in.role-6 .column.flocon .get-link a {
  7417. display: none !important;
  7418. }
  7419. /** ADHESION FORM */
  7420. /* line 1991, ../scss/styles.scss */
  7421. .node-11186 nav ul.links a.language-link {
  7422. display: none;
  7423. }
  7424. /* line 1994, ../scss/styles.scss */
  7425. #webform-client-form-11186 {
  7426. background-color: #e6e6e6;
  7427. border-radius: 10px;
  7428. background-clip: padding-box;
  7429. }
  7430. @media only screen and (min-width: 40.063em) {
  7431. /* line 1994, ../scss/styles.scss */
  7432. #webform-client-form-11186 {
  7433. padding: 10px 30px;
  7434. }
  7435. /* line 1997, ../scss/styles.scss */
  7436. #webform-client-form-11186 #webform-component-column-left--membership-options {
  7437. margin: 10px 0;
  7438. }
  7439. /* line 1999, ../scss/styles.scss */
  7440. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  7441. width: auto;
  7442. }
  7443. /* line 2001, ../scss/styles.scss */
  7444. #webform-client-form-11186 fieldset {
  7445. border-radius: 5px;
  7446. background-clip: padding-box;
  7447. border-left: 1px solid #cccccc;
  7448. border-bottom: 1px solid #cccccc;
  7449. padding: 10px;
  7450. }
  7451. /* line 2003, ../scss/styles.scss */
  7452. #webform-client-form-11186 fieldset fieldset {
  7453. border: 0 solid #ddd;
  7454. padding: 0;
  7455. }
  7456. /* line 2005, ../scss/styles.scss */
  7457. #webform-client-form-11186 legend {
  7458. margin: 0;
  7459. font-size: 18px;
  7460. font-weight: 700;
  7461. }
  7462. /* line 2006, ../scss/styles.scss */
  7463. #webform-client-form-11186 .form-item {
  7464. margin: 0 20px 0 0;
  7465. }
  7466. /* line 2007, ../scss/styles.scss */
  7467. #webform-client-form-11186 label {
  7468. font-size: 12px;
  7469. width: 10em;
  7470. display: moz-inline-stack;
  7471. display: inline-block;
  7472. vertical-align: top;
  7473. zoom: 1;
  7474. *display: inline;
  7475. vertical-align: middle;
  7476. margin-right: 1em;
  7477. border-bottom: 1px solid #cccccc;
  7478. }
  7479. /* line 2008, ../scss/styles.scss */
  7480. #webform-client-form-11186 .description {
  7481. font-size: 10px;
  7482. width: 25em;
  7483. display: moz-inline-stack;
  7484. display: inline-block;
  7485. vertical-align: top;
  7486. zoom: 1;
  7487. *display: inline;
  7488. vertical-align: bottom;
  7489. margin-left: 1em;
  7490. color: #7f7f7f;
  7491. }
  7492. /* line 2009, ../scss/styles.scss */
  7493. #webform-client-form-11186 input.form-text {
  7494. width: 13em;
  7495. }
  7496. }
  7497. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7498. /* line 1994, ../scss/styles.scss */
  7499. #webform-client-form-11186 {
  7500. padding: 10px;
  7501. }
  7502. /* line 2014, ../scss/styles.scss */
  7503. #webform-client-form-11186 #webform-component-column-left--membership-options {
  7504. margin: 0 0 10px 0;
  7505. }
  7506. /* line 2016, ../scss/styles.scss */
  7507. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  7508. width: 100%;
  7509. }
  7510. /* line 2017, ../scss/styles.scss */
  7511. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  7512. width: 75%;
  7513. }
  7514. /* line 2019, ../scss/styles.scss */
  7515. #webform-client-form-11186 legend {
  7516. margin: 0;
  7517. font-size: 16px;
  7518. font-weight: 700;
  7519. }
  7520. /* line 2020, ../scss/styles.scss */
  7521. #webform-client-form-11186 .form-item {
  7522. margin: 0;
  7523. float: none;
  7524. }
  7525. /* line 2021, ../scss/styles.scss */
  7526. #webform-client-form-11186 label {
  7527. font-size: 12px;
  7528. width: 30%;
  7529. display: moz-inline-stack;
  7530. display: inline-block;
  7531. vertical-align: top;
  7532. zoom: 1;
  7533. *display: inline;
  7534. vertical-align: middle;
  7535. margin-right: 0.5em;
  7536. }
  7537. /* line 2022, ../scss/styles.scss */
  7538. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  7539. width: 60%;
  7540. }
  7541. /* line 2023, ../scss/styles.scss */
  7542. #webform-client-form-11186 #webform-component-infos {
  7543. font-size: 14px;
  7544. }
  7545. }
  7546. /* line 2028, ../scss/styles.scss */
  7547. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  7548. display: moz-inline-stack;
  7549. display: inline-block;
  7550. vertical-align: top;
  7551. zoom: 1;
  7552. *display: inline;
  7553. }
  7554. /* line 2030, ../scss/styles.scss */
  7555. #webform-client-form-11186 #webform-component-column-left {
  7556. display: moz-inline-stack;
  7557. display: inline-block;
  7558. vertical-align: top;
  7559. zoom: 1;
  7560. *display: inline;
  7561. width: 25%;
  7562. border: none;
  7563. }
  7564. /* line 2031, ../scss/styles.scss */
  7565. #webform-client-form-11186 #webform-component-column-right {
  7566. display: moz-inline-stack;
  7567. display: inline-block;
  7568. vertical-align: top;
  7569. zoom: 1;
  7570. *display: inline;
  7571. min-width: 70%;
  7572. }
  7573. /* line 2035, ../scss/styles.scss */
  7574. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  7575. border: 1px solid #ddd;
  7576. border-radius: 5px;
  7577. background-clip: padding-box;
  7578. padding: 10px 5px;
  7579. margin: 5px 0;
  7580. background-color: #fff;
  7581. }
  7582. /* line 2037, ../scss/styles.scss */
  7583. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  7584. display: moz-inline-stack;
  7585. display: inline-block;
  7586. vertical-align: top;
  7587. zoom: 1;
  7588. *display: inline;
  7589. vertical-align: middle;
  7590. margin: 0px 5px;
  7591. }
  7592. /* line 2038, ../scss/styles.scss */
  7593. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  7594. font-size: 20px;
  7595. font-weight: 700;
  7596. display: moz-inline-stack;
  7597. display: inline-block;
  7598. vertical-align: top;
  7599. zoom: 1;
  7600. *display: inline;
  7601. vertical-align: middle;
  7602. margin: 0;
  7603. }
  7604. /* line 2040, ../scss/styles.scss */
  7605. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  7606. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7607. }
  7608. /* line 2041, ../scss/styles.scss */
  7609. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  7610. background-color: #69CDCF;
  7611. }
  7612. /* line 2042, ../scss/styles.scss */
  7613. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  7614. background-color: #D476AE;
  7615. }
  7616. /* line 2043, ../scss/styles.scss */
  7617. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  7618. background-color: #E6DE1C;
  7619. }
  7620. /* line 2045, ../scss/styles.scss */
  7621. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  7622. opacity: 0.4;
  7623. }
  7624. /* line 2048, ../scss/styles.scss */
  7625. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  7626. width: 200px;
  7627. font-size: 18px;
  7628. font-weight: 700;
  7629. }
  7630. /* line 2049, ../scss/styles.scss */
  7631. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  7632. border: 0;
  7633. }
  7634. /* line 2052, ../scss/styles.scss */
  7635. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  7636. display: block;
  7637. }
  7638. /* line 2057, ../scss/styles.scss */
  7639. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  7640. display: moz-inline-stack;
  7641. display: inline-block;
  7642. vertical-align: top;
  7643. zoom: 1;
  7644. *display: inline;
  7645. }
  7646. /* line 2060, ../scss/styles.scss */
  7647. #webform-client-form-11186 #addressfield-wrapper {
  7648. margin-top: 1em;
  7649. }
  7650. /* line 2061, ../scss/styles.scss */
  7651. #webform-client-form-11186 .street-block .form-item {
  7652. display: moz-inline-stack;
  7653. display: inline-block;
  7654. vertical-align: top;
  7655. zoom: 1;
  7656. *display: inline;
  7657. }
  7658. /* line 2063, ../scss/styles.scss */
  7659. #webform-client-form-11186 #webform-component-column-right--collaborators {
  7660. margin: 20px 0;
  7661. overflow: hidden;
  7662. }
  7663. /* line 2065, ../scss/styles.scss */
  7664. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  7665. display: moz-inline-stack;
  7666. display: inline-block;
  7667. vertical-align: top;
  7668. zoom: 1;
  7669. *display: inline;
  7670. width: 33%;
  7671. }
  7672. /* line 2066, ../scss/styles.scss */
  7673. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  7674. display: block;
  7675. }
  7676. /* line 2067, ../scss/styles.scss */
  7677. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  7678. width: 6em;
  7679. }
  7680. /* line 2068, ../scss/styles.scss */
  7681. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  7682. width: 11em;
  7683. }
  7684. /* line 2071, ../scss/styles.scss */
  7685. #webform-client-form-11186 #webform-component-infos {
  7686. margin: 20px 0;
  7687. }
  7688. /* line 2073, ../scss/styles.scss */
  7689. #webform-client-form-11186 .form-actions {
  7690. padding: 0;
  7691. margin: 0;
  7692. border: 0px;
  7693. background-color: transparent;
  7694. text-align: left;
  7695. }
  7696. /* line 2078, ../scss/styles.scss */
  7697. #webform-client-form-11186 .form-actions .form-submit {
  7698. border: 2px solid #69CDCF;
  7699. background-color: #69CDCF;
  7700. color: #fff;
  7701. font-size: 18px;
  7702. padding: 0.2em 1em 0.3em;
  7703. border-radius: 0.3em;
  7704. background-clip: padding-box;
  7705. font-weight: bold;
  7706. margin-bottom: 9px;
  7707. cursor: pointer;
  7708. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7709. -webkit-transition: text-shadow 0.2s ease-out;
  7710. transition: text-shadow 0.2s ease-out;
  7711. }
  7712. /* line 66, ../scss/styles.scss */
  7713. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  7714. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  7715. }
  7716. /* line 69, ../scss/styles.scss */
  7717. #webform-client-form-11186 .form-actions .form-submit:active {
  7718. -webkit-transition: text-shadow 0s ease-out;
  7719. transition: text-shadow 0s ease-out;
  7720. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7721. }
  7722. /* line 2088, ../scss/styles.scss */
  7723. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  7724. margin: 0;
  7725. font-size: 18px;
  7726. font-weight: 700;
  7727. border: none;
  7728. line-height: 40px;
  7729. }
  7730. /* line 2089, ../scss/styles.scss */
  7731. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  7732. display: moz-inline-stack;
  7733. display: inline-block;
  7734. vertical-align: top;
  7735. zoom: 1;
  7736. *display: inline;
  7737. }
  7738. /* line 2091, ../scss/styles.scss */
  7739. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  7740. width: auto;
  7741. }
  7742. /* line 2092, ../scss/styles.scss */
  7743. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item input, #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  7744. margin: 0;
  7745. }
  7746. /* line 2096, ../scss/styles.scss */
  7747. #webform-client-form-11186 #edit-submitted-terms-of-services {
  7748. margin-bottom: 0.5em;
  7749. }
  7750. /* line 2098, ../scss/styles.scss */
  7751. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  7752. margin: 0 0.3em 0 0;
  7753. }
  7754. /* line 2099, ../scss/styles.scss */
  7755. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  7756. width: auto;
  7757. }
  7758. /** UC CART VIEW FORM */
  7759. /* line 2104, ../scss/styles.scss */
  7760. #uc-cart-view-form {
  7761. background-color: #e6e6e6;
  7762. padding: 10px, 30px;
  7763. display: inline-block;
  7764. }
  7765. /* line 2110, ../scss/styles.scss */
  7766. #uc-cart-view-form table {
  7767. width: auto;
  7768. display: table;
  7769. background-color: #fff;
  7770. }
  7771. /* line 2114, ../scss/styles.scss */
  7772. #uc-cart-view-form table thead th {
  7773. border-bottom: none;
  7774. padding: 1em;
  7775. }
  7776. /* line 2115, ../scss/styles.scss */
  7777. #uc-cart-view-form table tbody {
  7778. border-top: none;
  7779. }
  7780. /* line 2117, ../scss/styles.scss */
  7781. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  7782. background-color: #fff;
  7783. border-bottom: none;
  7784. }
  7785. /* line 2121, ../scss/styles.scss */
  7786. #uc-cart-view-form table tbody td {
  7787. padding: 1em;
  7788. }
  7789. /* line 2128, ../scss/styles.scss */
  7790. #uc-cart-view-form .form-type-uc-quantity input {
  7791. width: 2em;
  7792. }
  7793. /* line 2132, ../scss/styles.scss */
  7794. #uc-cart-view-form .form-actions {
  7795. padding: 0;
  7796. margin: 0;
  7797. border: 0px;
  7798. background-color: transparent;
  7799. text-align: right;
  7800. display: block;
  7801. width: 100%;
  7802. }
  7803. /* line 2139, ../scss/styles.scss */
  7804. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  7805. display: block;
  7806. }
  7807. /* line 2142, ../scss/styles.scss */
  7808. #uc-cart-view-form .form-actions .form-submit {
  7809. font-size: 16px;
  7810. font-weight: bold;
  7811. padding: 0.1em 0.3em 0.2em;
  7812. border-radius: 0.3em;
  7813. background-clip: padding-box;
  7814. border: 2px solid #ccc;
  7815. background-color: #ccc;
  7816. color: #4D4D4D;
  7817. cursor: pointer;
  7818. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7819. -webkit-transition: text-shadow 0.3s ease-out;
  7820. transition: text-shadow 0.3s ease-out;
  7821. text-align: center;
  7822. text-decoration: none;
  7823. margin-left: 1em;
  7824. }
  7825. /* line 53, ../scss/styles.scss */
  7826. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  7827. text-shadow: 0 0 3px white;
  7828. }
  7829. /* line 56, ../scss/styles.scss */
  7830. #uc-cart-view-form .form-actions .form-submit:active {
  7831. -webkit-transition: text-shadow 0s ease-out;
  7832. transition: text-shadow 0s ease-out;
  7833. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7834. }
  7835. /* line 2145, ../scss/styles.scss */
  7836. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  7837. font-size: 16px;
  7838. font-weight: bold;
  7839. padding: 0.1em 0.3em 0.2em;
  7840. border-radius: 0.3em;
  7841. background-clip: padding-box;
  7842. border: 2px solid #ccc;
  7843. background-color: #ccc;
  7844. color: #4D4D4D;
  7845. cursor: pointer;
  7846. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7847. -webkit-transition: text-shadow 0.3s ease-out;
  7848. transition: text-shadow 0.3s ease-out;
  7849. text-align: center;
  7850. text-decoration: none;
  7851. cursor: pointer;
  7852. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7853. -webkit-transition: text-shadow 0.2s ease-out;
  7854. transition: text-shadow 0.2s ease-out;
  7855. border-color: #69CDCF;
  7856. background-color: #69CDCF;
  7857. color: #fff;
  7858. }
  7859. /* line 53, ../scss/styles.scss */
  7860. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  7861. text-shadow: 0 0 3px white;
  7862. }
  7863. /* line 56, ../scss/styles.scss */
  7864. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  7865. -webkit-transition: text-shadow 0s ease-out;
  7866. transition: text-shadow 0s ease-out;
  7867. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7868. }
  7869. /* line 66, ../scss/styles.scss */
  7870. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  7871. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  7872. }
  7873. /* line 69, ../scss/styles.scss */
  7874. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  7875. -webkit-transition: text-shadow 0s ease-out;
  7876. transition: text-shadow 0s ease-out;
  7877. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7878. }
  7879. /** UC CHECKOUT FORM */
  7880. /* line 2153, ../scss/styles.scss */
  7881. #uc-cart-checkout-form {
  7882. display: inline-block;
  7883. background-color: #e6e6e6;
  7884. padding: 10px, 30px;
  7885. }
  7886. /* line 2166, ../scss/styles.scss */
  7887. #uc-cart-checkout-form fieldset.form-row {
  7888. padding-bottom: 20px;
  7889. margin-bottom: 20px;
  7890. }
  7891. /* line 2172, ../scss/styles.scss */
  7892. #uc-cart-checkout-form fieldset.form-column {
  7893. display: moz-inline-stack;
  7894. display: inline-block;
  7895. vertical-align: top;
  7896. zoom: 1;
  7897. *display: inline;
  7898. max-width: 39%;
  7899. margin: 15px 1em;
  7900. }
  7901. /* line 2175, ../scss/styles.scss */
  7902. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  7903. margin: 10px 0;
  7904. }
  7905. /* line 2182, ../scss/styles.scss */
  7906. #uc-cart-checkout-form fieldset.form-column-right {
  7907. border-left: 1px solid #ccc;
  7908. margin-left: 2em;
  7909. padding-left: 2em;
  7910. }
  7911. /* line 2188, ../scss/styles.scss */
  7912. #uc-cart-checkout-form legend {
  7913. margin: 0;
  7914. font-size: 18px;
  7915. font-weight: 700;
  7916. border: none;
  7917. line-height: 2;
  7918. }
  7919. /* line 2189, ../scss/styles.scss */
  7920. #uc-cart-checkout-form .fieldset-description {
  7921. font-size: 12px;
  7922. }
  7923. /* line 2190, ../scss/styles.scss */
  7924. #uc-cart-checkout-form .fieldset-wrapper {
  7925. font-size: 12px;
  7926. }
  7927. /* line 2191, ../scss/styles.scss */
  7928. #uc-cart-checkout-form .form-item {
  7929. margin: 0 20px 0 0;
  7930. }
  7931. /* line 2193, ../scss/styles.scss */
  7932. #uc-cart-checkout-form .description {
  7933. font-size: 10px;
  7934. width: 25em;
  7935. display: moz-inline-stack;
  7936. display: inline-block;
  7937. vertical-align: top;
  7938. zoom: 1;
  7939. *display: inline;
  7940. vertical-align: bottom;
  7941. margin-left: 1em;
  7942. color: #7f7f7f;
  7943. }
  7944. /* line 2196, ../scss/styles.scss */
  7945. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  7946. display: moz-inline-stack;
  7947. display: inline-block;
  7948. vertical-align: top;
  7949. zoom: 1;
  7950. *display: inline;
  7951. border-radius: 5px;
  7952. background-clip: padding-box;
  7953. padding: 10px;
  7954. background-color: #fff;
  7955. }
  7956. /* line 2203, ../scss/styles.scss */
  7957. #uc-cart-checkout-form #cart-pane table {
  7958. font-size: 14px;
  7959. min-width: 20em;
  7960. }
  7961. /* line 2159, ../scss/styles.scss */
  7962. #uc-cart-checkout-form #cart-pane table td.price {
  7963. width: 4em;
  7964. }
  7965. /* line 2207, ../scss/styles.scss */
  7966. #uc-cart-checkout-form #cart-pane tbody {
  7967. border: none;
  7968. }
  7969. /* line 2208, ../scss/styles.scss */
  7970. #uc-cart-checkout-form #cart-pane tr {
  7971. background-color: transparent;
  7972. border: none;
  7973. }
  7974. /* line 2209, ../scss/styles.scss */
  7975. #uc-cart-checkout-form #cart-pane td {
  7976. padding: 0 5px;
  7977. vertical-align: bottom;
  7978. }
  7979. /* line 2212, ../scss/styles.scss */
  7980. #uc-cart-checkout-form #cart-pane td.products {
  7981. width: auto;
  7982. }
  7983. /* line 2213, ../scss/styles.scss */
  7984. #uc-cart-checkout-form #cart-pane td.products a {
  7985. color: inherit;
  7986. font-weight: 700;
  7987. }
  7988. /* line 2215, ../scss/styles.scss */
  7989. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  7990. margin: 0;
  7991. font-size: 12px;
  7992. }
  7993. /* line 2216, ../scss/styles.scss */
  7994. #uc-cart-checkout-form #cart-pane td.products li {
  7995. list-style: none;
  7996. }
  7997. /* line 2220, ../scss/styles.scss */
  7998. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  7999. font-size: 16px;
  8000. font-weight: 700;
  8001. }
  8002. /* line 2224, ../scss/styles.scss */
  8003. #uc-cart-checkout-form #customer-pane {
  8004. width: 35em;
  8005. }
  8006. /* line 2227, ../scss/styles.scss */
  8007. #uc-cart-checkout-form #billing-pane label {
  8008. font-size: 12px;
  8009. width: 8em;
  8010. display: moz-inline-stack;
  8011. display: inline-block;
  8012. vertical-align: top;
  8013. zoom: 1;
  8014. *display: inline;
  8015. vertical-align: middle;
  8016. margin-right: 1em;
  8017. border-bottom: 1px solid #cccccc;
  8018. }
  8019. /* line 2228, ../scss/styles.scss */
  8020. #uc-cart-checkout-form #billing-pane input.form-text {
  8021. width: 13em;
  8022. }
  8023. /* line 2235, ../scss/styles.scss */
  8024. #uc-cart-checkout-form #payment-pane {
  8025. float: right;
  8026. }
  8027. /* line 2238, ../scss/styles.scss */
  8028. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  8029. background-color: #fff;
  8030. border-radius: 5px;
  8031. background-clip: padding-box;
  8032. padding: 10px;
  8033. }
  8034. /* line 2244, ../scss/styles.scss */
  8035. #uc-cart-checkout-form #payment-pane #line-items-div {
  8036. float: none;
  8037. border: none;
  8038. display: moz-inline-stack;
  8039. display: inline-block;
  8040. vertical-align: top;
  8041. zoom: 1;
  8042. *display: inline;
  8043. margin: 10px 0 20px;
  8044. }
  8045. /* line 2247, ../scss/styles.scss */
  8046. #uc-cart-checkout-form #payment-pane #line-items-div table {
  8047. font-size: 14px;
  8048. min-width: 20em;
  8049. }
  8050. /* line 2159, ../scss/styles.scss */
  8051. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  8052. width: 4em;
  8053. }
  8054. /* line 2248, ../scss/styles.scss */
  8055. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  8056. border: none;
  8057. }
  8058. /* line 2249, ../scss/styles.scss */
  8059. #uc-cart-checkout-form #payment-pane #line-items-div td {
  8060. padding: 0 5px;
  8061. }
  8062. /* line 2253, ../scss/styles.scss */
  8063. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  8064. font-weight: 500;
  8065. }
  8066. /* line 2255, ../scss/styles.scss */
  8067. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  8068. font-size: 16px;
  8069. font-weight: 700;
  8070. text-align: right;
  8071. }
  8072. /* line 2262, ../scss/styles.scss */
  8073. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  8074. width: auto;
  8075. border-bottom: none;
  8076. }
  8077. /* line 2263, ../scss/styles.scss */
  8078. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  8079. border: 1px solid #ddd;
  8080. border-radius: 5px;
  8081. margin: 0.5em;
  8082. padding: 0.5em;
  8083. }
  8084. /* line 2267, ../scss/styles.scss */
  8085. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  8086. font-weight: bold;
  8087. }
  8088. /* line 2271, ../scss/styles.scss */
  8089. #uc-cart-checkout-form #payment-pane #payment-details {
  8090. width: 25em;
  8091. border-top: none;
  8092. padding: 0;
  8093. margin: 0;
  8094. }
  8095. /* line 2277, ../scss/styles.scss */
  8096. #uc-cart-checkout-form .form-actions {
  8097. padding: 0;
  8098. margin: 0;
  8099. border: 0px;
  8100. background-color: transparent;
  8101. text-align: right;
  8102. }
  8103. /* line 2282, ../scss/styles.scss */
  8104. #uc-cart-checkout-form .form-actions .form-submit {
  8105. font-size: 16px;
  8106. font-weight: bold;
  8107. padding: 0.1em 0.3em 0.2em;
  8108. border-radius: 0.3em;
  8109. background-clip: padding-box;
  8110. border: 2px solid #ccc;
  8111. background-color: #ccc;
  8112. color: #4D4D4D;
  8113. cursor: pointer;
  8114. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8115. -webkit-transition: text-shadow 0.3s ease-out;
  8116. transition: text-shadow 0.3s ease-out;
  8117. text-align: center;
  8118. text-decoration: none;
  8119. margin-left: 1em;
  8120. }
  8121. /* line 53, ../scss/styles.scss */
  8122. #uc-cart-checkout-form .form-actions .form-submit:hover, #uc-cart-checkout-form .form-actions .form-submit:focus {
  8123. text-shadow: 0 0 3px white;
  8124. }
  8125. /* line 56, ../scss/styles.scss */
  8126. #uc-cart-checkout-form .form-actions .form-submit:active {
  8127. -webkit-transition: text-shadow 0s ease-out;
  8128. transition: text-shadow 0s ease-out;
  8129. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8130. }
  8131. /* line 2285, ../scss/styles.scss */
  8132. #uc-cart-checkout-form .form-actions .form-submit#edit-continue {
  8133. font-size: 16px;
  8134. font-weight: bold;
  8135. padding: 0.1em 0.3em 0.2em;
  8136. border-radius: 0.3em;
  8137. background-clip: padding-box;
  8138. border: 2px solid #ccc;
  8139. background-color: #ccc;
  8140. color: #4D4D4D;
  8141. cursor: pointer;
  8142. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8143. -webkit-transition: text-shadow 0.3s ease-out;
  8144. transition: text-shadow 0.3s ease-out;
  8145. text-align: center;
  8146. text-decoration: none;
  8147. cursor: pointer;
  8148. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8149. -webkit-transition: text-shadow 0.2s ease-out;
  8150. transition: text-shadow 0.2s ease-out;
  8151. border-color: #69CDCF;
  8152. background-color: #69CDCF;
  8153. color: #fff;
  8154. }
  8155. /* line 53, ../scss/styles.scss */
  8156. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form .form-actions .form-submit#edit-continue:focus {
  8157. text-shadow: 0 0 3px white;
  8158. }
  8159. /* line 56, ../scss/styles.scss */
  8160. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:active {
  8161. -webkit-transition: text-shadow 0s ease-out;
  8162. transition: text-shadow 0s ease-out;
  8163. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8164. }
  8165. /* line 66, ../scss/styles.scss */
  8166. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form .form-actions .form-submit#edit-continue:focus {
  8167. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  8168. }
  8169. /* line 69, ../scss/styles.scss */
  8170. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:active {
  8171. -webkit-transition: text-shadow 0s ease-out;
  8172. transition: text-shadow 0s ease-out;
  8173. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8174. }
  8175. /* UC CART && UC CHECKOUT VALIDATION */
  8176. /* line 2298, ../scss/styles.scss */
  8177. .page-cart-checkout-review #content > .inner-content {
  8178. display: inline-block;
  8179. padding: 1em;
  8180. }
  8181. /* line 2306, ../scss/styles.scss */
  8182. .page-cart-checkout-review #edit-actions {
  8183. margin: 0;
  8184. padding: 0;
  8185. }
  8186. /* line 2308, ../scss/styles.scss */
  8187. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  8188. display: block;
  8189. }
  8190. /* line 2312, ../scss/styles.scss */
  8191. .page-cart-checkout-review #review-instructions {
  8192. width: 30em;
  8193. padding: 1em 0;
  8194. }
  8195. /* line 2318, ../scss/styles.scss */
  8196. .page-cart-checkout-review table.order-review-table {
  8197. border: none;
  8198. }
  8199. /* line 2320, ../scss/styles.scss */
  8200. .page-cart-checkout-review table.order-review-table .pane-title-row {
  8201. border: none;
  8202. background-color: transparent;
  8203. text-align: left;
  8204. font-size: 18px;
  8205. }
  8206. /* line 2325, ../scss/styles.scss */
  8207. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  8208. padding: 1em 0 0 0;
  8209. }
  8210. /* line 2328, ../scss/styles.scss */
  8211. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  8212. background-color: transparent;
  8213. border: none;
  8214. }
  8215. /* line 2333, ../scss/styles.scss */
  8216. .page-cart-checkout-review table.order-review-table td.title-col {
  8217. padding: 0;
  8218. text-align: left;
  8219. }
  8220. /* line 2337, ../scss/styles.scss */
  8221. .page-cart-checkout-review table.order-review-table td.data-col {
  8222. padding: 0;
  8223. width: 75%;
  8224. }
  8225. /* line 2341, ../scss/styles.scss */
  8226. .page-cart-checkout-review table.order-review-table .review-button-row {
  8227. border: none;
  8228. background-color: transparent;
  8229. }
  8230. /* line 2345, ../scss/styles.scss */
  8231. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  8232. padding: 3em 0 0 0;
  8233. }
  8234. /* line 2349, ../scss/styles.scss */
  8235. .page-cart-checkout-review table.order-review-table .review-button-row form {
  8236. margin: 0 0.5em 0 0;
  8237. display: moz-inline-stack;
  8238. display: inline-block;
  8239. vertical-align: top;
  8240. zoom: 1;
  8241. *display: inline;
  8242. }
  8243. /* line 2356, ../scss/styles.scss */
  8244. .page-cart-checkout-review #edit-actions {
  8245. border: 0px;
  8246. background-color: transparent;
  8247. text-align: right;
  8248. }
  8249. /* line 2361, ../scss/styles.scss */
  8250. .page-cart-checkout-review input.form-submit {
  8251. font-size: 16px;
  8252. font-weight: bold;
  8253. padding: 0.1em 0.3em 0.2em;
  8254. border-radius: 0.3em;
  8255. background-clip: padding-box;
  8256. border: 2px solid #ccc;
  8257. background-color: #ccc;
  8258. color: #4D4D4D;
  8259. cursor: pointer;
  8260. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8261. -webkit-transition: text-shadow 0.3s ease-out;
  8262. transition: text-shadow 0.3s ease-out;
  8263. text-align: center;
  8264. text-decoration: none;
  8265. margin-left: 1em;
  8266. }
  8267. /* line 53, ../scss/styles.scss */
  8268. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  8269. text-shadow: 0 0 3px white;
  8270. }
  8271. /* line 56, ../scss/styles.scss */
  8272. .page-cart-checkout-review input.form-submit:active {
  8273. -webkit-transition: text-shadow 0s ease-out;
  8274. transition: text-shadow 0s ease-out;
  8275. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8276. }
  8277. /* line 2364, ../scss/styles.scss */
  8278. .page-cart-checkout-review input.form-submit#edit-submit {
  8279. font-size: 16px;
  8280. font-weight: bold;
  8281. padding: 0.1em 0.3em 0.2em;
  8282. border-radius: 0.3em;
  8283. background-clip: padding-box;
  8284. border: 2px solid #ccc;
  8285. background-color: #ccc;
  8286. color: #4D4D4D;
  8287. cursor: pointer;
  8288. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8289. -webkit-transition: text-shadow 0.3s ease-out;
  8290. transition: text-shadow 0.3s ease-out;
  8291. text-align: center;
  8292. text-decoration: none;
  8293. cursor: pointer;
  8294. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8295. -webkit-transition: text-shadow 0.2s ease-out;
  8296. transition: text-shadow 0.2s ease-out;
  8297. border-color: #69CDCF;
  8298. background-color: #69CDCF;
  8299. color: #fff;
  8300. }
  8301. /* line 53, ../scss/styles.scss */
  8302. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  8303. text-shadow: 0 0 3px white;
  8304. }
  8305. /* line 56, ../scss/styles.scss */
  8306. .page-cart-checkout-review input.form-submit#edit-submit:active {
  8307. -webkit-transition: text-shadow 0s ease-out;
  8308. transition: text-shadow 0s ease-out;
  8309. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8310. }
  8311. /* line 66, ../scss/styles.scss */
  8312. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  8313. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  8314. }
  8315. /* line 69, ../scss/styles.scss */
  8316. .page-cart-checkout-review input.form-submit#edit-submit:active {
  8317. -webkit-transition: text-shadow 0s ease-out;
  8318. transition: text-shadow 0s ease-out;
  8319. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8320. }
  8321. /** WHO WE ARE */
  8322. /* line 2374, ../scss/styles.scss */
  8323. #didactique-page .node-didactique {
  8324. border-radius: 5px;
  8325. background-clip: padding-box;
  8326. background-color: #FFF;
  8327. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  8328. max-width: 850px;
  8329. font-size: 14px;
  8330. background-color: #fff;
  8331. margin: 1em auto;
  8332. padding: 1em;
  8333. }
  8334. /* line 2381, ../scss/styles.scss */
  8335. #didactique-page .node-didactique .field-name-field-emvideo {
  8336. margin: 1em 0;
  8337. }
  8338. /* line 2385, ../scss/styles.scss */
  8339. #didactique-page .node-didactique .field-name-title-field {
  8340. font-size: 24px;
  8341. font-weight: 900;
  8342. font-style: italic;
  8343. padding: 5px 0;
  8344. }
  8345. /* line 2389, ../scss/styles.scss */
  8346. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  8347. max-width: 100%;
  8348. }
  8349. @media only screen and (min-width: 40.063em) {
  8350. /* line 2394, ../scss/styles.scss */
  8351. #didactique-page .side {
  8352. display: moz-inline-stack;
  8353. display: inline-block;
  8354. vertical-align: top;
  8355. zoom: 1;
  8356. *display: inline;
  8357. vertical-align: top;
  8358. }
  8359. /* line 2395, ../scss/styles.scss */
  8360. #didactique-page .group-sideleft {
  8361. width: 60%;
  8362. }
  8363. /* line 2396, ../scss/styles.scss */
  8364. #didactique-page .group-sideright {
  8365. width: 39%;
  8366. }
  8367. }
  8368. /** DIDACTIQUE */
  8369. @media only screen and (max-width: 40em) {
  8370. /* line 2408, ../scss/styles.scss */
  8371. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  8372. display: none;
  8373. }
  8374. }
  8375. /** maintenance */
  8376. /* line 2415, ../scss/styles.scss */
  8377. .maintenance-page #container, .maintenance-page #header {
  8378. text-align: center;
  8379. padding: 0;
  8380. position: relative;
  8381. }
  8382. /* line 2416, ../scss/styles.scss */
  8383. .maintenance-page #main {
  8384. background-color: transparent;
  8385. }
  8386. /* line 2417, ../scss/styles.scss */
  8387. .maintenance-page #header h1.site-name {
  8388. font-size: 36px;
  8389. margin: 0;
  8390. padding-left: 0;
  8391. }
  8392. /* line 2418, ../scss/styles.scss */
  8393. .maintenance-page h2.site-slogan {
  8394. font-size: 16px;
  8395. font-weight: 300;
  8396. margin: 0;
  8397. line-height: 1.1;
  8398. }
  8399. /** FAQ */
  8400. /* line 2422, ../scss/styles.scss */
  8401. .page-faq-page #main {
  8402. background: #fff url("../img/bg-faq.png") no-repeat bottom right;
  8403. }
  8404. /* line 2428, ../scss/styles.scss */
  8405. #content .faq-content .faq-description {
  8406. font-size: 12px;
  8407. padding-bottom: 2em;
  8408. }
  8409. /* line 2432, ../scss/styles.scss */
  8410. #content .faq-content ul.faq-ul-questions-top {
  8411. margin: 0;
  8412. }
  8413. /* line 2434, ../scss/styles.scss */
  8414. #content .faq-content ul.faq-ul-questions-top li {
  8415. list-style: none;
  8416. }
  8417. /* line 2436, ../scss/styles.scss */
  8418. #content .faq-content ul.faq-ul-questions-top li a {
  8419. font-size: 18px;
  8420. font-weight: 500;
  8421. }
  8422. /* line 2442, ../scss/styles.scss */
  8423. #content .faq-content h3.faq-header {
  8424. font-size: 20px;
  8425. font-weight: 700;
  8426. line-height: 1.2;
  8427. margin: 0;
  8428. }
  8429. /* line 2445, ../scss/styles.scss */
  8430. #content .faq-content h3.faq-header a {
  8431. color: #000;
  8432. }
  8433. /* line 2448, ../scss/styles.scss */
  8434. #content .faq-content .faq-dl-hide-answer {
  8435. padding: 0;
  8436. }
  8437. /* line 2451, ../scss/styles.scss */
  8438. #content .faq-content .faq-category-group {
  8439. padding-bottom: 1em;
  8440. }
  8441. /* line 2454, ../scss/styles.scss */
  8442. #content .faq-content .faq-question-answer {
  8443. padding: 0.3em 0 0 0.8em;
  8444. }
  8445. /* line 2456, ../scss/styles.scss */
  8446. #content .faq-content .faq-question-answer .faq-question {
  8447. font-size: 16px;
  8448. padding: 0;
  8449. font-weight: 500;
  8450. }
  8451. /* line 2458, ../scss/styles.scss */
  8452. #content .faq-content .faq-question-answer .faq-question a {
  8453. color: #000;
  8454. }
  8455. /* line 2460, ../scss/styles.scss */
  8456. #content .faq-content .faq-question-answer .faq-answer {
  8457. padding: 0;
  8458. margin-bottom: 2em;
  8459. font-size: 12px;
  8460. }
  8461. /* line 2466, ../scss/styles.scss */
  8462. #content .faq-content .field-name-body img {
  8463. max-width: 50%;
  8464. height: auto;
  8465. }