styles.css 321 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743
  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: white;
  2669. background-color: rgba(255, 255, 255, 0.9);
  2670. *background-color: white;
  2671. min-width: 100%;
  2672. margin: 0 0 0 -5px;
  2673. border-radius: 3px;
  2674. background-clip: padding-box;
  2675. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  2676. }
  2677. /* line 321, ../scss/styles.scss */
  2678. .ie8 #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists {
  2679. background: #FFF;
  2680. }
  2681. /* line 322, ../scss/styles.scss */
  2682. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists ul {
  2683. margin: 0;
  2684. }
  2685. /* line 323, ../scss/styles.scss */
  2686. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li {
  2687. list-style: none;
  2688. font-size: 12px;
  2689. font-weight: 700;
  2690. padding: 0 10px;
  2691. text-align: left;
  2692. width: 200px;
  2693. height: 0;
  2694. overflow: hidden;
  2695. -webkit-transition: height 0.3s ease-out;
  2696. transition: height 0.3s ease-out;
  2697. }
  2698. /* line 330, ../scss/styles.scss */
  2699. #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 {
  2700. white-space: nowrap;
  2701. cursor: pointer;
  2702. }
  2703. /* line 331, ../scss/styles.scss */
  2704. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li a.open-list {
  2705. max-width: 150px;
  2706. }
  2707. /* line 332, ../scss/styles.scss */
  2708. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav section.mylists li span.count {
  2709. font-weight: 300;
  2710. padding: 0 5px;
  2711. }
  2712. /* line 335, ../scss/styles.scss */
  2713. #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 {
  2714. padding-right: 5px;
  2715. }
  2716. /* line 338, ../scss/styles.scss */
  2717. .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 {
  2718. visibility: hidden;
  2719. }
  2720. /* line 118, ../scss/styles.scss */
  2721. .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 > * {
  2722. margin-top: -100000px;
  2723. }
  2724. /* line 121, ../scss/styles.scss */
  2725. .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 {
  2726. opacity: 0;
  2727. -webkit-transition: visibility 0s 0.3s;
  2728. transition: visibility 0s 0.3s;
  2729. }
  2730. /* line 124, ../scss/styles.scss */
  2731. .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 > * {
  2732. -webkit-transition: margin-top 0s 0.3s;
  2733. transition: margin-top 0s 0.3s;
  2734. }
  2735. /* line 345, ../scss/styles.scss */
  2736. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists {
  2737. padding-bottom: 5px;
  2738. }
  2739. /* line 347, ../scss/styles.scss */
  2740. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav:hover section.mylists li {
  2741. height: 15px;
  2742. padding: 3px 10px;
  2743. }
  2744. /* line 352, ../scss/styles.scss */
  2745. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2746. vertical-align: text-bottom;
  2747. margin: 0 2px 2px 0;
  2748. }
  2749. @media only screen and (min-width: 90.063em) {
  2750. /* line 353, ../scss/styles.scss */
  2751. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 i {
  2752. display: none;
  2753. }
  2754. }
  2755. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  2756. /* line 354, ../scss/styles.scss */
  2757. #header #header-blocks #block-materio-flag-materio-flag-mylists-nav h2 span.menu-title {
  2758. display: none;
  2759. }
  2760. }
  2761. /* line 358, ../scss/styles.scss */
  2762. #header #header-blocks #block-ajax-register-ajax-register-block {
  2763. font-size: 12px;
  2764. text-transform: lowercase;
  2765. }
  2766. /* line 363, ../scss/styles.scss */
  2767. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in {
  2768. font-size: 12px;
  2769. }
  2770. /* line 365, ../scss/styles.scss */
  2771. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in i {
  2772. vertical-align: text-bottom;
  2773. margin: 0 5px 1px 0;
  2774. }
  2775. /* line 369, ../scss/styles.scss */
  2776. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2777. text-transform: lowercase;
  2778. }
  2779. /* line 370, ../scss/styles.scss */
  2780. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2781. display: none;
  2782. margin-left: 5px;
  2783. }
  2784. /* line 371, ../scss/styles.scss */
  2785. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2786. margin: 0 0.5em 0 0.5em;
  2787. }
  2788. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  2789. /* line 372, ../scss/styles.scss */
  2790. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in .fi-power {
  2791. display: none;
  2792. }
  2793. }
  2794. @media only screen and (min-width: 40.063em) {
  2795. /* line 373, ../scss/styles.scss */
  2796. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.logout {
  2797. display: none;
  2798. }
  2799. }
  2800. @media only screen and (max-width: 40em) {
  2801. /* line 375, ../scss/styles.scss */
  2802. #header #header-blocks #block-logintoboggan-logintoboggan-logged-in a span.account {
  2803. display: none;
  2804. }
  2805. }
  2806. /* line 379, ../scss/styles.scss */
  2807. #header #header-blocks #headerblock-right .block {
  2808. display: moz-inline-stack;
  2809. display: inline-block;
  2810. vertical-align: top;
  2811. zoom: 1;
  2812. *display: inline;
  2813. vertical-align: middle;
  2814. padding: 0;
  2815. }
  2816. /* line 381, ../scss/styles.scss */
  2817. #header #header-blocks #headerblock-right .block:first-child {
  2818. padding: 0;
  2819. }
  2820. /* line 385, ../scss/styles.scss */
  2821. #header #header-blocks #block-locale-language {
  2822. margin-left: 1em;
  2823. }
  2824. /* line 388, ../scss/styles.scss */
  2825. #header #header-blocks #block-locale-language ul, #header #header-blocks #block-locale-language li {
  2826. margin: 0;
  2827. padding: 0;
  2828. list-style-type: none;
  2829. font-size: 12px;
  2830. line-height: 1;
  2831. }
  2832. /* line 392, ../scss/styles.scss */
  2833. #header #header-blocks #block-locale-language ul.active, #header #header-blocks #block-locale-language li.active {
  2834. display: none;
  2835. }
  2836. /* line 394, ../scss/styles.scss */
  2837. .ie8 #header #header-blocks #block-locale-language {
  2838. padding-top: 5px;
  2839. }
  2840. /* line 422, ../scss/styles.scss */
  2841. .ie8 #header #header-blocks #block-menu-menu-top-menu h2 {
  2842. display: none;
  2843. }
  2844. /* line 423, ../scss/styles.scss */
  2845. #header #header-blocks #block-menu-menu-top-menu h2 i {
  2846. vertical-align: text-bottom;
  2847. margin: 0 0 2px 0;
  2848. }
  2849. /* line 426, ../scss/styles.scss */
  2850. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2851. font-size: 12px;
  2852. list-style: none;
  2853. }
  2854. /* line 429, ../scss/styles.scss */
  2855. .ie8 #header #header-blocks #block-menu-menu-top-menu ul.menu, .ie8 #header #header-blocks #block-menu-menu-top-menu li {
  2856. display: inline;
  2857. }
  2858. @media only screen and (min-width: 40.063em) {
  2859. /* line 433, ../scss/styles.scss */
  2860. #header #header-blocks #block-menu-menu-top-menu h2 {
  2861. display: none;
  2862. }
  2863. /* line 434, ../scss/styles.scss */
  2864. #header #header-blocks #block-menu-menu-top-menu ul.menu, #header #header-blocks #block-menu-menu-top-menu li {
  2865. display: moz-inline-stack;
  2866. display: inline-block;
  2867. vertical-align: top;
  2868. zoom: 1;
  2869. *display: inline;
  2870. vertical-align: middle;
  2871. padding: 0;
  2872. margin: 0;
  2873. }
  2874. /* line 438, ../scss/styles.scss */
  2875. #header #header-blocks #block-menu-menu-top-menu a {
  2876. padding: 0 0.5em 0 0;
  2877. }
  2878. }
  2879. @media only screen and (max-width: 40em) {
  2880. /* line 420, ../scss/styles.scss */
  2881. #header #header-blocks #block-menu-menu-top-menu {
  2882. position: relative;
  2883. }
  2884. /* line 444, ../scss/styles.scss */
  2885. #header #header-blocks #block-menu-menu-top-menu h2 .menu-title {
  2886. display: none;
  2887. }
  2888. /* line 445, ../scss/styles.scss */
  2889. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper {
  2890. position: absolute;
  2891. width: 150px;
  2892. display: none;
  2893. right: 0;
  2894. padding-top: 5px;
  2895. }
  2896. /* line 447, ../scss/styles.scss */
  2897. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu {
  2898. background-color: #e6e6e6;
  2899. border-radius: 5px;
  2900. background-clip: padding-box;
  2901. padding: 0 5px 5px 5px;
  2902. margin: 0;
  2903. text-align: right;
  2904. }
  2905. /* line 450, ../scss/styles.scss */
  2906. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li {
  2907. height: 0;
  2908. overflow: hidden;
  2909. -webkit-transition: height 0.3s ease-out;
  2910. transition: height 0.3s ease-out;
  2911. }
  2912. /* line 454, ../scss/styles.scss */
  2913. #header #header-blocks #block-menu-menu-top-menu .menu-wrapper ul.menu li a {
  2914. display: block;
  2915. width: 100%;
  2916. padding: 2px 5px;
  2917. font-size: 12px;
  2918. }
  2919. /* line 460, ../scss/styles.scss */
  2920. html.no-touch #header #header-blocks #block-menu-menu-top-menu:hover, #header #header-blocks #block-menu-menu-top-menu.hovered {
  2921. z-index: 1000;
  2922. }
  2923. /* line 462, ../scss/styles.scss */
  2924. 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 {
  2925. display: block;
  2926. }
  2927. /* line 464, ../scss/styles.scss */
  2928. 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 {
  2929. height: 25px;
  2930. }
  2931. }
  2932. /* line 471, ../scss/styles.scss */
  2933. #header #header-blocks #block-materio-user-old-database-link a {
  2934. font-size: 12px;
  2935. }
  2936. /* line 477, ../scss/styles.scss */
  2937. #header #header-blocks #block-materio-user-front-link a {
  2938. font-size: 12px;
  2939. }
  2940. /* line 480, ../scss/styles.scss */
  2941. #header #header-blocks #block-materio-user-front-link i {
  2942. vertical-align: text-bottom;
  2943. margin: 0 2px 2px 0;
  2944. }
  2945. /* line 481, ../scss/styles.scss */
  2946. #header #header-blocks #block-materio-user-front-link span.text {
  2947. display: none;
  2948. }
  2949. /* line 486, ../scss/styles.scss */
  2950. #utilities {
  2951. margin-top: 60px;
  2952. }
  2953. /* line 488, ../scss/styles.scss */
  2954. .not-logged-in #utilities {
  2955. overflow: hidden;
  2956. }
  2957. /* line 490, ../scss/styles.scss */
  2958. #utilities.closed {
  2959. height: 0;
  2960. }
  2961. /* line 491, ../scss/styles.scss */
  2962. #utilities.closed .tabs, #utilities.closed .node-didactique {
  2963. display: none;
  2964. }
  2965. /* line 495, ../scss/styles.scss */
  2966. #highlighted {
  2967. border-radius: 5px;
  2968. background-clip: padding-box;
  2969. box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  2970. padding: 0.5em;
  2971. position: relative;
  2972. }
  2973. @media only screen and (min-width: 40.063em) {
  2974. /* line 495, ../scss/styles.scss */
  2975. #highlighted {
  2976. margin: 20px 0 6px;
  2977. }
  2978. /* line 505, ../scss/styles.scss */
  2979. #highlighted .block {
  2980. display: moz-inline-stack;
  2981. display: inline-block;
  2982. vertical-align: top;
  2983. zoom: 1;
  2984. *display: inline;
  2985. vertical-align: top;
  2986. }
  2987. /* line 506, ../scss/styles.scss */
  2988. #highlighted .block-materio-didactique {
  2989. width: 65%;
  2990. }
  2991. /* line 508, ../scss/styles.scss */
  2992. #highlighted .block-materio-didactique .side {
  2993. display: moz-inline-stack;
  2994. display: inline-block;
  2995. vertical-align: top;
  2996. zoom: 1;
  2997. *display: inline;
  2998. vertical-align: top;
  2999. position: relative;
  3000. }
  3001. /* line 512, ../scss/styles.scss */
  3002. #highlighted .block-materio-didactique .group-sideleft {
  3003. width: 65%;
  3004. }
  3005. /* line 513, ../scss/styles.scss */
  3006. #highlighted .block-materio-didactique .group-sideright {
  3007. width: 30%;
  3008. }
  3009. /* line 515, ../scss/styles.scss */
  3010. #highlighted .block-materio-didactique .field-name-title-field {
  3011. font-size: 24px;
  3012. }
  3013. /* line 519, ../scss/styles.scss */
  3014. #highlighted .block-materio-didactique .node.emvideo .group-sideleft, #highlighted .block-materio-didactique .node.emvideo .group-sideright {
  3015. width: 47%;
  3016. }
  3017. /* line 520, ../scss/styles.scss */
  3018. #highlighted .block-materio-didactique .node.emvideo .group-sideleft {
  3019. margin-right: 2%;
  3020. }
  3021. /* line 525, ../scss/styles.scss */
  3022. #highlighted #block-materio-user-user-register {
  3023. width: 30%;
  3024. padding: 5px;
  3025. height: 290px;
  3026. }
  3027. }
  3028. @media only screen {
  3029. /* line 532, ../scss/styles.scss */
  3030. #highlighted .block-materio-didactique .side {
  3031. display: moz-inline-stack;
  3032. display: inline-block;
  3033. vertical-align: top;
  3034. zoom: 1;
  3035. *display: inline;
  3036. vertical-align: top;
  3037. }
  3038. }
  3039. @media only screen and (max-width: 40em) {
  3040. /* line 495, ../scss/styles.scss */
  3041. #highlighted {
  3042. margin: 10px 0 6px;
  3043. }
  3044. /* line 539, ../scss/styles.scss */
  3045. #highlighted .block-materio-didactique .group-sideleft, #highlighted .block-materio-didactique .group-sideright {
  3046. width: 100%;
  3047. }
  3048. /* line 540, ../scss/styles.scss */
  3049. #highlighted .block-materio-didactique .field-name-title-field {
  3050. font-size: 20px;
  3051. cursor: pointer;
  3052. }
  3053. /* line 543, ../scss/styles.scss */
  3054. #highlighted .block-materio-didactique .node-didactique:not(:first-child) .field-name-title-field {
  3055. font-weight: normal;
  3056. }
  3057. /* line 543, ../scss/styles.scss */
  3058. #highlighted .block-materio-didactique .node-didactique:not(:first-child) .field-name-title-field:before {
  3059. content: "- ";
  3060. }
  3061. /* line 546, ../scss/styles.scss */
  3062. html.js #highlighted .block-materio-didactique .node-didactique {
  3063. height: auto;
  3064. height: 25px;
  3065. overflow: hidden;
  3066. }
  3067. /* line 549, ../scss/styles.scss */
  3068. html.js #highlighted .block-materio-didactique .node-didactique.opened {
  3069. height: auto;
  3070. }
  3071. }
  3072. @media only screen and (max-width: 40em) {
  3073. /* line 557, ../scss/styles.scss */
  3074. #highlighted .block-materio-didactique .group-sideleft {
  3075. width: 50%;
  3076. }
  3077. /* line 558, ../scss/styles.scss */
  3078. #highlighted .block-materio-didactique .group-sideright {
  3079. width: 50%;
  3080. }
  3081. }
  3082. /* line 563, ../scss/styles.scss */
  3083. .oldie #highlighted .block {
  3084. display: moz-inline-stack;
  3085. display: inline-block;
  3086. vertical-align: top;
  3087. zoom: 1;
  3088. *display: inline;
  3089. }
  3090. /* line 568, ../scss/styles.scss */
  3091. #highlighted .block-materio-didactique .node-didactique {
  3092. font-size: 14px;
  3093. background-color: #fff;
  3094. margin: 0 auto;
  3095. }
  3096. /* line 574, ../scss/styles.scss */
  3097. #highlighted .block-materio-didactique .node-didactique .side {
  3098. position: relative;
  3099. }
  3100. /* line 576, ../scss/styles.scss */
  3101. #highlighted .block-materio-didactique .node-didactique .field-name-title-field {
  3102. font-weight: 900;
  3103. font-style: italic;
  3104. padding: 5px 0;
  3105. }
  3106. /* line 581, ../scss/styles.scss */
  3107. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel {
  3108. text-align: center;
  3109. }
  3110. /* line 583, ../scss/styles.scss */
  3111. #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel figure, #highlighted .block-materio-didactique .node-didactique .field-name-field-visuel img {
  3112. display: inline;
  3113. }
  3114. /* line 586, ../scss/styles.scss */
  3115. #highlighted .block-materio-didactique .node-didactique.emvideo .field-name-field-visuel {
  3116. display: none;
  3117. }
  3118. /* line 594, ../scss/styles.scss */
  3119. .ie8 #highlighted .block-materio-didactique .node-didactique .player {
  3120. display: none;
  3121. }
  3122. /* line 600, ../scss/styles.scss */
  3123. html.js #highlighted .block-materio-didactique {
  3124. position: relative;
  3125. overflow: hidden;
  3126. }
  3127. /* line 603, ../scss/styles.scss */
  3128. html.js #highlighted .block-materio-didactique .slides {
  3129. height: 270px;
  3130. margin: 0;
  3131. position: relative;
  3132. width: 100%;
  3133. overflow: hidden;
  3134. }
  3135. /* line 605, ../scss/styles.scss */
  3136. html.js #highlighted .block-materio-didactique .slides .node-didactique {
  3137. position: absolute;
  3138. width: 100%;
  3139. height: 100%;
  3140. top: 0;
  3141. left: 0;
  3142. }
  3143. /* line 606, ../scss/styles.scss */
  3144. html.js #highlighted .block-materio-didactique .slides .field-name-title-field {
  3145. height: 30px;
  3146. }
  3147. /* line 607, ../scss/styles.scss */
  3148. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper {
  3149. height: 240px;
  3150. }
  3151. /* line 609, ../scss/styles.scss */
  3152. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .side {
  3153. height: 100%;
  3154. }
  3155. @media only screen and (max-width: 40em) {
  3156. /* line 610, ../scss/styles.scss */
  3157. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3158. width: 290px;
  3159. height: 163.125px;
  3160. }
  3161. }
  3162. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3163. /* line 610, ../scss/styles.scss */
  3164. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3165. width: 216px;
  3166. height: 121.5px;
  3167. }
  3168. }
  3169. @media only screen and (min-width: 64.063em) and (max-width: 90em) {
  3170. /* line 610, ../scss/styles.scss */
  3171. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3172. width: 216px;
  3173. height: 121.5px;
  3174. }
  3175. }
  3176. @media only screen and (min-width: 90.063em) and (max-width: 120em) {
  3177. /* line 610, ../scss/styles.scss */
  3178. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3179. width: 280px;
  3180. height: 157.5px;
  3181. }
  3182. }
  3183. @media only screen and (min-width: 120.063em) and (max-width: 99999999em) {
  3184. /* line 610, ../scss/styles.scss */
  3185. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo {
  3186. width: 340px;
  3187. height: 191.25px;
  3188. }
  3189. }
  3190. /* line 617, ../scss/styles.scss */
  3191. html.js #highlighted .block-materio-didactique .slides .group-column-wrapper .field-name-field-emvideo * {
  3192. height: 100%;
  3193. width: 100%;
  3194. }
  3195. /* line 621, ../scss/styles.scss */
  3196. html.js #highlighted .block-materio-didactique .tabs {
  3197. height: 30px;
  3198. margin: 0;
  3199. text-align: left;
  3200. }
  3201. /* line 623, ../scss/styles.scss */
  3202. html.js #highlighted .block-materio-didactique .tabs > * {
  3203. display: moz-inline-stack;
  3204. display: inline-block;
  3205. vertical-align: top;
  3206. zoom: 1;
  3207. *display: inline;
  3208. vertical-align: top;
  3209. padding: 5px 10px;
  3210. font-size: 12px;
  3211. cursor: pointer;
  3212. color: #bfbfbf;
  3213. }
  3214. /* line 625, ../scss/styles.scss */
  3215. html.js #highlighted .block-materio-didactique .tabs > *:hover, html.js #highlighted .block-materio-didactique .tabs > *:focus, html.js #highlighted .block-materio-didactique .tabs > *.active {
  3216. color: #3f3f3f;
  3217. }
  3218. /** block register */
  3219. /* line 633, ../scss/styles.scss */
  3220. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3221. min-height: 120px;
  3222. padding: 5px;
  3223. background: transparent url("../img/register-block.png") no-repeat 100% 90%;
  3224. }
  3225. /* line 636, ../scss/styles.scss */
  3226. .ie8 #block-materio-user-user-register, .ie8 #block-materio-user-user-createaccount {
  3227. max-width: 250px;
  3228. float: right;
  3229. background-image: none;
  3230. }
  3231. /* line 639, ../scss/styles.scss */
  3232. #block-materio-user-user-register h2, #block-materio-user-user-register h3, #block-materio-user-user-createaccount h2, #block-materio-user-user-createaccount h3 {
  3233. font-weight: 900;
  3234. font-style: italic;
  3235. padding: 5px 0;
  3236. margin: 0;
  3237. line-height: 1;
  3238. background-color: #fff;
  3239. display: moz-inline-stack;
  3240. display: inline-block;
  3241. vertical-align: top;
  3242. zoom: 1;
  3243. *display: inline;
  3244. min-width: 50%;
  3245. }
  3246. /* line 640, ../scss/styles.scss */
  3247. #block-materio-user-user-register h2, #block-materio-user-user-createaccount h2 {
  3248. font-size: 24px;
  3249. }
  3250. /* line 640, ../scss/styles.scss */
  3251. #block-materio-user-user-register h3, #block-materio-user-user-createaccount h3 {
  3252. font-size: 16px;
  3253. }
  3254. /* line 642, ../scss/styles.scss */
  3255. #block-materio-user-user-register form, #block-materio-user-user-createaccount form {
  3256. margin: 0;
  3257. background-color: white;
  3258. background-color: rgba(255, 255, 255, 0.7);
  3259. *background-color: white;
  3260. padding-bottom: 5px;
  3261. display: moz-inline-stack;
  3262. display: inline-block;
  3263. vertical-align: top;
  3264. zoom: 1;
  3265. *display: inline;
  3266. }
  3267. /* line 644, ../scss/styles.scss */
  3268. #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 {
  3269. margin: 0;
  3270. display: moz-inline-stack;
  3271. display: inline-block;
  3272. vertical-align: top;
  3273. zoom: 1;
  3274. *display: inline;
  3275. vertical-align: middle;
  3276. position: relative;
  3277. }
  3278. /* line 648, ../scss/styles.scss */
  3279. #block-materio-user-user-register #edit-account, #block-materio-user-user-createaccount #edit-account {
  3280. margin-right: 5px;
  3281. }
  3282. /* line 650, ../scss/styles.scss */
  3283. #block-materio-user-user-register input.form-text, #block-materio-user-user-createaccount input.form-text {
  3284. font-size: 12px;
  3285. border-radius: 5px;
  3286. background-clip: padding-box;
  3287. margin-bottom: 4px;
  3288. }
  3289. /* line 650, ../scss/styles.scss */
  3290. .ie8 #block-materio-user-user-register input.form-text, .ie8 #block-materio-user-user-createaccount input.form-text {
  3291. margin-right: 5px;
  3292. }
  3293. /* line 651, ../scss/styles.scss */
  3294. #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 {
  3295. width: 11em;
  3296. }
  3297. /* line 652, ../scss/styles.scss */
  3298. #block-materio-user-user-register .form-item-pass input.form-text, #block-materio-user-user-createaccount .form-item-pass input.form-text {
  3299. width: 7em;
  3300. }
  3301. /* line 654, ../scss/styles.scss */
  3302. #block-materio-user-user-register #edit-mail-check, #block-materio-user-user-createaccount #edit-mail-check {
  3303. position: absolute;
  3304. bottom: 100%;
  3305. z-index: 9999;
  3306. background-image: none;
  3307. height: auto;
  3308. padding: 5px;
  3309. border-radius: 5px;
  3310. background-clip: padding-box;
  3311. margin-bottom: 10px;
  3312. font-size: 10px;
  3313. background-color: #fff;
  3314. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
  3315. -webkit-transition: bottom 0.1s ease-out;
  3316. transition: bottom 0.1s ease-out;
  3317. }
  3318. /* line 662, ../scss/styles.scss */
  3319. #block-materio-user-user-register #edit-mail-check.error, #block-materio-user-user-createaccount #edit-mail-check.error {
  3320. background-color: #f3968d;
  3321. color: #fff;
  3322. }
  3323. /* line 668, ../scss/styles.scss */
  3324. #block-materio-user-user-register #edit-mail-check.ok, #block-materio-user-user-createaccount #edit-mail-check.ok {
  3325. display: none;
  3326. }
  3327. /* line 671, ../scss/styles.scss */
  3328. #block-materio-user-user-register .form-submit, #block-materio-user-user-createaccount .form-submit {
  3329. font-size: 16px;
  3330. padding: 0.1em 0.6em 0.2em;
  3331. border-radius: 0.3em;
  3332. background-clip: padding-box;
  3333. font-weight: bold;
  3334. margin-bottom: 4px;
  3335. }
  3336. /* line 678, ../scss/styles.scss */
  3337. #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 {
  3338. margin-bottom: 0;
  3339. display: block;
  3340. line-height: 1;
  3341. }
  3342. /* line 680, ../scss/styles.scss */
  3343. #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 > * {
  3344. display: moz-inline-stack;
  3345. display: inline-block;
  3346. vertical-align: top;
  3347. zoom: 1;
  3348. *display: inline;
  3349. vertical-align: middle;
  3350. margin: 0;
  3351. }
  3352. /* line 681, ../scss/styles.scss */
  3353. #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 {
  3354. font-size: 10px;
  3355. background-color: #fff;
  3356. border-radius: 3px;
  3357. background-clip: padding-box;
  3358. }
  3359. /* line 685, ../scss/styles.scss */
  3360. #block-materio-user-user-register #user-register-form .form-submit, #block-materio-user-user-createaccount #user-register-form .form-submit {
  3361. border: 2px solid #69CDCF;
  3362. background-color: #69CDCF;
  3363. color: #fff;
  3364. cursor: pointer;
  3365. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3366. -webkit-transition: text-shadow 0.2s ease-out;
  3367. transition: text-shadow 0.2s ease-out;
  3368. }
  3369. /* line 66, ../scss/styles.scss */
  3370. #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 {
  3371. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3372. }
  3373. /* line 69, ../scss/styles.scss */
  3374. #block-materio-user-user-register #user-register-form .form-submit:active, #block-materio-user-user-createaccount #user-register-form .form-submit:active {
  3375. -webkit-transition: text-shadow 0s ease-out;
  3376. transition: text-shadow 0s ease-out;
  3377. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3378. }
  3379. /* line 688, ../scss/styles.scss */
  3380. #block-materio-user-user-register #user-register-form .form-submit[disabled], #block-materio-user-user-createaccount #user-register-form .form-submit[disabled] {
  3381. background-color: #ddd;
  3382. border: 2px solid #ddd;
  3383. }
  3384. /* line 695, ../scss/styles.scss */
  3385. #block-materio-user-user-register #user-login .form-submit, #block-materio-user-user-createaccount #user-login .form-submit {
  3386. border: 2px solid #E6DE1C;
  3387. background-color: #E6DE1C;
  3388. color: #fff;
  3389. cursor: pointer;
  3390. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3391. -webkit-transition: text-shadow 0.2s ease-out;
  3392. transition: text-shadow 0.2s ease-out;
  3393. }
  3394. /* line 66, ../scss/styles.scss */
  3395. #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 {
  3396. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3397. }
  3398. /* line 69, ../scss/styles.scss */
  3399. #block-materio-user-user-register #user-login .form-submit:active, #block-materio-user-user-createaccount #user-login .form-submit:active {
  3400. -webkit-transition: text-shadow 0s ease-out;
  3401. transition: text-shadow 0s ease-out;
  3402. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3403. }
  3404. /* line 701, ../scss/styles.scss */
  3405. #block-materio-user-user-register #edit-simplenews, #block-materio-user-user-createaccount #edit-simplenews {
  3406. padding-top: 0.5em;
  3407. }
  3408. /* line 703, ../scss/styles.scss */
  3409. #block-materio-user-user-register #edit-simplenews .fieldset-description, #block-materio-user-user-createaccount #edit-simplenews .fieldset-description {
  3410. font-size: 12px;
  3411. }
  3412. /* line 707, ../scss/styles.scss */
  3413. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item {
  3414. display: block;
  3415. }
  3416. /* line 709, ../scss/styles.scss */
  3417. #block-materio-user-user-register #edit-simplenews .form-checkboxes .form-item label, #block-materio-user-user-createaccount #edit-simplenews .form-checkboxes .form-item label {
  3418. font-size: 12px;
  3419. }
  3420. /* line 714, ../scss/styles.scss */
  3421. #block-materio-user-user-register a.join, #block-materio-user-user-createaccount a.join {
  3422. display: block;
  3423. width: 5em;
  3424. font-size: 16px;
  3425. padding: 0.1em 0.3em 0.2em;
  3426. border-radius: 0.3em;
  3427. background-clip: padding-box;
  3428. font-weight: bold;
  3429. border: 2px solid #69CDCF;
  3430. background-color: #69CDCF;
  3431. color: #fff;
  3432. cursor: pointer;
  3433. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3434. -webkit-transition: text-shadow 0.2s ease-out;
  3435. transition: text-shadow 0.2s ease-out;
  3436. text-align: center;
  3437. text-decoration: none;
  3438. }
  3439. /* line 66, ../scss/styles.scss */
  3440. #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 {
  3441. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3442. }
  3443. /* line 69, ../scss/styles.scss */
  3444. #block-materio-user-user-register a.join:active, #block-materio-user-user-createaccount a.join:active {
  3445. -webkit-transition: text-shadow 0s ease-out;
  3446. transition: text-shadow 0s ease-out;
  3447. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3448. }
  3449. @media only screen and (max-width: 40em) {
  3450. /* line 633, ../scss/styles.scss */
  3451. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3452. background-position: 160% 50%;
  3453. }
  3454. /* line 728, ../scss/styles.scss */
  3455. #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 {
  3456. width: 7em;
  3457. }
  3458. }
  3459. @media only screen and (max-width: 40em) {
  3460. /* line 633, ../scss/styles.scss */
  3461. #block-materio-user-user-register, #block-materio-user-user-createaccount {
  3462. min-height: 60px;
  3463. padding: 15px 0;
  3464. }
  3465. /* line 733, ../scss/styles.scss */
  3466. #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 {
  3467. display: none;
  3468. }
  3469. }
  3470. /* line 736, ../scss/styles.scss */
  3471. #block-materio-user-user-register .message-error, #block-materio-user-user-createaccount .message-error {
  3472. color: #b94a48;
  3473. font-size: 12px;
  3474. }
  3475. /* line 740, ../scss/styles.scss */
  3476. .modal-content #block-materio-user-user-register, .modal-content #block-materio-user-user-createaccount {
  3477. padding: 0.5em 0.5em 5em 0.5em;
  3478. width: 400px;
  3479. background-color: #fff;
  3480. padding: 5px;
  3481. border-radius: 5px;
  3482. background-clip: padding-box;
  3483. }
  3484. /* line 750, ../scss/styles.scss */
  3485. .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 {
  3486. display: none;
  3487. }
  3488. /* line 752, ../scss/styles.scss */
  3489. .modal-content #block-materio-user-user-register #user-register-form .description, .modal-content #block-materio-user-user-createaccount #user-register-form .description {
  3490. font-size: 12px;
  3491. }
  3492. /** content-top */
  3493. /* line 761, ../scss/styles.scss */
  3494. #content-top {
  3495. /** flag-list */
  3496. }
  3497. /* line 765, ../scss/styles.scss */
  3498. #content-top #block-materio-flag-materio-flag-mybookmarks, #content-top #block-materio-flag-materio-flag-mylists {
  3499. font-size: 10px;
  3500. color: #666666;
  3501. font-weight: 300;
  3502. }
  3503. /* line 768, ../scss/styles.scss */
  3504. .ie8 #content-top #block-materio-flag-materio-flag-mybookmarks, .ie8 #content-top #block-materio-flag-materio-flag-mylists {
  3505. margin-top: 40px;
  3506. }
  3507. /* line 770, ../scss/styles.scss */
  3508. #content-top #block-materio-flag-materio-flag-mybookmarks h2, #content-top #block-materio-flag-materio-flag-mylists h2 {
  3509. font-size: 12px;
  3510. font-weight: 700;
  3511. margin: 0;
  3512. line-height: 1.2;
  3513. color: #000;
  3514. }
  3515. /* line 772, ../scss/styles.scss */
  3516. #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 {
  3517. display: moz-inline-stack;
  3518. display: inline-block;
  3519. vertical-align: top;
  3520. zoom: 1;
  3521. *display: inline;
  3522. cursor: pointer;
  3523. color: #000;
  3524. opacity: 0;
  3525. -webkit-transition: opacity 0.1s ease-out;
  3526. transition: opacity 0.1s ease-out;
  3527. }
  3528. /* line 779, ../scss/styles.scss */
  3529. #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 {
  3530. opacity: 1;
  3531. }
  3532. /* line 784, ../scss/styles.scss */
  3533. #content-top #block-materio-flag-materio-flag-mybookmarks span.listname[name=bookmarks], #content-top #block-materio-flag-materio-flag-mylists span.listname[name=bookmarks] {
  3534. cursor: pointer;
  3535. }
  3536. /* line 788, ../scss/styles.scss */
  3537. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks {
  3538. height: 0;
  3539. overflow: hidden;
  3540. }
  3541. /* line 790, ../scss/styles.scss */
  3542. #content-top #block-materio-flag-materio-flag-mybookmarks section.bookmarks.active, #content-top #block-materio-flag-materio-flag-mylists section.bookmarks.active {
  3543. height: auto;
  3544. }
  3545. /* line 793, ../scss/styles.scss */
  3546. #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 {
  3547. overflow: hidden;
  3548. }
  3549. /* line 801, ../scss/styles.scss */
  3550. #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 {
  3551. height: 0;
  3552. overflow: hidden;
  3553. }
  3554. /* line 805, ../scss/styles.scss */
  3555. #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 {
  3556. height: auto;
  3557. }
  3558. /* line 817, ../scss/styles.scss */
  3559. #tool-bar {
  3560. position: relative;
  3561. }
  3562. /* line 820, ../scss/styles.scss */
  3563. #tool-bar .inner-content {
  3564. padding-top: 10px;
  3565. padding-bottom: 10px;
  3566. }
  3567. /* line 822, ../scss/styles.scss */
  3568. #tool-bar .inner-content > * {
  3569. display: moz-inline-stack;
  3570. display: inline-block;
  3571. vertical-align: top;
  3572. zoom: 1;
  3573. *display: inline;
  3574. vertical-align: middle;
  3575. }
  3576. @media only screen and (max-width: 40em) {
  3577. /* line 820, ../scss/styles.scss */
  3578. #tool-bar .inner-content {
  3579. padding: 0;
  3580. }
  3581. /* line 829, ../scss/styles.scss */
  3582. #tool-bar .inner-content h1 {
  3583. line-height: 0.5;
  3584. }
  3585. }
  3586. /* line 840, ../scss/styles.scss */
  3587. .oldie #tool-bar {
  3588. background-color: #B1ADAD;
  3589. padding: 0 10px;
  3590. }
  3591. /* line 842, ../scss/styles.scss */
  3592. #tool-bar .btn-group {
  3593. padding: 0;
  3594. border-radius: 3px;
  3595. background-clip: padding-box;
  3596. background-color: #fff;
  3597. margin: 4px;
  3598. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3599. -webkit-transition: box-shadow 0.3s ease-out;
  3600. transition: box-shadow 0.3s ease-out;
  3601. }
  3602. /* line 40, ../scss/styles.scss */
  3603. #tool-bar .btn-group:hover, #tool-bar .btn-group:focus {
  3604. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  3605. }
  3606. /* line 43, ../scss/styles.scss */
  3607. #tool-bar .btn-group:active {
  3608. -webkit-transition: box-shadow 0s ease-out;
  3609. transition: box-shadow 0s ease-out;
  3610. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3611. }
  3612. /* line 847, ../scss/styles.scss */
  3613. #tool-bar #block-materio-page-title-materio-page-title {
  3614. margin: 0 10px 0 0;
  3615. }
  3616. /* line 850, ../scss/styles.scss */
  3617. #tool-bar #block-materio-page-title-materio-page-title h1 {
  3618. margin: 0;
  3619. font-size: 24px;
  3620. text-transform: capitalize;
  3621. font-weight: 300;
  3622. line-height: 1;
  3623. }
  3624. /* line 852, ../scss/styles.scss */
  3625. #tool-bar #block-materio-page-title-materio-page-title i {
  3626. vertical-align: middle;
  3627. margin-right: 5px;
  3628. }
  3629. /* line 853, ../scss/styles.scss */
  3630. #tool-bar #block-materio-page-title-materio-page-title i.icon-materio-folder {
  3631. margin-bottom: 2px;
  3632. }
  3633. /* line 854, ../scss/styles.scss */
  3634. #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3635. visibility: hidden;
  3636. }
  3637. /* line 118, ../scss/styles.scss */
  3638. #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3639. margin-top: -100000px;
  3640. }
  3641. /* line 121, ../scss/styles.scss */
  3642. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list {
  3643. opacity: 0;
  3644. -webkit-transition: visibility 0s 0.3s;
  3645. transition: visibility 0s 0.3s;
  3646. }
  3647. /* line 124, ../scss/styles.scss */
  3648. .csstransition #tool-bar #block-materio-page-title-materio-page-title a.edit-list > * {
  3649. -webkit-transition: margin-top 0s 0.3s;
  3650. transition: margin-top 0s 0.3s;
  3651. }
  3652. /* line 856, ../scss/styles.scss */
  3653. #tool-bar #block-materio-page-title-materio-page-title a.edit-list i {
  3654. margin: 0 0 0 5px;
  3655. }
  3656. /* line 859, ../scss/styles.scss */
  3657. #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3658. visibility: visible;
  3659. }
  3660. /* line 110, ../scss/styles.scss */
  3661. .csstransitions #tool-bar #block-materio-page-title-materio-page-title:hover a.edit-list {
  3662. opacity: 1;
  3663. -webkit-transition: opacity 0.3s ease-out;
  3664. transition: opacity 0.3s ease-out;
  3665. }
  3666. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  3667. /* line 847, ../scss/styles.scss */
  3668. #tool-bar #block-materio-page-title-materio-page-title {
  3669. display: block;
  3670. }
  3671. }
  3672. /* line 868, ../scss/styles.scss */
  3673. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3674. display: moz-inline-stack;
  3675. display: inline-block;
  3676. vertical-align: top;
  3677. zoom: 1;
  3678. *display: inline;
  3679. margin: 0 2px;
  3680. }
  3681. /* line 870, ../scss/styles.scss */
  3682. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link.active {
  3683. cursor: normal;
  3684. }
  3685. /* line 871, ../scss/styles.scss */
  3686. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link .inner {
  3687. display: none;
  3688. font-size: 10px;
  3689. }
  3690. @media only screen and (max-width: 40em) {
  3691. /* line 874, ../scss/styles.scss */
  3692. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link {
  3693. display: block;
  3694. }
  3695. /* line 874, ../scss/styles.scss */
  3696. #tool-bar #block-materio-search-api-materio-search-api-viewmode .viewmode-link:not(.active) {
  3697. display: none;
  3698. }
  3699. }
  3700. @media only screen and (max-width: 40em) {
  3701. /* line 877, ../scss/styles.scss */
  3702. 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 {
  3703. display: block;
  3704. }
  3705. }
  3706. @media only screen and (max-width: 40em) {
  3707. /* line 881, ../scss/styles.scss */
  3708. 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 {
  3709. display: block;
  3710. }
  3711. }
  3712. /* line 885, ../scss/styles.scss */
  3713. #tool-bar #block-materio-search-api-materio-search-api-search {
  3714. float: right;
  3715. }
  3716. /* line 889, ../scss/styles.scss */
  3717. #tool-bar #block-materio-search-api-materio-search-api-search > .inner {
  3718. display: moz-inline-stack;
  3719. display: inline-block;
  3720. vertical-align: top;
  3721. zoom: 1;
  3722. *display: inline;
  3723. margin: 0 0 0 10px;
  3724. padding: 3px 10px;
  3725. background-color: #fff;
  3726. border-radius: 3px;
  3727. background-clip: padding-box;
  3728. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3729. -webkit-transition: box-shadow 0.3s ease-out;
  3730. transition: box-shadow 0.3s ease-out;
  3731. text-align: right;
  3732. }
  3733. /* line 40, ../scss/styles.scss */
  3734. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:hover, #tool-bar #block-materio-search-api-materio-search-api-search > .inner:focus {
  3735. box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  3736. }
  3737. /* line 43, ../scss/styles.scss */
  3738. #tool-bar #block-materio-search-api-materio-search-api-search > .inner:active {
  3739. -webkit-transition: box-shadow 0s ease-out;
  3740. transition: box-shadow 0s ease-out;
  3741. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  3742. }
  3743. /* line 896, ../scss/styles.scss */
  3744. #tool-bar #materio-search-api-search-form {
  3745. text-align: right;
  3746. display: moz-inline-stack;
  3747. display: inline-block;
  3748. vertical-align: top;
  3749. zoom: 1;
  3750. *display: inline;
  3751. margin: 0;
  3752. }
  3753. /* line 900, ../scss/styles.scss */
  3754. #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 {
  3755. display: moz-inline-stack;
  3756. display: inline-block;
  3757. vertical-align: top;
  3758. zoom: 1;
  3759. *display: inline;
  3760. margin: 0;
  3761. vertical-align: middle;
  3762. padding: 0;
  3763. }
  3764. /* line 902, ../scss/styles.scss */
  3765. #tool-bar #materio-search-api-search-form .form-checkboxes {
  3766. padding: 3px;
  3767. font-size: 12px;
  3768. }
  3769. /* line 904, ../scss/styles.scss */
  3770. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item {
  3771. margin: 0 5px;
  3772. }
  3773. /* line 906, ../scss/styles.scss */
  3774. #tool-bar #materio-search-api-search-form .form-checkboxes .form-item label {
  3775. font-size: 10px;
  3776. }
  3777. /* line 910, ../scss/styles.scss */
  3778. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3779. border: 1px solid #ccc;
  3780. border-radius: 20px;
  3781. background-clip: padding-box;
  3782. padding: 4px 5px;
  3783. height: 25px;
  3784. font-size: 12px;
  3785. line-height: 1;
  3786. background-position: 100% 5px;
  3787. width: 105%;
  3788. }
  3789. /* line 916, ../scss/styles.scss */
  3790. #tool-bar #materio-search-api-search-form input#edit-searchfield.throbbing {
  3791. background-position: 100% -15px;
  3792. }
  3793. /* line 920, ../scss/styles.scss */
  3794. .oldie #tool-bar #materio-search-api-search-form #edit-searchfield-autocomplete-aria-live {
  3795. background-color: #1a1a1a;
  3796. }
  3797. /* line 925, ../scss/styles.scss */
  3798. #tool-bar #materio-search-api-search-form input#edit-create {
  3799. padding: 3px;
  3800. }
  3801. /* line 927, ../scss/styles.scss */
  3802. #tool-bar #materio-search-api-search-form.loading {
  3803. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  3804. }
  3805. /* line 929, ../scss/styles.scss */
  3806. #tool-bar #materio-search-api-search-form.loading input#edit-create {
  3807. visibility: hidden;
  3808. }
  3809. @media only screen and (max-width: 40em) {
  3810. /* line 933, ../scss/styles.scss */
  3811. #tool-bar #materio-search-api-search-form input#edit-searchfield {
  3812. width: 16em;
  3813. }
  3814. /* line 934, ../scss/styles.scss */
  3815. #tool-bar #materio-search-api-search-form #edit-bundles-filter {
  3816. display: none;
  3817. }
  3818. }
  3819. /* line 940, ../scss/styles.scss */
  3820. #center {
  3821. background-color: #e6e6e6;
  3822. border-radius: 10px;
  3823. background-clip: padding-box;
  3824. }
  3825. /* line 942, ../scss/styles.scss */
  3826. .node-type-page #center {
  3827. background-color: #fff;
  3828. }
  3829. /* line 943, ../scss/styles.scss */
  3830. .ie8 #center {
  3831. height: 100%;
  3832. margin-top: 20px;
  3833. }
  3834. /* line 947, ../scss/styles.scss */
  3835. #content {
  3836. -webkit-transition: height 0.3s ease-out;
  3837. transition: height 0.3s ease-out;
  3838. }
  3839. /* line 951, ../scss/styles.scss */
  3840. #content.faded {
  3841. opacity: 0.5;
  3842. -webkit-transition: opacity 0.3s ease-out;
  3843. transition: opacity 0.3s ease-out;
  3844. }
  3845. /* line 956, ../scss/styles.scss */
  3846. #content .materiobase-results, #content .materiobase-actuality, #content .materio-flags-list {
  3847. padding: 0 0 30px 0;
  3848. margin: 0 0 20px 0;
  3849. }
  3850. /* line 959, ../scss/styles.scss */
  3851. #content .materiobase-results.loading, #content .materiobase-actuality.loading, #content .materio-flags-list.loading {
  3852. background-image: url("../img/ajax-loader.gif");
  3853. background-position: center bottom;
  3854. background-repeat: no-repeat;
  3855. }
  3856. /* line 965, ../scss/styles.scss */
  3857. #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 {
  3858. font-size: 12px;
  3859. font-weight: 500;
  3860. margin: 0;
  3861. padding: 10px 0 5px 15px;
  3862. }
  3863. /* line 971, ../scss/styles.scss */
  3864. #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 {
  3865. font-size: 0;
  3866. text-align: center;
  3867. }
  3868. /* line 973, ../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. font-size: 16px;
  3871. }
  3872. /* line 975, ../scss/styles.scss */
  3873. #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 > * {
  3874. text-align: left;
  3875. }
  3876. /* line 981, ../scss/styles.scss */
  3877. #content ul.pager {
  3878. padding: 1em 0;
  3879. text-align: left;
  3880. }
  3881. /* line 983, ../scss/styles.scss */
  3882. .ie8 #content ul.pager {
  3883. position: absolute;
  3884. left: 37px;
  3885. bottom: 35px;
  3886. }
  3887. /* line 985, ../scss/styles.scss */
  3888. #content ul.pager li {
  3889. margin: 0;
  3890. display: moz-inline-stack;
  3891. display: inline-block;
  3892. vertical-align: top;
  3893. zoom: 1;
  3894. *display: inline;
  3895. vertical-align: middle;
  3896. }
  3897. /* line 987, ../scss/styles.scss */
  3898. #content ul.pager .pager-current, #content ul.pager a {
  3899. color: #000;
  3900. font-size: 12px;
  3901. }
  3902. /* line 988, ../scss/styles.scss */
  3903. #content ul.pager .pager-current {
  3904. font-weight: 900;
  3905. font-size: 14px;
  3906. }
  3907. /* line 988, ../scss/styles.scss */
  3908. .ie8 #content ul.pager .pager-current {
  3909. background: #fff;
  3910. padding: 0.3em 1em 0.3em 1em;
  3911. margin-top: 0.05em;
  3912. border: 1px solid #333333;
  3913. }
  3914. /* line 989, ../scss/styles.scss */
  3915. #content ul.pager .pager-first a, #content ul.pager .pager-previous a, #content ul.pager .pager-next a, #content ul.pager .pager-last a {
  3916. font-size: 24px;
  3917. font-weight: 300;
  3918. }
  3919. /** #content-bottom */
  3920. /* line 1000, ../scss/styles.scss */
  3921. #content-bottom {
  3922. padding-top: 10px;
  3923. }
  3924. /** CARDS */
  3925. /** card search performance */
  3926. /* line 1179, ../scss/styles.scss */
  3927. article.search-performance .inner {
  3928. padding: 1em;
  3929. }
  3930. /* line 1183, ../scss/styles.scss */
  3931. article.search-performance p {
  3932. font-size: 14px;
  3933. }
  3934. /* line 1185, ../scss/styles.scss */
  3935. article.search-performance a.button {
  3936. display: block;
  3937. margin: 10px auto;
  3938. max-width: 10em;
  3939. font-size: 18px;
  3940. padding: 0.1em 0.6em 0.2em;
  3941. border-radius: 0.3em;
  3942. background-clip: padding-box;
  3943. font-weight: bold;
  3944. border: 2px solid #69CDCF;
  3945. background-color: #69CDCF;
  3946. color: #fff;
  3947. cursor: pointer;
  3948. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3949. -webkit-transition: text-shadow 0.2s ease-out;
  3950. transition: text-shadow 0.2s ease-out;
  3951. text-align: center;
  3952. text-decoration: none;
  3953. }
  3954. /* line 66, ../scss/styles.scss */
  3955. article.search-performance a.button:hover, article.search-performance a.button:focus {
  3956. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  3957. }
  3958. /* line 69, ../scss/styles.scss */
  3959. article.search-performance a.button:active {
  3960. -webkit-transition: text-shadow 0s ease-out;
  3961. transition: text-shadow 0s ease-out;
  3962. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  3963. }
  3964. /* line 1193, ../scss/styles.scss */
  3965. article.search-performance.view-mode-cardsmall {
  3966. width: 327px;
  3967. height: 140px;
  3968. display: moz-inline-stack;
  3969. display: inline-block;
  3970. vertical-align: top;
  3971. zoom: 1;
  3972. *display: inline;
  3973. position: relative;
  3974. margin: 7px;
  3975. border-radius: 5px;
  3976. background-clip: padding-box;
  3977. background-color: #FFF;
  3978. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3979. -webkit-transition: box-shadow 0.3s ease-out;
  3980. transition: box-shadow 0.3s ease-out;
  3981. }
  3982. /* line 1196, ../scss/styles.scss */
  3983. article.search-performance.view-mode-cardmedium {
  3984. width: 210px;
  3985. height: 295px;
  3986. display: moz-inline-stack;
  3987. display: inline-block;
  3988. vertical-align: top;
  3989. zoom: 1;
  3990. *display: inline;
  3991. position: relative;
  3992. margin: 7px;
  3993. border-radius: 5px;
  3994. background-clip: padding-box;
  3995. background-color: #FFF;
  3996. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  3997. -webkit-transition: box-shadow 0.3s ease-out;
  3998. transition: box-shadow 0.3s ease-out;
  3999. }
  4000. /* line 1198, ../scss/styles.scss */
  4001. article.search-performance.view-mode-cardmedium .inner {
  4002. padding: 4em 1em 0;
  4003. }
  4004. /* line 1202, ../scss/styles.scss */
  4005. article.search-performance.view-mode-cardbig {
  4006. width: 425px;
  4007. height: 115px;
  4008. display: moz-inline-stack;
  4009. display: inline-block;
  4010. vertical-align: top;
  4011. zoom: 1;
  4012. *display: inline;
  4013. position: relative;
  4014. margin: 7px;
  4015. border-radius: 5px;
  4016. background-clip: padding-box;
  4017. background-color: #FFF;
  4018. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4019. -webkit-transition: box-shadow 0.3s ease-out;
  4020. transition: box-shadow 0.3s ease-out;
  4021. display: block;
  4022. margin: 0 auto;
  4023. }
  4024. /* line 1206, ../scss/styles.scss */
  4025. article.search-performance.view-mode-cardfull {
  4026. width: 850px;
  4027. height: 115px;
  4028. display: moz-inline-stack;
  4029. display: inline-block;
  4030. vertical-align: top;
  4031. zoom: 1;
  4032. *display: inline;
  4033. position: relative;
  4034. margin: 7px;
  4035. border-radius: 5px;
  4036. background-clip: padding-box;
  4037. background-color: #FFF;
  4038. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4039. -webkit-transition: box-shadow 0.3s ease-out;
  4040. transition: box-shadow 0.3s ease-out;
  4041. display: block;
  4042. margin: 0 auto;
  4043. }
  4044. /* line 1208, ../scss/styles.scss */
  4045. article.search-performance.view-mode-cardfull .inner {
  4046. padding: 1em 212px;
  4047. }
  4048. /** CARD BOOKMARKS */
  4049. /* line 1216, ../scss/styles.scss */
  4050. article.node-materiau.vm-bookmark, article.node-breve.vm-bookmark {
  4051. width: 50px;
  4052. height: 70px;
  4053. display: moz-inline-stack;
  4054. display: inline-block;
  4055. vertical-align: top;
  4056. zoom: 1;
  4057. *display: inline;
  4058. position: relative;
  4059. margin: 7px;
  4060. border-radius: 5px;
  4061. background-clip: padding-box;
  4062. background-color: #FFF;
  4063. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4064. -webkit-transition: box-shadow 0.3s ease-out;
  4065. transition: box-shadow 0.3s ease-out;
  4066. margin: 3px;
  4067. }
  4068. /* line 1034, ../scss/styles.scss */
  4069. article.node-materiau.vm-bookmark > div.side, article.node-breve.vm-bookmark > div.side {
  4070. border-radius: 5px;
  4071. background-clip: padding-box;
  4072. overflow: hidden;
  4073. }
  4074. /* line 1039, ../scss/styles.scss */
  4075. article.node-materiau.vm-bookmark.focused, article.node-breve.vm-bookmark.focused {
  4076. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  4077. }
  4078. /* line 1041, ../scss/styles.scss */
  4079. article.node-materiau.vm-bookmark.just-added, article.node-breve.vm-bookmark.just-added {
  4080. opacity: 0;
  4081. }
  4082. /* line 1043, ../scss/styles.scss */
  4083. article.node-materiau.vm-bookmark.associated, article.node-breve.vm-bookmark.associated {
  4084. -webkit-transition: margin 0.3s ease-out;
  4085. transition: margin 0.3s ease-out;
  4086. }
  4087. /* line 1045, ../scss/styles.scss */
  4088. article.node-materiau.vm-bookmark.associated.just-added, article.node-breve.vm-bookmark.associated.just-added {
  4089. margin-left: -50px;
  4090. margin-right: 50px;
  4091. }
  4092. /* line 1047, ../scss/styles.scss */
  4093. .modal-content article.node-materiau.vm-bookmark.associated, .modal-content article.node-breve.vm-bookmark.associated {
  4094. position: absolute;
  4095. top: 0;
  4096. left: 0;
  4097. z-index: 999;
  4098. }
  4099. /* line 1055, ../scss/styles.scss */
  4100. article.node-materiau.vm-bookmark.removed, article.node-breve.vm-bookmark.removed {
  4101. -webkit-transition: width 0.3s ease-out;
  4102. transition: width 0.3s ease-out;
  4103. width: 0;
  4104. padding-left: 0;
  4105. padding-right: 0;
  4106. margin-right: 0;
  4107. margin-left: 0;
  4108. overflow: hidden;
  4109. }
  4110. /* line 1065, ../scss/styles.scss */
  4111. article.node-materiau.vm-bookmark nav.nav, article.node-breve.vm-bookmark nav.nav {
  4112. position: absolute;
  4113. top: 0;
  4114. right: 0;
  4115. z-index: 11;
  4116. padding: 5px 0;
  4117. border-radius: 0 5px 0 3px;
  4118. background-clip: padding-box;
  4119. font-size: 10px;
  4120. background-color: white;
  4121. background-color: rgba(255, 255, 255, 0.9);
  4122. *background-color: white;
  4123. color: #000;
  4124. }
  4125. /* line 1077, ../scss/styles.scss */
  4126. article.node-materiau.vm-bookmark nav.nav a, article.node-breve.vm-bookmark nav.nav a {
  4127. color: #000;
  4128. }
  4129. /* line 1078, ../scss/styles.scss */
  4130. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4131. background-color: white;
  4132. background-color: rgba(255, 255, 255, 0.9);
  4133. *background-color: white;
  4134. }
  4135. /* line 1079, ../scss/styles.scss */
  4136. article.node-materiau.vm-bookmark nav.nav span.op, article.node-breve.vm-bookmark nav.nav span.op {
  4137. font-weight: 900;
  4138. font-size: 14px;
  4139. }
  4140. /* line 1081, ../scss/styles.scss */
  4141. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4142. padding: 0;
  4143. margin: 0;
  4144. }
  4145. /* line 1083, ../scss/styles.scss */
  4146. article.node-materiau.vm-bookmark nav.nav section, article.node-breve.vm-bookmark nav.nav section {
  4147. position: relative;
  4148. }
  4149. /* line 1086, ../scss/styles.scss */
  4150. article.node-materiau.vm-bookmark nav.nav section > i, article.node-breve.vm-bookmark nav.nav section > i {
  4151. margin: 0 5px;
  4152. }
  4153. /* line 1086, ../scss/styles.scss */
  4154. article.node-materiau.vm-bookmark nav.nav section > i:hover, article.node-breve.vm-bookmark nav.nav section > i:hover {
  4155. cursor: pointer;
  4156. }
  4157. /* line 1089, ../scss/styles.scss */
  4158. article.node-materiau.vm-bookmark nav.nav ul, article.node-breve.vm-bookmark nav.nav ul {
  4159. position: absolute;
  4160. right: 0;
  4161. top: 0;
  4162. margin-right: 22px;
  4163. min-width: 80px;
  4164. padding: 0;
  4165. display: block;
  4166. border-radius: 3px;
  4167. background-clip: padding-box;
  4168. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  4169. }
  4170. /* line 1093, ../scss/styles.scss */
  4171. article.node-materiau.vm-bookmark nav.nav ul li, article.node-breve.vm-bookmark nav.nav ul li {
  4172. padding: 0;
  4173. margin: 0;
  4174. line-height: 1;
  4175. display: block;
  4176. height: 0;
  4177. overflow: hidden;
  4178. -webkit-transition: height 0.2s ease-out;
  4179. transition: height 0.2s ease-out;
  4180. }
  4181. /* line 1097, ../scss/styles.scss */
  4182. article.node-materiau.vm-bookmark nav.nav ul li a, article.node-breve.vm-bookmark nav.nav ul li a {
  4183. display: block;
  4184. }
  4185. /* line 1100, ../scss/styles.scss */
  4186. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links {
  4187. width: 160px;
  4188. font-size: 0;
  4189. }
  4190. /* line 1103, ../scss/styles.scss */
  4191. article.node-materiau.vm-bookmark nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-bookmark nav.nav ul.flag-lists-entity-links > * {
  4192. font-size: 11px;
  4193. }
  4194. /* line 1108, ../scss/styles.scss */
  4195. 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 {
  4196. display: moz-inline-stack;
  4197. display: inline-block;
  4198. vertical-align: top;
  4199. zoom: 1;
  4200. *display: inline;
  4201. min-width: 48%;
  4202. max-width: 98%;
  4203. padding-left: 2px;
  4204. }
  4205. /* line 1110, ../scss/styles.scss */
  4206. 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 {
  4207. color: #a6a6a6;
  4208. -webkit-transition: color 0.2s ease-out;
  4209. transition: color 0.2s ease-out;
  4210. }
  4211. /* line 1112, ../scss/styles.scss */
  4212. 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 {
  4213. color: #000;
  4214. text-decoration: none;
  4215. }
  4216. /* line 1116, ../scss/styles.scss */
  4217. 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 {
  4218. display: block;
  4219. width: 100%;
  4220. }
  4221. /* line 1118, ../scss/styles.scss */
  4222. 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 > * {
  4223. margin-top: 1px;
  4224. padding-top: 1px;
  4225. border-top: 1px solid #e6e6e6;
  4226. }
  4227. /* line 1119, ../scss/styles.scss */
  4228. 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 {
  4229. color: #000;
  4230. }
  4231. /* line 1121, ../scss/styles.scss */
  4232. 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 {
  4233. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  4234. }
  4235. /* line 1122, ../scss/styles.scss */
  4236. 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 {
  4237. visibility: hidden;
  4238. }
  4239. /* line 1127, ../scss/styles.scss */
  4240. .ie8 article.node-materiau.vm-bookmark nav.nav ul, .ie8 article.node-breve.vm-bookmark nav.nav ul {
  4241. background: #FFF;
  4242. }
  4243. /* line 1132, ../scss/styles.scss */
  4244. article.node-materiau.vm-bookmark nav.nav section:hover ul, article.node-breve.vm-bookmark nav.nav section:hover ul {
  4245. padding: 5px 5px;
  4246. }
  4247. /* line 1134, ../scss/styles.scss */
  4248. article.node-materiau.vm-bookmark nav.nav section:hover ul li, article.node-breve.vm-bookmark nav.nav section:hover ul li {
  4249. height: 17px;
  4250. }
  4251. /* line 1147, ../scss/styles.scss */
  4252. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4253. position: absolute;
  4254. top: 0;
  4255. left: 0;
  4256. z-index: 11;
  4257. padding: 5px;
  4258. border-radius: 5px 0 3px 0;
  4259. background-clip: padding-box;
  4260. font-size: 10px;
  4261. vertical-align: top;
  4262. background-color: white;
  4263. background-color: rgba(255, 255, 255, 0.9);
  4264. *background-color: white;
  4265. color: #000;
  4266. }
  4267. /* line 1153, ../scss/styles.scss */
  4268. article.node-materiau.vm-bookmark div.workflow span, article.node-breve.vm-bookmark div.workflow span {
  4269. padding: 3px 0 0 4px;
  4270. display: moz-inline-stack;
  4271. display: inline-block;
  4272. vertical-align: top;
  4273. zoom: 1;
  4274. *display: inline;
  4275. }
  4276. /* line 1156, ../scss/styles.scss */
  4277. article.node-materiau.vm-bookmark .field-name-field-description .upgrade, article.node-breve.vm-bookmark .field-name-field-description .upgrade {
  4278. font-size: 12px;
  4279. padding-top: 4em;
  4280. margin-top: -4.5em;
  4281. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4282. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4283. position: relative;
  4284. }
  4285. /* line 1164, ../scss/styles.scss */
  4286. 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 {
  4287. padding: 10px;
  4288. font-size: 12px;
  4289. }
  4290. /* line 1166, ../scss/styles.scss */
  4291. 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 {
  4292. display: block;
  4293. margin: 10px 0;
  4294. font-size: 18px;
  4295. padding: 0.1em 0.6em 0.2em;
  4296. border-radius: 0.3em;
  4297. background-clip: padding-box;
  4298. font-weight: bold;
  4299. border: 2px solid #69CDCF;
  4300. background-color: #69CDCF;
  4301. color: #fff;
  4302. cursor: pointer;
  4303. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4304. -webkit-transition: text-shadow 0.2s ease-out;
  4305. transition: text-shadow 0.2s ease-out;
  4306. text-align: center;
  4307. text-decoration: none;
  4308. }
  4309. /* line 66, ../scss/styles.scss */
  4310. 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 {
  4311. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  4312. }
  4313. /* line 69, ../scss/styles.scss */
  4314. 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 {
  4315. -webkit-transition: text-shadow 0s ease-out;
  4316. transition: text-shadow 0s ease-out;
  4317. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4318. }
  4319. /* line 1219, ../scss/styles.scss */
  4320. article.node-materiau.vm-bookmark .group-header, article.node-breve.vm-bookmark .group-header {
  4321. display: none;
  4322. }
  4323. /* line 1223, ../scss/styles.scss */
  4324. article.node-materiau.vm-bookmark .group-images, article.node-breve.vm-bookmark .group-images {
  4325. position: relative;
  4326. z-index: 1;
  4327. background-color: #fff;
  4328. }
  4329. /* line 77, ../scss/styles.scss */
  4330. article.node-materiau.vm-bookmark .group-images figure, article.node-breve.vm-bookmark .group-images figure {
  4331. position: absolute;
  4332. top: 0;
  4333. left: 0;
  4334. }
  4335. /* line 79, ../scss/styles.scss */
  4336. article.node-materiau.vm-bookmark .group-images figure:first-child, article.node-breve.vm-bookmark .group-images figure:first-child {
  4337. position: relative;
  4338. z-index: 1;
  4339. }
  4340. /* line 1225, ../scss/styles.scss */
  4341. article.node-materiau.vm-bookmark div.workflow, article.node-breve.vm-bookmark div.workflow {
  4342. display: none;
  4343. }
  4344. /** CARD SMALL */
  4345. /* line 1229, ../scss/styles.scss */
  4346. article.node-materiau.vm-cardsmall, article.node-breve.vm-cardsmall {
  4347. width: 100px;
  4348. height: 140px;
  4349. display: moz-inline-stack;
  4350. display: inline-block;
  4351. vertical-align: top;
  4352. zoom: 1;
  4353. *display: inline;
  4354. position: relative;
  4355. margin: 7px;
  4356. border-radius: 5px;
  4357. background-clip: padding-box;
  4358. background-color: #FFF;
  4359. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4360. -webkit-transition: box-shadow 0.3s ease-out;
  4361. transition: box-shadow 0.3s ease-out;
  4362. }
  4363. /* line 1034, ../scss/styles.scss */
  4364. article.node-materiau.vm-cardsmall > div.side, article.node-breve.vm-cardsmall > div.side {
  4365. border-radius: 5px;
  4366. background-clip: padding-box;
  4367. overflow: hidden;
  4368. }
  4369. /* line 1039, ../scss/styles.scss */
  4370. article.node-materiau.vm-cardsmall.focused, article.node-breve.vm-cardsmall.focused {
  4371. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  4372. }
  4373. /* line 1041, ../scss/styles.scss */
  4374. article.node-materiau.vm-cardsmall.just-added, article.node-breve.vm-cardsmall.just-added {
  4375. opacity: 0;
  4376. }
  4377. /* line 1043, ../scss/styles.scss */
  4378. article.node-materiau.vm-cardsmall.associated, article.node-breve.vm-cardsmall.associated {
  4379. -webkit-transition: margin 0.3s ease-out;
  4380. transition: margin 0.3s ease-out;
  4381. }
  4382. /* line 1045, ../scss/styles.scss */
  4383. article.node-materiau.vm-cardsmall.associated.just-added, article.node-breve.vm-cardsmall.associated.just-added {
  4384. margin-left: -100px;
  4385. margin-right: 100px;
  4386. }
  4387. /* line 1047, ../scss/styles.scss */
  4388. .modal-content article.node-materiau.vm-cardsmall.associated, .modal-content article.node-breve.vm-cardsmall.associated {
  4389. position: absolute;
  4390. top: 0;
  4391. left: 0;
  4392. z-index: 999;
  4393. }
  4394. /* line 1055, ../scss/styles.scss */
  4395. article.node-materiau.vm-cardsmall.removed, article.node-breve.vm-cardsmall.removed {
  4396. -webkit-transition: width 0.3s ease-out;
  4397. transition: width 0.3s ease-out;
  4398. width: 0;
  4399. padding-left: 0;
  4400. padding-right: 0;
  4401. margin-right: 0;
  4402. margin-left: 0;
  4403. overflow: hidden;
  4404. }
  4405. /* line 1065, ../scss/styles.scss */
  4406. article.node-materiau.vm-cardsmall nav.nav, article.node-breve.vm-cardsmall nav.nav {
  4407. position: absolute;
  4408. top: 0;
  4409. right: 0;
  4410. z-index: 11;
  4411. padding: 5px 0;
  4412. border-radius: 0 5px 0 3px;
  4413. background-clip: padding-box;
  4414. font-size: 10px;
  4415. background-color: white;
  4416. background-color: rgba(255, 255, 255, 0.9);
  4417. *background-color: white;
  4418. color: #000;
  4419. }
  4420. /* line 1077, ../scss/styles.scss */
  4421. article.node-materiau.vm-cardsmall nav.nav a, article.node-breve.vm-cardsmall nav.nav a {
  4422. color: #000;
  4423. }
  4424. /* line 1078, ../scss/styles.scss */
  4425. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4426. background-color: white;
  4427. background-color: rgba(255, 255, 255, 0.9);
  4428. *background-color: white;
  4429. }
  4430. /* line 1079, ../scss/styles.scss */
  4431. article.node-materiau.vm-cardsmall nav.nav span.op, article.node-breve.vm-cardsmall nav.nav span.op {
  4432. font-weight: 900;
  4433. font-size: 14px;
  4434. }
  4435. /* line 1081, ../scss/styles.scss */
  4436. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4437. padding: 0;
  4438. margin: 0;
  4439. }
  4440. /* line 1083, ../scss/styles.scss */
  4441. article.node-materiau.vm-cardsmall nav.nav section, article.node-breve.vm-cardsmall nav.nav section {
  4442. position: relative;
  4443. }
  4444. /* line 1086, ../scss/styles.scss */
  4445. article.node-materiau.vm-cardsmall nav.nav section > i, article.node-breve.vm-cardsmall nav.nav section > i {
  4446. margin: 0 5px;
  4447. }
  4448. /* line 1086, ../scss/styles.scss */
  4449. article.node-materiau.vm-cardsmall nav.nav section > i:hover, article.node-breve.vm-cardsmall nav.nav section > i:hover {
  4450. cursor: pointer;
  4451. }
  4452. /* line 1089, ../scss/styles.scss */
  4453. article.node-materiau.vm-cardsmall nav.nav ul, article.node-breve.vm-cardsmall nav.nav ul {
  4454. position: absolute;
  4455. right: 0;
  4456. top: 0;
  4457. margin-right: 22px;
  4458. min-width: 80px;
  4459. padding: 0;
  4460. display: block;
  4461. border-radius: 3px;
  4462. background-clip: padding-box;
  4463. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  4464. }
  4465. /* line 1093, ../scss/styles.scss */
  4466. article.node-materiau.vm-cardsmall nav.nav ul li, article.node-breve.vm-cardsmall nav.nav ul li {
  4467. padding: 0;
  4468. margin: 0;
  4469. line-height: 1;
  4470. display: block;
  4471. height: 0;
  4472. overflow: hidden;
  4473. -webkit-transition: height 0.2s ease-out;
  4474. transition: height 0.2s ease-out;
  4475. }
  4476. /* line 1097, ../scss/styles.scss */
  4477. article.node-materiau.vm-cardsmall nav.nav ul li a, article.node-breve.vm-cardsmall nav.nav ul li a {
  4478. display: block;
  4479. }
  4480. /* line 1100, ../scss/styles.scss */
  4481. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4482. width: 160px;
  4483. font-size: 0;
  4484. }
  4485. /* line 1103, ../scss/styles.scss */
  4486. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links > * {
  4487. font-size: 11px;
  4488. }
  4489. /* line 1108, ../scss/styles.scss */
  4490. 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 {
  4491. display: moz-inline-stack;
  4492. display: inline-block;
  4493. vertical-align: top;
  4494. zoom: 1;
  4495. *display: inline;
  4496. min-width: 48%;
  4497. max-width: 98%;
  4498. padding-left: 2px;
  4499. }
  4500. /* line 1110, ../scss/styles.scss */
  4501. 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 {
  4502. color: #a6a6a6;
  4503. -webkit-transition: color 0.2s ease-out;
  4504. transition: color 0.2s ease-out;
  4505. }
  4506. /* line 1112, ../scss/styles.scss */
  4507. 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 {
  4508. color: #000;
  4509. text-decoration: none;
  4510. }
  4511. /* line 1116, ../scss/styles.scss */
  4512. 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 {
  4513. display: block;
  4514. width: 100%;
  4515. }
  4516. /* line 1118, ../scss/styles.scss */
  4517. 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 > * {
  4518. margin-top: 1px;
  4519. padding-top: 1px;
  4520. border-top: 1px solid #e6e6e6;
  4521. }
  4522. /* line 1119, ../scss/styles.scss */
  4523. 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 {
  4524. color: #000;
  4525. }
  4526. /* line 1121, ../scss/styles.scss */
  4527. 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 {
  4528. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  4529. }
  4530. /* line 1122, ../scss/styles.scss */
  4531. 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 {
  4532. visibility: hidden;
  4533. }
  4534. /* line 1127, ../scss/styles.scss */
  4535. .ie8 article.node-materiau.vm-cardsmall nav.nav ul, .ie8 article.node-breve.vm-cardsmall nav.nav ul {
  4536. background: #FFF;
  4537. }
  4538. /* line 1132, ../scss/styles.scss */
  4539. article.node-materiau.vm-cardsmall nav.nav section:hover ul, article.node-breve.vm-cardsmall nav.nav section:hover ul {
  4540. padding: 5px 5px;
  4541. }
  4542. /* line 1134, ../scss/styles.scss */
  4543. article.node-materiau.vm-cardsmall nav.nav section:hover ul li, article.node-breve.vm-cardsmall nav.nav section:hover ul li {
  4544. height: 17px;
  4545. }
  4546. /* line 1147, ../scss/styles.scss */
  4547. article.node-materiau.vm-cardsmall div.workflow, article.node-breve.vm-cardsmall div.workflow {
  4548. position: absolute;
  4549. top: 0;
  4550. left: 0;
  4551. z-index: 11;
  4552. padding: 5px;
  4553. border-radius: 5px 0 3px 0;
  4554. background-clip: padding-box;
  4555. font-size: 10px;
  4556. vertical-align: top;
  4557. background-color: white;
  4558. background-color: rgba(255, 255, 255, 0.9);
  4559. *background-color: white;
  4560. color: #000;
  4561. }
  4562. /* line 1153, ../scss/styles.scss */
  4563. article.node-materiau.vm-cardsmall div.workflow span, article.node-breve.vm-cardsmall div.workflow span {
  4564. padding: 3px 0 0 4px;
  4565. display: moz-inline-stack;
  4566. display: inline-block;
  4567. vertical-align: top;
  4568. zoom: 1;
  4569. *display: inline;
  4570. }
  4571. /* line 1156, ../scss/styles.scss */
  4572. article.node-materiau.vm-cardsmall .field-name-field-description .upgrade, article.node-breve.vm-cardsmall .field-name-field-description .upgrade {
  4573. font-size: 12px;
  4574. padding-top: 4em;
  4575. margin-top: -4.5em;
  4576. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4577. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4578. position: relative;
  4579. }
  4580. /* line 1164, ../scss/styles.scss */
  4581. 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 {
  4582. padding: 10px;
  4583. font-size: 12px;
  4584. }
  4585. /* line 1166, ../scss/styles.scss */
  4586. 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 {
  4587. display: block;
  4588. margin: 10px 0;
  4589. font-size: 18px;
  4590. padding: 0.1em 0.6em 0.2em;
  4591. border-radius: 0.3em;
  4592. background-clip: padding-box;
  4593. font-weight: bold;
  4594. border: 2px solid #69CDCF;
  4595. background-color: #69CDCF;
  4596. color: #fff;
  4597. cursor: pointer;
  4598. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4599. -webkit-transition: text-shadow 0.2s ease-out;
  4600. transition: text-shadow 0.2s ease-out;
  4601. text-align: center;
  4602. text-decoration: none;
  4603. }
  4604. /* line 66, ../scss/styles.scss */
  4605. 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 {
  4606. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  4607. }
  4608. /* line 69, ../scss/styles.scss */
  4609. 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 {
  4610. -webkit-transition: text-shadow 0s ease-out;
  4611. transition: text-shadow 0s ease-out;
  4612. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4613. }
  4614. /* line 1231, ../scss/styles.scss */
  4615. article.node-materiau.vm-cardsmall .group-header, article.node-breve.vm-cardsmall .group-header {
  4616. display: none;
  4617. position: absolute;
  4618. font-size: 14px;
  4619. font-weight: 500;
  4620. }
  4621. /* line 1234, ../scss/styles.scss */
  4622. article.node-materiau.vm-cardsmall .group-header .field-name-title-field, article.node-breve.vm-cardsmall .group-header .field-name-title-field {
  4623. font-weight: 700;
  4624. }
  4625. /* line 1235, ../scss/styles.scss */
  4626. 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 {
  4627. display: moz-inline-stack;
  4628. display: inline-block;
  4629. vertical-align: top;
  4630. zoom: 1;
  4631. *display: inline;
  4632. font-size: 12px;
  4633. }
  4634. /* line 1236, ../scss/styles.scss */
  4635. article.node-materiau.vm-cardsmall .group-header .field-name-field-localisation, article.node-breve.vm-cardsmall .group-header .field-name-field-localisation {
  4636. float: right;
  4637. }
  4638. /* line 1238, ../scss/styles.scss */
  4639. article.node-materiau.vm-cardsmall .group-images, article.node-breve.vm-cardsmall .group-images {
  4640. position: relative;
  4641. z-index: 1;
  4642. background-color: #fff;
  4643. border-radius: 5px;
  4644. background-clip: padding-box;
  4645. overflow: hidden;
  4646. }
  4647. /* line 77, ../scss/styles.scss */
  4648. article.node-materiau.vm-cardsmall .group-images figure, article.node-breve.vm-cardsmall .group-images figure {
  4649. position: absolute;
  4650. top: 0;
  4651. left: 0;
  4652. }
  4653. /* line 79, ../scss/styles.scss */
  4654. article.node-materiau.vm-cardsmall .group-images figure:first-child, article.node-breve.vm-cardsmall .group-images figure:first-child {
  4655. position: relative;
  4656. z-index: 1;
  4657. }
  4658. /* line 1241, ../scss/styles.scss */
  4659. article.node-materiau.vm-cardsmall nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardsmall nav.nav ul.flag-lists-entity-links {
  4660. width: 75px;
  4661. min-width: 75px;
  4662. }
  4663. /* line 1243, ../scss/styles.scss */
  4664. 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 {
  4665. width: 98%;
  4666. }
  4667. /* line 1245, ../scss/styles.scss */
  4668. .ie8 article.node-materiau.vm-cardsmall nav.nav, .ie8 article.node-breve.vm-cardsmall nav.nav {
  4669. background: #FFF;
  4670. }
  4671. /* line 1247, ../scss/styles.scss */
  4672. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4673. visibility: hidden;
  4674. }
  4675. /* line 118, ../scss/styles.scss */
  4676. .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4677. margin-top: -100000px;
  4678. }
  4679. /* line 121, ../scss/styles.scss */
  4680. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav {
  4681. opacity: 0;
  4682. -webkit-transition: visibility 0s 0.3s;
  4683. transition: visibility 0s 0.3s;
  4684. }
  4685. /* line 124, ../scss/styles.scss */
  4686. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) nav.nav > * {
  4687. -webkit-transition: margin-top 0s 0.3s;
  4688. transition: margin-top 0s 0.3s;
  4689. }
  4690. /* line 1249, ../scss/styles.scss */
  4691. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4692. visibility: hidden;
  4693. }
  4694. /* line 118, ../scss/styles.scss */
  4695. .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4696. margin-top: -100000px;
  4697. }
  4698. /* line 121, ../scss/styles.scss */
  4699. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow {
  4700. opacity: 0;
  4701. -webkit-transition: visibility 0s 0.3s;
  4702. transition: visibility 0s 0.3s;
  4703. }
  4704. /* line 124, ../scss/styles.scss */
  4705. .csstransition .no-touch article.node-materiau.vm-cardsmall:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardsmall:not(.focused) div.workflow > * {
  4706. -webkit-transition: margin-top 0s 0.3s;
  4707. transition: margin-top 0s 0.3s;
  4708. }
  4709. /** TOOLTIP SMALL CARD */
  4710. /* line 1254, ../scss/styles.scss */
  4711. #tooltip .group-header.smallcard {
  4712. font-size: 14px;
  4713. font-weight: 500;
  4714. }
  4715. /* line 1256, ../scss/styles.scss */
  4716. #tooltip .group-header.smallcard .field-name-title-field {
  4717. font-weight: 700;
  4718. }
  4719. /* line 1257, ../scss/styles.scss */
  4720. #tooltip .group-header.smallcard .field-name-field-reference-materio, #tooltip .group-header.smallcard .field-name-field-localisation {
  4721. display: moz-inline-stack;
  4722. display: inline-block;
  4723. vertical-align: top;
  4724. zoom: 1;
  4725. *display: inline;
  4726. font-size: 12px;
  4727. }
  4728. /* line 1258, ../scss/styles.scss */
  4729. #tooltip .group-header.smallcard .field-name-field-localisation {
  4730. float: right;
  4731. }
  4732. /** CARD MEDIUM */
  4733. /* line 1263, ../scss/styles.scss */
  4734. article.node-materiau.vm-cardmedium, article.node-breve.vm-cardmedium {
  4735. width: 210px;
  4736. height: 295px;
  4737. display: moz-inline-stack;
  4738. display: inline-block;
  4739. vertical-align: top;
  4740. zoom: 1;
  4741. *display: inline;
  4742. position: relative;
  4743. margin: 7px;
  4744. border-radius: 5px;
  4745. background-clip: padding-box;
  4746. background-color: #FFF;
  4747. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  4748. -webkit-transition: box-shadow 0.3s ease-out;
  4749. transition: box-shadow 0.3s ease-out;
  4750. }
  4751. /* line 1034, ../scss/styles.scss */
  4752. article.node-materiau.vm-cardmedium > div.side, article.node-breve.vm-cardmedium > div.side {
  4753. border-radius: 5px;
  4754. background-clip: padding-box;
  4755. overflow: hidden;
  4756. }
  4757. /* line 1039, ../scss/styles.scss */
  4758. article.node-materiau.vm-cardmedium.focused, article.node-breve.vm-cardmedium.focused {
  4759. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  4760. }
  4761. /* line 1041, ../scss/styles.scss */
  4762. article.node-materiau.vm-cardmedium.just-added, article.node-breve.vm-cardmedium.just-added {
  4763. opacity: 0;
  4764. }
  4765. /* line 1043, ../scss/styles.scss */
  4766. article.node-materiau.vm-cardmedium.associated, article.node-breve.vm-cardmedium.associated {
  4767. -webkit-transition: margin 0.3s ease-out;
  4768. transition: margin 0.3s ease-out;
  4769. }
  4770. /* line 1045, ../scss/styles.scss */
  4771. article.node-materiau.vm-cardmedium.associated.just-added, article.node-breve.vm-cardmedium.associated.just-added {
  4772. margin-left: -210px;
  4773. margin-right: 210px;
  4774. }
  4775. /* line 1047, ../scss/styles.scss */
  4776. .modal-content article.node-materiau.vm-cardmedium.associated, .modal-content article.node-breve.vm-cardmedium.associated {
  4777. position: absolute;
  4778. top: 0;
  4779. left: 0;
  4780. z-index: 999;
  4781. }
  4782. /* line 1055, ../scss/styles.scss */
  4783. article.node-materiau.vm-cardmedium.removed, article.node-breve.vm-cardmedium.removed {
  4784. -webkit-transition: width 0.3s ease-out;
  4785. transition: width 0.3s ease-out;
  4786. width: 0;
  4787. padding-left: 0;
  4788. padding-right: 0;
  4789. margin-right: 0;
  4790. margin-left: 0;
  4791. overflow: hidden;
  4792. }
  4793. /* line 1065, ../scss/styles.scss */
  4794. article.node-materiau.vm-cardmedium nav.nav, article.node-breve.vm-cardmedium nav.nav {
  4795. position: absolute;
  4796. top: 0;
  4797. right: 0;
  4798. z-index: 11;
  4799. padding: 5px 0;
  4800. border-radius: 0 5px 0 3px;
  4801. background-clip: padding-box;
  4802. font-size: 10px;
  4803. background-color: white;
  4804. background-color: rgba(255, 255, 255, 0.9);
  4805. *background-color: white;
  4806. color: #000;
  4807. }
  4808. /* line 1077, ../scss/styles.scss */
  4809. article.node-materiau.vm-cardmedium nav.nav a, article.node-breve.vm-cardmedium nav.nav a {
  4810. color: #000;
  4811. }
  4812. /* line 1078, ../scss/styles.scss */
  4813. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4814. background-color: white;
  4815. background-color: rgba(255, 255, 255, 0.9);
  4816. *background-color: white;
  4817. }
  4818. /* line 1079, ../scss/styles.scss */
  4819. article.node-materiau.vm-cardmedium nav.nav span.op, article.node-breve.vm-cardmedium nav.nav span.op {
  4820. font-weight: 900;
  4821. font-size: 14px;
  4822. }
  4823. /* line 1081, ../scss/styles.scss */
  4824. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4825. padding: 0;
  4826. margin: 0;
  4827. }
  4828. /* line 1083, ../scss/styles.scss */
  4829. article.node-materiau.vm-cardmedium nav.nav section, article.node-breve.vm-cardmedium nav.nav section {
  4830. position: relative;
  4831. }
  4832. /* line 1086, ../scss/styles.scss */
  4833. article.node-materiau.vm-cardmedium nav.nav section > i, article.node-breve.vm-cardmedium nav.nav section > i {
  4834. margin: 0 5px;
  4835. }
  4836. /* line 1086, ../scss/styles.scss */
  4837. article.node-materiau.vm-cardmedium nav.nav section > i:hover, article.node-breve.vm-cardmedium nav.nav section > i:hover {
  4838. cursor: pointer;
  4839. }
  4840. /* line 1089, ../scss/styles.scss */
  4841. article.node-materiau.vm-cardmedium nav.nav ul, article.node-breve.vm-cardmedium nav.nav ul {
  4842. position: absolute;
  4843. right: 0;
  4844. top: 0;
  4845. margin-right: 22px;
  4846. min-width: 80px;
  4847. padding: 0;
  4848. display: block;
  4849. border-radius: 3px;
  4850. background-clip: padding-box;
  4851. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  4852. }
  4853. /* line 1093, ../scss/styles.scss */
  4854. article.node-materiau.vm-cardmedium nav.nav ul li, article.node-breve.vm-cardmedium nav.nav ul li {
  4855. padding: 0;
  4856. margin: 0;
  4857. line-height: 1;
  4858. display: block;
  4859. height: 0;
  4860. overflow: hidden;
  4861. -webkit-transition: height 0.2s ease-out;
  4862. transition: height 0.2s ease-out;
  4863. }
  4864. /* line 1097, ../scss/styles.scss */
  4865. article.node-materiau.vm-cardmedium nav.nav ul li a, article.node-breve.vm-cardmedium nav.nav ul li a {
  4866. display: block;
  4867. }
  4868. /* line 1100, ../scss/styles.scss */
  4869. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links {
  4870. width: 160px;
  4871. font-size: 0;
  4872. }
  4873. /* line 1103, ../scss/styles.scss */
  4874. article.node-materiau.vm-cardmedium nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardmedium nav.nav ul.flag-lists-entity-links > * {
  4875. font-size: 11px;
  4876. }
  4877. /* line 1108, ../scss/styles.scss */
  4878. 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 {
  4879. display: moz-inline-stack;
  4880. display: inline-block;
  4881. vertical-align: top;
  4882. zoom: 1;
  4883. *display: inline;
  4884. min-width: 48%;
  4885. max-width: 98%;
  4886. padding-left: 2px;
  4887. }
  4888. /* line 1110, ../scss/styles.scss */
  4889. 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 {
  4890. color: #a6a6a6;
  4891. -webkit-transition: color 0.2s ease-out;
  4892. transition: color 0.2s ease-out;
  4893. }
  4894. /* line 1112, ../scss/styles.scss */
  4895. 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 {
  4896. color: #000;
  4897. text-decoration: none;
  4898. }
  4899. /* line 1116, ../scss/styles.scss */
  4900. 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 {
  4901. display: block;
  4902. width: 100%;
  4903. }
  4904. /* line 1118, ../scss/styles.scss */
  4905. 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 > * {
  4906. margin-top: 1px;
  4907. padding-top: 1px;
  4908. border-top: 1px solid #e6e6e6;
  4909. }
  4910. /* line 1119, ../scss/styles.scss */
  4911. 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 {
  4912. color: #000;
  4913. }
  4914. /* line 1121, ../scss/styles.scss */
  4915. 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 {
  4916. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  4917. }
  4918. /* line 1122, ../scss/styles.scss */
  4919. 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 {
  4920. visibility: hidden;
  4921. }
  4922. /* line 1127, ../scss/styles.scss */
  4923. .ie8 article.node-materiau.vm-cardmedium nav.nav ul, .ie8 article.node-breve.vm-cardmedium nav.nav ul {
  4924. background: #FFF;
  4925. }
  4926. /* line 1132, ../scss/styles.scss */
  4927. article.node-materiau.vm-cardmedium nav.nav section:hover ul, article.node-breve.vm-cardmedium nav.nav section:hover ul {
  4928. padding: 5px 5px;
  4929. }
  4930. /* line 1134, ../scss/styles.scss */
  4931. article.node-materiau.vm-cardmedium nav.nav section:hover ul li, article.node-breve.vm-cardmedium nav.nav section:hover ul li {
  4932. height: 17px;
  4933. }
  4934. /* line 1147, ../scss/styles.scss */
  4935. article.node-materiau.vm-cardmedium div.workflow, article.node-breve.vm-cardmedium div.workflow {
  4936. position: absolute;
  4937. top: 0;
  4938. left: 0;
  4939. z-index: 11;
  4940. padding: 5px;
  4941. border-radius: 5px 0 3px 0;
  4942. background-clip: padding-box;
  4943. font-size: 10px;
  4944. vertical-align: top;
  4945. background-color: white;
  4946. background-color: rgba(255, 255, 255, 0.9);
  4947. *background-color: white;
  4948. color: #000;
  4949. }
  4950. /* line 1153, ../scss/styles.scss */
  4951. article.node-materiau.vm-cardmedium div.workflow span, article.node-breve.vm-cardmedium div.workflow span {
  4952. padding: 3px 0 0 4px;
  4953. display: moz-inline-stack;
  4954. display: inline-block;
  4955. vertical-align: top;
  4956. zoom: 1;
  4957. *display: inline;
  4958. }
  4959. /* line 1156, ../scss/styles.scss */
  4960. article.node-materiau.vm-cardmedium .field-name-field-description .upgrade, article.node-breve.vm-cardmedium .field-name-field-description .upgrade {
  4961. font-size: 12px;
  4962. padding-top: 4em;
  4963. margin-top: -4.5em;
  4964. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4965. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  4966. position: relative;
  4967. }
  4968. /* line 1164, ../scss/styles.scss */
  4969. 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 {
  4970. padding: 10px;
  4971. font-size: 12px;
  4972. }
  4973. /* line 1166, ../scss/styles.scss */
  4974. 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 {
  4975. display: block;
  4976. margin: 10px 0;
  4977. font-size: 18px;
  4978. padding: 0.1em 0.6em 0.2em;
  4979. border-radius: 0.3em;
  4980. background-clip: padding-box;
  4981. font-weight: bold;
  4982. border: 2px solid #69CDCF;
  4983. background-color: #69CDCF;
  4984. color: #fff;
  4985. cursor: pointer;
  4986. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  4987. -webkit-transition: text-shadow 0.2s ease-out;
  4988. transition: text-shadow 0.2s ease-out;
  4989. text-align: center;
  4990. text-decoration: none;
  4991. }
  4992. /* line 66, ../scss/styles.scss */
  4993. 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 {
  4994. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  4995. }
  4996. /* line 69, ../scss/styles.scss */
  4997. 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 {
  4998. -webkit-transition: text-shadow 0s ease-out;
  4999. transition: text-shadow 0s ease-out;
  5000. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5001. }
  5002. /* line 1266, ../scss/styles.scss */
  5003. article.node-materiau.vm-cardmedium .side, article.node-breve.vm-cardmedium .side {
  5004. position: absolute;
  5005. width: 100%;
  5006. height: 100%;
  5007. top: 0;
  5008. left: 0;
  5009. background-color: #fff;
  5010. cursor: pointer;
  5011. }
  5012. /* line 1268, ../scss/styles.scss */
  5013. article.node-materiau.vm-cardmedium .side:nth-child(2), article.node-breve.vm-cardmedium .side:nth-child(2) {
  5014. z-index: 1;
  5015. }
  5016. /* line 1271, ../scss/styles.scss */
  5017. article.node-materiau.vm-cardmedium .group-header, article.node-breve.vm-cardmedium .group-header {
  5018. position: absolute;
  5019. bottom: 0;
  5020. z-index: 2;
  5021. width: 190px;
  5022. padding: 5px 15px 5px 5px;
  5023. min-height: 55px;
  5024. font-size: 20px;
  5025. font-weight: 300;
  5026. line-height: 1;
  5027. background-color: white;
  5028. background-color: rgba(255, 255, 255, 0.8);
  5029. *background-color: white;
  5030. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  5031. -webkit-transition: background-color 0.2s ease-out;
  5032. transition: background-color 0.2s ease-out;
  5033. border-radius: 0 0 4px 4px;
  5034. background-clip: padding-box;
  5035. overflow: hidden;
  5036. }
  5037. /* line 1275, ../scss/styles.scss */
  5038. article.node-materiau.vm-cardmedium .group-header .field-name-title-field, article.node-breve.vm-cardmedium .group-header .field-name-title-field {
  5039. font-weight: 700;
  5040. }
  5041. /* line 1276, ../scss/styles.scss */
  5042. article.node-materiau.vm-cardmedium .group-header .field-name-field-nature-titre, article.node-breve.vm-cardmedium .group-header .field-name-field-nature-titre {
  5043. font-size: 14px;
  5044. }
  5045. /* line 1281, ../scss/styles.scss */
  5046. 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 {
  5047. display: moz-inline-stack;
  5048. display: inline-block;
  5049. vertical-align: top;
  5050. zoom: 1;
  5051. *display: inline;
  5052. font-size: 12px;
  5053. vertical-align: bottom;
  5054. width: 48%;
  5055. }
  5056. /* line 1282, ../scss/styles.scss */
  5057. article.node-materiau.vm-cardmedium .group-header .field-name-field-localisation, article.node-breve.vm-cardmedium .group-header .field-name-field-localisation {
  5058. text-align: right;
  5059. }
  5060. /* line 1283, ../scss/styles.scss */
  5061. .ie8 article.node-materiau.vm-cardmedium .group-header, .ie8 article.node-breve.vm-cardmedium .group-header {
  5062. background: #fff;
  5063. font-color: #000;
  5064. line-height: 1em;
  5065. padding: 10px;
  5066. }
  5067. /* line 1287, ../scss/styles.scss */
  5068. article.node-materiau.vm-cardmedium.node-breve .group-header, article.node-breve.vm-cardmedium.node-breve .group-header {
  5069. color: #fff;
  5070. background-color: black;
  5071. background-color: rgba(0, 0, 0, 0.7);
  5072. *background-color: black;
  5073. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5074. -webkit-transition: background-color 0.2s ease-out;
  5075. transition: background-color 0.2s ease-out;
  5076. }
  5077. /* line 1290, ../scss/styles.scss */
  5078. 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 {
  5079. font-size: 12px;
  5080. font-weight: 500;
  5081. }
  5082. /* line 1291, ../scss/styles.scss */
  5083. .ie8 article.node-materiau.vm-cardmedium.node-breve .group-header, .ie8 article.node-breve.vm-cardmedium.node-breve .group-header {
  5084. background: #000;
  5085. font-size: 15px;
  5086. line-height: 1.2em;
  5087. }
  5088. /* line 1298, ../scss/styles.scss */
  5089. article.node-materiau.vm-cardmedium .group-images, article.node-breve.vm-cardmedium .group-images {
  5090. position: relative;
  5091. z-index: 1;
  5092. background-color: #fff;
  5093. }
  5094. /* line 77, ../scss/styles.scss */
  5095. article.node-materiau.vm-cardmedium .group-images figure, article.node-breve.vm-cardmedium .group-images figure {
  5096. position: absolute;
  5097. top: 0;
  5098. left: 0;
  5099. }
  5100. /* line 79, ../scss/styles.scss */
  5101. article.node-materiau.vm-cardmedium .group-images figure:first-child, article.node-breve.vm-cardmedium .group-images figure:first-child {
  5102. position: relative;
  5103. z-index: 1;
  5104. }
  5105. /* line 1301, ../scss/styles.scss */
  5106. 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 {
  5107. font-size: 12px;
  5108. font-weight: 300;
  5109. overflow: hidden;
  5110. z-index: -1;
  5111. padding: 5px;
  5112. }
  5113. /* line 155, ../scss/styles.scss */
  5114. 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 {
  5115. padding: 0;
  5116. -webkit-transition: margin-left 0.3s ease-out;
  5117. transition: margin-left 0.3s ease-out;
  5118. }
  5119. /* line 157, ../scss/styles.scss */
  5120. 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 > * {
  5121. padding: 5px;
  5122. }
  5123. /* line 159, ../scss/styles.scss */
  5124. 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 {
  5125. display: inline-block;
  5126. border-radius: 3px;
  5127. background-clip: padding-box;
  5128. color: #fff;
  5129. background-color: #3e3e3e;
  5130. vertical-align: middle;
  5131. font-weight: 700;
  5132. font-size: 22px;
  5133. padding: 0.05em 0.15em 0.2em 0.2em;
  5134. line-height: 0.5;
  5135. font-weight: normal;
  5136. }
  5137. /* line 164, ../scss/styles.scss */
  5138. 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 {
  5139. cursor: w-resize;
  5140. }
  5141. /* line 165, ../scss/styles.scss */
  5142. 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 {
  5143. cursor: e-resize;
  5144. }
  5145. /* line 1303, ../scss/styles.scss */
  5146. 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 > * {
  5147. padding-right: 25px;
  5148. }
  5149. /* line 1307, ../scss/styles.scss */
  5150. article.node-materiau.vm-cardmedium .column-wrapper, article.node-breve.vm-cardmedium .column-wrapper {
  5151. padding: 5px;
  5152. }
  5153. /* line 155, ../scss/styles.scss */
  5154. article.node-materiau.vm-cardmedium .column-wrapper.columnized, article.node-breve.vm-cardmedium .column-wrapper.columnized {
  5155. padding: 0;
  5156. -webkit-transition: margin-left 0.3s ease-out;
  5157. transition: margin-left 0.3s ease-out;
  5158. }
  5159. /* line 157, ../scss/styles.scss */
  5160. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column > *, article.node-breve.vm-cardmedium .column-wrapper.columnized .column > * {
  5161. padding: 5px;
  5162. }
  5163. /* line 159, ../scss/styles.scss */
  5164. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher {
  5165. display: inline-block;
  5166. border-radius: 3px;
  5167. background-clip: padding-box;
  5168. color: #fff;
  5169. background-color: #3e3e3e;
  5170. vertical-align: middle;
  5171. font-weight: 700;
  5172. font-size: 22px;
  5173. padding: 0.05em 0.15em 0.2em 0.2em;
  5174. line-height: 0.5;
  5175. font-weight: normal;
  5176. }
  5177. /* line 164, ../scss/styles.scss */
  5178. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.prev-column {
  5179. cursor: w-resize;
  5180. }
  5181. /* line 165, ../scss/styles.scss */
  5182. article.node-materiau.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardmedium .column-wrapper.columnized .column-switcher.next-column {
  5183. cursor: e-resize;
  5184. }
  5185. /* line 1310, ../scss/styles.scss */
  5186. 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 {
  5187. font-size: 12px;
  5188. padding: 5px;
  5189. font-weight: 300;
  5190. }
  5191. /* line 1312, ../scss/styles.scss */
  5192. 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 {
  5193. font-size: 10px;
  5194. text-transform: lowercase;
  5195. margin: 0;
  5196. }
  5197. /* line 1313, ../scss/styles.scss */
  5198. 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 {
  5199. font-size: 14px;
  5200. }
  5201. /* line 1317, ../scss/styles.scss */
  5202. 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 {
  5203. font-size: 12px;
  5204. padding: 5px;
  5205. font-weight: 300;
  5206. }
  5207. /* line 1319, ../scss/styles.scss */
  5208. 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 {
  5209. color: #000;
  5210. }
  5211. /* line 1321, ../scss/styles.scss */
  5212. article.node-materiau.vm-cardmedium .field-label, article.node-breve.vm-cardmedium .field-label {
  5213. font-weight: 900;
  5214. margin: 1em 0 0.5em;
  5215. }
  5216. /* line 1323, ../scss/styles.scss */
  5217. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  5218. visibility: hidden;
  5219. }
  5220. /* line 118, ../scss/styles.scss */
  5221. .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  5222. margin-top: -100000px;
  5223. }
  5224. /* line 121, ../scss/styles.scss */
  5225. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav {
  5226. opacity: 0;
  5227. -webkit-transition: visibility 0s 0.3s;
  5228. transition: visibility 0s 0.3s;
  5229. }
  5230. /* line 124, ../scss/styles.scss */
  5231. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) nav.nav > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) nav.nav > * {
  5232. -webkit-transition: margin-top 0s 0.3s;
  5233. transition: margin-top 0s 0.3s;
  5234. }
  5235. /* line 1325, ../scss/styles.scss */
  5236. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  5237. visibility: hidden;
  5238. }
  5239. /* line 118, ../scss/styles.scss */
  5240. .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  5241. margin-top: -100000px;
  5242. }
  5243. /* line 121, ../scss/styles.scss */
  5244. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow {
  5245. opacity: 0;
  5246. -webkit-transition: visibility 0s 0.3s;
  5247. transition: visibility 0s 0.3s;
  5248. }
  5249. /* line 124, ../scss/styles.scss */
  5250. .csstransition .no-touch article.node-materiau.vm-cardmedium:not(.focused) div.workflow > *, .csstransition .no-touch article.node-breve.vm-cardmedium:not(.focused) div.workflow > * {
  5251. -webkit-transition: margin-top 0s 0.3s;
  5252. transition: margin-top 0s 0.3s;
  5253. }
  5254. /* line 1327, ../scss/styles.scss */
  5255. .ie8 article.node-materiau.vm-cardmedium nav.nav, .ie8 article.node-breve.vm-cardmedium nav.nav {
  5256. background: #FFF;
  5257. }
  5258. /** CARD BIG */
  5259. /* line 1331, ../scss/styles.scss */
  5260. article.node-materiau.vm-cardbig, article.node-breve.vm-cardbig {
  5261. width: 425px;
  5262. height: 610px;
  5263. display: moz-inline-stack;
  5264. display: inline-block;
  5265. vertical-align: top;
  5266. zoom: 1;
  5267. *display: inline;
  5268. position: relative;
  5269. margin: 7px;
  5270. border-radius: 5px;
  5271. background-clip: padding-box;
  5272. background-color: #FFF;
  5273. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5274. -webkit-transition: box-shadow 0.3s ease-out;
  5275. transition: box-shadow 0.3s ease-out;
  5276. }
  5277. /* line 1034, ../scss/styles.scss */
  5278. article.node-materiau.vm-cardbig > div.side, article.node-breve.vm-cardbig > div.side {
  5279. border-radius: 5px;
  5280. background-clip: padding-box;
  5281. overflow: hidden;
  5282. }
  5283. /* line 1039, ../scss/styles.scss */
  5284. article.node-materiau.vm-cardbig.focused, article.node-breve.vm-cardbig.focused {
  5285. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  5286. }
  5287. /* line 1041, ../scss/styles.scss */
  5288. article.node-materiau.vm-cardbig.just-added, article.node-breve.vm-cardbig.just-added {
  5289. opacity: 0;
  5290. }
  5291. /* line 1043, ../scss/styles.scss */
  5292. article.node-materiau.vm-cardbig.associated, article.node-breve.vm-cardbig.associated {
  5293. -webkit-transition: margin 0.3s ease-out;
  5294. transition: margin 0.3s ease-out;
  5295. }
  5296. /* line 1045, ../scss/styles.scss */
  5297. article.node-materiau.vm-cardbig.associated.just-added, article.node-breve.vm-cardbig.associated.just-added {
  5298. margin-left: -425px;
  5299. margin-right: 425px;
  5300. }
  5301. /* line 1047, ../scss/styles.scss */
  5302. .modal-content article.node-materiau.vm-cardbig.associated, .modal-content article.node-breve.vm-cardbig.associated {
  5303. position: absolute;
  5304. top: 0;
  5305. left: 0;
  5306. z-index: 999;
  5307. }
  5308. /* line 1055, ../scss/styles.scss */
  5309. article.node-materiau.vm-cardbig.removed, article.node-breve.vm-cardbig.removed {
  5310. -webkit-transition: width 0.3s ease-out;
  5311. transition: width 0.3s ease-out;
  5312. width: 0;
  5313. padding-left: 0;
  5314. padding-right: 0;
  5315. margin-right: 0;
  5316. margin-left: 0;
  5317. overflow: hidden;
  5318. }
  5319. /* line 1065, ../scss/styles.scss */
  5320. article.node-materiau.vm-cardbig nav.nav, article.node-breve.vm-cardbig nav.nav {
  5321. position: absolute;
  5322. top: 0;
  5323. right: 0;
  5324. z-index: 11;
  5325. padding: 5px 0;
  5326. border-radius: 0 5px 0 3px;
  5327. background-clip: padding-box;
  5328. font-size: 10px;
  5329. background-color: white;
  5330. background-color: rgba(255, 255, 255, 0.9);
  5331. *background-color: white;
  5332. color: #000;
  5333. }
  5334. /* line 1077, ../scss/styles.scss */
  5335. article.node-materiau.vm-cardbig nav.nav a, article.node-breve.vm-cardbig nav.nav a {
  5336. color: #000;
  5337. }
  5338. /* line 1078, ../scss/styles.scss */
  5339. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  5340. background-color: white;
  5341. background-color: rgba(255, 255, 255, 0.9);
  5342. *background-color: white;
  5343. }
  5344. /* line 1079, ../scss/styles.scss */
  5345. article.node-materiau.vm-cardbig nav.nav span.op, article.node-breve.vm-cardbig nav.nav span.op {
  5346. font-weight: 900;
  5347. font-size: 14px;
  5348. }
  5349. /* line 1081, ../scss/styles.scss */
  5350. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  5351. padding: 0;
  5352. margin: 0;
  5353. }
  5354. /* line 1083, ../scss/styles.scss */
  5355. article.node-materiau.vm-cardbig nav.nav section, article.node-breve.vm-cardbig nav.nav section {
  5356. position: relative;
  5357. }
  5358. /* line 1086, ../scss/styles.scss */
  5359. article.node-materiau.vm-cardbig nav.nav section > i, article.node-breve.vm-cardbig nav.nav section > i {
  5360. margin: 0 5px;
  5361. }
  5362. /* line 1086, ../scss/styles.scss */
  5363. article.node-materiau.vm-cardbig nav.nav section > i:hover, article.node-breve.vm-cardbig nav.nav section > i:hover {
  5364. cursor: pointer;
  5365. }
  5366. /* line 1089, ../scss/styles.scss */
  5367. article.node-materiau.vm-cardbig nav.nav ul, article.node-breve.vm-cardbig nav.nav ul {
  5368. position: absolute;
  5369. right: 0;
  5370. top: 0;
  5371. margin-right: 22px;
  5372. min-width: 80px;
  5373. padding: 0;
  5374. display: block;
  5375. border-radius: 3px;
  5376. background-clip: padding-box;
  5377. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  5378. }
  5379. /* line 1093, ../scss/styles.scss */
  5380. article.node-materiau.vm-cardbig nav.nav ul li, article.node-breve.vm-cardbig nav.nav ul li {
  5381. padding: 0;
  5382. margin: 0;
  5383. line-height: 1;
  5384. display: block;
  5385. height: 0;
  5386. overflow: hidden;
  5387. -webkit-transition: height 0.2s ease-out;
  5388. transition: height 0.2s ease-out;
  5389. }
  5390. /* line 1097, ../scss/styles.scss */
  5391. article.node-materiau.vm-cardbig nav.nav ul li a, article.node-breve.vm-cardbig nav.nav ul li a {
  5392. display: block;
  5393. }
  5394. /* line 1100, ../scss/styles.scss */
  5395. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links {
  5396. width: 160px;
  5397. font-size: 0;
  5398. }
  5399. /* line 1103, ../scss/styles.scss */
  5400. article.node-materiau.vm-cardbig nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardbig nav.nav ul.flag-lists-entity-links > * {
  5401. font-size: 11px;
  5402. }
  5403. /* line 1108, ../scss/styles.scss */
  5404. 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 {
  5405. display: moz-inline-stack;
  5406. display: inline-block;
  5407. vertical-align: top;
  5408. zoom: 1;
  5409. *display: inline;
  5410. min-width: 48%;
  5411. max-width: 98%;
  5412. padding-left: 2px;
  5413. }
  5414. /* line 1110, ../scss/styles.scss */
  5415. 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 {
  5416. color: #a6a6a6;
  5417. -webkit-transition: color 0.2s ease-out;
  5418. transition: color 0.2s ease-out;
  5419. }
  5420. /* line 1112, ../scss/styles.scss */
  5421. 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 {
  5422. color: #000;
  5423. text-decoration: none;
  5424. }
  5425. /* line 1116, ../scss/styles.scss */
  5426. 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 {
  5427. display: block;
  5428. width: 100%;
  5429. }
  5430. /* line 1118, ../scss/styles.scss */
  5431. 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 > * {
  5432. margin-top: 1px;
  5433. padding-top: 1px;
  5434. border-top: 1px solid #e6e6e6;
  5435. }
  5436. /* line 1119, ../scss/styles.scss */
  5437. 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 {
  5438. color: #000;
  5439. }
  5440. /* line 1121, ../scss/styles.scss */
  5441. 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 {
  5442. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  5443. }
  5444. /* line 1122, ../scss/styles.scss */
  5445. 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 {
  5446. visibility: hidden;
  5447. }
  5448. /* line 1127, ../scss/styles.scss */
  5449. .ie8 article.node-materiau.vm-cardbig nav.nav ul, .ie8 article.node-breve.vm-cardbig nav.nav ul {
  5450. background: #FFF;
  5451. }
  5452. /* line 1132, ../scss/styles.scss */
  5453. article.node-materiau.vm-cardbig nav.nav section:hover ul, article.node-breve.vm-cardbig nav.nav section:hover ul {
  5454. padding: 5px 5px;
  5455. }
  5456. /* line 1134, ../scss/styles.scss */
  5457. article.node-materiau.vm-cardbig nav.nav section:hover ul li, article.node-breve.vm-cardbig nav.nav section:hover ul li {
  5458. height: 17px;
  5459. }
  5460. /* line 1147, ../scss/styles.scss */
  5461. article.node-materiau.vm-cardbig div.workflow, article.node-breve.vm-cardbig div.workflow {
  5462. position: absolute;
  5463. top: 0;
  5464. left: 0;
  5465. z-index: 11;
  5466. padding: 5px;
  5467. border-radius: 5px 0 3px 0;
  5468. background-clip: padding-box;
  5469. font-size: 10px;
  5470. vertical-align: top;
  5471. background-color: white;
  5472. background-color: rgba(255, 255, 255, 0.9);
  5473. *background-color: white;
  5474. color: #000;
  5475. }
  5476. /* line 1153, ../scss/styles.scss */
  5477. article.node-materiau.vm-cardbig div.workflow span, article.node-breve.vm-cardbig div.workflow span {
  5478. padding: 3px 0 0 4px;
  5479. display: moz-inline-stack;
  5480. display: inline-block;
  5481. vertical-align: top;
  5482. zoom: 1;
  5483. *display: inline;
  5484. }
  5485. /* line 1156, ../scss/styles.scss */
  5486. article.node-materiau.vm-cardbig .field-name-field-description .upgrade, article.node-breve.vm-cardbig .field-name-field-description .upgrade {
  5487. font-size: 12px;
  5488. padding-top: 4em;
  5489. margin-top: -4.5em;
  5490. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5491. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  5492. position: relative;
  5493. }
  5494. /* line 1164, ../scss/styles.scss */
  5495. 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 {
  5496. padding: 10px;
  5497. font-size: 12px;
  5498. }
  5499. /* line 1166, ../scss/styles.scss */
  5500. 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 {
  5501. display: block;
  5502. margin: 10px 0;
  5503. font-size: 18px;
  5504. padding: 0.1em 0.6em 0.2em;
  5505. border-radius: 0.3em;
  5506. background-clip: padding-box;
  5507. font-weight: bold;
  5508. border: 2px solid #69CDCF;
  5509. background-color: #69CDCF;
  5510. color: #fff;
  5511. cursor: pointer;
  5512. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5513. -webkit-transition: text-shadow 0.2s ease-out;
  5514. transition: text-shadow 0.2s ease-out;
  5515. text-align: center;
  5516. text-decoration: none;
  5517. }
  5518. /* line 66, ../scss/styles.scss */
  5519. 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 {
  5520. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  5521. }
  5522. /* line 69, ../scss/styles.scss */
  5523. 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 {
  5524. -webkit-transition: text-shadow 0s ease-out;
  5525. transition: text-shadow 0s ease-out;
  5526. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  5527. }
  5528. /* line 1334, ../scss/styles.scss */
  5529. article.node-materiau.vm-cardbig .side, article.node-breve.vm-cardbig .side {
  5530. position: absolute;
  5531. width: 100%;
  5532. height: 100%;
  5533. top: 0;
  5534. left: 0;
  5535. background-color: #fff;
  5536. height: 270px;
  5537. top: 340px;
  5538. cursor: pointer;
  5539. }
  5540. /* line 1336, ../scss/styles.scss */
  5541. article.node-materiau.vm-cardbig .side:nth-child(2), article.node-breve.vm-cardbig .side:nth-child(2) {
  5542. z-index: 1;
  5543. }
  5544. /* line 1339, ../scss/styles.scss */
  5545. article.node-materiau.vm-cardbig .group-side1, article.node-breve.vm-cardbig .group-side1 {
  5546. position: relative;
  5547. border-radius: 5px 5px 0 0;
  5548. background-clip: padding-box;
  5549. overflow: hidden;
  5550. }
  5551. /* line 1341, ../scss/styles.scss */
  5552. article.node-materiau.vm-cardbig .group-header, article.node-breve.vm-cardbig .group-header {
  5553. position: absolute;
  5554. bottom: 0;
  5555. z-index: 2;
  5556. width: 405px;
  5557. padding: 10px;
  5558. font-size: 20px;
  5559. font-weight: 300;
  5560. line-height: 1.1;
  5561. background-color: white;
  5562. background-color: rgba(255, 255, 255, 0.8);
  5563. *background-color: white;
  5564. text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
  5565. -webkit-transition: background-color 0.2s ease-out;
  5566. transition: background-color 0.2s ease-out;
  5567. }
  5568. /* line 1345, ../scss/styles.scss */
  5569. article.node-materiau.vm-cardbig .group-header .field-name-title-field, article.node-breve.vm-cardbig .group-header .field-name-title-field {
  5570. font-weight: 700;
  5571. }
  5572. /* line 1346, ../scss/styles.scss */
  5573. article.node-materiau.vm-cardbig .group-header .field-name-field-nature-titre, article.node-breve.vm-cardbig .group-header .field-name-field-nature-titre {
  5574. font-size: 14px;
  5575. }
  5576. /* line 1348, ../scss/styles.scss */
  5577. 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 {
  5578. display: moz-inline-stack;
  5579. display: inline-block;
  5580. vertical-align: top;
  5581. zoom: 1;
  5582. *display: inline;
  5583. font-size: 12px;
  5584. vertical-align: bottom;
  5585. width: 48%;
  5586. }
  5587. /* line 1349, ../scss/styles.scss */
  5588. article.node-materiau.vm-cardbig .group-header .field-name-field-localisation, article.node-breve.vm-cardbig .group-header .field-name-field-localisation {
  5589. text-align: right;
  5590. }
  5591. /* line 1350, ../scss/styles.scss */
  5592. .ie8 article.node-materiau.vm-cardbig .group-header, .ie8 article.node-breve.vm-cardbig .group-header {
  5593. background: #fff;
  5594. font-color: #000;
  5595. line-height: 1em;
  5596. padding: 20px;
  5597. border-bottom: 1px solid #C6C6C6;
  5598. }
  5599. /* line 1354, ../scss/styles.scss */
  5600. article.node-materiau.vm-cardbig.node-breve .group-header, article.node-breve.vm-cardbig.node-breve .group-header {
  5601. color: #fff;
  5602. background-color: black;
  5603. background-color: rgba(0, 0, 0, 0.7);
  5604. *background-color: black;
  5605. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  5606. -webkit-transition: background-color 0.2s ease-out;
  5607. transition: background-color 0.2s ease-out;
  5608. }
  5609. /* line 1356, ../scss/styles.scss */
  5610. 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 {
  5611. font-size: 12px;
  5612. font-weight: 500;
  5613. }
  5614. /* line 1357, ../scss/styles.scss */
  5615. .ie8 article.node-materiau.vm-cardbig.node-breve .group-header, .ie8 article.node-breve.vm-cardbig.node-breve .group-header {
  5616. background: #000;
  5617. font-color: #fff;
  5618. line-height: 1em;
  5619. padding: 20px;
  5620. }
  5621. /* line 1360, ../scss/styles.scss */
  5622. article.node-materiau.vm-cardbig .group-images, article.node-breve.vm-cardbig .group-images {
  5623. position: relative;
  5624. z-index: 1;
  5625. background-color: #fff;
  5626. height: auto;
  5627. }
  5628. /* line 77, ../scss/styles.scss */
  5629. article.node-materiau.vm-cardbig .group-images figure, article.node-breve.vm-cardbig .group-images figure {
  5630. position: absolute;
  5631. top: 0;
  5632. left: 0;
  5633. }
  5634. /* line 79, ../scss/styles.scss */
  5635. article.node-materiau.vm-cardbig .group-images figure:first-child, article.node-breve.vm-cardbig .group-images figure:first-child {
  5636. position: relative;
  5637. z-index: 1;
  5638. }
  5639. /* line 1363, ../scss/styles.scss */
  5640. 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 {
  5641. font-size: 12px;
  5642. font-weight: 300;
  5643. padding: 10px;
  5644. }
  5645. /* line 155, ../scss/styles.scss */
  5646. 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 {
  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 .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 > * {
  5653. padding: 10px;
  5654. }
  5655. /* line 159, ../scss/styles.scss */
  5656. 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 {
  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 .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 {
  5671. cursor: w-resize;
  5672. }
  5673. /* line 165, ../scss/styles.scss */
  5674. 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 {
  5675. cursor: e-resize;
  5676. }
  5677. /* line 1367, ../scss/styles.scss */
  5678. article.node-materiau.vm-cardbig .column-wrapper, article.node-breve.vm-cardbig .column-wrapper {
  5679. padding: 10px;
  5680. }
  5681. /* line 155, ../scss/styles.scss */
  5682. article.node-materiau.vm-cardbig .column-wrapper.columnized, article.node-breve.vm-cardbig .column-wrapper.columnized {
  5683. padding: 0;
  5684. -webkit-transition: margin-left 0.3s ease-out;
  5685. transition: margin-left 0.3s ease-out;
  5686. }
  5687. /* line 157, ../scss/styles.scss */
  5688. article.node-materiau.vm-cardbig .column-wrapper.columnized .column > *, article.node-breve.vm-cardbig .column-wrapper.columnized .column > * {
  5689. padding: 10px;
  5690. }
  5691. /* line 159, ../scss/styles.scss */
  5692. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher {
  5693. display: inline-block;
  5694. border-radius: 3px;
  5695. background-clip: padding-box;
  5696. color: #fff;
  5697. background-color: #3e3e3e;
  5698. vertical-align: middle;
  5699. font-weight: 700;
  5700. font-size: 22px;
  5701. padding: 0.05em 0.15em 0.2em 0.2em;
  5702. line-height: 0.5;
  5703. font-weight: normal;
  5704. }
  5705. /* line 164, ../scss/styles.scss */
  5706. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.prev-column {
  5707. cursor: w-resize;
  5708. }
  5709. /* line 165, ../scss/styles.scss */
  5710. article.node-materiau.vm-cardbig .column-wrapper.columnized .column-switcher.next-column, article.node-breve.vm-cardbig .column-wrapper.columnized .column-switcher.next-column {
  5711. cursor: e-resize;
  5712. }
  5713. /* line 1371, ../scss/styles.scss */
  5714. 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 {
  5715. font-size: 12px;
  5716. padding: 10px;
  5717. font-weight: 300;
  5718. }
  5719. /* line 1373, ../scss/styles.scss */
  5720. 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 {
  5721. font-size: 10px;
  5722. text-transform: lowercase;
  5723. float: none;
  5724. }
  5725. /* line 1374, ../scss/styles.scss */
  5726. 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 {
  5727. font-size: 14px;
  5728. }
  5729. /* line 1378, ../scss/styles.scss */
  5730. 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 {
  5731. font-size: 12px;
  5732. padding: 10px;
  5733. font-weight: 300;
  5734. }
  5735. /* line 1379, ../scss/styles.scss */
  5736. 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 {
  5737. color: #000;
  5738. }
  5739. /* line 1381, ../scss/styles.scss */
  5740. article.node-materiau.vm-cardbig .field-label, article.node-breve.vm-cardbig .field-label {
  5741. font-weight: 900;
  5742. margin: 0 0 0.5em;
  5743. }
  5744. /* line 1385, ../scss/styles.scss */
  5745. .ie8 article.node-materiau.vm-cardbig nav.nav, .ie8 article.node-breve.vm-cardbig nav.nav {
  5746. background: #FFF;
  5747. }
  5748. /* line 1388, ../scss/styles.scss */
  5749. 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 {
  5750. padding: 3em;
  5751. }
  5752. /* line 1390, ../scss/styles.scss */
  5753. 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 {
  5754. border: 2px solid #eee;
  5755. background-color: #eee;
  5756. color: #fff;
  5757. -webkit-transition: border 0.3s ease-out;
  5758. transition: border 0.3s ease-out;
  5759. -webkit-transition: background-color 0.3s ease-out;
  5760. transition: background-color 0.3s ease-out;
  5761. }
  5762. /* line 1397, ../scss/styles.scss */
  5763. 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 {
  5764. border: 2px solid #69CDCF;
  5765. background-color: #69CDCF;
  5766. }
  5767. /** CARD FULL */
  5768. /* line 1404, ../scss/styles.scss */
  5769. article.node-materiau.vm-cardfull, article.node-breve.vm-cardfull {
  5770. width: 850px;
  5771. height: 610px;
  5772. display: moz-inline-stack;
  5773. display: inline-block;
  5774. vertical-align: top;
  5775. zoom: 1;
  5776. *display: inline;
  5777. position: relative;
  5778. margin: 7px;
  5779. border-radius: 5px;
  5780. background-clip: padding-box;
  5781. background-color: #FFF;
  5782. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  5783. -webkit-transition: box-shadow 0.3s ease-out;
  5784. transition: box-shadow 0.3s ease-out;
  5785. font-size: 0px;
  5786. }
  5787. /* line 1034, ../scss/styles.scss */
  5788. article.node-materiau.vm-cardfull > div.side, article.node-breve.vm-cardfull > div.side {
  5789. border-radius: 5px;
  5790. background-clip: padding-box;
  5791. overflow: hidden;
  5792. }
  5793. /* line 1039, ../scss/styles.scss */
  5794. article.node-materiau.vm-cardfull.focused, article.node-breve.vm-cardfull.focused {
  5795. box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
  5796. }
  5797. /* line 1041, ../scss/styles.scss */
  5798. article.node-materiau.vm-cardfull.just-added, article.node-breve.vm-cardfull.just-added {
  5799. opacity: 0;
  5800. }
  5801. /* line 1043, ../scss/styles.scss */
  5802. article.node-materiau.vm-cardfull.associated, article.node-breve.vm-cardfull.associated {
  5803. -webkit-transition: margin 0.3s ease-out;
  5804. transition: margin 0.3s ease-out;
  5805. }
  5806. /* line 1045, ../scss/styles.scss */
  5807. article.node-materiau.vm-cardfull.associated.just-added, article.node-breve.vm-cardfull.associated.just-added {
  5808. margin-left: -850px;
  5809. margin-right: 850px;
  5810. }
  5811. /* line 1047, ../scss/styles.scss */
  5812. .modal-content article.node-materiau.vm-cardfull.associated, .modal-content article.node-breve.vm-cardfull.associated {
  5813. position: absolute;
  5814. top: 0;
  5815. left: 0;
  5816. z-index: 999;
  5817. }
  5818. /* line 1055, ../scss/styles.scss */
  5819. article.node-materiau.vm-cardfull.removed, article.node-breve.vm-cardfull.removed {
  5820. -webkit-transition: width 0.3s ease-out;
  5821. transition: width 0.3s ease-out;
  5822. width: 0;
  5823. padding-left: 0;
  5824. padding-right: 0;
  5825. margin-right: 0;
  5826. margin-left: 0;
  5827. overflow: hidden;
  5828. }
  5829. /* line 1065, ../scss/styles.scss */
  5830. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  5831. position: absolute;
  5832. top: 0;
  5833. right: 0;
  5834. z-index: 11;
  5835. padding: 5px 0;
  5836. border-radius: 0 5px 0 3px;
  5837. background-clip: padding-box;
  5838. font-size: 10px;
  5839. background-color: white;
  5840. background-color: rgba(255, 255, 255, 0.9);
  5841. *background-color: white;
  5842. color: #000;
  5843. }
  5844. /* line 1077, ../scss/styles.scss */
  5845. article.node-materiau.vm-cardfull nav.nav a, article.node-breve.vm-cardfull nav.nav a {
  5846. color: #000;
  5847. }
  5848. /* line 1078, ../scss/styles.scss */
  5849. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5850. background-color: white;
  5851. background-color: rgba(255, 255, 255, 0.9);
  5852. *background-color: white;
  5853. }
  5854. /* line 1079, ../scss/styles.scss */
  5855. article.node-materiau.vm-cardfull nav.nav span.op, article.node-breve.vm-cardfull nav.nav span.op {
  5856. font-weight: 900;
  5857. font-size: 14px;
  5858. }
  5859. /* line 1081, ../scss/styles.scss */
  5860. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5861. padding: 0;
  5862. margin: 0;
  5863. }
  5864. /* line 1083, ../scss/styles.scss */
  5865. article.node-materiau.vm-cardfull nav.nav section, article.node-breve.vm-cardfull nav.nav section {
  5866. position: relative;
  5867. }
  5868. /* line 1086, ../scss/styles.scss */
  5869. article.node-materiau.vm-cardfull nav.nav section > i, article.node-breve.vm-cardfull nav.nav section > i {
  5870. margin: 0 5px;
  5871. }
  5872. /* line 1086, ../scss/styles.scss */
  5873. article.node-materiau.vm-cardfull nav.nav section > i:hover, article.node-breve.vm-cardfull nav.nav section > i:hover {
  5874. cursor: pointer;
  5875. }
  5876. /* line 1089, ../scss/styles.scss */
  5877. article.node-materiau.vm-cardfull nav.nav ul, article.node-breve.vm-cardfull nav.nav ul {
  5878. position: absolute;
  5879. right: 0;
  5880. top: 0;
  5881. margin-right: 22px;
  5882. min-width: 80px;
  5883. padding: 0;
  5884. display: block;
  5885. border-radius: 3px;
  5886. background-clip: padding-box;
  5887. box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
  5888. }
  5889. /* line 1093, ../scss/styles.scss */
  5890. article.node-materiau.vm-cardfull nav.nav ul li, article.node-breve.vm-cardfull nav.nav ul li {
  5891. padding: 0;
  5892. margin: 0;
  5893. line-height: 1;
  5894. display: block;
  5895. height: 0;
  5896. overflow: hidden;
  5897. -webkit-transition: height 0.2s ease-out;
  5898. transition: height 0.2s ease-out;
  5899. }
  5900. /* line 1097, ../scss/styles.scss */
  5901. article.node-materiau.vm-cardfull nav.nav ul li a, article.node-breve.vm-cardfull nav.nav ul li a {
  5902. display: block;
  5903. }
  5904. /* line 1100, ../scss/styles.scss */
  5905. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links {
  5906. width: 160px;
  5907. font-size: 0;
  5908. }
  5909. /* line 1103, ../scss/styles.scss */
  5910. article.node-materiau.vm-cardfull nav.nav ul.flag-lists-entity-links > *, article.node-breve.vm-cardfull nav.nav ul.flag-lists-entity-links > * {
  5911. font-size: 11px;
  5912. }
  5913. /* line 1108, ../scss/styles.scss */
  5914. 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 {
  5915. display: moz-inline-stack;
  5916. display: inline-block;
  5917. vertical-align: top;
  5918. zoom: 1;
  5919. *display: inline;
  5920. min-width: 48%;
  5921. max-width: 98%;
  5922. padding-left: 2px;
  5923. }
  5924. /* line 1110, ../scss/styles.scss */
  5925. 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 {
  5926. color: #a6a6a6;
  5927. -webkit-transition: color 0.2s ease-out;
  5928. transition: color 0.2s ease-out;
  5929. }
  5930. /* line 1112, ../scss/styles.scss */
  5931. 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 {
  5932. color: #000;
  5933. text-decoration: none;
  5934. }
  5935. /* line 1116, ../scss/styles.scss */
  5936. 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 {
  5937. display: block;
  5938. width: 100%;
  5939. }
  5940. /* line 1118, ../scss/styles.scss */
  5941. 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 > * {
  5942. margin-top: 1px;
  5943. padding-top: 1px;
  5944. border-top: 1px solid #e6e6e6;
  5945. }
  5946. /* line 1119, ../scss/styles.scss */
  5947. 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 {
  5948. color: #000;
  5949. }
  5950. /* line 1121, ../scss/styles.scss */
  5951. 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 {
  5952. background: transparent url("../img/ajax-loader.gif") no-repeat 98% center;
  5953. }
  5954. /* line 1122, ../scss/styles.scss */
  5955. 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 {
  5956. visibility: hidden;
  5957. }
  5958. /* line 1127, ../scss/styles.scss */
  5959. .ie8 article.node-materiau.vm-cardfull nav.nav ul, .ie8 article.node-breve.vm-cardfull nav.nav ul {
  5960. background: #FFF;
  5961. }
  5962. /* line 1132, ../scss/styles.scss */
  5963. article.node-materiau.vm-cardfull nav.nav section:hover ul, article.node-breve.vm-cardfull nav.nav section:hover ul {
  5964. padding: 5px 5px;
  5965. }
  5966. /* line 1134, ../scss/styles.scss */
  5967. article.node-materiau.vm-cardfull nav.nav section:hover ul li, article.node-breve.vm-cardfull nav.nav section:hover ul li {
  5968. height: 17px;
  5969. }
  5970. /* line 1147, ../scss/styles.scss */
  5971. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  5972. position: absolute;
  5973. top: 0;
  5974. left: 0;
  5975. z-index: 11;
  5976. padding: 5px;
  5977. border-radius: 5px 0 3px 0;
  5978. background-clip: padding-box;
  5979. font-size: 10px;
  5980. vertical-align: top;
  5981. background-color: white;
  5982. background-color: rgba(255, 255, 255, 0.9);
  5983. *background-color: white;
  5984. color: #000;
  5985. }
  5986. /* line 1153, ../scss/styles.scss */
  5987. article.node-materiau.vm-cardfull div.workflow span, article.node-breve.vm-cardfull div.workflow span {
  5988. padding: 3px 0 0 4px;
  5989. display: moz-inline-stack;
  5990. display: inline-block;
  5991. vertical-align: top;
  5992. zoom: 1;
  5993. *display: inline;
  5994. }
  5995. /* line 1156, ../scss/styles.scss */
  5996. article.node-materiau.vm-cardfull .field-name-field-description .upgrade, article.node-breve.vm-cardfull .field-name-field-description .upgrade {
  5997. font-size: 12px;
  5998. padding-top: 4em;
  5999. margin-top: -4.5em;
  6000. background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fff 4em);
  6001. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 4em);
  6002. position: relative;
  6003. }
  6004. /* line 1164, ../scss/styles.scss */
  6005. 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 {
  6006. padding: 10px;
  6007. font-size: 12px;
  6008. }
  6009. /* line 1166, ../scss/styles.scss */
  6010. 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 {
  6011. display: block;
  6012. margin: 10px 0;
  6013. font-size: 18px;
  6014. padding: 0.1em 0.6em 0.2em;
  6015. border-radius: 0.3em;
  6016. background-clip: padding-box;
  6017. font-weight: bold;
  6018. border: 2px solid #69CDCF;
  6019. background-color: #69CDCF;
  6020. color: #fff;
  6021. cursor: pointer;
  6022. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6023. -webkit-transition: text-shadow 0.2s ease-out;
  6024. transition: text-shadow 0.2s ease-out;
  6025. text-align: center;
  6026. text-decoration: none;
  6027. }
  6028. /* line 66, ../scss/styles.scss */
  6029. 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 {
  6030. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  6031. }
  6032. /* line 69, ../scss/styles.scss */
  6033. 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 {
  6034. -webkit-transition: text-shadow 0s ease-out;
  6035. transition: text-shadow 0s ease-out;
  6036. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  6037. }
  6038. /* line 1406, ../scss/styles.scss */
  6039. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  6040. top: 0;
  6041. }
  6042. /* line 1410, ../scss/styles.scss */
  6043. article.node-materiau.vm-cardfull > *, article.node-breve.vm-cardfull > * {
  6044. font-size: 16px;
  6045. }
  6046. /* line 1412, ../scss/styles.scss */
  6047. article.node-materiau.vm-cardfull > .side, article.node-breve.vm-cardfull > .side {
  6048. display: moz-inline-stack;
  6049. display: inline-block;
  6050. vertical-align: top;
  6051. zoom: 1;
  6052. *display: inline;
  6053. width: 50%;
  6054. }
  6055. /* line 1413, ../scss/styles.scss */
  6056. article.node-materiau.vm-cardfull > .side.group-side-left, article.node-breve.vm-cardfull > .side.group-side-left {
  6057. border-radius: 5px 0 0 5px;
  6058. background-clip: padding-box;
  6059. }
  6060. /* line 1416, ../scss/styles.scss */
  6061. article.node-materiau.vm-cardfull > .side.group-side-right, article.node-breve.vm-cardfull > .side.group-side-right {
  6062. border-radius: 0 5px 5px 0;
  6063. background-clip: padding-box;
  6064. }
  6065. /* line 1422, ../scss/styles.scss */
  6066. article.node-materiau.vm-cardfull .group-images, article.node-breve.vm-cardfull .group-images {
  6067. position: relative;
  6068. z-index: 1;
  6069. background-color: #fff;
  6070. }
  6071. /* line 77, ../scss/styles.scss */
  6072. article.node-materiau.vm-cardfull .group-images figure, article.node-breve.vm-cardfull .group-images figure {
  6073. position: absolute;
  6074. top: 0;
  6075. left: 0;
  6076. }
  6077. /* line 79, ../scss/styles.scss */
  6078. article.node-materiau.vm-cardfull .group-images figure:first-child, article.node-breve.vm-cardfull .group-images figure:first-child {
  6079. position: relative;
  6080. z-index: 1;
  6081. }
  6082. /* line 1424, ../scss/styles.scss */
  6083. article.node-materiau.vm-cardfull .group-header, article.node-breve.vm-cardfull .group-header {
  6084. font-size: 20px;
  6085. font-weight: 300;
  6086. padding: 10px;
  6087. }
  6088. /* line 1426, ../scss/styles.scss */
  6089. article.node-materiau.vm-cardfull .group-header .field-name-title-field, article.node-breve.vm-cardfull .group-header .field-name-title-field {
  6090. font-weight: 700;
  6091. }
  6092. /* line 1427, ../scss/styles.scss */
  6093. 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 {
  6094. display: moz-inline-stack;
  6095. display: inline-block;
  6096. vertical-align: top;
  6097. zoom: 1;
  6098. *display: inline;
  6099. font-size: 12px;
  6100. padding-right: 15px;
  6101. }
  6102. /* line 1431, ../scss/styles.scss */
  6103. article.node-materiau.vm-cardfull.node-breve .group-header, article.node-breve.vm-cardfull.node-breve .group-header {
  6104. color: #fff;
  6105. background-color: black;
  6106. background-color: rgba(0, 0, 0, 0.7);
  6107. *background-color: black;
  6108. text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  6109. -webkit-transition: background-color 0.2s ease-out;
  6110. transition: background-color 0.2s ease-out;
  6111. }
  6112. /* line 1433, ../scss/styles.scss */
  6113. 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 {
  6114. font-weight: 500;
  6115. }
  6116. /* line 1437, ../scss/styles.scss */
  6117. 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 {
  6118. font-size: 12px;
  6119. font-weight: 300;
  6120. padding: 10px;
  6121. }
  6122. /* line 1441, ../scss/styles.scss */
  6123. article.node-materiau.vm-cardfull .field-name-field-attachments, article.node-breve.vm-cardfull .field-name-field-attachments {
  6124. padding: 10px;
  6125. font-size: 12px;
  6126. }
  6127. /* line 1447, ../scss/styles.scss */
  6128. 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 {
  6129. font-size: 12px;
  6130. padding: 10px;
  6131. font-weight: 300;
  6132. display: moz-inline-stack;
  6133. display: inline-block;
  6134. vertical-align: top;
  6135. zoom: 1;
  6136. *display: inline;
  6137. width: 40%;
  6138. }
  6139. /* line 1450, ../scss/styles.scss */
  6140. 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 {
  6141. margin-top: 1em;
  6142. }
  6143. /* line 1451, ../scss/styles.scss */
  6144. 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 {
  6145. font-size: 10px;
  6146. text-transform: lowercase;
  6147. float: none;
  6148. }
  6149. /* line 1452, ../scss/styles.scss */
  6150. 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 {
  6151. font-size: 14px;
  6152. }
  6153. /* line 1455, ../scss/styles.scss */
  6154. 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 {
  6155. font-size: 12px;
  6156. padding: 10px;
  6157. font-weight: 300;
  6158. }
  6159. /* line 1456, ../scss/styles.scss */
  6160. 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 {
  6161. color: #000;
  6162. }
  6163. /* line 1458, ../scss/styles.scss */
  6164. article.node-materiau.vm-cardfull .field-label, article.node-breve.vm-cardfull .field-label {
  6165. font-weight: 900;
  6166. margin: 0 0 0.5em;
  6167. }
  6168. /* line 1461, ../scss/styles.scss */
  6169. article.node-materiau.vm-cardfull nav.nav, article.node-breve.vm-cardfull nav.nav {
  6170. margin: 5px;
  6171. }
  6172. /* line 1463, ../scss/styles.scss */
  6173. article.node-materiau.vm-cardfull div.workflow, article.node-breve.vm-cardfull div.workflow {
  6174. margin: 5px;
  6175. }
  6176. /* line 1466, ../scss/styles.scss */
  6177. 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 {
  6178. padding: 3em;
  6179. }
  6180. /* line 1468, ../scss/styles.scss */
  6181. 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 {
  6182. border: 2px solid #eee;
  6183. background-color: #eee;
  6184. color: #fff;
  6185. -webkit-transition: border 0.3s ease-out;
  6186. transition: border 0.3s ease-out;
  6187. -webkit-transition: background-color 0.3s ease-out;
  6188. transition: background-color 0.3s ease-out;
  6189. }
  6190. /* line 1475, ../scss/styles.scss */
  6191. 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 {
  6192. border: 2px solid #69CDCF;
  6193. background-color: #69CDCF;
  6194. }
  6195. /* line 36, ../scss/misc.scss */
  6196. div.messages {
  6197. padding: 9px;
  6198. margin: 0.5em 0 0;
  6199. color: #3a87ad;
  6200. background: #d9edf7;
  6201. border: 1px solid #bce8f1;
  6202. border-radius: 5px;
  6203. font-size: 12px;
  6204. }
  6205. /* line 14, ../scss/misc.scss */
  6206. div.messages.warning {
  6207. color: #c09853;
  6208. background-color: #fcf8e3;
  6209. border-color: #fbeed5;
  6210. }
  6211. /* line 20, ../scss/misc.scss */
  6212. div.messages.error {
  6213. color: #b94a48;
  6214. background-color: #f2dede;
  6215. border-color: #eed3d7;
  6216. }
  6217. /* line 27, ../scss/misc.scss */
  6218. div.messages.status {
  6219. color: #468847;
  6220. background-color: #dff0d8;
  6221. border-color: #d6e9c6;
  6222. font-size: 14px;
  6223. }
  6224. /* line 38, ../scss/misc.scss */
  6225. .messages-label {
  6226. display: none;
  6227. }
  6228. /* line 40, ../scss/misc.scss */
  6229. #better-messages-wrapper {
  6230. background-color: rgba(255, 255, 255, 0.7);
  6231. padding: 10px;
  6232. border-radius: 5px;
  6233. background-clip: padding-box;
  6234. box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  6235. }
  6236. /* line 44, ../scss/misc.scss */
  6237. #better-messages-wrapper #better-messages-default div.messages {
  6238. padding: 9px;
  6239. margin: 0.5em 0 0;
  6240. color: #3a87ad;
  6241. background: #d9edf7;
  6242. border: 1px solid #bce8f1;
  6243. border-radius: 5px;
  6244. font-size: 12px;
  6245. margin: 0 0 10px 0;
  6246. }
  6247. /* line 14, ../scss/misc.scss */
  6248. #better-messages-wrapper #better-messages-default div.messages.warning {
  6249. color: #c09853;
  6250. background-color: #fcf8e3;
  6251. border-color: #fbeed5;
  6252. }
  6253. /* line 20, ../scss/misc.scss */
  6254. #better-messages-wrapper #better-messages-default div.messages.error {
  6255. color: #b94a48;
  6256. background-color: #f2dede;
  6257. border-color: #eed3d7;
  6258. }
  6259. /* line 27, ../scss/misc.scss */
  6260. #better-messages-wrapper #better-messages-default div.messages.status {
  6261. color: #468847;
  6262. background-color: #dff0d8;
  6263. border-color: #d6e9c6;
  6264. font-size: 14px;
  6265. }
  6266. /* line 47, ../scss/misc.scss */
  6267. #better-messages-wrapper #better-messages-default .footer {
  6268. border: none;
  6269. padding: 0;
  6270. margin: 0;
  6271. }
  6272. /* line 49, ../scss/misc.scss */
  6273. #better-messages-wrapper #better-messages-default .footer a.message-close {
  6274. background: #fff url("../img/close.png") no-repeat center center;
  6275. width: 15px;
  6276. height: 15px;
  6277. border-radius: 3px;
  6278. background-clip: padding-box;
  6279. display: block;
  6280. }
  6281. /** Tab navigation */
  6282. /**
  6283. * icons
  6284. */
  6285. /**
  6286. * figures
  6287. */
  6288. /* line 176, ../scss/misc.scss */
  6289. figure figcaption {
  6290. display: none;
  6291. }
  6292. /* line 179, ../scss/misc.scss */
  6293. figure .blank {
  6294. position: absolute;
  6295. top: 0;
  6296. left: 0;
  6297. width: 100%;
  6298. height: 100%;
  6299. }
  6300. /* ==|== print styles =======================================================
  6301. Print styles.
  6302. Inlined to avoid required HTTP connection: h5bp.com/r
  6303. ========================================================================== */
  6304. /* line 206, ../scss/misc.scss */
  6305. a:focus {
  6306. outline: 0;
  6307. }
  6308. /*
  6309. * Improves readability when focused and also mouse hovered in all browsers.
  6310. */
  6311. /* line 214, ../scss/misc.scss */
  6312. a:active,
  6313. a:hover {
  6314. outline: 0;
  6315. }
  6316. /** COLORBOX */
  6317. /* line 221, ../scss/misc.scss */
  6318. #colorbox {
  6319. border-radius: 2px;
  6320. background-clip: padding-box;
  6321. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  6322. }
  6323. /* line 223, ../scss/misc.scss */
  6324. #colorbox #cboxLoadedContent {
  6325. background-color: #fff;
  6326. }
  6327. /** embed player */
  6328. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6329. /* line 229, ../scss/misc.scss */
  6330. .embedded-video .player iframe {
  6331. max-width: 100%;
  6332. height: auto;
  6333. }
  6334. }
  6335. /** devel */
  6336. /* line 239, ../scss/misc.scss */
  6337. .not-logged-in #tasks ul.tabs.primary {
  6338. display: none;
  6339. }
  6340. /** AUTOCOMPLETE */
  6341. /* line 1485, ../scss/styles.scss */
  6342. #autocomplete {
  6343. border: 0;
  6344. border-radius: 3px;
  6345. background-clip: padding-box;
  6346. background-color: black;
  6347. background-color: rgba(0, 0, 0, 0.6);
  6348. *background-color: black;
  6349. text-align: left;
  6350. margin-left: 2px;
  6351. }
  6352. /* line 1490, ../scss/styles.scss */
  6353. .oldie #autocomplete {
  6354. background-color: #545454;
  6355. }
  6356. /* line 1491, ../scss/styles.scss */
  6357. #autocomplete li {
  6358. color: #FFF;
  6359. background-color: transparent;
  6360. font-size: 12px;
  6361. }
  6362. /* line 1493, ../scss/styles.scss */
  6363. #autocomplete li.selected {
  6364. background-color: black;
  6365. background-color: rgba(0, 0, 0, 0.8);
  6366. *background-color: black;
  6367. }
  6368. /* line 1494, ../scss/styles.scss */
  6369. #autocomplete li div {
  6370. padding: 0.1em 5px;
  6371. }
  6372. /**
  6373. * the old modal api (balck bg) for contextual forms (create new flag list)
  6374. */
  6375. /* line 1535, ../scss/styles.scss */
  6376. #modal {
  6377. background-color: rgba(0, 0, 0, 0.7);
  6378. border-radius: 5px;
  6379. background-clip: padding-box;
  6380. border: 0;
  6381. font-size: 12px;
  6382. }
  6383. /* line 1505, ../scss/styles.scss */
  6384. #modal * {
  6385. color: #fff;
  6386. background-color: transparent;
  6387. }
  6388. /* line 1507, ../scss/styles.scss */
  6389. #modal form {
  6390. background-color: transparent;
  6391. color: #fff;
  6392. border: 0px;
  6393. }
  6394. /* line 1510, ../scss/styles.scss */
  6395. #modal form .form-actions {
  6396. background-color: transparent;
  6397. margin: 0;
  6398. padding: 0;
  6399. border: 0;
  6400. }
  6401. /* line 1513, ../scss/styles.scss */
  6402. #modal form input.form-text, #modal form textarea, #modal form div.grippie {
  6403. background-color: #fff;
  6404. color: #000;
  6405. border: 0;
  6406. }
  6407. /* line 1515, ../scss/styles.scss */
  6408. #modal form .form-actions {
  6409. text-align: right;
  6410. }
  6411. /* line 1516, ../scss/styles.scss */
  6412. #modal form input.form-submit {
  6413. border-style: solid;
  6414. border-width: 0;
  6415. cursor: pointer;
  6416. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6417. font-weight: normal;
  6418. line-height: normal;
  6419. margin: 0 0 1.25rem;
  6420. position: relative;
  6421. text-decoration: none;
  6422. text-align: center;
  6423. -webkit-appearance: none;
  6424. -moz-appearance: none;
  6425. border-radius: 0;
  6426. display: inline-block;
  6427. padding-top: 0.625rem;
  6428. padding-right: 1.25rem;
  6429. padding-bottom: 0.6875rem;
  6430. padding-left: 1.25rem;
  6431. font-size: 0.6875rem;
  6432. background-color: #008CBA;
  6433. border-color: #007095;
  6434. color: #FFFFFF;
  6435. -webkit-transition: background-color 300ms ease-out;
  6436. transition: background-color 300ms ease-out;
  6437. }
  6438. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6439. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  6440. background-color: #007095;
  6441. }
  6442. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6443. #modal form input.form-submit:hover, #modal form input.form-submit:focus {
  6444. color: #FFFFFF;
  6445. }
  6446. /* line 1519, ../scss/styles.scss */
  6447. #modal form input.form-submit[name="create"] {
  6448. border-style: solid;
  6449. border-width: 0;
  6450. cursor: pointer;
  6451. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6452. font-weight: normal;
  6453. line-height: normal;
  6454. margin: 0 0 1.25rem;
  6455. position: relative;
  6456. text-decoration: none;
  6457. text-align: center;
  6458. -webkit-appearance: none;
  6459. -moz-appearance: none;
  6460. border-radius: 0;
  6461. display: inline-block;
  6462. padding-top: 0.625rem;
  6463. padding-right: 1.25rem;
  6464. padding-bottom: 0.6875rem;
  6465. padding-left: 1.25rem;
  6466. font-size: 0.6875rem;
  6467. background-color: #43AC6A;
  6468. border-color: #368a55;
  6469. color: #FFFFFF;
  6470. -webkit-transition: background-color 300ms ease-out;
  6471. transition: background-color 300ms ease-out;
  6472. }
  6473. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6474. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  6475. background-color: #368a55;
  6476. }
  6477. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6478. #modal form input.form-submit[name="create"]:hover, #modal form input.form-submit[name="create"]:focus {
  6479. color: #FFFFFF;
  6480. }
  6481. /* line 1522, ../scss/styles.scss */
  6482. #modal form input.form-submit[name="save"] {
  6483. border-style: solid;
  6484. border-width: 0;
  6485. cursor: pointer;
  6486. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6487. font-weight: normal;
  6488. line-height: normal;
  6489. margin: 0 0 1.25rem;
  6490. position: relative;
  6491. text-decoration: none;
  6492. text-align: center;
  6493. -webkit-appearance: none;
  6494. -moz-appearance: none;
  6495. border-radius: 0;
  6496. display: inline-block;
  6497. padding-top: 0.625rem;
  6498. padding-right: 1.25rem;
  6499. padding-bottom: 0.6875rem;
  6500. padding-left: 1.25rem;
  6501. font-size: 0.6875rem;
  6502. background-color: #43AC6A;
  6503. border-color: #368a55;
  6504. color: #FFFFFF;
  6505. -webkit-transition: background-color 300ms ease-out;
  6506. transition: background-color 300ms ease-out;
  6507. }
  6508. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6509. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  6510. background-color: #368a55;
  6511. }
  6512. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6513. #modal form input.form-submit[name="save"]:hover, #modal form input.form-submit[name="save"]:focus {
  6514. color: #FFFFFF;
  6515. }
  6516. /* line 1525, ../scss/styles.scss */
  6517. #modal form input.form-submit[name="delete"] {
  6518. border-style: solid;
  6519. border-width: 0;
  6520. cursor: pointer;
  6521. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6522. font-weight: normal;
  6523. line-height: normal;
  6524. margin: 0 0 1.25rem;
  6525. position: relative;
  6526. text-decoration: none;
  6527. text-align: center;
  6528. -webkit-appearance: none;
  6529. -moz-appearance: none;
  6530. border-radius: 0;
  6531. display: inline-block;
  6532. padding-top: 0.625rem;
  6533. padding-right: 1.25rem;
  6534. padding-bottom: 0.6875rem;
  6535. padding-left: 1.25rem;
  6536. font-size: 0.6875rem;
  6537. background-color: #f04124;
  6538. border-color: #cf2a0e;
  6539. color: #FFFFFF;
  6540. -webkit-transition: background-color 300ms ease-out;
  6541. transition: background-color 300ms ease-out;
  6542. }
  6543. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6544. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  6545. background-color: #cf2a0e;
  6546. }
  6547. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6548. #modal form input.form-submit[name="delete"]:hover, #modal form input.form-submit[name="delete"]:focus {
  6549. color: #FFFFFF;
  6550. }
  6551. /* line 1528, ../scss/styles.scss */
  6552. #modal form input.form-submit[name="cancel"] {
  6553. border-style: solid;
  6554. border-width: 0;
  6555. cursor: pointer;
  6556. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6557. font-weight: normal;
  6558. line-height: normal;
  6559. margin: 0 0 1.25rem;
  6560. position: relative;
  6561. text-decoration: none;
  6562. text-align: center;
  6563. -webkit-appearance: none;
  6564. -moz-appearance: none;
  6565. border-radius: 0;
  6566. display: inline-block;
  6567. padding-top: 0.625rem;
  6568. padding-right: 1.25rem;
  6569. padding-bottom: 0.6875rem;
  6570. padding-left: 1.25rem;
  6571. font-size: 0.6875rem;
  6572. background-color: #e7e7e7;
  6573. border-color: #b9b9b9;
  6574. color: #333333;
  6575. -webkit-transition: background-color 300ms ease-out;
  6576. transition: background-color 300ms ease-out;
  6577. }
  6578. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6579. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  6580. background-color: #b9b9b9;
  6581. }
  6582. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6583. #modal form input.form-submit[name="cancel"]:hover, #modal form input.form-submit[name="cancel"]:focus {
  6584. color: #333333;
  6585. }
  6586. /* line 1537, ../scss/styles.scss */
  6587. #modal > * {
  6588. padding: 10px;
  6589. }
  6590. /* line 1541, ../scss/styles.scss */
  6591. #modal .form-item-flag-lists-name input {
  6592. width: 95%;
  6593. }
  6594. /* line 1544, ../scss/styles.scss */
  6595. #modal .actions {
  6596. text-align: right;
  6597. }
  6598. /**
  6599. * the new modal api used for preview and register modal
  6600. */
  6601. /* line 1552, ../scss/styles.scss */
  6602. .modal-wrapper {
  6603. bottom: 0;
  6604. left: 0;
  6605. position: fixed;
  6606. right: 0;
  6607. text-align: center;
  6608. top: 0;
  6609. white-space: nowrap;
  6610. z-index: 99998;
  6611. }
  6612. /* line 1553, ../scss/styles.scss */
  6613. .modal-wrapper:before {
  6614. content: "";
  6615. display: inline-block;
  6616. height: 100%;
  6617. margin-right: -0.25em;
  6618. vertical-align: middle;
  6619. }
  6620. /* line 1560, ../scss/styles.scss */
  6621. .modal-wrapper:after, .modal-wrapper:before {
  6622. -moz-box-sizing: border-box;
  6623. }
  6624. /* line 1575, ../scss/styles.scss */
  6625. .modal-wrapper .modal-bg {
  6626. background-color: #000;
  6627. position: absolute;
  6628. top: 0;
  6629. left: 0;
  6630. width: 100%;
  6631. height: 100%;
  6632. opacity: 0.5;
  6633. }
  6634. /* line 1583, ../scss/styles.scss */
  6635. .modal-wrapper .modal-content {
  6636. position: relative;
  6637. display: inline-block;
  6638. margin: 0 auto;
  6639. text-align: left;
  6640. vertical-align: middle;
  6641. white-space: normal;
  6642. min-height: 200px;
  6643. }
  6644. /** MODALCONTENT */
  6645. /** JSCROLLPAN */
  6646. /* line 1642, ../scss/styles.scss */
  6647. .jspContainer .jspVerticalBar {
  6648. background-color: transparent;
  6649. width: 5px;
  6650. }
  6651. /* line 1646, ../scss/styles.scss */
  6652. .jspContainer .jspVerticalBar .jspTrack {
  6653. background-color: transparent;
  6654. }
  6655. /* line 1648, ../scss/styles.scss */
  6656. .jspContainer .jspVerticalBar .jspTrack .jspDrag {
  6657. background-color: #ccc;
  6658. border-radius: 3px;
  6659. background-clip: padding-box;
  6660. }
  6661. /** TOOLTIP */
  6662. /* line 1657, ../scss/styles.scss */
  6663. #tooltip {
  6664. position: absolute;
  6665. z-index: 999;
  6666. max-width: 180px;
  6667. background-color: white;
  6668. padding: 5px;
  6669. border-radius: 3px;
  6670. background-clip: padding-box;
  6671. font-size: 12px;
  6672. font-weight: 500;
  6673. box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  6674. }
  6675. /* line 1661, ../scss/styles.scss */
  6676. #tooltip.op-visible {
  6677. -webkit-transition: opacity 0.1s ease-out;
  6678. transition: opacity 0.1s ease-out;
  6679. }
  6680. /** FEEDBACK */
  6681. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  6682. /* line 1668, ../scss/styles.scss */
  6683. #block-feedback-form {
  6684. bottom: 5px;
  6685. left: 5px;
  6686. right: auto;
  6687. }
  6688. }
  6689. /* line 1672, ../scss/styles.scss */
  6690. #block-feedback-form h2 {
  6691. line-height: 1.2;
  6692. font-size: 14px;
  6693. margin: 0;
  6694. }
  6695. /* line 1674, ../scss/styles.scss */
  6696. #block-feedback-form h2 .title {
  6697. display: none;
  6698. }
  6699. /* line 1677, ../scss/styles.scss */
  6700. #block-feedback-form #feedback-form-toggle {
  6701. padding: 2px 3px;
  6702. border-radius: 3px;
  6703. background-clip: padding-box;
  6704. background-color: #ff7600;
  6705. color: #fff;
  6706. line-height: 2;
  6707. font-weight: 900;
  6708. }
  6709. /* line 1681, ../scss/styles.scss */
  6710. #block-feedback-form .content {
  6711. background-color: rgba(0, 0, 0, 0.7);
  6712. border-radius: 5px;
  6713. background-clip: padding-box;
  6714. border: 0;
  6715. font-size: 12px;
  6716. }
  6717. /* line 1505, ../scss/styles.scss */
  6718. #block-feedback-form .content * {
  6719. color: #fff;
  6720. background-color: transparent;
  6721. }
  6722. /* line 1507, ../scss/styles.scss */
  6723. #block-feedback-form .content form {
  6724. background-color: transparent;
  6725. color: #fff;
  6726. border: 0px;
  6727. }
  6728. /* line 1510, ../scss/styles.scss */
  6729. #block-feedback-form .content form .form-actions {
  6730. background-color: transparent;
  6731. margin: 0;
  6732. padding: 0;
  6733. border: 0;
  6734. }
  6735. /* line 1513, ../scss/styles.scss */
  6736. #block-feedback-form .content form input.form-text, #block-feedback-form .content form textarea, #block-feedback-form .content form div.grippie {
  6737. background-color: #fff;
  6738. color: #000;
  6739. border: 0;
  6740. }
  6741. /* line 1515, ../scss/styles.scss */
  6742. #block-feedback-form .content form .form-actions {
  6743. text-align: right;
  6744. }
  6745. /* line 1516, ../scss/styles.scss */
  6746. #block-feedback-form .content form input.form-submit {
  6747. border-style: solid;
  6748. border-width: 0;
  6749. cursor: pointer;
  6750. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6751. font-weight: normal;
  6752. line-height: normal;
  6753. margin: 0 0 1.25rem;
  6754. position: relative;
  6755. text-decoration: none;
  6756. text-align: center;
  6757. -webkit-appearance: none;
  6758. -moz-appearance: none;
  6759. border-radius: 0;
  6760. display: inline-block;
  6761. padding-top: 0.625rem;
  6762. padding-right: 1.25rem;
  6763. padding-bottom: 0.6875rem;
  6764. padding-left: 1.25rem;
  6765. font-size: 0.6875rem;
  6766. background-color: #008CBA;
  6767. border-color: #007095;
  6768. color: #FFFFFF;
  6769. -webkit-transition: background-color 300ms ease-out;
  6770. transition: background-color 300ms ease-out;
  6771. }
  6772. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6773. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6774. background-color: #007095;
  6775. }
  6776. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6777. #block-feedback-form .content form input.form-submit:hover, #block-feedback-form .content form input.form-submit:focus {
  6778. color: #FFFFFF;
  6779. }
  6780. /* line 1519, ../scss/styles.scss */
  6781. #block-feedback-form .content form input.form-submit[name="create"] {
  6782. border-style: solid;
  6783. border-width: 0;
  6784. cursor: pointer;
  6785. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6786. font-weight: normal;
  6787. line-height: normal;
  6788. margin: 0 0 1.25rem;
  6789. position: relative;
  6790. text-decoration: none;
  6791. text-align: center;
  6792. -webkit-appearance: none;
  6793. -moz-appearance: none;
  6794. border-radius: 0;
  6795. display: inline-block;
  6796. padding-top: 0.625rem;
  6797. padding-right: 1.25rem;
  6798. padding-bottom: 0.6875rem;
  6799. padding-left: 1.25rem;
  6800. font-size: 0.6875rem;
  6801. background-color: #43AC6A;
  6802. border-color: #368a55;
  6803. color: #FFFFFF;
  6804. -webkit-transition: background-color 300ms ease-out;
  6805. transition: background-color 300ms ease-out;
  6806. }
  6807. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6808. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6809. background-color: #368a55;
  6810. }
  6811. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6812. #block-feedback-form .content form input.form-submit[name="create"]:hover, #block-feedback-form .content form input.form-submit[name="create"]:focus {
  6813. color: #FFFFFF;
  6814. }
  6815. /* line 1522, ../scss/styles.scss */
  6816. #block-feedback-form .content form input.form-submit[name="save"] {
  6817. border-style: solid;
  6818. border-width: 0;
  6819. cursor: pointer;
  6820. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6821. font-weight: normal;
  6822. line-height: normal;
  6823. margin: 0 0 1.25rem;
  6824. position: relative;
  6825. text-decoration: none;
  6826. text-align: center;
  6827. -webkit-appearance: none;
  6828. -moz-appearance: none;
  6829. border-radius: 0;
  6830. display: inline-block;
  6831. padding-top: 0.625rem;
  6832. padding-right: 1.25rem;
  6833. padding-bottom: 0.6875rem;
  6834. padding-left: 1.25rem;
  6835. font-size: 0.6875rem;
  6836. background-color: #43AC6A;
  6837. border-color: #368a55;
  6838. color: #FFFFFF;
  6839. -webkit-transition: background-color 300ms ease-out;
  6840. transition: background-color 300ms ease-out;
  6841. }
  6842. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6843. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6844. background-color: #368a55;
  6845. }
  6846. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6847. #block-feedback-form .content form input.form-submit[name="save"]:hover, #block-feedback-form .content form input.form-submit[name="save"]:focus {
  6848. color: #FFFFFF;
  6849. }
  6850. /* line 1525, ../scss/styles.scss */
  6851. #block-feedback-form .content form input.form-submit[name="delete"] {
  6852. border-style: solid;
  6853. border-width: 0;
  6854. cursor: pointer;
  6855. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6856. font-weight: normal;
  6857. line-height: normal;
  6858. margin: 0 0 1.25rem;
  6859. position: relative;
  6860. text-decoration: none;
  6861. text-align: center;
  6862. -webkit-appearance: none;
  6863. -moz-appearance: none;
  6864. border-radius: 0;
  6865. display: inline-block;
  6866. padding-top: 0.625rem;
  6867. padding-right: 1.25rem;
  6868. padding-bottom: 0.6875rem;
  6869. padding-left: 1.25rem;
  6870. font-size: 0.6875rem;
  6871. background-color: #f04124;
  6872. border-color: #cf2a0e;
  6873. color: #FFFFFF;
  6874. -webkit-transition: background-color 300ms ease-out;
  6875. transition: background-color 300ms ease-out;
  6876. }
  6877. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6878. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6879. background-color: #cf2a0e;
  6880. }
  6881. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6882. #block-feedback-form .content form input.form-submit[name="delete"]:hover, #block-feedback-form .content form input.form-submit[name="delete"]:focus {
  6883. color: #FFFFFF;
  6884. }
  6885. /* line 1528, ../scss/styles.scss */
  6886. #block-feedback-form .content form input.form-submit[name="cancel"] {
  6887. border-style: solid;
  6888. border-width: 0;
  6889. cursor: pointer;
  6890. font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  6891. font-weight: normal;
  6892. line-height: normal;
  6893. margin: 0 0 1.25rem;
  6894. position: relative;
  6895. text-decoration: none;
  6896. text-align: center;
  6897. -webkit-appearance: none;
  6898. -moz-appearance: none;
  6899. border-radius: 0;
  6900. display: inline-block;
  6901. padding-top: 0.625rem;
  6902. padding-right: 1.25rem;
  6903. padding-bottom: 0.6875rem;
  6904. padding-left: 1.25rem;
  6905. font-size: 0.6875rem;
  6906. background-color: #e7e7e7;
  6907. border-color: #b9b9b9;
  6908. color: #333333;
  6909. -webkit-transition: background-color 300ms ease-out;
  6910. transition: background-color 300ms ease-out;
  6911. }
  6912. /* line 162, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6913. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6914. background-color: #b9b9b9;
  6915. }
  6916. /* line 168, ../bower_components/foundation/scss/foundation/components/_buttons.scss */
  6917. #block-feedback-form .content form input.form-submit[name="cancel"]:hover, #block-feedback-form .content form input.form-submit[name="cancel"]:focus {
  6918. color: #333333;
  6919. }
  6920. /* line 1683, ../scss/styles.scss */
  6921. .ie8 #block-feedback-form .content {
  6922. background: #000;
  6923. }
  6924. /* line 1686, ../scss/styles.scss */
  6925. #block-feedback-form #feedback-status-message {
  6926. background-color: #fff;
  6927. padding: 5px;
  6928. }
  6929. /** TASK / TABS **/
  6930. /* line 1704, ../scss/styles.scss */
  6931. #tasks ul.tabs {
  6932. display: moz-inline-stack;
  6933. display: inline-block;
  6934. vertical-align: top;
  6935. zoom: 1;
  6936. *display: inline;
  6937. border: 0 solid #fff;
  6938. padding: 0;
  6939. margin: 0;
  6940. }
  6941. /* line 1708, ../scss/styles.scss */
  6942. #tasks ul.tabs li {
  6943. padding: 0;
  6944. margin: 2px 5px;
  6945. border: 0 solid #fff;
  6946. }
  6947. /* line 1709, ../scss/styles.scss */
  6948. #tasks ul.tabs a {
  6949. border: 0;
  6950. color: #7f7f7f;
  6951. }
  6952. /* line 1711, ../scss/styles.scss */
  6953. #tasks ul.tabs a.active, #tasks ul.tabs a:hover {
  6954. font-weight: 900;
  6955. color: #000;
  6956. }
  6957. /* line 1691, ../scss/styles.scss */
  6958. #tasks ul.tabs.primary a {
  6959. font-size: 12px;
  6960. padding: 5px 10px;
  6961. background-color: #e6e6e6;
  6962. border-radius: 3px;
  6963. background-clip: padding-box;
  6964. }
  6965. /* line 1695, ../scss/styles.scss */
  6966. #tasks ul.tabs.primary a.active, #tasks ul.tabs.primary a:hover {
  6967. background-color: #e6e6e6;
  6968. }
  6969. /* line 1718, ../scss/styles.scss */
  6970. #tasks ul.tabs.secondary {
  6971. font-size: 10px;
  6972. padding: 0.5em 1em;
  6973. }
  6974. /** STATICS */
  6975. /** user */
  6976. /* line 1729, ../scss/styles.scss */
  6977. .page-user #main, .page-user-edit #main, .page-user-password #main, .page-user-reset #main, .page-toboggan #main {
  6978. background: #fff url("../img/user-page-bg.gif") no-repeat bottom right;
  6979. }
  6980. /* line 1731, ../scss/styles.scss */
  6981. .page-user .messages, .page-user-edit .messages, .page-user-password .messages, .page-user-reset .messages, .page-toboggan .messages {
  6982. width: 800px;
  6983. margin: 0 auto;
  6984. }
  6985. /* line 1733, ../scss/styles.scss */
  6986. .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 {
  6987. display: none;
  6988. }
  6989. /* line 1691, ../scss/styles.scss */
  6990. .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 {
  6991. font-size: 12px;
  6992. padding: 5px 10px;
  6993. background-color: #e6e6e6;
  6994. border-radius: 3px;
  6995. background-clip: padding-box;
  6996. }
  6997. /* line 1695, ../scss/styles.scss */
  6998. .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 {
  6999. background-color: #e6e6e6;
  7000. }
  7001. /* line 1736, ../scss/styles.scss */
  7002. .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 > * {
  7003. width: 800px;
  7004. margin: 0 auto;
  7005. padding-top: 1em;
  7006. font-size: 14px;
  7007. /* #user-profile-form */
  7008. }
  7009. /* line 1739, ../scss/styles.scss */
  7010. .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 {
  7011. margin-bottom: 1em;
  7012. }
  7013. /* line 1743, ../scss/styles.scss */
  7014. .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 {
  7015. font-size: 16px;
  7016. margin: 0;
  7017. padding: 10px 0 5px 0;
  7018. line-height: 1;
  7019. border: 0 solid #fff;
  7020. }
  7021. /* line 1745, ../scss/styles.scss */
  7022. .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 {
  7023. color: #000;
  7024. }
  7025. /* line 1748, ../scss/styles.scss */
  7026. .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 {
  7027. margin: 0 0 0.5em 0;
  7028. width: 100%;
  7029. }
  7030. /* line 1750, ../scss/styles.scss */
  7031. .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 {
  7032. display: moz-inline-stack;
  7033. display: inline-block;
  7034. vertical-align: top;
  7035. zoom: 1;
  7036. *display: inline;
  7037. vertical-align: middle;
  7038. }
  7039. /* line 1753, ../scss/styles.scss */
  7040. .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 {
  7041. margin-right: 1em;
  7042. min-width: 6em;
  7043. }
  7044. /* line 1754, ../scss/styles.scss */
  7045. .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 {
  7046. padding: 2px 4px;
  7047. }
  7048. /* line 1759, ../scss/styles.scss */
  7049. .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 {
  7050. margin: 0 0 2em 0;
  7051. }
  7052. /* line 1763, ../scss/styles.scss */
  7053. .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 {
  7054. width: 9em;
  7055. }
  7056. /* line 1764, ../scss/styles.scss */
  7057. .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 {
  7058. width: auto;
  7059. }
  7060. /* line 1765, ../scss/styles.scss */
  7061. .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 {
  7062. width: 15em;
  7063. margin-top: 0;
  7064. }
  7065. /* line 1771, ../scss/styles.scss */
  7066. .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 {
  7067. margin: 0;
  7068. }
  7069. /* line 1772, ../scss/styles.scss */
  7070. .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 {
  7071. font-size: 14px;
  7072. margin: 0;
  7073. }
  7074. /* line 1776, ../scss/styles.scss */
  7075. .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 {
  7076. display: moz-inline-stack;
  7077. display: inline-block;
  7078. vertical-align: top;
  7079. zoom: 1;
  7080. *display: inline;
  7081. width: auto;
  7082. margin-right: 1em;
  7083. }
  7084. /* line 1778, ../scss/styles.scss */
  7085. .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 {
  7086. margin: 0;
  7087. }
  7088. /* line 1782, ../scss/styles.scss */
  7089. .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 {
  7090. width: auto;
  7091. padding: 2px 4px;
  7092. height: auto;
  7093. }
  7094. /* line 1786, ../scss/styles.scss */
  7095. .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 {
  7096. font-size: 10px;
  7097. }
  7098. /* line 1789, ../scss/styles.scss */
  7099. .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 {
  7100. margin: 0;
  7101. text-align: right;
  7102. padding: 1em 0.5em;
  7103. }
  7104. /* line 1796, ../scss/styles.scss */
  7105. .page-user #content .inner-content > * #edit-profile-adherent-field-first-name, .page-user #content .inner-content > * #edit-profile-adherent-field-name,
  7106. .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,
  7107. .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,
  7108. .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,
  7109. .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,
  7110. .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,
  7111. .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,
  7112. .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,
  7113. .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,
  7114. .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,
  7115. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret {
  7116. display: moz-inline-stack;
  7117. display: inline-block;
  7118. vertical-align: top;
  7119. zoom: 1;
  7120. *display: inline;
  7121. vertical-align: middle;
  7122. width: auto;
  7123. margin: 0 1em 0.5em 0;
  7124. }
  7125. /* line 1800, ../scss/styles.scss */
  7126. .page-user #content .inner-content > * #edit-profile-adherent-field-first-name div, .page-user #content .inner-content > * #edit-profile-adherent-field-name div,
  7127. .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,
  7128. .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,
  7129. .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,
  7130. .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,
  7131. .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,
  7132. .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,
  7133. .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,
  7134. .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,
  7135. .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,
  7136. .page-toboggan #content .inner-content > * #edit-profile-adherent-field-naf div, .page-toboggan #content .inner-content > * #edit-profile-adherent-field-siret div {
  7137. width: auto;
  7138. margin: 0;
  7139. padding: 0;
  7140. }
  7141. /* line 1806, ../scss/styles.scss */
  7142. .page-user #content .inner-content > * #edit-profile-adherent-field-name label, .page-user #content .inner-content > * #edit-profile-adherent-field-service label,
  7143. .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,
  7144. .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,
  7145. .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,
  7146. .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,
  7147. .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 {
  7148. min-width: auto;
  7149. }
  7150. /* line 1809, ../scss/styles.scss */
  7151. .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 {
  7152. width: 8em;
  7153. }
  7154. /* line 1810, ../scss/styles.scss */
  7155. .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 {
  7156. width: 13em;
  7157. }
  7158. /* line 1812, ../scss/styles.scss */
  7159. .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 {
  7160. margin: 2em 0 0 0;
  7161. }
  7162. /* line 1812, ../scss/styles.scss */
  7163. .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 {
  7164. width: 35em;
  7165. }
  7166. /* line 1814, ../scss/styles.scss */
  7167. .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 {
  7168. width: 4em;
  7169. }
  7170. /* line 1818, ../scss/styles.scss */
  7171. .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 {
  7172. display: moz-inline-stack;
  7173. display: inline-block;
  7174. vertical-align: top;
  7175. zoom: 1;
  7176. *display: inline;
  7177. vertical-align: middle;
  7178. }
  7179. /* line 1825, ../scss/styles.scss */
  7180. .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 {
  7181. width: 35em;
  7182. }
  7183. /* line 1828, ../scss/styles.scss */
  7184. .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 {
  7185. width: auto;
  7186. margin-right: 1em;
  7187. }
  7188. /* line 1832, ../scss/styles.scss */
  7189. .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 {
  7190. margin: 2em 0 0 0;
  7191. }
  7192. /* line 1834, ../scss/styles.scss */
  7193. .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 > * {
  7194. display: moz-inline-stack;
  7195. display: inline-block;
  7196. vertical-align: top;
  7197. zoom: 1;
  7198. *display: inline;
  7199. vertical-align: middle;
  7200. }
  7201. /* line 1835, ../scss/styles.scss */
  7202. .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 {
  7203. width: 35em;
  7204. }
  7205. /* line 1839, ../scss/styles.scss */
  7206. .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 {
  7207. border: 0 solid transparent;
  7208. }
  7209. /* line 1840, ../scss/styles.scss */
  7210. .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 {
  7211. display: inline;
  7212. }
  7213. /** SIMPLENEWS */
  7214. /* line 1848, ../scss/styles.scss */
  7215. body.node-type-simplenews #content .inner-content {
  7216. text-align: center;
  7217. }
  7218. /* line 1851, ../scss/styles.scss */
  7219. body.node-type-simplenews #content article.node.node-simplenews {
  7220. display: moz-inline-stack;
  7221. display: inline-block;
  7222. vertical-align: top;
  7223. zoom: 1;
  7224. *display: inline;
  7225. max-width: 600px;
  7226. padding: 1em 0;
  7227. }
  7228. /* line 1855, ../scss/styles.scss */
  7229. body.node-type-simplenews #content article.node.node-simplenews tbody {
  7230. border-top: 0px;
  7231. }
  7232. /** PAGE CONTACT */
  7233. /* line 1864, ../scss/styles.scss */
  7234. .page-node-11175 #main {
  7235. background: #fff url("../img/bg-contact.gif") no-repeat bottom right;
  7236. }
  7237. /* line 1868, ../scss/styles.scss */
  7238. .page-node-11175 #main .field-name-body p {
  7239. display: moz-inline-stack;
  7240. display: inline-block;
  7241. vertical-align: top;
  7242. zoom: 1;
  7243. *display: inline;
  7244. margin: 15px;
  7245. }
  7246. /* line 1870, ../scss/styles.scss */
  7247. .page-node-11175 #main .field-name-body p strong {
  7248. font-size: 18px;
  7249. }
  7250. /** PRICING */
  7251. @media only screen and (min-width: 40.063em) {
  7252. /* line 1882, ../scss/styles.scss */
  7253. 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 {
  7254. display: moz-inline-stack;
  7255. display: inline-block;
  7256. vertical-align: top;
  7257. zoom: 1;
  7258. *display: inline;
  7259. margin: 10px;
  7260. }
  7261. /* line 1885, ../scss/styles.scss */
  7262. body.page-node-11187 .node-11187 .field-name-body div.column {
  7263. width: 22.4%;
  7264. }
  7265. /* line 1887, ../scss/styles.scss */
  7266. body.page-node-11187 .node-11187 .field-name-body div.column ul.list-text {
  7267. min-height: 170px;
  7268. }
  7269. /* line 1889, ../scss/styles.scss */
  7270. body.page-node-11187 .node-11187 .field-name-body div.column-demi {
  7271. width: 46%;
  7272. }
  7273. /* line 1891, ../scss/styles.scss */
  7274. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul.list-text {
  7275. min-height: 110px;
  7276. }
  7277. /* line 1893, ../scss/styles.scss */
  7278. body.page-node-11187 .node-11187 .field-name-body div.column-full {
  7279. width: 92%;
  7280. }
  7281. /* line 1897, ../scss/styles.scss */
  7282. body.page-node-11187 .node-11187 .field-name-body div.column-auto {
  7283. width: auto;
  7284. max-width: 98%;
  7285. }
  7286. /* line 1904, ../scss/styles.scss */
  7287. body.page-node-11187 #block-materio-user-user-register {
  7288. width: 600px;
  7289. margin: 0 auto;
  7290. }
  7291. }
  7292. @media only screen and (max-width: 40em) {
  7293. /* line 1911, ../scss/styles.scss */
  7294. body.page-node-11187 #block-system-help {
  7295. text-align: center;
  7296. }
  7297. }
  7298. /* line 1915, ../scss/styles.scss */
  7299. body.page-node-11187 .node-11187 .field-name-body {
  7300. text-align: center;
  7301. }
  7302. /* line 1917, ../scss/styles.scss */
  7303. body.page-node-11187 .node-11187 .field-name-body > * {
  7304. text-align: left;
  7305. }
  7306. /* line 1918, ../scss/styles.scss */
  7307. 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 {
  7308. position: relative;
  7309. border-radius: 5px;
  7310. background-clip: padding-box;
  7311. box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  7312. overflow: hidden;
  7313. }
  7314. /* line 1921, ../scss/styles.scss */
  7315. .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 {
  7316. max-width: 500px;
  7317. margin: auto;
  7318. margin-bottom: 15px;
  7319. border: 1px solid #C6C6C6;
  7320. }
  7321. /* line 1924, ../scss/styles.scss */
  7322. 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 > * {
  7323. padding: 0 10px;
  7324. }
  7325. /* line 1925, ../scss/styles.scss */
  7326. 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 {
  7327. float: left;
  7328. padding: 0;
  7329. }
  7330. /* line 1926, ../scss/styles.scss */
  7331. 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 {
  7332. text-align: left;
  7333. margin: 5px 0 0;
  7334. }
  7335. /* line 1927, ../scss/styles.scss */
  7336. 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 {
  7337. padding: 0 0 0 1em;
  7338. font-size: 18px;
  7339. font-style: italic;
  7340. font-weight: bold;
  7341. line-height: 1;
  7342. }
  7343. /* line 1931, ../scss/styles.scss */
  7344. 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 {
  7345. margin: 0;
  7346. padding: 0 15px;
  7347. }
  7348. /* line 1932, ../scss/styles.scss */
  7349. 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 {
  7350. list-style: none;
  7351. font-size: 12px;
  7352. }
  7353. /* line 1934, ../scss/styles.scss */
  7354. 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 {
  7355. content: "+ ";
  7356. font-weight: 900;
  7357. }
  7358. /* line 1939, ../scss/styles.scss */
  7359. 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 {
  7360. margin: 0;
  7361. border-radius: 0 0 5px 5px 0 0 0;
  7362. background-clip: padding-box;
  7363. border: 1px solid #fff;
  7364. min-height: 92px;
  7365. }
  7366. /* line 1941, ../scss/styles.scss */
  7367. 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 {
  7368. display: block;
  7369. width: 100%;
  7370. padding: 15px 0;
  7371. color: #1A1A1A;
  7372. text-decoration: none;
  7373. }
  7374. /* line 1943, ../scss/styles.scss */
  7375. 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 {
  7376. background-color: #4BA13D;
  7377. }
  7378. /* line 1944, ../scss/styles.scss */
  7379. 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 {
  7380. background-color: #69CDCF;
  7381. }
  7382. /* line 1945, ../scss/styles.scss */
  7383. 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 {
  7384. background-color: #D476AE;
  7385. }
  7386. /* line 1946, ../scss/styles.scss */
  7387. 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 {
  7388. background-color: #E6DE1C;
  7389. }
  7390. /* line 1947, ../scss/styles.scss */
  7391. 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 {
  7392. float: none;
  7393. }
  7394. /* line 1953, ../scss/styles.scss */
  7395. body.page-node-11187 .node-11187 .field-name-body div.column h2 {
  7396. padding: 10px 0 0;
  7397. font-size: 24px;
  7398. }
  7399. /* line 1954, ../scss/styles.scss */
  7400. body.page-node-11187 .node-11187 .field-name-body div.column .subtitle {
  7401. min-height: 3em;
  7402. }
  7403. /* line 1955, ../scss/styles.scss */
  7404. body.page-node-11187 .node-11187 .field-name-body div.column .get-link {
  7405. padding: 0;
  7406. font-size: 24px;
  7407. text-align: center;
  7408. font-style: italic;
  7409. font-weight: 900;
  7410. cursor: pointer;
  7411. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7412. -webkit-transition: text-shadow 0.3s ease-out;
  7413. transition: text-shadow 0.3s ease-out;
  7414. }
  7415. /* line 1959, ../scss/styles.scss */
  7416. body.page-node-11187 .node-11187 .field-name-body div.column .get-link span {
  7417. font-size: 20px;
  7418. }
  7419. /* line 53, ../scss/styles.scss */
  7420. 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 {
  7421. text-shadow: 0 0 3px white;
  7422. }
  7423. /* line 56, ../scss/styles.scss */
  7424. body.page-node-11187 .node-11187 .field-name-body div.column .get-link:active {
  7425. -webkit-transition: text-shadow 0s ease-out;
  7426. transition: text-shadow 0s ease-out;
  7427. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7428. }
  7429. /* line 1964, ../scss/styles.scss */
  7430. body.page-node-11187 .node-11187 .field-name-body div.column-demi h2 {
  7431. padding: 10px 0 0;
  7432. font-size: 24px;
  7433. top: 0;
  7434. }
  7435. /* line 1965, ../scss/styles.scss */
  7436. body.page-node-11187 .node-11187 .field-name-body div.column-demi .subtitle {
  7437. min-height: 2em;
  7438. }
  7439. /* line 1966, ../scss/styles.scss */
  7440. body.page-node-11187 .node-11187 .field-name-body div.column-demi ul {
  7441. font-size: 14px;
  7442. min-height: 120px;
  7443. }
  7444. /* line 1967, ../scss/styles.scss */
  7445. body.page-node-11187 .node-11187 .field-name-body div.column-demi .get-link {
  7446. font-size: 14px;
  7447. text-align: left;
  7448. padding: 0 1em;
  7449. background-color: #ddd;
  7450. }
  7451. /* line 1976, ../scss/styles.scss */
  7452. body.page-node-11187.logged-in .column.gratos .get-link {
  7453. cursor: auto !important;
  7454. }
  7455. /* line 1978, ../scss/styles.scss */
  7456. body.page-node-11187.logged-in .column.gratos .get-link a {
  7457. display: none !important;
  7458. }
  7459. /* line 1981, ../scss/styles.scss */
  7460. body.page-node-11187.logged-in.role-6 .column.flocon .get-link {
  7461. cursor: auto !important;
  7462. }
  7463. /* line 1983, ../scss/styles.scss */
  7464. body.page-node-11187.logged-in.role-6 .column.flocon .get-link a {
  7465. display: none !important;
  7466. }
  7467. /** ADHESION FORM */
  7468. /* line 1991, ../scss/styles.scss */
  7469. .node-11186 nav ul.links a.language-link {
  7470. display: none;
  7471. }
  7472. /* line 1994, ../scss/styles.scss */
  7473. #webform-client-form-11186 {
  7474. background-color: #e6e6e6;
  7475. border-radius: 10px;
  7476. background-clip: padding-box;
  7477. }
  7478. @media only screen and (min-width: 40.063em) {
  7479. /* line 1994, ../scss/styles.scss */
  7480. #webform-client-form-11186 {
  7481. padding: 10px 30px;
  7482. }
  7483. /* line 1997, ../scss/styles.scss */
  7484. #webform-client-form-11186 #webform-component-column-left--membership-options {
  7485. margin: 10px 0;
  7486. }
  7487. /* line 1999, ../scss/styles.scss */
  7488. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  7489. width: auto;
  7490. }
  7491. /* line 2001, ../scss/styles.scss */
  7492. #webform-client-form-11186 fieldset {
  7493. border-radius: 5px;
  7494. background-clip: padding-box;
  7495. border-left: 1px solid #cccccc;
  7496. border-bottom: 1px solid #cccccc;
  7497. padding: 10px;
  7498. }
  7499. /* line 2003, ../scss/styles.scss */
  7500. #webform-client-form-11186 fieldset fieldset {
  7501. border: 0 solid #ddd;
  7502. padding: 0;
  7503. }
  7504. /* line 2005, ../scss/styles.scss */
  7505. #webform-client-form-11186 legend {
  7506. margin: 0;
  7507. font-size: 18px;
  7508. font-weight: 700;
  7509. }
  7510. /* line 2006, ../scss/styles.scss */
  7511. #webform-client-form-11186 .form-item {
  7512. margin: 0 20px 0 0;
  7513. }
  7514. /* line 2007, ../scss/styles.scss */
  7515. #webform-client-form-11186 label {
  7516. font-size: 12px;
  7517. width: 10em;
  7518. display: moz-inline-stack;
  7519. display: inline-block;
  7520. vertical-align: top;
  7521. zoom: 1;
  7522. *display: inline;
  7523. vertical-align: middle;
  7524. margin-right: 1em;
  7525. border-bottom: 1px solid #cccccc;
  7526. }
  7527. /* line 2008, ../scss/styles.scss */
  7528. #webform-client-form-11186 .description {
  7529. font-size: 10px;
  7530. width: 25em;
  7531. display: moz-inline-stack;
  7532. display: inline-block;
  7533. vertical-align: top;
  7534. zoom: 1;
  7535. *display: inline;
  7536. vertical-align: bottom;
  7537. margin-left: 1em;
  7538. color: #7f7f7f;
  7539. }
  7540. /* line 2009, ../scss/styles.scss */
  7541. #webform-client-form-11186 input.form-text {
  7542. width: 13em;
  7543. }
  7544. }
  7545. @media only screen and (min-width: 40.063em) and (max-width: 64em) {
  7546. /* line 1994, ../scss/styles.scss */
  7547. #webform-client-form-11186 {
  7548. padding: 10px;
  7549. }
  7550. /* line 2014, ../scss/styles.scss */
  7551. #webform-client-form-11186 #webform-component-column-left--membership-options {
  7552. margin: 0 0 10px 0;
  7553. }
  7554. /* line 2016, ../scss/styles.scss */
  7555. #webform-client-form-11186 #webform-component-column-left--membership-options .form-item {
  7556. width: 100%;
  7557. }
  7558. /* line 2017, ../scss/styles.scss */
  7559. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  7560. width: 75%;
  7561. }
  7562. /* line 2019, ../scss/styles.scss */
  7563. #webform-client-form-11186 legend {
  7564. margin: 0;
  7565. font-size: 16px;
  7566. font-weight: 700;
  7567. }
  7568. /* line 2020, ../scss/styles.scss */
  7569. #webform-client-form-11186 .form-item {
  7570. margin: 0;
  7571. float: none;
  7572. }
  7573. /* line 2021, ../scss/styles.scss */
  7574. #webform-client-form-11186 label {
  7575. font-size: 12px;
  7576. width: 30%;
  7577. display: moz-inline-stack;
  7578. display: inline-block;
  7579. vertical-align: top;
  7580. zoom: 1;
  7581. *display: inline;
  7582. vertical-align: middle;
  7583. margin-right: 0.5em;
  7584. }
  7585. /* line 2022, ../scss/styles.scss */
  7586. #webform-client-form-11186 input.form-text, #webform-client-form-11186 select.form-select {
  7587. width: 60%;
  7588. }
  7589. /* line 2023, ../scss/styles.scss */
  7590. #webform-client-form-11186 #webform-component-infos {
  7591. font-size: 14px;
  7592. }
  7593. }
  7594. /* line 2028, ../scss/styles.scss */
  7595. #webform-client-form-11186 .fieldset-wrapper > .form-item {
  7596. display: moz-inline-stack;
  7597. display: inline-block;
  7598. vertical-align: top;
  7599. zoom: 1;
  7600. *display: inline;
  7601. }
  7602. /* line 2030, ../scss/styles.scss */
  7603. #webform-client-form-11186 #webform-component-column-left {
  7604. display: moz-inline-stack;
  7605. display: inline-block;
  7606. vertical-align: top;
  7607. zoom: 1;
  7608. *display: inline;
  7609. width: 25%;
  7610. border: none;
  7611. }
  7612. /* line 2031, ../scss/styles.scss */
  7613. #webform-client-form-11186 #webform-component-column-right {
  7614. display: moz-inline-stack;
  7615. display: inline-block;
  7616. vertical-align: top;
  7617. zoom: 1;
  7618. *display: inline;
  7619. min-width: 70%;
  7620. }
  7621. /* line 2035, ../scss/styles.scss */
  7622. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio {
  7623. border: 1px solid #ddd;
  7624. border-radius: 5px;
  7625. background-clip: padding-box;
  7626. padding: 10px 5px;
  7627. margin: 5px 0;
  7628. background-color: #fff;
  7629. }
  7630. /* line 2037, ../scss/styles.scss */
  7631. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio input {
  7632. display: moz-inline-stack;
  7633. display: inline-block;
  7634. vertical-align: top;
  7635. zoom: 1;
  7636. *display: inline;
  7637. vertical-align: middle;
  7638. margin: 0px 5px;
  7639. }
  7640. /* line 2038, ../scss/styles.scss */
  7641. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio label {
  7642. font-size: 20px;
  7643. font-weight: 700;
  7644. display: moz-inline-stack;
  7645. display: inline-block;
  7646. vertical-align: top;
  7647. zoom: 1;
  7648. *display: inline;
  7649. vertical-align: middle;
  7650. margin: 0;
  7651. }
  7652. /* line 2040, ../scss/styles.scss */
  7653. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio:hover {
  7654. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  7655. }
  7656. /* line 2041, ../scss/styles.scss */
  7657. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(1) {
  7658. background-color: #69CDCF;
  7659. }
  7660. /* line 2042, ../scss/styles.scss */
  7661. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(2) {
  7662. background-color: #D476AE;
  7663. }
  7664. /* line 2043, ../scss/styles.scss */
  7665. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:nth-child(3) {
  7666. background-color: #E6DE1C;
  7667. }
  7668. /* line 2045, ../scss/styles.scss */
  7669. #webform-client-form-11186 #webform-component-column-left--membership-options .form-type-radio.form-item-submitted-column-left-membership-options:not(.selected) {
  7670. opacity: 0.4;
  7671. }
  7672. /* line 2048, ../scss/styles.scss */
  7673. #webform-client-form-11186 #webform-component-column-left--membership-options > label {
  7674. width: 200px;
  7675. font-size: 18px;
  7676. font-weight: 700;
  7677. }
  7678. /* line 2049, ../scss/styles.scss */
  7679. #webform-client-form-11186 #webform-component-column-left--membership-options label {
  7680. border: 0;
  7681. }
  7682. /* line 2052, ../scss/styles.scss */
  7683. #webform-client-form-11186 #webform-component-column-right--me--my-account-email {
  7684. display: block;
  7685. }
  7686. /* line 2057, ../scss/styles.scss */
  7687. #webform-client-form-11186 #webform-component-column-right--company--administrative-e-mail .description {
  7688. display: moz-inline-stack;
  7689. display: inline-block;
  7690. vertical-align: top;
  7691. zoom: 1;
  7692. *display: inline;
  7693. }
  7694. /* line 2060, ../scss/styles.scss */
  7695. #webform-client-form-11186 #addressfield-wrapper {
  7696. margin-top: 1em;
  7697. }
  7698. /* line 2061, ../scss/styles.scss */
  7699. #webform-client-form-11186 .street-block .form-item {
  7700. display: moz-inline-stack;
  7701. display: inline-block;
  7702. vertical-align: top;
  7703. zoom: 1;
  7704. *display: inline;
  7705. }
  7706. /* line 2063, ../scss/styles.scss */
  7707. #webform-client-form-11186 #webform-component-column-right--collaborators {
  7708. margin: 20px 0;
  7709. overflow: hidden;
  7710. }
  7711. /* line 2065, ../scss/styles.scss */
  7712. #webform-client-form-11186 #webform-component-column-right--collaborators fieldset {
  7713. display: moz-inline-stack;
  7714. display: inline-block;
  7715. vertical-align: top;
  7716. zoom: 1;
  7717. *display: inline;
  7718. width: 33%;
  7719. }
  7720. /* line 2066, ../scss/styles.scss */
  7721. #webform-client-form-11186 #webform-component-column-right--collaborators .form-item {
  7722. display: block;
  7723. }
  7724. /* line 2067, ../scss/styles.scss */
  7725. #webform-client-form-11186 #webform-component-column-right--collaborators label {
  7726. width: 6em;
  7727. }
  7728. /* line 2068, ../scss/styles.scss */
  7729. #webform-client-form-11186 #webform-component-column-right--collaborators input {
  7730. width: 11em;
  7731. }
  7732. /* line 2071, ../scss/styles.scss */
  7733. #webform-client-form-11186 #webform-component-infos {
  7734. margin: 20px 0;
  7735. }
  7736. /* line 2073, ../scss/styles.scss */
  7737. #webform-client-form-11186 .form-actions {
  7738. padding: 0;
  7739. margin: 0;
  7740. border: 0px;
  7741. background-color: transparent;
  7742. text-align: left;
  7743. }
  7744. /* line 2078, ../scss/styles.scss */
  7745. #webform-client-form-11186 .form-actions .form-submit {
  7746. border: 2px solid #69CDCF;
  7747. background-color: #69CDCF;
  7748. color: #fff;
  7749. font-size: 18px;
  7750. padding: 0.2em 1em 0.3em;
  7751. border-radius: 0.3em;
  7752. background-clip: padding-box;
  7753. font-weight: bold;
  7754. margin-bottom: 9px;
  7755. cursor: pointer;
  7756. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7757. -webkit-transition: text-shadow 0.2s ease-out;
  7758. transition: text-shadow 0.2s ease-out;
  7759. }
  7760. /* line 66, ../scss/styles.scss */
  7761. #webform-client-form-11186 .form-actions .form-submit:hover, #webform-client-form-11186 .form-actions .form-submit:focus {
  7762. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  7763. }
  7764. /* line 69, ../scss/styles.scss */
  7765. #webform-client-form-11186 .form-actions .form-submit:active {
  7766. -webkit-transition: text-shadow 0s ease-out;
  7767. transition: text-shadow 0s ease-out;
  7768. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7769. }
  7770. /* line 2088, ../scss/styles.scss */
  7771. #webform-client-form-11186 #webform-component-column-right--news-letters > label {
  7772. margin: 0;
  7773. font-size: 18px;
  7774. font-weight: 700;
  7775. border: none;
  7776. line-height: 40px;
  7777. }
  7778. /* line 2089, ../scss/styles.scss */
  7779. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item {
  7780. display: moz-inline-stack;
  7781. display: inline-block;
  7782. vertical-align: top;
  7783. zoom: 1;
  7784. *display: inline;
  7785. }
  7786. /* line 2091, ../scss/styles.scss */
  7787. #webform-client-form-11186 #webform-component-column-right--news-letters .form-item label {
  7788. width: auto;
  7789. }
  7790. /* line 2092, ../scss/styles.scss */
  7791. #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 {
  7792. margin: 0;
  7793. }
  7794. /* line 2096, ../scss/styles.scss */
  7795. #webform-client-form-11186 #edit-submitted-terms-of-services {
  7796. margin-bottom: 0.5em;
  7797. }
  7798. /* line 2098, ../scss/styles.scss */
  7799. #webform-client-form-11186 #edit-submitted-terms-of-services input, #webform-client-form-11186 #edit-submitted-terms-of-services label {
  7800. margin: 0 0.3em 0 0;
  7801. }
  7802. /* line 2099, ../scss/styles.scss */
  7803. #webform-client-form-11186 #edit-submitted-terms-of-services label {
  7804. width: auto;
  7805. }
  7806. /** UC CART VIEW FORM */
  7807. /* line 2104, ../scss/styles.scss */
  7808. #uc-cart-view-form {
  7809. background-color: #e6e6e6;
  7810. padding: 10px, 30px;
  7811. display: inline-block;
  7812. }
  7813. /* line 2110, ../scss/styles.scss */
  7814. #uc-cart-view-form table {
  7815. width: auto;
  7816. display: table;
  7817. background-color: #fff;
  7818. }
  7819. /* line 2114, ../scss/styles.scss */
  7820. #uc-cart-view-form table thead th {
  7821. border-bottom: none;
  7822. padding: 1em;
  7823. }
  7824. /* line 2115, ../scss/styles.scss */
  7825. #uc-cart-view-form table tbody {
  7826. border-top: none;
  7827. }
  7828. /* line 2117, ../scss/styles.scss */
  7829. #uc-cart-view-form table tbody tr.even, #uc-cart-view-form table tbody tr.odd {
  7830. background-color: #fff;
  7831. border-bottom: none;
  7832. }
  7833. /* line 2121, ../scss/styles.scss */
  7834. #uc-cart-view-form table tbody td {
  7835. padding: 1em;
  7836. }
  7837. /* line 2128, ../scss/styles.scss */
  7838. #uc-cart-view-form .form-type-uc-quantity input {
  7839. width: 2em;
  7840. }
  7841. /* line 2132, ../scss/styles.scss */
  7842. #uc-cart-view-form .form-actions {
  7843. padding: 0;
  7844. margin: 0;
  7845. border: 0px;
  7846. background-color: transparent;
  7847. text-align: right;
  7848. display: block;
  7849. width: 100%;
  7850. }
  7851. /* line 2139, ../scss/styles.scss */
  7852. #uc-cart-view-form .form-actions:before, #uc-cart-view-form .form-actions:after {
  7853. display: block;
  7854. }
  7855. /* line 2142, ../scss/styles.scss */
  7856. #uc-cart-view-form .form-actions .form-submit {
  7857. font-size: 16px;
  7858. font-weight: bold;
  7859. padding: 0.1em 0.3em 0.2em;
  7860. border-radius: 0.3em;
  7861. background-clip: padding-box;
  7862. border: 2px solid #ccc;
  7863. background-color: #ccc;
  7864. color: #4D4D4D;
  7865. cursor: pointer;
  7866. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7867. -webkit-transition: text-shadow 0.3s ease-out;
  7868. transition: text-shadow 0.3s ease-out;
  7869. text-align: center;
  7870. text-decoration: none;
  7871. margin-left: 1em;
  7872. }
  7873. /* line 53, ../scss/styles.scss */
  7874. #uc-cart-view-form .form-actions .form-submit:hover, #uc-cart-view-form .form-actions .form-submit:focus {
  7875. text-shadow: 0 0 3px white;
  7876. }
  7877. /* line 56, ../scss/styles.scss */
  7878. #uc-cart-view-form .form-actions .form-submit:active {
  7879. -webkit-transition: text-shadow 0s ease-out;
  7880. transition: text-shadow 0s ease-out;
  7881. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7882. }
  7883. /* line 2145, ../scss/styles.scss */
  7884. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2 {
  7885. font-size: 16px;
  7886. font-weight: bold;
  7887. padding: 0.1em 0.3em 0.2em;
  7888. border-radius: 0.3em;
  7889. background-clip: padding-box;
  7890. border: 2px solid #ccc;
  7891. background-color: #ccc;
  7892. color: #4D4D4D;
  7893. cursor: pointer;
  7894. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7895. -webkit-transition: text-shadow 0.3s ease-out;
  7896. transition: text-shadow 0.3s ease-out;
  7897. text-align: center;
  7898. text-decoration: none;
  7899. cursor: pointer;
  7900. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7901. -webkit-transition: text-shadow 0.2s ease-out;
  7902. transition: text-shadow 0.2s ease-out;
  7903. border-color: #69CDCF;
  7904. background-color: #69CDCF;
  7905. color: #fff;
  7906. }
  7907. /* line 53, ../scss/styles.scss */
  7908. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  7909. text-shadow: 0 0 3px white;
  7910. }
  7911. /* line 56, ../scss/styles.scss */
  7912. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  7913. -webkit-transition: text-shadow 0s ease-out;
  7914. transition: text-shadow 0s ease-out;
  7915. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  7916. }
  7917. /* line 66, ../scss/styles.scss */
  7918. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:hover, #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:focus {
  7919. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  7920. }
  7921. /* line 69, ../scss/styles.scss */
  7922. #uc-cart-view-form .form-actions .form-submit#edit-checkout--2:active {
  7923. -webkit-transition: text-shadow 0s ease-out;
  7924. transition: text-shadow 0s ease-out;
  7925. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  7926. }
  7927. /** UC CHECKOUT FORM */
  7928. /* line 2153, ../scss/styles.scss */
  7929. #uc-cart-checkout-form {
  7930. display: inline-block;
  7931. background-color: #e6e6e6;
  7932. padding: 10px, 30px;
  7933. }
  7934. /* line 2166, ../scss/styles.scss */
  7935. #uc-cart-checkout-form fieldset.form-row {
  7936. padding-bottom: 20px;
  7937. margin-bottom: 20px;
  7938. }
  7939. /* line 2172, ../scss/styles.scss */
  7940. #uc-cart-checkout-form fieldset.form-column {
  7941. display: moz-inline-stack;
  7942. display: inline-block;
  7943. vertical-align: top;
  7944. zoom: 1;
  7945. *display: inline;
  7946. max-width: 39%;
  7947. margin: 15px 1em;
  7948. }
  7949. /* line 2175, ../scss/styles.scss */
  7950. #uc-cart-checkout-form fieldset.form-column > .fieldset-wrapper > .form-wrapper {
  7951. margin: 10px 0;
  7952. }
  7953. /* line 2182, ../scss/styles.scss */
  7954. #uc-cart-checkout-form fieldset.form-column-right {
  7955. border-left: 1px solid #ccc;
  7956. margin-left: 2em;
  7957. padding-left: 2em;
  7958. }
  7959. /* line 2188, ../scss/styles.scss */
  7960. #uc-cart-checkout-form legend {
  7961. margin: 0;
  7962. font-size: 18px;
  7963. font-weight: 700;
  7964. border: none;
  7965. line-height: 2;
  7966. }
  7967. /* line 2189, ../scss/styles.scss */
  7968. #uc-cart-checkout-form .fieldset-description {
  7969. font-size: 12px;
  7970. }
  7971. /* line 2190, ../scss/styles.scss */
  7972. #uc-cart-checkout-form .fieldset-wrapper {
  7973. font-size: 12px;
  7974. }
  7975. /* line 2191, ../scss/styles.scss */
  7976. #uc-cart-checkout-form .form-item {
  7977. margin: 0 20px 0 0;
  7978. }
  7979. /* line 2193, ../scss/styles.scss */
  7980. #uc-cart-checkout-form .description {
  7981. font-size: 10px;
  7982. width: 25em;
  7983. display: moz-inline-stack;
  7984. display: inline-block;
  7985. vertical-align: top;
  7986. zoom: 1;
  7987. *display: inline;
  7988. vertical-align: bottom;
  7989. margin-left: 1em;
  7990. color: #7f7f7f;
  7991. }
  7992. /* line 2196, ../scss/styles.scss */
  7993. #uc-cart-checkout-form #cart-pane > .fieldset-wrapper {
  7994. display: moz-inline-stack;
  7995. display: inline-block;
  7996. vertical-align: top;
  7997. zoom: 1;
  7998. *display: inline;
  7999. border-radius: 5px;
  8000. background-clip: padding-box;
  8001. padding: 10px;
  8002. background-color: #fff;
  8003. }
  8004. /* line 2203, ../scss/styles.scss */
  8005. #uc-cart-checkout-form #cart-pane table {
  8006. font-size: 14px;
  8007. min-width: 20em;
  8008. }
  8009. /* line 2159, ../scss/styles.scss */
  8010. #uc-cart-checkout-form #cart-pane table td.price {
  8011. width: 4em;
  8012. }
  8013. /* line 2207, ../scss/styles.scss */
  8014. #uc-cart-checkout-form #cart-pane tbody {
  8015. border: none;
  8016. }
  8017. /* line 2208, ../scss/styles.scss */
  8018. #uc-cart-checkout-form #cart-pane tr {
  8019. background-color: transparent;
  8020. border: none;
  8021. }
  8022. /* line 2209, ../scss/styles.scss */
  8023. #uc-cart-checkout-form #cart-pane td {
  8024. padding: 0 5px;
  8025. vertical-align: bottom;
  8026. }
  8027. /* line 2212, ../scss/styles.scss */
  8028. #uc-cart-checkout-form #cart-pane td.products {
  8029. width: auto;
  8030. }
  8031. /* line 2213, ../scss/styles.scss */
  8032. #uc-cart-checkout-form #cart-pane td.products a {
  8033. color: inherit;
  8034. font-weight: 700;
  8035. }
  8036. /* line 2215, ../scss/styles.scss */
  8037. #uc-cart-checkout-form #cart-pane td.products ul.product-description {
  8038. margin: 0;
  8039. font-size: 12px;
  8040. }
  8041. /* line 2216, ../scss/styles.scss */
  8042. #uc-cart-checkout-form #cart-pane td.products li {
  8043. list-style: none;
  8044. }
  8045. /* line 2220, ../scss/styles.scss */
  8046. #uc-cart-checkout-form #cart-pane tr.subtotal td {
  8047. font-size: 16px;
  8048. font-weight: 700;
  8049. }
  8050. /* line 2224, ../scss/styles.scss */
  8051. #uc-cart-checkout-form #customer-pane {
  8052. width: 35em;
  8053. }
  8054. /* line 2227, ../scss/styles.scss */
  8055. #uc-cart-checkout-form #billing-pane label {
  8056. font-size: 12px;
  8057. width: 8em;
  8058. display: moz-inline-stack;
  8059. display: inline-block;
  8060. vertical-align: top;
  8061. zoom: 1;
  8062. *display: inline;
  8063. vertical-align: middle;
  8064. margin-right: 1em;
  8065. border-bottom: 1px solid #cccccc;
  8066. }
  8067. /* line 2228, ../scss/styles.scss */
  8068. #uc-cart-checkout-form #billing-pane input.form-text {
  8069. width: 13em;
  8070. }
  8071. /* line 2235, ../scss/styles.scss */
  8072. #uc-cart-checkout-form #payment-pane {
  8073. float: right;
  8074. }
  8075. /* line 2238, ../scss/styles.scss */
  8076. #uc-cart-checkout-form #payment-pane .fieldset-wrapper {
  8077. background-color: #fff;
  8078. border-radius: 5px;
  8079. background-clip: padding-box;
  8080. padding: 10px;
  8081. }
  8082. /* line 2244, ../scss/styles.scss */
  8083. #uc-cart-checkout-form #payment-pane #line-items-div {
  8084. float: none;
  8085. border: none;
  8086. display: moz-inline-stack;
  8087. display: inline-block;
  8088. vertical-align: top;
  8089. zoom: 1;
  8090. *display: inline;
  8091. margin: 10px 0 20px;
  8092. }
  8093. /* line 2247, ../scss/styles.scss */
  8094. #uc-cart-checkout-form #payment-pane #line-items-div table {
  8095. font-size: 14px;
  8096. min-width: 20em;
  8097. }
  8098. /* line 2159, ../scss/styles.scss */
  8099. #uc-cart-checkout-form #payment-pane #line-items-div table td.price {
  8100. width: 4em;
  8101. }
  8102. /* line 2248, ../scss/styles.scss */
  8103. #uc-cart-checkout-form #payment-pane #line-items-div tbody {
  8104. border: none;
  8105. }
  8106. /* line 2249, ../scss/styles.scss */
  8107. #uc-cart-checkout-form #payment-pane #line-items-div td {
  8108. padding: 0 5px;
  8109. }
  8110. /* line 2253, ../scss/styles.scss */
  8111. #uc-cart-checkout-form #payment-pane #line-items-div tr td {
  8112. font-weight: 500;
  8113. }
  8114. /* line 2255, ../scss/styles.scss */
  8115. #uc-cart-checkout-form #payment-pane #line-items-div tr.line-item-total td {
  8116. font-size: 16px;
  8117. font-weight: 700;
  8118. text-align: right;
  8119. }
  8120. /* line 2262, ../scss/styles.scss */
  8121. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method label {
  8122. width: auto;
  8123. border-bottom: none;
  8124. }
  8125. /* line 2263, ../scss/styles.scss */
  8126. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method {
  8127. border: 1px solid #ddd;
  8128. border-radius: 5px;
  8129. margin: 0.5em;
  8130. padding: 0.5em;
  8131. }
  8132. /* line 2267, ../scss/styles.scss */
  8133. #uc-cart-checkout-form #payment-pane #edit-panes-payment-payment-method .form-item-panes-payment-payment-method label {
  8134. font-weight: bold;
  8135. }
  8136. /* line 2271, ../scss/styles.scss */
  8137. #uc-cart-checkout-form #payment-pane #payment-details {
  8138. width: 25em;
  8139. border-top: none;
  8140. padding: 0;
  8141. margin: 0;
  8142. }
  8143. /* line 2277, ../scss/styles.scss */
  8144. #uc-cart-checkout-form .form-actions {
  8145. padding: 0;
  8146. margin: 0;
  8147. border: 0px;
  8148. background-color: transparent;
  8149. text-align: right;
  8150. }
  8151. /* line 2282, ../scss/styles.scss */
  8152. #uc-cart-checkout-form .form-actions .form-submit {
  8153. font-size: 16px;
  8154. font-weight: bold;
  8155. padding: 0.1em 0.3em 0.2em;
  8156. border-radius: 0.3em;
  8157. background-clip: padding-box;
  8158. border: 2px solid #ccc;
  8159. background-color: #ccc;
  8160. color: #4D4D4D;
  8161. cursor: pointer;
  8162. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8163. -webkit-transition: text-shadow 0.3s ease-out;
  8164. transition: text-shadow 0.3s ease-out;
  8165. text-align: center;
  8166. text-decoration: none;
  8167. margin-left: 1em;
  8168. }
  8169. /* line 53, ../scss/styles.scss */
  8170. #uc-cart-checkout-form .form-actions .form-submit:hover, #uc-cart-checkout-form .form-actions .form-submit:focus {
  8171. text-shadow: 0 0 3px white;
  8172. }
  8173. /* line 56, ../scss/styles.scss */
  8174. #uc-cart-checkout-form .form-actions .form-submit:active {
  8175. -webkit-transition: text-shadow 0s ease-out;
  8176. transition: text-shadow 0s ease-out;
  8177. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8178. }
  8179. /* line 2285, ../scss/styles.scss */
  8180. #uc-cart-checkout-form .form-actions .form-submit#edit-continue {
  8181. font-size: 16px;
  8182. font-weight: bold;
  8183. padding: 0.1em 0.3em 0.2em;
  8184. border-radius: 0.3em;
  8185. background-clip: padding-box;
  8186. border: 2px solid #ccc;
  8187. background-color: #ccc;
  8188. color: #4D4D4D;
  8189. cursor: pointer;
  8190. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8191. -webkit-transition: text-shadow 0.3s ease-out;
  8192. transition: text-shadow 0.3s ease-out;
  8193. text-align: center;
  8194. text-decoration: none;
  8195. cursor: pointer;
  8196. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8197. -webkit-transition: text-shadow 0.2s ease-out;
  8198. transition: text-shadow 0.2s ease-out;
  8199. border-color: #69CDCF;
  8200. background-color: #69CDCF;
  8201. color: #fff;
  8202. }
  8203. /* line 53, ../scss/styles.scss */
  8204. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form .form-actions .form-submit#edit-continue:focus {
  8205. text-shadow: 0 0 3px white;
  8206. }
  8207. /* line 56, ../scss/styles.scss */
  8208. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:active {
  8209. -webkit-transition: text-shadow 0s ease-out;
  8210. transition: text-shadow 0s ease-out;
  8211. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8212. }
  8213. /* line 66, ../scss/styles.scss */
  8214. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:hover, #uc-cart-checkout-form .form-actions .form-submit#edit-continue:focus {
  8215. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  8216. }
  8217. /* line 69, ../scss/styles.scss */
  8218. #uc-cart-checkout-form .form-actions .form-submit#edit-continue:active {
  8219. -webkit-transition: text-shadow 0s ease-out;
  8220. transition: text-shadow 0s ease-out;
  8221. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8222. }
  8223. /* UC CART && UC CHECKOUT VALIDATION */
  8224. /* line 2298, ../scss/styles.scss */
  8225. .page-cart-checkout-review #content > .inner-content {
  8226. display: inline-block;
  8227. padding: 1em;
  8228. }
  8229. /* line 2306, ../scss/styles.scss */
  8230. .page-cart-checkout-review #edit-actions {
  8231. margin: 0;
  8232. padding: 0;
  8233. }
  8234. /* line 2308, ../scss/styles.scss */
  8235. .page-cart-checkout-review #edit-actions:before, .page-cart-checkout-review #edit-actions:after {
  8236. display: block;
  8237. }
  8238. /* line 2312, ../scss/styles.scss */
  8239. .page-cart-checkout-review #review-instructions {
  8240. width: 30em;
  8241. padding: 1em 0;
  8242. }
  8243. /* line 2318, ../scss/styles.scss */
  8244. .page-cart-checkout-review table.order-review-table {
  8245. border: none;
  8246. }
  8247. /* line 2320, ../scss/styles.scss */
  8248. .page-cart-checkout-review table.order-review-table .pane-title-row {
  8249. border: none;
  8250. background-color: transparent;
  8251. text-align: left;
  8252. font-size: 18px;
  8253. }
  8254. /* line 2325, ../scss/styles.scss */
  8255. .page-cart-checkout-review table.order-review-table .pane-title-row td {
  8256. padding: 1em 0 0 0;
  8257. }
  8258. /* line 2328, ../scss/styles.scss */
  8259. .page-cart-checkout-review table.order-review-table table.cart-review tr.odd {
  8260. background-color: transparent;
  8261. border: none;
  8262. }
  8263. /* line 2333, ../scss/styles.scss */
  8264. .page-cart-checkout-review table.order-review-table td.title-col {
  8265. padding: 0;
  8266. text-align: left;
  8267. }
  8268. /* line 2337, ../scss/styles.scss */
  8269. .page-cart-checkout-review table.order-review-table td.data-col {
  8270. padding: 0;
  8271. width: 75%;
  8272. }
  8273. /* line 2341, ../scss/styles.scss */
  8274. .page-cart-checkout-review table.order-review-table .review-button-row {
  8275. border: none;
  8276. background-color: transparent;
  8277. }
  8278. /* line 2345, ../scss/styles.scss */
  8279. .page-cart-checkout-review table.order-review-table .review-button-row > td {
  8280. padding: 3em 0 0 0;
  8281. }
  8282. /* line 2349, ../scss/styles.scss */
  8283. .page-cart-checkout-review table.order-review-table .review-button-row form {
  8284. margin: 0 0.5em 0 0;
  8285. display: moz-inline-stack;
  8286. display: inline-block;
  8287. vertical-align: top;
  8288. zoom: 1;
  8289. *display: inline;
  8290. }
  8291. /* line 2356, ../scss/styles.scss */
  8292. .page-cart-checkout-review #edit-actions {
  8293. border: 0px;
  8294. background-color: transparent;
  8295. text-align: right;
  8296. }
  8297. /* line 2361, ../scss/styles.scss */
  8298. .page-cart-checkout-review input.form-submit {
  8299. font-size: 16px;
  8300. font-weight: bold;
  8301. padding: 0.1em 0.3em 0.2em;
  8302. border-radius: 0.3em;
  8303. background-clip: padding-box;
  8304. border: 2px solid #ccc;
  8305. background-color: #ccc;
  8306. color: #4D4D4D;
  8307. cursor: pointer;
  8308. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8309. -webkit-transition: text-shadow 0.3s ease-out;
  8310. transition: text-shadow 0.3s ease-out;
  8311. text-align: center;
  8312. text-decoration: none;
  8313. margin-left: 1em;
  8314. }
  8315. /* line 53, ../scss/styles.scss */
  8316. .page-cart-checkout-review input.form-submit:hover, .page-cart-checkout-review input.form-submit:focus {
  8317. text-shadow: 0 0 3px white;
  8318. }
  8319. /* line 56, ../scss/styles.scss */
  8320. .page-cart-checkout-review input.form-submit:active {
  8321. -webkit-transition: text-shadow 0s ease-out;
  8322. transition: text-shadow 0s ease-out;
  8323. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8324. }
  8325. /* line 2364, ../scss/styles.scss */
  8326. .page-cart-checkout-review input.form-submit#edit-submit {
  8327. font-size: 16px;
  8328. font-weight: bold;
  8329. padding: 0.1em 0.3em 0.2em;
  8330. border-radius: 0.3em;
  8331. background-clip: padding-box;
  8332. border: 2px solid #ccc;
  8333. background-color: #ccc;
  8334. color: #4D4D4D;
  8335. cursor: pointer;
  8336. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8337. -webkit-transition: text-shadow 0.3s ease-out;
  8338. transition: text-shadow 0.3s ease-out;
  8339. text-align: center;
  8340. text-decoration: none;
  8341. cursor: pointer;
  8342. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8343. -webkit-transition: text-shadow 0.2s ease-out;
  8344. transition: text-shadow 0.2s ease-out;
  8345. border-color: #69CDCF;
  8346. background-color: #69CDCF;
  8347. color: #fff;
  8348. }
  8349. /* line 53, ../scss/styles.scss */
  8350. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  8351. text-shadow: 0 0 3px white;
  8352. }
  8353. /* line 56, ../scss/styles.scss */
  8354. .page-cart-checkout-review input.form-submit#edit-submit:active {
  8355. -webkit-transition: text-shadow 0s ease-out;
  8356. transition: text-shadow 0s ease-out;
  8357. text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  8358. }
  8359. /* line 66, ../scss/styles.scss */
  8360. .page-cart-checkout-review input.form-submit#edit-submit:hover, .page-cart-checkout-review input.form-submit#edit-submit:focus {
  8361. text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  8362. }
  8363. /* line 69, ../scss/styles.scss */
  8364. .page-cart-checkout-review input.form-submit#edit-submit:active {
  8365. -webkit-transition: text-shadow 0s ease-out;
  8366. transition: text-shadow 0s ease-out;
  8367. text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  8368. }
  8369. /** WHO WE ARE */
  8370. /* line 2374, ../scss/styles.scss */
  8371. #didactique-page .node-didactique {
  8372. border-radius: 5px;
  8373. background-clip: padding-box;
  8374. background-color: #FFF;
  8375. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  8376. max-width: 850px;
  8377. font-size: 14px;
  8378. background-color: #fff;
  8379. margin: 1em auto;
  8380. padding: 1em;
  8381. }
  8382. /* line 2381, ../scss/styles.scss */
  8383. #didactique-page .node-didactique .field-name-field-emvideo {
  8384. margin: 1em 0;
  8385. }
  8386. /* line 2385, ../scss/styles.scss */
  8387. #didactique-page .node-didactique .field-name-title-field {
  8388. font-size: 24px;
  8389. font-weight: 900;
  8390. font-style: italic;
  8391. padding: 5px 0;
  8392. }
  8393. /* line 2389, ../scss/styles.scss */
  8394. #didactique-page .node-didactique .field-name-field-visuel figure, #didactique-page .node-didactique .field-name-field-visuel img {
  8395. max-width: 100%;
  8396. }
  8397. @media only screen and (min-width: 40.063em) {
  8398. /* line 2394, ../scss/styles.scss */
  8399. #didactique-page .side {
  8400. display: moz-inline-stack;
  8401. display: inline-block;
  8402. vertical-align: top;
  8403. zoom: 1;
  8404. *display: inline;
  8405. vertical-align: top;
  8406. }
  8407. /* line 2395, ../scss/styles.scss */
  8408. #didactique-page .group-sideleft {
  8409. width: 60%;
  8410. }
  8411. /* line 2396, ../scss/styles.scss */
  8412. #didactique-page .group-sideright {
  8413. width: 39%;
  8414. }
  8415. }
  8416. /** DIDACTIQUE */
  8417. @media only screen and (max-width: 40em) {
  8418. /* line 2408, ../scss/styles.scss */
  8419. .page-whoweare #tool-bar #block-materio-page-title-materio-page-title {
  8420. display: none;
  8421. }
  8422. }
  8423. /** maintenance */
  8424. /* line 2415, ../scss/styles.scss */
  8425. .maintenance-page #container, .maintenance-page #header {
  8426. text-align: center;
  8427. padding: 0;
  8428. position: relative;
  8429. }
  8430. /* line 2416, ../scss/styles.scss */
  8431. .maintenance-page #main {
  8432. background-color: transparent;
  8433. }
  8434. /* line 2417, ../scss/styles.scss */
  8435. .maintenance-page #header h1.site-name {
  8436. font-size: 36px;
  8437. margin: 0;
  8438. padding-left: 0;
  8439. }
  8440. /* line 2418, ../scss/styles.scss */
  8441. .maintenance-page h2.site-slogan {
  8442. font-size: 16px;
  8443. font-weight: 300;
  8444. margin: 0;
  8445. line-height: 1.1;
  8446. }
  8447. /** FAQ */
  8448. /* line 2422, ../scss/styles.scss */
  8449. .page-faq-page #main {
  8450. background: #fff url("../img/bg-faq.png") no-repeat bottom right;
  8451. }
  8452. /* line 2428, ../scss/styles.scss */
  8453. #content .faq-content .faq-description {
  8454. font-size: 12px;
  8455. padding-bottom: 2em;
  8456. }
  8457. /* line 2432, ../scss/styles.scss */
  8458. #content .faq-content ul.faq-ul-questions-top {
  8459. margin: 0;
  8460. }
  8461. /* line 2434, ../scss/styles.scss */
  8462. #content .faq-content ul.faq-ul-questions-top li {
  8463. list-style: none;
  8464. }
  8465. /* line 2436, ../scss/styles.scss */
  8466. #content .faq-content ul.faq-ul-questions-top li a {
  8467. font-size: 18px;
  8468. font-weight: 500;
  8469. }
  8470. /* line 2442, ../scss/styles.scss */
  8471. #content .faq-content h3.faq-header {
  8472. font-size: 20px;
  8473. font-weight: 700;
  8474. line-height: 1.2;
  8475. margin: 0;
  8476. }
  8477. /* line 2445, ../scss/styles.scss */
  8478. #content .faq-content h3.faq-header a {
  8479. color: #000;
  8480. }
  8481. /* line 2448, ../scss/styles.scss */
  8482. #content .faq-content .faq-dl-hide-answer {
  8483. padding: 0;
  8484. }
  8485. /* line 2451, ../scss/styles.scss */
  8486. #content .faq-content .faq-category-group {
  8487. padding-bottom: 1em;
  8488. }
  8489. /* line 2454, ../scss/styles.scss */
  8490. #content .faq-content .faq-question-answer {
  8491. padding: 0.3em 0 0 0.8em;
  8492. }
  8493. /* line 2456, ../scss/styles.scss */
  8494. #content .faq-content .faq-question-answer .faq-question {
  8495. font-size: 16px;
  8496. padding: 0;
  8497. font-weight: 500;
  8498. }
  8499. /* line 2458, ../scss/styles.scss */
  8500. #content .faq-content .faq-question-answer .faq-question a {
  8501. color: #000;
  8502. }
  8503. /* line 2460, ../scss/styles.scss */
  8504. #content .faq-content .faq-question-answer .faq-answer {
  8505. padding: 0;
  8506. margin-bottom: 2em;
  8507. font-size: 12px;
  8508. }
  8509. /* line 2466, ../scss/styles.scss */
  8510. #content .faq-content .field-name-body img {
  8511. max-width: 50%;
  8512. height: auto;
  8513. }