ionic.app.css 247 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816
  1. @charset "UTF-8";
  2. /*
  3. To customize the look and feel of Ionic, you can override the variables
  4. in ionic's _variables.scss file.
  5. For example, you might change some of the default colors:
  6. $light: #fff !default;
  7. $stable: #f8f8f8 !default;
  8. $positive: #387ef5 !default;
  9. $calm: #11c1f3 !default;
  10. $balanced: #33cd5f !default;
  11. $energized: #ffc900 !default;
  12. $assertive: #ef473a !default;
  13. $royal: #886aea !default;
  14. $dark: #444 !default;
  15. */
  16. /*!
  17. Ionicons, v2.0.1
  18. Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  19. https://twitter.com/benjsperry https://twitter.com/ionicframework
  20. MIT License: https://github.com/driftyco/ionicons
  21. Android-style icons originally built by Google’s
  22. Material Design Icons: https://github.com/google/material-design-icons
  23. used under CC BY http://creativecommons.org/licenses/by/4.0/
  24. Modified icons to fit ionicon’s grid from original.
  25. */
  26. @font-face {
  27. font-family: "Ionicons";
  28. src: url("../lib/ionic/fonts/ionicons.eot?v=2.0.1");
  29. src: url("../lib/ionic/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("../lib/ionic/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("../lib/ionic/fonts/ionicons.woff?v=2.0.1") format("woff"), url("../lib/ionic/fonts/ionicons.woff") format("woff"), url("../lib/ionic/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg");
  30. font-weight: normal;
  31. font-style: normal; }
  32. .ion, .ionicons,
  33. .ion-alert:before,
  34. .ion-alert-circled:before,
  35. .ion-android-add:before,
  36. .ion-android-add-circle:before,
  37. .ion-android-alarm-clock:before,
  38. .ion-android-alert:before,
  39. .ion-android-apps:before,
  40. .ion-android-archive:before,
  41. .ion-android-arrow-back:before,
  42. .ion-android-arrow-down:before,
  43. .ion-android-arrow-dropdown:before,
  44. .ion-android-arrow-dropdown-circle:before,
  45. .ion-android-arrow-dropleft:before,
  46. .ion-android-arrow-dropleft-circle:before,
  47. .ion-android-arrow-dropright:before,
  48. .ion-android-arrow-dropright-circle:before,
  49. .ion-android-arrow-dropup:before,
  50. .ion-android-arrow-dropup-circle:before,
  51. .ion-android-arrow-forward:before,
  52. .ion-android-arrow-up:before,
  53. .ion-android-attach:before,
  54. .ion-android-bar:before,
  55. .ion-android-bicycle:before,
  56. .ion-android-boat:before,
  57. .ion-android-bookmark:before,
  58. .ion-android-bulb:before,
  59. .ion-android-bus:before,
  60. .ion-android-calendar:before,
  61. .ion-android-call:before,
  62. .ion-android-camera:before,
  63. .ion-android-cancel:before,
  64. .ion-android-car:before,
  65. .ion-android-cart:before,
  66. .ion-android-chat:before,
  67. .ion-android-checkbox:before,
  68. .ion-android-checkbox-blank:before,
  69. .ion-android-checkbox-outline:before,
  70. .ion-android-checkbox-outline-blank:before,
  71. .ion-android-checkmark-circle:before,
  72. .ion-android-clipboard:before,
  73. .ion-android-close:before,
  74. .ion-android-cloud:before,
  75. .ion-android-cloud-circle:before,
  76. .ion-android-cloud-done:before,
  77. .ion-android-cloud-outline:before,
  78. .ion-android-color-palette:before,
  79. .ion-android-compass:before,
  80. .ion-android-contact:before,
  81. .ion-android-contacts:before,
  82. .ion-android-contract:before,
  83. .ion-android-create:before,
  84. .ion-android-delete:before,
  85. .ion-android-desktop:before,
  86. .ion-android-document:before,
  87. .ion-android-done:before,
  88. .ion-android-done-all:before,
  89. .ion-android-download:before,
  90. .ion-android-drafts:before,
  91. .ion-android-exit:before,
  92. .ion-android-expand:before,
  93. .ion-android-favorite:before,
  94. .ion-android-favorite-outline:before,
  95. .ion-android-film:before,
  96. .ion-android-folder:before,
  97. .ion-android-folder-open:before,
  98. .ion-android-funnel:before,
  99. .ion-android-globe:before,
  100. .ion-android-hand:before,
  101. .ion-android-hangout:before,
  102. .ion-android-happy:before,
  103. .ion-android-home:before,
  104. .ion-android-image:before,
  105. .ion-android-laptop:before,
  106. .ion-android-list:before,
  107. .ion-android-locate:before,
  108. .ion-android-lock:before,
  109. .ion-android-mail:before,
  110. .ion-android-map:before,
  111. .ion-android-menu:before,
  112. .ion-android-microphone:before,
  113. .ion-android-microphone-off:before,
  114. .ion-android-more-horizontal:before,
  115. .ion-android-more-vertical:before,
  116. .ion-android-navigate:before,
  117. .ion-android-notifications:before,
  118. .ion-android-notifications-none:before,
  119. .ion-android-notifications-off:before,
  120. .ion-android-open:before,
  121. .ion-android-options:before,
  122. .ion-android-people:before,
  123. .ion-android-person:before,
  124. .ion-android-person-add:before,
  125. .ion-android-phone-landscape:before,
  126. .ion-android-phone-portrait:before,
  127. .ion-android-pin:before,
  128. .ion-android-plane:before,
  129. .ion-android-playstore:before,
  130. .ion-android-print:before,
  131. .ion-android-radio-button-off:before,
  132. .ion-android-radio-button-on:before,
  133. .ion-android-refresh:before,
  134. .ion-android-remove:before,
  135. .ion-android-remove-circle:before,
  136. .ion-android-restaurant:before,
  137. .ion-android-sad:before,
  138. .ion-android-search:before,
  139. .ion-android-send:before,
  140. .ion-android-settings:before,
  141. .ion-android-share:before,
  142. .ion-android-share-alt:before,
  143. .ion-android-star:before,
  144. .ion-android-star-half:before,
  145. .ion-android-star-outline:before,
  146. .ion-android-stopwatch:before,
  147. .ion-android-subway:before,
  148. .ion-android-sunny:before,
  149. .ion-android-sync:before,
  150. .ion-android-textsms:before,
  151. .ion-android-time:before,
  152. .ion-android-train:before,
  153. .ion-android-unlock:before,
  154. .ion-android-upload:before,
  155. .ion-android-volume-down:before,
  156. .ion-android-volume-mute:before,
  157. .ion-android-volume-off:before,
  158. .ion-android-volume-up:before,
  159. .ion-android-walk:before,
  160. .ion-android-warning:before,
  161. .ion-android-watch:before,
  162. .ion-android-wifi:before,
  163. .ion-aperture:before,
  164. .ion-archive:before,
  165. .ion-arrow-down-a:before,
  166. .ion-arrow-down-b:before,
  167. .ion-arrow-down-c:before,
  168. .ion-arrow-expand:before,
  169. .ion-arrow-graph-down-left:before,
  170. .ion-arrow-graph-down-right:before,
  171. .ion-arrow-graph-up-left:before,
  172. .ion-arrow-graph-up-right:before,
  173. .ion-arrow-left-a:before,
  174. .ion-arrow-left-b:before,
  175. .ion-arrow-left-c:before,
  176. .ion-arrow-move:before,
  177. .ion-arrow-resize:before,
  178. .ion-arrow-return-left:before,
  179. .ion-arrow-return-right:before,
  180. .ion-arrow-right-a:before,
  181. .ion-arrow-right-b:before,
  182. .ion-arrow-right-c:before,
  183. .ion-arrow-shrink:before,
  184. .ion-arrow-swap:before,
  185. .ion-arrow-up-a:before,
  186. .ion-arrow-up-b:before,
  187. .ion-arrow-up-c:before,
  188. .ion-asterisk:before,
  189. .ion-at:before,
  190. .ion-backspace:before,
  191. .ion-backspace-outline:before,
  192. .ion-bag:before,
  193. .ion-battery-charging:before,
  194. .ion-battery-empty:before,
  195. .ion-battery-full:before,
  196. .ion-battery-half:before,
  197. .ion-battery-low:before,
  198. .ion-beaker:before,
  199. .ion-beer:before,
  200. .ion-bluetooth:before,
  201. .ion-bonfire:before,
  202. .ion-bookmark:before,
  203. .ion-bowtie:before,
  204. .ion-briefcase:before,
  205. .ion-bug:before,
  206. .ion-calculator:before,
  207. .ion-calendar:before,
  208. .ion-camera:before,
  209. .ion-card:before,
  210. .ion-cash:before,
  211. .ion-chatbox:before,
  212. .ion-chatbox-working:before,
  213. .ion-chatboxes:before,
  214. .ion-chatbubble:before,
  215. .ion-chatbubble-working:before,
  216. .ion-chatbubbles:before,
  217. .ion-checkmark:before,
  218. .ion-checkmark-circled:before,
  219. .ion-checkmark-round:before,
  220. .ion-chevron-down:before,
  221. .ion-chevron-left:before,
  222. .ion-chevron-right:before,
  223. .ion-chevron-up:before,
  224. .ion-clipboard:before,
  225. .ion-clock:before,
  226. .ion-close:before,
  227. .ion-close-circled:before,
  228. .ion-close-round:before,
  229. .ion-closed-captioning:before,
  230. .ion-cloud:before,
  231. .ion-code:before,
  232. .ion-code-download:before,
  233. .ion-code-working:before,
  234. .ion-coffee:before,
  235. .ion-compass:before,
  236. .ion-compose:before,
  237. .ion-connection-bars:before,
  238. .ion-contrast:before,
  239. .ion-crop:before,
  240. .ion-cube:before,
  241. .ion-disc:before,
  242. .ion-document:before,
  243. .ion-document-text:before,
  244. .ion-drag:before,
  245. .ion-earth:before,
  246. .ion-easel:before,
  247. .ion-edit:before,
  248. .ion-egg:before,
  249. .ion-eject:before,
  250. .ion-email:before,
  251. .ion-email-unread:before,
  252. .ion-erlenmeyer-flask:before,
  253. .ion-erlenmeyer-flask-bubbles:before,
  254. .ion-eye:before,
  255. .ion-eye-disabled:before,
  256. .ion-female:before,
  257. .ion-filing:before,
  258. .ion-film-marker:before,
  259. .ion-fireball:before,
  260. .ion-flag:before,
  261. .ion-flame:before,
  262. .ion-flash:before,
  263. .ion-flash-off:before,
  264. .ion-folder:before,
  265. .ion-fork:before,
  266. .ion-fork-repo:before,
  267. .ion-forward:before,
  268. .ion-funnel:before,
  269. .ion-gear-a:before,
  270. .ion-gear-b:before,
  271. .ion-grid:before,
  272. .ion-hammer:before,
  273. .ion-happy:before,
  274. .ion-happy-outline:before,
  275. .ion-headphone:before,
  276. .ion-heart:before,
  277. .ion-heart-broken:before,
  278. .ion-help:before,
  279. .ion-help-buoy:before,
  280. .ion-help-circled:before,
  281. .ion-home:before,
  282. .ion-icecream:before,
  283. .ion-image:before,
  284. .ion-images:before,
  285. .ion-information:before,
  286. .ion-information-circled:before,
  287. .ion-ionic:before,
  288. .ion-ios-alarm:before,
  289. .ion-ios-alarm-outline:before,
  290. .ion-ios-albums:before,
  291. .ion-ios-albums-outline:before,
  292. .ion-ios-americanfootball:before,
  293. .ion-ios-americanfootball-outline:before,
  294. .ion-ios-analytics:before,
  295. .ion-ios-analytics-outline:before,
  296. .ion-ios-arrow-back:before,
  297. .ion-ios-arrow-down:before,
  298. .ion-ios-arrow-forward:before,
  299. .ion-ios-arrow-left:before,
  300. .ion-ios-arrow-right:before,
  301. .ion-ios-arrow-thin-down:before,
  302. .ion-ios-arrow-thin-left:before,
  303. .ion-ios-arrow-thin-right:before,
  304. .ion-ios-arrow-thin-up:before,
  305. .ion-ios-arrow-up:before,
  306. .ion-ios-at:before,
  307. .ion-ios-at-outline:before,
  308. .ion-ios-barcode:before,
  309. .ion-ios-barcode-outline:before,
  310. .ion-ios-baseball:before,
  311. .ion-ios-baseball-outline:before,
  312. .ion-ios-basketball:before,
  313. .ion-ios-basketball-outline:before,
  314. .ion-ios-bell:before,
  315. .ion-ios-bell-outline:before,
  316. .ion-ios-body:before,
  317. .ion-ios-body-outline:before,
  318. .ion-ios-bolt:before,
  319. .ion-ios-bolt-outline:before,
  320. .ion-ios-book:before,
  321. .ion-ios-book-outline:before,
  322. .ion-ios-bookmarks:before,
  323. .ion-ios-bookmarks-outline:before,
  324. .ion-ios-box:before,
  325. .ion-ios-box-outline:before,
  326. .ion-ios-briefcase:before,
  327. .ion-ios-briefcase-outline:before,
  328. .ion-ios-browsers:before,
  329. .ion-ios-browsers-outline:before,
  330. .ion-ios-calculator:before,
  331. .ion-ios-calculator-outline:before,
  332. .ion-ios-calendar:before,
  333. .ion-ios-calendar-outline:before,
  334. .ion-ios-camera:before,
  335. .ion-ios-camera-outline:before,
  336. .ion-ios-cart:before,
  337. .ion-ios-cart-outline:before,
  338. .ion-ios-chatboxes:before,
  339. .ion-ios-chatboxes-outline:before,
  340. .ion-ios-chatbubble:before,
  341. .ion-ios-chatbubble-outline:before,
  342. .ion-ios-checkmark:before,
  343. .ion-ios-checkmark-empty:before,
  344. .ion-ios-checkmark-outline:before,
  345. .ion-ios-circle-filled:before,
  346. .ion-ios-circle-outline:before,
  347. .ion-ios-clock:before,
  348. .ion-ios-clock-outline:before,
  349. .ion-ios-close:before,
  350. .ion-ios-close-empty:before,
  351. .ion-ios-close-outline:before,
  352. .ion-ios-cloud:before,
  353. .ion-ios-cloud-download:before,
  354. .ion-ios-cloud-download-outline:before,
  355. .ion-ios-cloud-outline:before,
  356. .ion-ios-cloud-upload:before,
  357. .ion-ios-cloud-upload-outline:before,
  358. .ion-ios-cloudy:before,
  359. .ion-ios-cloudy-night:before,
  360. .ion-ios-cloudy-night-outline:before,
  361. .ion-ios-cloudy-outline:before,
  362. .ion-ios-cog:before,
  363. .ion-ios-cog-outline:before,
  364. .ion-ios-color-filter:before,
  365. .ion-ios-color-filter-outline:before,
  366. .ion-ios-color-wand:before,
  367. .ion-ios-color-wand-outline:before,
  368. .ion-ios-compose:before,
  369. .ion-ios-compose-outline:before,
  370. .ion-ios-contact:before,
  371. .ion-ios-contact-outline:before,
  372. .ion-ios-copy:before,
  373. .ion-ios-copy-outline:before,
  374. .ion-ios-crop:before,
  375. .ion-ios-crop-strong:before,
  376. .ion-ios-download:before,
  377. .ion-ios-download-outline:before,
  378. .ion-ios-drag:before,
  379. .ion-ios-email:before,
  380. .ion-ios-email-outline:before,
  381. .ion-ios-eye:before,
  382. .ion-ios-eye-outline:before,
  383. .ion-ios-fastforward:before,
  384. .ion-ios-fastforward-outline:before,
  385. .ion-ios-filing:before,
  386. .ion-ios-filing-outline:before,
  387. .ion-ios-film:before,
  388. .ion-ios-film-outline:before,
  389. .ion-ios-flag:before,
  390. .ion-ios-flag-outline:before,
  391. .ion-ios-flame:before,
  392. .ion-ios-flame-outline:before,
  393. .ion-ios-flask:before,
  394. .ion-ios-flask-outline:before,
  395. .ion-ios-flower:before,
  396. .ion-ios-flower-outline:before,
  397. .ion-ios-folder:before,
  398. .ion-ios-folder-outline:before,
  399. .ion-ios-football:before,
  400. .ion-ios-football-outline:before,
  401. .ion-ios-game-controller-a:before,
  402. .ion-ios-game-controller-a-outline:before,
  403. .ion-ios-game-controller-b:before,
  404. .ion-ios-game-controller-b-outline:before,
  405. .ion-ios-gear:before,
  406. .ion-ios-gear-outline:before,
  407. .ion-ios-glasses:before,
  408. .ion-ios-glasses-outline:before,
  409. .ion-ios-grid-view:before,
  410. .ion-ios-grid-view-outline:before,
  411. .ion-ios-heart:before,
  412. .ion-ios-heart-outline:before,
  413. .ion-ios-help:before,
  414. .ion-ios-help-empty:before,
  415. .ion-ios-help-outline:before,
  416. .ion-ios-home:before,
  417. .ion-ios-home-outline:before,
  418. .ion-ios-infinite:before,
  419. .ion-ios-infinite-outline:before,
  420. .ion-ios-information:before,
  421. .ion-ios-information-empty:before,
  422. .ion-ios-information-outline:before,
  423. .ion-ios-ionic-outline:before,
  424. .ion-ios-keypad:before,
  425. .ion-ios-keypad-outline:before,
  426. .ion-ios-lightbulb:before,
  427. .ion-ios-lightbulb-outline:before,
  428. .ion-ios-list:before,
  429. .ion-ios-list-outline:before,
  430. .ion-ios-location:before,
  431. .ion-ios-location-outline:before,
  432. .ion-ios-locked:before,
  433. .ion-ios-locked-outline:before,
  434. .ion-ios-loop:before,
  435. .ion-ios-loop-strong:before,
  436. .ion-ios-medical:before,
  437. .ion-ios-medical-outline:before,
  438. .ion-ios-medkit:before,
  439. .ion-ios-medkit-outline:before,
  440. .ion-ios-mic:before,
  441. .ion-ios-mic-off:before,
  442. .ion-ios-mic-outline:before,
  443. .ion-ios-minus:before,
  444. .ion-ios-minus-empty:before,
  445. .ion-ios-minus-outline:before,
  446. .ion-ios-monitor:before,
  447. .ion-ios-monitor-outline:before,
  448. .ion-ios-moon:before,
  449. .ion-ios-moon-outline:before,
  450. .ion-ios-more:before,
  451. .ion-ios-more-outline:before,
  452. .ion-ios-musical-note:before,
  453. .ion-ios-musical-notes:before,
  454. .ion-ios-navigate:before,
  455. .ion-ios-navigate-outline:before,
  456. .ion-ios-nutrition:before,
  457. .ion-ios-nutrition-outline:before,
  458. .ion-ios-paper:before,
  459. .ion-ios-paper-outline:before,
  460. .ion-ios-paperplane:before,
  461. .ion-ios-paperplane-outline:before,
  462. .ion-ios-partlysunny:before,
  463. .ion-ios-partlysunny-outline:before,
  464. .ion-ios-pause:before,
  465. .ion-ios-pause-outline:before,
  466. .ion-ios-paw:before,
  467. .ion-ios-paw-outline:before,
  468. .ion-ios-people:before,
  469. .ion-ios-people-outline:before,
  470. .ion-ios-person:before,
  471. .ion-ios-person-outline:before,
  472. .ion-ios-personadd:before,
  473. .ion-ios-personadd-outline:before,
  474. .ion-ios-photos:before,
  475. .ion-ios-photos-outline:before,
  476. .ion-ios-pie:before,
  477. .ion-ios-pie-outline:before,
  478. .ion-ios-pint:before,
  479. .ion-ios-pint-outline:before,
  480. .ion-ios-play:before,
  481. .ion-ios-play-outline:before,
  482. .ion-ios-plus:before,
  483. .ion-ios-plus-empty:before,
  484. .ion-ios-plus-outline:before,
  485. .ion-ios-pricetag:before,
  486. .ion-ios-pricetag-outline:before,
  487. .ion-ios-pricetags:before,
  488. .ion-ios-pricetags-outline:before,
  489. .ion-ios-printer:before,
  490. .ion-ios-printer-outline:before,
  491. .ion-ios-pulse:before,
  492. .ion-ios-pulse-strong:before,
  493. .ion-ios-rainy:before,
  494. .ion-ios-rainy-outline:before,
  495. .ion-ios-recording:before,
  496. .ion-ios-recording-outline:before,
  497. .ion-ios-redo:before,
  498. .ion-ios-redo-outline:before,
  499. .ion-ios-refresh:before,
  500. .ion-ios-refresh-empty:before,
  501. .ion-ios-refresh-outline:before,
  502. .ion-ios-reload:before,
  503. .ion-ios-reverse-camera:before,
  504. .ion-ios-reverse-camera-outline:before,
  505. .ion-ios-rewind:before,
  506. .ion-ios-rewind-outline:before,
  507. .ion-ios-rose:before,
  508. .ion-ios-rose-outline:before,
  509. .ion-ios-search:before,
  510. .ion-ios-search-strong:before,
  511. .ion-ios-settings:before,
  512. .ion-ios-settings-strong:before,
  513. .ion-ios-shuffle:before,
  514. .ion-ios-shuffle-strong:before,
  515. .ion-ios-skipbackward:before,
  516. .ion-ios-skipbackward-outline:before,
  517. .ion-ios-skipforward:before,
  518. .ion-ios-skipforward-outline:before,
  519. .ion-ios-snowy:before,
  520. .ion-ios-speedometer:before,
  521. .ion-ios-speedometer-outline:before,
  522. .ion-ios-star:before,
  523. .ion-ios-star-half:before,
  524. .ion-ios-star-outline:before,
  525. .ion-ios-stopwatch:before,
  526. .ion-ios-stopwatch-outline:before,
  527. .ion-ios-sunny:before,
  528. .ion-ios-sunny-outline:before,
  529. .ion-ios-telephone:before,
  530. .ion-ios-telephone-outline:before,
  531. .ion-ios-tennisball:before,
  532. .ion-ios-tennisball-outline:before,
  533. .ion-ios-thunderstorm:before,
  534. .ion-ios-thunderstorm-outline:before,
  535. .ion-ios-time:before,
  536. .ion-ios-time-outline:before,
  537. .ion-ios-timer:before,
  538. .ion-ios-timer-outline:before,
  539. .ion-ios-toggle:before,
  540. .ion-ios-toggle-outline:before,
  541. .ion-ios-trash:before,
  542. .ion-ios-trash-outline:before,
  543. .ion-ios-undo:before,
  544. .ion-ios-undo-outline:before,
  545. .ion-ios-unlocked:before,
  546. .ion-ios-unlocked-outline:before,
  547. .ion-ios-upload:before,
  548. .ion-ios-upload-outline:before,
  549. .ion-ios-videocam:before,
  550. .ion-ios-videocam-outline:before,
  551. .ion-ios-volume-high:before,
  552. .ion-ios-volume-low:before,
  553. .ion-ios-wineglass:before,
  554. .ion-ios-wineglass-outline:before,
  555. .ion-ios-world:before,
  556. .ion-ios-world-outline:before,
  557. .ion-ipad:before,
  558. .ion-iphone:before,
  559. .ion-ipod:before,
  560. .ion-jet:before,
  561. .ion-key:before,
  562. .ion-knife:before,
  563. .ion-laptop:before,
  564. .ion-leaf:before,
  565. .ion-levels:before,
  566. .ion-lightbulb:before,
  567. .ion-link:before,
  568. .ion-load-a:before,
  569. .ion-load-b:before,
  570. .ion-load-c:before,
  571. .ion-load-d:before,
  572. .ion-location:before,
  573. .ion-lock-combination:before,
  574. .ion-locked:before,
  575. .ion-log-in:before,
  576. .ion-log-out:before,
  577. .ion-loop:before,
  578. .ion-magnet:before,
  579. .ion-male:before,
  580. .ion-man:before,
  581. .ion-map:before,
  582. .ion-medkit:before,
  583. .ion-merge:before,
  584. .ion-mic-a:before,
  585. .ion-mic-b:before,
  586. .ion-mic-c:before,
  587. .ion-minus:before,
  588. .ion-minus-circled:before,
  589. .ion-minus-round:before,
  590. .ion-model-s:before,
  591. .ion-monitor:before,
  592. .ion-more:before,
  593. .ion-mouse:before,
  594. .ion-music-note:before,
  595. .ion-navicon:before,
  596. .ion-navicon-round:before,
  597. .ion-navigate:before,
  598. .ion-network:before,
  599. .ion-no-smoking:before,
  600. .ion-nuclear:before,
  601. .ion-outlet:before,
  602. .ion-paintbrush:before,
  603. .ion-paintbucket:before,
  604. .ion-paper-airplane:before,
  605. .ion-paperclip:before,
  606. .ion-pause:before,
  607. .ion-person:before,
  608. .ion-person-add:before,
  609. .ion-person-stalker:before,
  610. .ion-pie-graph:before,
  611. .ion-pin:before,
  612. .ion-pinpoint:before,
  613. .ion-pizza:before,
  614. .ion-plane:before,
  615. .ion-planet:before,
  616. .ion-play:before,
  617. .ion-playstation:before,
  618. .ion-plus:before,
  619. .ion-plus-circled:before,
  620. .ion-plus-round:before,
  621. .ion-podium:before,
  622. .ion-pound:before,
  623. .ion-power:before,
  624. .ion-pricetag:before,
  625. .ion-pricetags:before,
  626. .ion-printer:before,
  627. .ion-pull-request:before,
  628. .ion-qr-scanner:before,
  629. .ion-quote:before,
  630. .ion-radio-waves:before,
  631. .ion-record:before,
  632. .ion-refresh:before,
  633. .ion-reply:before,
  634. .ion-reply-all:before,
  635. .ion-ribbon-a:before,
  636. .ion-ribbon-b:before,
  637. .ion-sad:before,
  638. .ion-sad-outline:before,
  639. .ion-scissors:before,
  640. .ion-search:before,
  641. .ion-settings:before,
  642. .ion-share:before,
  643. .ion-shuffle:before,
  644. .ion-skip-backward:before,
  645. .ion-skip-forward:before,
  646. .ion-social-android:before,
  647. .ion-social-android-outline:before,
  648. .ion-social-angular:before,
  649. .ion-social-angular-outline:before,
  650. .ion-social-apple:before,
  651. .ion-social-apple-outline:before,
  652. .ion-social-bitcoin:before,
  653. .ion-social-bitcoin-outline:before,
  654. .ion-social-buffer:before,
  655. .ion-social-buffer-outline:before,
  656. .ion-social-chrome:before,
  657. .ion-social-chrome-outline:before,
  658. .ion-social-codepen:before,
  659. .ion-social-codepen-outline:before,
  660. .ion-social-css3:before,
  661. .ion-social-css3-outline:before,
  662. .ion-social-designernews:before,
  663. .ion-social-designernews-outline:before,
  664. .ion-social-dribbble:before,
  665. .ion-social-dribbble-outline:before,
  666. .ion-social-dropbox:before,
  667. .ion-social-dropbox-outline:before,
  668. .ion-social-euro:before,
  669. .ion-social-euro-outline:before,
  670. .ion-social-facebook:before,
  671. .ion-social-facebook-outline:before,
  672. .ion-social-foursquare:before,
  673. .ion-social-foursquare-outline:before,
  674. .ion-social-freebsd-devil:before,
  675. .ion-social-github:before,
  676. .ion-social-github-outline:before,
  677. .ion-social-google:before,
  678. .ion-social-google-outline:before,
  679. .ion-social-googleplus:before,
  680. .ion-social-googleplus-outline:before,
  681. .ion-social-hackernews:before,
  682. .ion-social-hackernews-outline:before,
  683. .ion-social-html5:before,
  684. .ion-social-html5-outline:before,
  685. .ion-social-instagram:before,
  686. .ion-social-instagram-outline:before,
  687. .ion-social-javascript:before,
  688. .ion-social-javascript-outline:before,
  689. .ion-social-linkedin:before,
  690. .ion-social-linkedin-outline:before,
  691. .ion-social-markdown:before,
  692. .ion-social-nodejs:before,
  693. .ion-social-octocat:before,
  694. .ion-social-pinterest:before,
  695. .ion-social-pinterest-outline:before,
  696. .ion-social-python:before,
  697. .ion-social-reddit:before,
  698. .ion-social-reddit-outline:before,
  699. .ion-social-rss:before,
  700. .ion-social-rss-outline:before,
  701. .ion-social-sass:before,
  702. .ion-social-skype:before,
  703. .ion-social-skype-outline:before,
  704. .ion-social-snapchat:before,
  705. .ion-social-snapchat-outline:before,
  706. .ion-social-tumblr:before,
  707. .ion-social-tumblr-outline:before,
  708. .ion-social-tux:before,
  709. .ion-social-twitch:before,
  710. .ion-social-twitch-outline:before,
  711. .ion-social-twitter:before,
  712. .ion-social-twitter-outline:before,
  713. .ion-social-usd:before,
  714. .ion-social-usd-outline:before,
  715. .ion-social-vimeo:before,
  716. .ion-social-vimeo-outline:before,
  717. .ion-social-whatsapp:before,
  718. .ion-social-whatsapp-outline:before,
  719. .ion-social-windows:before,
  720. .ion-social-windows-outline:before,
  721. .ion-social-wordpress:before,
  722. .ion-social-wordpress-outline:before,
  723. .ion-social-yahoo:before,
  724. .ion-social-yahoo-outline:before,
  725. .ion-social-yen:before,
  726. .ion-social-yen-outline:before,
  727. .ion-social-youtube:before,
  728. .ion-social-youtube-outline:before,
  729. .ion-soup-can:before,
  730. .ion-soup-can-outline:before,
  731. .ion-speakerphone:before,
  732. .ion-speedometer:before,
  733. .ion-spoon:before,
  734. .ion-star:before,
  735. .ion-stats-bars:before,
  736. .ion-steam:before,
  737. .ion-stop:before,
  738. .ion-thermometer:before,
  739. .ion-thumbsdown:before,
  740. .ion-thumbsup:before,
  741. .ion-toggle:before,
  742. .ion-toggle-filled:before,
  743. .ion-transgender:before,
  744. .ion-trash-a:before,
  745. .ion-trash-b:before,
  746. .ion-trophy:before,
  747. .ion-tshirt:before,
  748. .ion-tshirt-outline:before,
  749. .ion-umbrella:before,
  750. .ion-university:before,
  751. .ion-unlocked:before,
  752. .ion-upload:before,
  753. .ion-usb:before,
  754. .ion-videocamera:before,
  755. .ion-volume-high:before,
  756. .ion-volume-low:before,
  757. .ion-volume-medium:before,
  758. .ion-volume-mute:before,
  759. .ion-wand:before,
  760. .ion-waterdrop:before,
  761. .ion-wifi:before,
  762. .ion-wineglass:before,
  763. .ion-woman:before,
  764. .ion-wrench:before,
  765. .ion-xbox:before {
  766. display: inline-block;
  767. font-family: "Ionicons";
  768. speak: none;
  769. font-style: normal;
  770. font-weight: normal;
  771. font-variant: normal;
  772. text-transform: none;
  773. text-rendering: auto;
  774. line-height: 1;
  775. -webkit-font-smoothing: antialiased;
  776. -moz-osx-font-smoothing: grayscale; }
  777. .ion-alert:before {
  778. content: ""; }
  779. .ion-alert-circled:before {
  780. content: ""; }
  781. .ion-android-add:before {
  782. content: ""; }
  783. .ion-android-add-circle:before {
  784. content: ""; }
  785. .ion-android-alarm-clock:before {
  786. content: ""; }
  787. .ion-android-alert:before {
  788. content: ""; }
  789. .ion-android-apps:before {
  790. content: ""; }
  791. .ion-android-archive:before {
  792. content: ""; }
  793. .ion-android-arrow-back:before {
  794. content: ""; }
  795. .ion-android-arrow-down:before {
  796. content: ""; }
  797. .ion-android-arrow-dropdown:before {
  798. content: ""; }
  799. .ion-android-arrow-dropdown-circle:before {
  800. content: ""; }
  801. .ion-android-arrow-dropleft:before {
  802. content: ""; }
  803. .ion-android-arrow-dropleft-circle:before {
  804. content: ""; }
  805. .ion-android-arrow-dropright:before {
  806. content: ""; }
  807. .ion-android-arrow-dropright-circle:before {
  808. content: ""; }
  809. .ion-android-arrow-dropup:before {
  810. content: ""; }
  811. .ion-android-arrow-dropup-circle:before {
  812. content: ""; }
  813. .ion-android-arrow-forward:before {
  814. content: ""; }
  815. .ion-android-arrow-up:before {
  816. content: ""; }
  817. .ion-android-attach:before {
  818. content: ""; }
  819. .ion-android-bar:before {
  820. content: ""; }
  821. .ion-android-bicycle:before {
  822. content: ""; }
  823. .ion-android-boat:before {
  824. content: ""; }
  825. .ion-android-bookmark:before {
  826. content: ""; }
  827. .ion-android-bulb:before {
  828. content: ""; }
  829. .ion-android-bus:before {
  830. content: ""; }
  831. .ion-android-calendar:before {
  832. content: ""; }
  833. .ion-android-call:before {
  834. content: ""; }
  835. .ion-android-camera:before {
  836. content: ""; }
  837. .ion-android-cancel:before {
  838. content: ""; }
  839. .ion-android-car:before {
  840. content: ""; }
  841. .ion-android-cart:before {
  842. content: ""; }
  843. .ion-android-chat:before {
  844. content: ""; }
  845. .ion-android-checkbox:before {
  846. content: ""; }
  847. .ion-android-checkbox-blank:before {
  848. content: ""; }
  849. .ion-android-checkbox-outline:before {
  850. content: ""; }
  851. .ion-android-checkbox-outline-blank:before {
  852. content: ""; }
  853. .ion-android-checkmark-circle:before {
  854. content: ""; }
  855. .ion-android-clipboard:before {
  856. content: ""; }
  857. .ion-android-close:before {
  858. content: ""; }
  859. .ion-android-cloud:before {
  860. content: ""; }
  861. .ion-android-cloud-circle:before {
  862. content: ""; }
  863. .ion-android-cloud-done:before {
  864. content: ""; }
  865. .ion-android-cloud-outline:before {
  866. content: ""; }
  867. .ion-android-color-palette:before {
  868. content: ""; }
  869. .ion-android-compass:before {
  870. content: ""; }
  871. .ion-android-contact:before {
  872. content: ""; }
  873. .ion-android-contacts:before {
  874. content: ""; }
  875. .ion-android-contract:before {
  876. content: ""; }
  877. .ion-android-create:before {
  878. content: ""; }
  879. .ion-android-delete:before {
  880. content: ""; }
  881. .ion-android-desktop:before {
  882. content: ""; }
  883. .ion-android-document:before {
  884. content: ""; }
  885. .ion-android-done:before {
  886. content: ""; }
  887. .ion-android-done-all:before {
  888. content: ""; }
  889. .ion-android-download:before {
  890. content: ""; }
  891. .ion-android-drafts:before {
  892. content: ""; }
  893. .ion-android-exit:before {
  894. content: ""; }
  895. .ion-android-expand:before {
  896. content: ""; }
  897. .ion-android-favorite:before {
  898. content: ""; }
  899. .ion-android-favorite-outline:before {
  900. content: ""; }
  901. .ion-android-film:before {
  902. content: ""; }
  903. .ion-android-folder:before {
  904. content: ""; }
  905. .ion-android-folder-open:before {
  906. content: ""; }
  907. .ion-android-funnel:before {
  908. content: ""; }
  909. .ion-android-globe:before {
  910. content: ""; }
  911. .ion-android-hand:before {
  912. content: ""; }
  913. .ion-android-hangout:before {
  914. content: ""; }
  915. .ion-android-happy:before {
  916. content: ""; }
  917. .ion-android-home:before {
  918. content: ""; }
  919. .ion-android-image:before {
  920. content: ""; }
  921. .ion-android-laptop:before {
  922. content: ""; }
  923. .ion-android-list:before {
  924. content: ""; }
  925. .ion-android-locate:before {
  926. content: ""; }
  927. .ion-android-lock:before {
  928. content: ""; }
  929. .ion-android-mail:before {
  930. content: ""; }
  931. .ion-android-map:before {
  932. content: ""; }
  933. .ion-android-menu:before {
  934. content: ""; }
  935. .ion-android-microphone:before {
  936. content: ""; }
  937. .ion-android-microphone-off:before {
  938. content: ""; }
  939. .ion-android-more-horizontal:before {
  940. content: ""; }
  941. .ion-android-more-vertical:before {
  942. content: ""; }
  943. .ion-android-navigate:before {
  944. content: ""; }
  945. .ion-android-notifications:before {
  946. content: ""; }
  947. .ion-android-notifications-none:before {
  948. content: ""; }
  949. .ion-android-notifications-off:before {
  950. content: ""; }
  951. .ion-android-open:before {
  952. content: ""; }
  953. .ion-android-options:before {
  954. content: ""; }
  955. .ion-android-people:before {
  956. content: ""; }
  957. .ion-android-person:before {
  958. content: ""; }
  959. .ion-android-person-add:before {
  960. content: ""; }
  961. .ion-android-phone-landscape:before {
  962. content: ""; }
  963. .ion-android-phone-portrait:before {
  964. content: ""; }
  965. .ion-android-pin:before {
  966. content: ""; }
  967. .ion-android-plane:before {
  968. content: ""; }
  969. .ion-android-playstore:before {
  970. content: ""; }
  971. .ion-android-print:before {
  972. content: ""; }
  973. .ion-android-radio-button-off:before {
  974. content: ""; }
  975. .ion-android-radio-button-on:before {
  976. content: ""; }
  977. .ion-android-refresh:before {
  978. content: ""; }
  979. .ion-android-remove:before {
  980. content: ""; }
  981. .ion-android-remove-circle:before {
  982. content: ""; }
  983. .ion-android-restaurant:before {
  984. content: ""; }
  985. .ion-android-sad:before {
  986. content: ""; }
  987. .ion-android-search:before {
  988. content: ""; }
  989. .ion-android-send:before {
  990. content: ""; }
  991. .ion-android-settings:before {
  992. content: ""; }
  993. .ion-android-share:before {
  994. content: ""; }
  995. .ion-android-share-alt:before {
  996. content: ""; }
  997. .ion-android-star:before {
  998. content: ""; }
  999. .ion-android-star-half:before {
  1000. content: ""; }
  1001. .ion-android-star-outline:before {
  1002. content: ""; }
  1003. .ion-android-stopwatch:before {
  1004. content: ""; }
  1005. .ion-android-subway:before {
  1006. content: ""; }
  1007. .ion-android-sunny:before {
  1008. content: ""; }
  1009. .ion-android-sync:before {
  1010. content: ""; }
  1011. .ion-android-textsms:before {
  1012. content: ""; }
  1013. .ion-android-time:before {
  1014. content: ""; }
  1015. .ion-android-train:before {
  1016. content: ""; }
  1017. .ion-android-unlock:before {
  1018. content: ""; }
  1019. .ion-android-upload:before {
  1020. content: ""; }
  1021. .ion-android-volume-down:before {
  1022. content: ""; }
  1023. .ion-android-volume-mute:before {
  1024. content: ""; }
  1025. .ion-android-volume-off:before {
  1026. content: ""; }
  1027. .ion-android-volume-up:before {
  1028. content: ""; }
  1029. .ion-android-walk:before {
  1030. content: ""; }
  1031. .ion-android-warning:before {
  1032. content: ""; }
  1033. .ion-android-watch:before {
  1034. content: ""; }
  1035. .ion-android-wifi:before {
  1036. content: ""; }
  1037. .ion-aperture:before {
  1038. content: ""; }
  1039. .ion-archive:before {
  1040. content: ""; }
  1041. .ion-arrow-down-a:before {
  1042. content: ""; }
  1043. .ion-arrow-down-b:before {
  1044. content: ""; }
  1045. .ion-arrow-down-c:before {
  1046. content: ""; }
  1047. .ion-arrow-expand:before {
  1048. content: ""; }
  1049. .ion-arrow-graph-down-left:before {
  1050. content: ""; }
  1051. .ion-arrow-graph-down-right:before {
  1052. content: ""; }
  1053. .ion-arrow-graph-up-left:before {
  1054. content: ""; }
  1055. .ion-arrow-graph-up-right:before {
  1056. content: ""; }
  1057. .ion-arrow-left-a:before {
  1058. content: ""; }
  1059. .ion-arrow-left-b:before {
  1060. content: ""; }
  1061. .ion-arrow-left-c:before {
  1062. content: ""; }
  1063. .ion-arrow-move:before {
  1064. content: ""; }
  1065. .ion-arrow-resize:before {
  1066. content: ""; }
  1067. .ion-arrow-return-left:before {
  1068. content: ""; }
  1069. .ion-arrow-return-right:before {
  1070. content: ""; }
  1071. .ion-arrow-right-a:before {
  1072. content: ""; }
  1073. .ion-arrow-right-b:before {
  1074. content: ""; }
  1075. .ion-arrow-right-c:before {
  1076. content: ""; }
  1077. .ion-arrow-shrink:before {
  1078. content: ""; }
  1079. .ion-arrow-swap:before {
  1080. content: ""; }
  1081. .ion-arrow-up-a:before {
  1082. content: ""; }
  1083. .ion-arrow-up-b:before {
  1084. content: ""; }
  1085. .ion-arrow-up-c:before {
  1086. content: ""; }
  1087. .ion-asterisk:before {
  1088. content: ""; }
  1089. .ion-at:before {
  1090. content: ""; }
  1091. .ion-backspace:before {
  1092. content: ""; }
  1093. .ion-backspace-outline:before {
  1094. content: ""; }
  1095. .ion-bag:before {
  1096. content: ""; }
  1097. .ion-battery-charging:before {
  1098. content: ""; }
  1099. .ion-battery-empty:before {
  1100. content: ""; }
  1101. .ion-battery-full:before {
  1102. content: ""; }
  1103. .ion-battery-half:before {
  1104. content: ""; }
  1105. .ion-battery-low:before {
  1106. content: ""; }
  1107. .ion-beaker:before {
  1108. content: ""; }
  1109. .ion-beer:before {
  1110. content: ""; }
  1111. .ion-bluetooth:before {
  1112. content: ""; }
  1113. .ion-bonfire:before {
  1114. content: ""; }
  1115. .ion-bookmark:before {
  1116. content: ""; }
  1117. .ion-bowtie:before {
  1118. content: ""; }
  1119. .ion-briefcase:before {
  1120. content: ""; }
  1121. .ion-bug:before {
  1122. content: ""; }
  1123. .ion-calculator:before {
  1124. content: ""; }
  1125. .ion-calendar:before {
  1126. content: ""; }
  1127. .ion-camera:before {
  1128. content: ""; }
  1129. .ion-card:before {
  1130. content: ""; }
  1131. .ion-cash:before {
  1132. content: ""; }
  1133. .ion-chatbox:before {
  1134. content: ""; }
  1135. .ion-chatbox-working:before {
  1136. content: ""; }
  1137. .ion-chatboxes:before {
  1138. content: ""; }
  1139. .ion-chatbubble:before {
  1140. content: ""; }
  1141. .ion-chatbubble-working:before {
  1142. content: ""; }
  1143. .ion-chatbubbles:before {
  1144. content: ""; }
  1145. .ion-checkmark:before {
  1146. content: ""; }
  1147. .ion-checkmark-circled:before {
  1148. content: ""; }
  1149. .ion-checkmark-round:before {
  1150. content: ""; }
  1151. .ion-chevron-down:before {
  1152. content: ""; }
  1153. .ion-chevron-left:before {
  1154. content: ""; }
  1155. .ion-chevron-right:before {
  1156. content: ""; }
  1157. .ion-chevron-up:before {
  1158. content: ""; }
  1159. .ion-clipboard:before {
  1160. content: ""; }
  1161. .ion-clock:before {
  1162. content: ""; }
  1163. .ion-close:before {
  1164. content: ""; }
  1165. .ion-close-circled:before {
  1166. content: ""; }
  1167. .ion-close-round:before {
  1168. content: ""; }
  1169. .ion-closed-captioning:before {
  1170. content: ""; }
  1171. .ion-cloud:before {
  1172. content: ""; }
  1173. .ion-code:before {
  1174. content: ""; }
  1175. .ion-code-download:before {
  1176. content: ""; }
  1177. .ion-code-working:before {
  1178. content: ""; }
  1179. .ion-coffee:before {
  1180. content: ""; }
  1181. .ion-compass:before {
  1182. content: ""; }
  1183. .ion-compose:before {
  1184. content: ""; }
  1185. .ion-connection-bars:before {
  1186. content: ""; }
  1187. .ion-contrast:before {
  1188. content: ""; }
  1189. .ion-crop:before {
  1190. content: ""; }
  1191. .ion-cube:before {
  1192. content: ""; }
  1193. .ion-disc:before {
  1194. content: ""; }
  1195. .ion-document:before {
  1196. content: ""; }
  1197. .ion-document-text:before {
  1198. content: ""; }
  1199. .ion-drag:before {
  1200. content: ""; }
  1201. .ion-earth:before {
  1202. content: ""; }
  1203. .ion-easel:before {
  1204. content: ""; }
  1205. .ion-edit:before {
  1206. content: ""; }
  1207. .ion-egg:before {
  1208. content: ""; }
  1209. .ion-eject:before {
  1210. content: ""; }
  1211. .ion-email:before {
  1212. content: ""; }
  1213. .ion-email-unread:before {
  1214. content: ""; }
  1215. .ion-erlenmeyer-flask:before {
  1216. content: ""; }
  1217. .ion-erlenmeyer-flask-bubbles:before {
  1218. content: ""; }
  1219. .ion-eye:before {
  1220. content: ""; }
  1221. .ion-eye-disabled:before {
  1222. content: ""; }
  1223. .ion-female:before {
  1224. content: ""; }
  1225. .ion-filing:before {
  1226. content: ""; }
  1227. .ion-film-marker:before {
  1228. content: ""; }
  1229. .ion-fireball:before {
  1230. content: ""; }
  1231. .ion-flag:before {
  1232. content: ""; }
  1233. .ion-flame:before {
  1234. content: ""; }
  1235. .ion-flash:before {
  1236. content: ""; }
  1237. .ion-flash-off:before {
  1238. content: ""; }
  1239. .ion-folder:before {
  1240. content: ""; }
  1241. .ion-fork:before {
  1242. content: ""; }
  1243. .ion-fork-repo:before {
  1244. content: ""; }
  1245. .ion-forward:before {
  1246. content: ""; }
  1247. .ion-funnel:before {
  1248. content: ""; }
  1249. .ion-gear-a:before {
  1250. content: ""; }
  1251. .ion-gear-b:before {
  1252. content: ""; }
  1253. .ion-grid:before {
  1254. content: ""; }
  1255. .ion-hammer:before {
  1256. content: ""; }
  1257. .ion-happy:before {
  1258. content: ""; }
  1259. .ion-happy-outline:before {
  1260. content: ""; }
  1261. .ion-headphone:before {
  1262. content: ""; }
  1263. .ion-heart:before {
  1264. content: ""; }
  1265. .ion-heart-broken:before {
  1266. content: ""; }
  1267. .ion-help:before {
  1268. content: ""; }
  1269. .ion-help-buoy:before {
  1270. content: ""; }
  1271. .ion-help-circled:before {
  1272. content: ""; }
  1273. .ion-home:before {
  1274. content: ""; }
  1275. .ion-icecream:before {
  1276. content: ""; }
  1277. .ion-image:before {
  1278. content: ""; }
  1279. .ion-images:before {
  1280. content: ""; }
  1281. .ion-information:before {
  1282. content: ""; }
  1283. .ion-information-circled:before {
  1284. content: ""; }
  1285. .ion-ionic:before {
  1286. content: ""; }
  1287. .ion-ios-alarm:before {
  1288. content: ""; }
  1289. .ion-ios-alarm-outline:before {
  1290. content: ""; }
  1291. .ion-ios-albums:before {
  1292. content: ""; }
  1293. .ion-ios-albums-outline:before {
  1294. content: ""; }
  1295. .ion-ios-americanfootball:before {
  1296. content: ""; }
  1297. .ion-ios-americanfootball-outline:before {
  1298. content: ""; }
  1299. .ion-ios-analytics:before {
  1300. content: ""; }
  1301. .ion-ios-analytics-outline:before {
  1302. content: ""; }
  1303. .ion-ios-arrow-back:before {
  1304. content: ""; }
  1305. .ion-ios-arrow-down:before {
  1306. content: ""; }
  1307. .ion-ios-arrow-forward:before {
  1308. content: ""; }
  1309. .ion-ios-arrow-left:before {
  1310. content: ""; }
  1311. .ion-ios-arrow-right:before {
  1312. content: ""; }
  1313. .ion-ios-arrow-thin-down:before {
  1314. content: ""; }
  1315. .ion-ios-arrow-thin-left:before {
  1316. content: ""; }
  1317. .ion-ios-arrow-thin-right:before {
  1318. content: ""; }
  1319. .ion-ios-arrow-thin-up:before {
  1320. content: ""; }
  1321. .ion-ios-arrow-up:before {
  1322. content: ""; }
  1323. .ion-ios-at:before {
  1324. content: ""; }
  1325. .ion-ios-at-outline:before {
  1326. content: ""; }
  1327. .ion-ios-barcode:before {
  1328. content: ""; }
  1329. .ion-ios-barcode-outline:before {
  1330. content: ""; }
  1331. .ion-ios-baseball:before {
  1332. content: ""; }
  1333. .ion-ios-baseball-outline:before {
  1334. content: ""; }
  1335. .ion-ios-basketball:before {
  1336. content: ""; }
  1337. .ion-ios-basketball-outline:before {
  1338. content: ""; }
  1339. .ion-ios-bell:before {
  1340. content: ""; }
  1341. .ion-ios-bell-outline:before {
  1342. content: ""; }
  1343. .ion-ios-body:before {
  1344. content: ""; }
  1345. .ion-ios-body-outline:before {
  1346. content: ""; }
  1347. .ion-ios-bolt:before {
  1348. content: ""; }
  1349. .ion-ios-bolt-outline:before {
  1350. content: ""; }
  1351. .ion-ios-book:before {
  1352. content: ""; }
  1353. .ion-ios-book-outline:before {
  1354. content: ""; }
  1355. .ion-ios-bookmarks:before {
  1356. content: ""; }
  1357. .ion-ios-bookmarks-outline:before {
  1358. content: ""; }
  1359. .ion-ios-box:before {
  1360. content: ""; }
  1361. .ion-ios-box-outline:before {
  1362. content: ""; }
  1363. .ion-ios-briefcase:before {
  1364. content: ""; }
  1365. .ion-ios-briefcase-outline:before {
  1366. content: ""; }
  1367. .ion-ios-browsers:before {
  1368. content: ""; }
  1369. .ion-ios-browsers-outline:before {
  1370. content: ""; }
  1371. .ion-ios-calculator:before {
  1372. content: ""; }
  1373. .ion-ios-calculator-outline:before {
  1374. content: ""; }
  1375. .ion-ios-calendar:before {
  1376. content: ""; }
  1377. .ion-ios-calendar-outline:before {
  1378. content: ""; }
  1379. .ion-ios-camera:before {
  1380. content: ""; }
  1381. .ion-ios-camera-outline:before {
  1382. content: ""; }
  1383. .ion-ios-cart:before {
  1384. content: ""; }
  1385. .ion-ios-cart-outline:before {
  1386. content: ""; }
  1387. .ion-ios-chatboxes:before {
  1388. content: ""; }
  1389. .ion-ios-chatboxes-outline:before {
  1390. content: ""; }
  1391. .ion-ios-chatbubble:before {
  1392. content: ""; }
  1393. .ion-ios-chatbubble-outline:before {
  1394. content: ""; }
  1395. .ion-ios-checkmark:before {
  1396. content: ""; }
  1397. .ion-ios-checkmark-empty:before {
  1398. content: ""; }
  1399. .ion-ios-checkmark-outline:before {
  1400. content: ""; }
  1401. .ion-ios-circle-filled:before {
  1402. content: ""; }
  1403. .ion-ios-circle-outline:before {
  1404. content: ""; }
  1405. .ion-ios-clock:before {
  1406. content: ""; }
  1407. .ion-ios-clock-outline:before {
  1408. content: ""; }
  1409. .ion-ios-close:before {
  1410. content: ""; }
  1411. .ion-ios-close-empty:before {
  1412. content: ""; }
  1413. .ion-ios-close-outline:before {
  1414. content: ""; }
  1415. .ion-ios-cloud:before {
  1416. content: ""; }
  1417. .ion-ios-cloud-download:before {
  1418. content: ""; }
  1419. .ion-ios-cloud-download-outline:before {
  1420. content: ""; }
  1421. .ion-ios-cloud-outline:before {
  1422. content: ""; }
  1423. .ion-ios-cloud-upload:before {
  1424. content: ""; }
  1425. .ion-ios-cloud-upload-outline:before {
  1426. content: ""; }
  1427. .ion-ios-cloudy:before {
  1428. content: ""; }
  1429. .ion-ios-cloudy-night:before {
  1430. content: ""; }
  1431. .ion-ios-cloudy-night-outline:before {
  1432. content: ""; }
  1433. .ion-ios-cloudy-outline:before {
  1434. content: ""; }
  1435. .ion-ios-cog:before {
  1436. content: ""; }
  1437. .ion-ios-cog-outline:before {
  1438. content: ""; }
  1439. .ion-ios-color-filter:before {
  1440. content: ""; }
  1441. .ion-ios-color-filter-outline:before {
  1442. content: ""; }
  1443. .ion-ios-color-wand:before {
  1444. content: ""; }
  1445. .ion-ios-color-wand-outline:before {
  1446. content: ""; }
  1447. .ion-ios-compose:before {
  1448. content: ""; }
  1449. .ion-ios-compose-outline:before {
  1450. content: ""; }
  1451. .ion-ios-contact:before {
  1452. content: ""; }
  1453. .ion-ios-contact-outline:before {
  1454. content: ""; }
  1455. .ion-ios-copy:before {
  1456. content: ""; }
  1457. .ion-ios-copy-outline:before {
  1458. content: ""; }
  1459. .ion-ios-crop:before {
  1460. content: ""; }
  1461. .ion-ios-crop-strong:before {
  1462. content: ""; }
  1463. .ion-ios-download:before {
  1464. content: ""; }
  1465. .ion-ios-download-outline:before {
  1466. content: ""; }
  1467. .ion-ios-drag:before {
  1468. content: ""; }
  1469. .ion-ios-email:before {
  1470. content: ""; }
  1471. .ion-ios-email-outline:before {
  1472. content: ""; }
  1473. .ion-ios-eye:before {
  1474. content: ""; }
  1475. .ion-ios-eye-outline:before {
  1476. content: ""; }
  1477. .ion-ios-fastforward:before {
  1478. content: ""; }
  1479. .ion-ios-fastforward-outline:before {
  1480. content: ""; }
  1481. .ion-ios-filing:before {
  1482. content: ""; }
  1483. .ion-ios-filing-outline:before {
  1484. content: ""; }
  1485. .ion-ios-film:before {
  1486. content: ""; }
  1487. .ion-ios-film-outline:before {
  1488. content: ""; }
  1489. .ion-ios-flag:before {
  1490. content: ""; }
  1491. .ion-ios-flag-outline:before {
  1492. content: ""; }
  1493. .ion-ios-flame:before {
  1494. content: ""; }
  1495. .ion-ios-flame-outline:before {
  1496. content: ""; }
  1497. .ion-ios-flask:before {
  1498. content: ""; }
  1499. .ion-ios-flask-outline:before {
  1500. content: ""; }
  1501. .ion-ios-flower:before {
  1502. content: ""; }
  1503. .ion-ios-flower-outline:before {
  1504. content: ""; }
  1505. .ion-ios-folder:before {
  1506. content: ""; }
  1507. .ion-ios-folder-outline:before {
  1508. content: ""; }
  1509. .ion-ios-football:before {
  1510. content: ""; }
  1511. .ion-ios-football-outline:before {
  1512. content: ""; }
  1513. .ion-ios-game-controller-a:before {
  1514. content: ""; }
  1515. .ion-ios-game-controller-a-outline:before {
  1516. content: ""; }
  1517. .ion-ios-game-controller-b:before {
  1518. content: ""; }
  1519. .ion-ios-game-controller-b-outline:before {
  1520. content: ""; }
  1521. .ion-ios-gear:before {
  1522. content: ""; }
  1523. .ion-ios-gear-outline:before {
  1524. content: ""; }
  1525. .ion-ios-glasses:before {
  1526. content: ""; }
  1527. .ion-ios-glasses-outline:before {
  1528. content: ""; }
  1529. .ion-ios-grid-view:before {
  1530. content: ""; }
  1531. .ion-ios-grid-view-outline:before {
  1532. content: ""; }
  1533. .ion-ios-heart:before {
  1534. content: ""; }
  1535. .ion-ios-heart-outline:before {
  1536. content: ""; }
  1537. .ion-ios-help:before {
  1538. content: ""; }
  1539. .ion-ios-help-empty:before {
  1540. content: ""; }
  1541. .ion-ios-help-outline:before {
  1542. content: ""; }
  1543. .ion-ios-home:before {
  1544. content: ""; }
  1545. .ion-ios-home-outline:before {
  1546. content: ""; }
  1547. .ion-ios-infinite:before {
  1548. content: ""; }
  1549. .ion-ios-infinite-outline:before {
  1550. content: ""; }
  1551. .ion-ios-information:before {
  1552. content: ""; }
  1553. .ion-ios-information-empty:before {
  1554. content: ""; }
  1555. .ion-ios-information-outline:before {
  1556. content: ""; }
  1557. .ion-ios-ionic-outline:before {
  1558. content: ""; }
  1559. .ion-ios-keypad:before {
  1560. content: ""; }
  1561. .ion-ios-keypad-outline:before {
  1562. content: ""; }
  1563. .ion-ios-lightbulb:before {
  1564. content: ""; }
  1565. .ion-ios-lightbulb-outline:before {
  1566. content: ""; }
  1567. .ion-ios-list:before {
  1568. content: ""; }
  1569. .ion-ios-list-outline:before {
  1570. content: ""; }
  1571. .ion-ios-location:before {
  1572. content: ""; }
  1573. .ion-ios-location-outline:before {
  1574. content: ""; }
  1575. .ion-ios-locked:before {
  1576. content: ""; }
  1577. .ion-ios-locked-outline:before {
  1578. content: ""; }
  1579. .ion-ios-loop:before {
  1580. content: ""; }
  1581. .ion-ios-loop-strong:before {
  1582. content: ""; }
  1583. .ion-ios-medical:before {
  1584. content: ""; }
  1585. .ion-ios-medical-outline:before {
  1586. content: ""; }
  1587. .ion-ios-medkit:before {
  1588. content: ""; }
  1589. .ion-ios-medkit-outline:before {
  1590. content: ""; }
  1591. .ion-ios-mic:before {
  1592. content: ""; }
  1593. .ion-ios-mic-off:before {
  1594. content: ""; }
  1595. .ion-ios-mic-outline:before {
  1596. content: ""; }
  1597. .ion-ios-minus:before {
  1598. content: ""; }
  1599. .ion-ios-minus-empty:before {
  1600. content: ""; }
  1601. .ion-ios-minus-outline:before {
  1602. content: ""; }
  1603. .ion-ios-monitor:before {
  1604. content: ""; }
  1605. .ion-ios-monitor-outline:before {
  1606. content: ""; }
  1607. .ion-ios-moon:before {
  1608. content: ""; }
  1609. .ion-ios-moon-outline:before {
  1610. content: ""; }
  1611. .ion-ios-more:before {
  1612. content: ""; }
  1613. .ion-ios-more-outline:before {
  1614. content: ""; }
  1615. .ion-ios-musical-note:before {
  1616. content: ""; }
  1617. .ion-ios-musical-notes:before {
  1618. content: ""; }
  1619. .ion-ios-navigate:before {
  1620. content: ""; }
  1621. .ion-ios-navigate-outline:before {
  1622. content: ""; }
  1623. .ion-ios-nutrition:before {
  1624. content: ""; }
  1625. .ion-ios-nutrition-outline:before {
  1626. content: ""; }
  1627. .ion-ios-paper:before {
  1628. content: ""; }
  1629. .ion-ios-paper-outline:before {
  1630. content: ""; }
  1631. .ion-ios-paperplane:before {
  1632. content: ""; }
  1633. .ion-ios-paperplane-outline:before {
  1634. content: ""; }
  1635. .ion-ios-partlysunny:before {
  1636. content: ""; }
  1637. .ion-ios-partlysunny-outline:before {
  1638. content: ""; }
  1639. .ion-ios-pause:before {
  1640. content: ""; }
  1641. .ion-ios-pause-outline:before {
  1642. content: ""; }
  1643. .ion-ios-paw:before {
  1644. content: ""; }
  1645. .ion-ios-paw-outline:before {
  1646. content: ""; }
  1647. .ion-ios-people:before {
  1648. content: ""; }
  1649. .ion-ios-people-outline:before {
  1650. content: ""; }
  1651. .ion-ios-person:before {
  1652. content: ""; }
  1653. .ion-ios-person-outline:before {
  1654. content: ""; }
  1655. .ion-ios-personadd:before {
  1656. content: ""; }
  1657. .ion-ios-personadd-outline:before {
  1658. content: ""; }
  1659. .ion-ios-photos:before {
  1660. content: ""; }
  1661. .ion-ios-photos-outline:before {
  1662. content: ""; }
  1663. .ion-ios-pie:before {
  1664. content: ""; }
  1665. .ion-ios-pie-outline:before {
  1666. content: ""; }
  1667. .ion-ios-pint:before {
  1668. content: ""; }
  1669. .ion-ios-pint-outline:before {
  1670. content: ""; }
  1671. .ion-ios-play:before {
  1672. content: ""; }
  1673. .ion-ios-play-outline:before {
  1674. content: ""; }
  1675. .ion-ios-plus:before {
  1676. content: ""; }
  1677. .ion-ios-plus-empty:before {
  1678. content: ""; }
  1679. .ion-ios-plus-outline:before {
  1680. content: ""; }
  1681. .ion-ios-pricetag:before {
  1682. content: ""; }
  1683. .ion-ios-pricetag-outline:before {
  1684. content: ""; }
  1685. .ion-ios-pricetags:before {
  1686. content: ""; }
  1687. .ion-ios-pricetags-outline:before {
  1688. content: ""; }
  1689. .ion-ios-printer:before {
  1690. content: ""; }
  1691. .ion-ios-printer-outline:before {
  1692. content: ""; }
  1693. .ion-ios-pulse:before {
  1694. content: ""; }
  1695. .ion-ios-pulse-strong:before {
  1696. content: ""; }
  1697. .ion-ios-rainy:before {
  1698. content: ""; }
  1699. .ion-ios-rainy-outline:before {
  1700. content: ""; }
  1701. .ion-ios-recording:before {
  1702. content: ""; }
  1703. .ion-ios-recording-outline:before {
  1704. content: ""; }
  1705. .ion-ios-redo:before {
  1706. content: ""; }
  1707. .ion-ios-redo-outline:before {
  1708. content: ""; }
  1709. .ion-ios-refresh:before {
  1710. content: ""; }
  1711. .ion-ios-refresh-empty:before {
  1712. content: ""; }
  1713. .ion-ios-refresh-outline:before {
  1714. content: ""; }
  1715. .ion-ios-reload:before {
  1716. content: ""; }
  1717. .ion-ios-reverse-camera:before {
  1718. content: ""; }
  1719. .ion-ios-reverse-camera-outline:before {
  1720. content: ""; }
  1721. .ion-ios-rewind:before {
  1722. content: ""; }
  1723. .ion-ios-rewind-outline:before {
  1724. content: ""; }
  1725. .ion-ios-rose:before {
  1726. content: ""; }
  1727. .ion-ios-rose-outline:before {
  1728. content: ""; }
  1729. .ion-ios-search:before {
  1730. content: ""; }
  1731. .ion-ios-search-strong:before {
  1732. content: ""; }
  1733. .ion-ios-settings:before {
  1734. content: ""; }
  1735. .ion-ios-settings-strong:before {
  1736. content: ""; }
  1737. .ion-ios-shuffle:before {
  1738. content: ""; }
  1739. .ion-ios-shuffle-strong:before {
  1740. content: ""; }
  1741. .ion-ios-skipbackward:before {
  1742. content: ""; }
  1743. .ion-ios-skipbackward-outline:before {
  1744. content: ""; }
  1745. .ion-ios-skipforward:before {
  1746. content: ""; }
  1747. .ion-ios-skipforward-outline:before {
  1748. content: ""; }
  1749. .ion-ios-snowy:before {
  1750. content: ""; }
  1751. .ion-ios-speedometer:before {
  1752. content: ""; }
  1753. .ion-ios-speedometer-outline:before {
  1754. content: ""; }
  1755. .ion-ios-star:before {
  1756. content: ""; }
  1757. .ion-ios-star-half:before {
  1758. content: ""; }
  1759. .ion-ios-star-outline:before {
  1760. content: ""; }
  1761. .ion-ios-stopwatch:before {
  1762. content: ""; }
  1763. .ion-ios-stopwatch-outline:before {
  1764. content: ""; }
  1765. .ion-ios-sunny:before {
  1766. content: ""; }
  1767. .ion-ios-sunny-outline:before {
  1768. content: ""; }
  1769. .ion-ios-telephone:before {
  1770. content: ""; }
  1771. .ion-ios-telephone-outline:before {
  1772. content: ""; }
  1773. .ion-ios-tennisball:before {
  1774. content: ""; }
  1775. .ion-ios-tennisball-outline:before {
  1776. content: ""; }
  1777. .ion-ios-thunderstorm:before {
  1778. content: ""; }
  1779. .ion-ios-thunderstorm-outline:before {
  1780. content: ""; }
  1781. .ion-ios-time:before {
  1782. content: ""; }
  1783. .ion-ios-time-outline:before {
  1784. content: ""; }
  1785. .ion-ios-timer:before {
  1786. content: ""; }
  1787. .ion-ios-timer-outline:before {
  1788. content: ""; }
  1789. .ion-ios-toggle:before {
  1790. content: ""; }
  1791. .ion-ios-toggle-outline:before {
  1792. content: ""; }
  1793. .ion-ios-trash:before {
  1794. content: ""; }
  1795. .ion-ios-trash-outline:before {
  1796. content: ""; }
  1797. .ion-ios-undo:before {
  1798. content: ""; }
  1799. .ion-ios-undo-outline:before {
  1800. content: ""; }
  1801. .ion-ios-unlocked:before {
  1802. content: ""; }
  1803. .ion-ios-unlocked-outline:before {
  1804. content: ""; }
  1805. .ion-ios-upload:before {
  1806. content: ""; }
  1807. .ion-ios-upload-outline:before {
  1808. content: ""; }
  1809. .ion-ios-videocam:before {
  1810. content: ""; }
  1811. .ion-ios-videocam-outline:before {
  1812. content: ""; }
  1813. .ion-ios-volume-high:before {
  1814. content: ""; }
  1815. .ion-ios-volume-low:before {
  1816. content: ""; }
  1817. .ion-ios-wineglass:before {
  1818. content: ""; }
  1819. .ion-ios-wineglass-outline:before {
  1820. content: ""; }
  1821. .ion-ios-world:before {
  1822. content: ""; }
  1823. .ion-ios-world-outline:before {
  1824. content: ""; }
  1825. .ion-ipad:before {
  1826. content: ""; }
  1827. .ion-iphone:before {
  1828. content: ""; }
  1829. .ion-ipod:before {
  1830. content: ""; }
  1831. .ion-jet:before {
  1832. content: ""; }
  1833. .ion-key:before {
  1834. content: ""; }
  1835. .ion-knife:before {
  1836. content: ""; }
  1837. .ion-laptop:before {
  1838. content: ""; }
  1839. .ion-leaf:before {
  1840. content: ""; }
  1841. .ion-levels:before {
  1842. content: ""; }
  1843. .ion-lightbulb:before {
  1844. content: ""; }
  1845. .ion-link:before {
  1846. content: ""; }
  1847. .ion-load-a:before {
  1848. content: ""; }
  1849. .ion-load-b:before {
  1850. content: ""; }
  1851. .ion-load-c:before {
  1852. content: ""; }
  1853. .ion-load-d:before {
  1854. content: ""; }
  1855. .ion-location:before {
  1856. content: ""; }
  1857. .ion-lock-combination:before {
  1858. content: ""; }
  1859. .ion-locked:before {
  1860. content: ""; }
  1861. .ion-log-in:before {
  1862. content: ""; }
  1863. .ion-log-out:before {
  1864. content: ""; }
  1865. .ion-loop:before {
  1866. content: ""; }
  1867. .ion-magnet:before {
  1868. content: ""; }
  1869. .ion-male:before {
  1870. content: ""; }
  1871. .ion-man:before {
  1872. content: ""; }
  1873. .ion-map:before {
  1874. content: ""; }
  1875. .ion-medkit:before {
  1876. content: ""; }
  1877. .ion-merge:before {
  1878. content: ""; }
  1879. .ion-mic-a:before {
  1880. content: ""; }
  1881. .ion-mic-b:before {
  1882. content: ""; }
  1883. .ion-mic-c:before {
  1884. content: ""; }
  1885. .ion-minus:before {
  1886. content: ""; }
  1887. .ion-minus-circled:before {
  1888. content: ""; }
  1889. .ion-minus-round:before {
  1890. content: ""; }
  1891. .ion-model-s:before {
  1892. content: ""; }
  1893. .ion-monitor:before {
  1894. content: ""; }
  1895. .ion-more:before {
  1896. content: ""; }
  1897. .ion-mouse:before {
  1898. content: ""; }
  1899. .ion-music-note:before {
  1900. content: ""; }
  1901. .ion-navicon:before {
  1902. content: ""; }
  1903. .ion-navicon-round:before {
  1904. content: ""; }
  1905. .ion-navigate:before {
  1906. content: ""; }
  1907. .ion-network:before {
  1908. content: ""; }
  1909. .ion-no-smoking:before {
  1910. content: ""; }
  1911. .ion-nuclear:before {
  1912. content: ""; }
  1913. .ion-outlet:before {
  1914. content: ""; }
  1915. .ion-paintbrush:before {
  1916. content: ""; }
  1917. .ion-paintbucket:before {
  1918. content: ""; }
  1919. .ion-paper-airplane:before {
  1920. content: ""; }
  1921. .ion-paperclip:before {
  1922. content: ""; }
  1923. .ion-pause:before {
  1924. content: ""; }
  1925. .ion-person:before {
  1926. content: ""; }
  1927. .ion-person-add:before {
  1928. content: ""; }
  1929. .ion-person-stalker:before {
  1930. content: ""; }
  1931. .ion-pie-graph:before {
  1932. content: ""; }
  1933. .ion-pin:before {
  1934. content: ""; }
  1935. .ion-pinpoint:before {
  1936. content: ""; }
  1937. .ion-pizza:before {
  1938. content: ""; }
  1939. .ion-plane:before {
  1940. content: ""; }
  1941. .ion-planet:before {
  1942. content: ""; }
  1943. .ion-play:before {
  1944. content: ""; }
  1945. .ion-playstation:before {
  1946. content: ""; }
  1947. .ion-plus:before {
  1948. content: ""; }
  1949. .ion-plus-circled:before {
  1950. content: ""; }
  1951. .ion-plus-round:before {
  1952. content: ""; }
  1953. .ion-podium:before {
  1954. content: ""; }
  1955. .ion-pound:before {
  1956. content: ""; }
  1957. .ion-power:before {
  1958. content: ""; }
  1959. .ion-pricetag:before {
  1960. content: ""; }
  1961. .ion-pricetags:before {
  1962. content: ""; }
  1963. .ion-printer:before {
  1964. content: ""; }
  1965. .ion-pull-request:before {
  1966. content: ""; }
  1967. .ion-qr-scanner:before {
  1968. content: ""; }
  1969. .ion-quote:before {
  1970. content: ""; }
  1971. .ion-radio-waves:before {
  1972. content: ""; }
  1973. .ion-record:before {
  1974. content: ""; }
  1975. .ion-refresh:before {
  1976. content: ""; }
  1977. .ion-reply:before {
  1978. content: ""; }
  1979. .ion-reply-all:before {
  1980. content: ""; }
  1981. .ion-ribbon-a:before {
  1982. content: ""; }
  1983. .ion-ribbon-b:before {
  1984. content: ""; }
  1985. .ion-sad:before {
  1986. content: ""; }
  1987. .ion-sad-outline:before {
  1988. content: ""; }
  1989. .ion-scissors:before {
  1990. content: ""; }
  1991. .ion-search:before {
  1992. content: ""; }
  1993. .ion-settings:before {
  1994. content: ""; }
  1995. .ion-share:before {
  1996. content: ""; }
  1997. .ion-shuffle:before {
  1998. content: ""; }
  1999. .ion-skip-backward:before {
  2000. content: ""; }
  2001. .ion-skip-forward:before {
  2002. content: ""; }
  2003. .ion-social-android:before {
  2004. content: ""; }
  2005. .ion-social-android-outline:before {
  2006. content: ""; }
  2007. .ion-social-angular:before {
  2008. content: ""; }
  2009. .ion-social-angular-outline:before {
  2010. content: ""; }
  2011. .ion-social-apple:before {
  2012. content: ""; }
  2013. .ion-social-apple-outline:before {
  2014. content: ""; }
  2015. .ion-social-bitcoin:before {
  2016. content: ""; }
  2017. .ion-social-bitcoin-outline:before {
  2018. content: ""; }
  2019. .ion-social-buffer:before {
  2020. content: ""; }
  2021. .ion-social-buffer-outline:before {
  2022. content: ""; }
  2023. .ion-social-chrome:before {
  2024. content: ""; }
  2025. .ion-social-chrome-outline:before {
  2026. content: ""; }
  2027. .ion-social-codepen:before {
  2028. content: ""; }
  2029. .ion-social-codepen-outline:before {
  2030. content: ""; }
  2031. .ion-social-css3:before {
  2032. content: ""; }
  2033. .ion-social-css3-outline:before {
  2034. content: ""; }
  2035. .ion-social-designernews:before {
  2036. content: ""; }
  2037. .ion-social-designernews-outline:before {
  2038. content: ""; }
  2039. .ion-social-dribbble:before {
  2040. content: ""; }
  2041. .ion-social-dribbble-outline:before {
  2042. content: ""; }
  2043. .ion-social-dropbox:before {
  2044. content: ""; }
  2045. .ion-social-dropbox-outline:before {
  2046. content: ""; }
  2047. .ion-social-euro:before {
  2048. content: ""; }
  2049. .ion-social-euro-outline:before {
  2050. content: ""; }
  2051. .ion-social-facebook:before {
  2052. content: ""; }
  2053. .ion-social-facebook-outline:before {
  2054. content: ""; }
  2055. .ion-social-foursquare:before {
  2056. content: ""; }
  2057. .ion-social-foursquare-outline:before {
  2058. content: ""; }
  2059. .ion-social-freebsd-devil:before {
  2060. content: ""; }
  2061. .ion-social-github:before {
  2062. content: ""; }
  2063. .ion-social-github-outline:before {
  2064. content: ""; }
  2065. .ion-social-google:before {
  2066. content: ""; }
  2067. .ion-social-google-outline:before {
  2068. content: ""; }
  2069. .ion-social-googleplus:before {
  2070. content: ""; }
  2071. .ion-social-googleplus-outline:before {
  2072. content: ""; }
  2073. .ion-social-hackernews:before {
  2074. content: ""; }
  2075. .ion-social-hackernews-outline:before {
  2076. content: ""; }
  2077. .ion-social-html5:before {
  2078. content: ""; }
  2079. .ion-social-html5-outline:before {
  2080. content: ""; }
  2081. .ion-social-instagram:before {
  2082. content: ""; }
  2083. .ion-social-instagram-outline:before {
  2084. content: ""; }
  2085. .ion-social-javascript:before {
  2086. content: ""; }
  2087. .ion-social-javascript-outline:before {
  2088. content: ""; }
  2089. .ion-social-linkedin:before {
  2090. content: ""; }
  2091. .ion-social-linkedin-outline:before {
  2092. content: ""; }
  2093. .ion-social-markdown:before {
  2094. content: ""; }
  2095. .ion-social-nodejs:before {
  2096. content: ""; }
  2097. .ion-social-octocat:before {
  2098. content: ""; }
  2099. .ion-social-pinterest:before {
  2100. content: ""; }
  2101. .ion-social-pinterest-outline:before {
  2102. content: ""; }
  2103. .ion-social-python:before {
  2104. content: ""; }
  2105. .ion-social-reddit:before {
  2106. content: ""; }
  2107. .ion-social-reddit-outline:before {
  2108. content: ""; }
  2109. .ion-social-rss:before {
  2110. content: ""; }
  2111. .ion-social-rss-outline:before {
  2112. content: ""; }
  2113. .ion-social-sass:before {
  2114. content: ""; }
  2115. .ion-social-skype:before {
  2116. content: ""; }
  2117. .ion-social-skype-outline:before {
  2118. content: ""; }
  2119. .ion-social-snapchat:before {
  2120. content: ""; }
  2121. .ion-social-snapchat-outline:before {
  2122. content: ""; }
  2123. .ion-social-tumblr:before {
  2124. content: ""; }
  2125. .ion-social-tumblr-outline:before {
  2126. content: ""; }
  2127. .ion-social-tux:before {
  2128. content: ""; }
  2129. .ion-social-twitch:before {
  2130. content: ""; }
  2131. .ion-social-twitch-outline:before {
  2132. content: ""; }
  2133. .ion-social-twitter:before {
  2134. content: ""; }
  2135. .ion-social-twitter-outline:before {
  2136. content: ""; }
  2137. .ion-social-usd:before {
  2138. content: ""; }
  2139. .ion-social-usd-outline:before {
  2140. content: ""; }
  2141. .ion-social-vimeo:before {
  2142. content: ""; }
  2143. .ion-social-vimeo-outline:before {
  2144. content: ""; }
  2145. .ion-social-whatsapp:before {
  2146. content: ""; }
  2147. .ion-social-whatsapp-outline:before {
  2148. content: ""; }
  2149. .ion-social-windows:before {
  2150. content: ""; }
  2151. .ion-social-windows-outline:before {
  2152. content: ""; }
  2153. .ion-social-wordpress:before {
  2154. content: ""; }
  2155. .ion-social-wordpress-outline:before {
  2156. content: ""; }
  2157. .ion-social-yahoo:before {
  2158. content: ""; }
  2159. .ion-social-yahoo-outline:before {
  2160. content: ""; }
  2161. .ion-social-yen:before {
  2162. content: ""; }
  2163. .ion-social-yen-outline:before {
  2164. content: ""; }
  2165. .ion-social-youtube:before {
  2166. content: ""; }
  2167. .ion-social-youtube-outline:before {
  2168. content: ""; }
  2169. .ion-soup-can:before {
  2170. content: ""; }
  2171. .ion-soup-can-outline:before {
  2172. content: ""; }
  2173. .ion-speakerphone:before {
  2174. content: ""; }
  2175. .ion-speedometer:before {
  2176. content: ""; }
  2177. .ion-spoon:before {
  2178. content: ""; }
  2179. .ion-star:before {
  2180. content: ""; }
  2181. .ion-stats-bars:before {
  2182. content: ""; }
  2183. .ion-steam:before {
  2184. content: ""; }
  2185. .ion-stop:before {
  2186. content: ""; }
  2187. .ion-thermometer:before {
  2188. content: ""; }
  2189. .ion-thumbsdown:before {
  2190. content: ""; }
  2191. .ion-thumbsup:before {
  2192. content: ""; }
  2193. .ion-toggle:before {
  2194. content: ""; }
  2195. .ion-toggle-filled:before {
  2196. content: ""; }
  2197. .ion-transgender:before {
  2198. content: ""; }
  2199. .ion-trash-a:before {
  2200. content: ""; }
  2201. .ion-trash-b:before {
  2202. content: ""; }
  2203. .ion-trophy:before {
  2204. content: ""; }
  2205. .ion-tshirt:before {
  2206. content: ""; }
  2207. .ion-tshirt-outline:before {
  2208. content: ""; }
  2209. .ion-umbrella:before {
  2210. content: ""; }
  2211. .ion-university:before {
  2212. content: ""; }
  2213. .ion-unlocked:before {
  2214. content: ""; }
  2215. .ion-upload:before {
  2216. content: ""; }
  2217. .ion-usb:before {
  2218. content: ""; }
  2219. .ion-videocamera:before {
  2220. content: ""; }
  2221. .ion-volume-high:before {
  2222. content: ""; }
  2223. .ion-volume-low:before {
  2224. content: ""; }
  2225. .ion-volume-medium:before {
  2226. content: ""; }
  2227. .ion-volume-mute:before {
  2228. content: ""; }
  2229. .ion-wand:before {
  2230. content: ""; }
  2231. .ion-waterdrop:before {
  2232. content: ""; }
  2233. .ion-wifi:before {
  2234. content: ""; }
  2235. .ion-wineglass:before {
  2236. content: ""; }
  2237. .ion-woman:before {
  2238. content: ""; }
  2239. .ion-wrench:before {
  2240. content: ""; }
  2241. .ion-xbox:before {
  2242. content: ""; }
  2243. /**
  2244. * Resets
  2245. * --------------------------------------------------
  2246. * Adapted from normalize.css and some reset.css. We don't care even one
  2247. * bit about old IE, so we don't need any hacks for that in here.
  2248. *
  2249. * There are probably other things we could remove here, as well.
  2250. *
  2251. * normalize.css v2.1.2 | MIT License | git.io/normalize
  2252. * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
  2253. * http://cssreset.com
  2254. */
  2255. html, body, div, span, applet, object, iframe,
  2256. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  2257. a, abbr, acronym, address, big, cite, code,
  2258. del, dfn, em, img, ins, kbd, q, s, samp,
  2259. small, strike, strong, sub, sup, tt, var,
  2260. b, i, u, center,
  2261. dl, dt, dd, ol, ul, li,
  2262. fieldset, form, label, legend,
  2263. table, caption, tbody, tfoot, thead, tr, th, td,
  2264. article, aside, canvas, details, embed, fieldset,
  2265. figure, figcaption, footer, header, hgroup,
  2266. menu, nav, output, ruby, section, summary,
  2267. time, mark, audio, video {
  2268. margin: 0;
  2269. padding: 0;
  2270. border: 0;
  2271. vertical-align: baseline;
  2272. font: inherit;
  2273. font-size: 100%; }
  2274. ol, ul {
  2275. list-style: none; }
  2276. blockquote, q {
  2277. quotes: none; }
  2278. blockquote:before, blockquote:after,
  2279. q:before, q:after {
  2280. content: '';
  2281. content: none; }
  2282. /**
  2283. * Prevent modern browsers from displaying `audio` without controls.
  2284. * Remove excess height in iOS 5 devices.
  2285. */
  2286. audio:not([controls]) {
  2287. display: none;
  2288. height: 0; }
  2289. /**
  2290. * Hide the `template` element in IE, Safari, and Firefox < 22.
  2291. */
  2292. [hidden],
  2293. template {
  2294. display: none; }
  2295. script {
  2296. display: none !important; }
  2297. /* ==========================================================================
  2298. Base
  2299. ========================================================================== */
  2300. /**
  2301. * 1. Set default font family to sans-serif.
  2302. * 2. Prevent iOS text size adjust after orientation change, without disabling
  2303. * user zoom.
  2304. */
  2305. html {
  2306. -webkit-user-select: none;
  2307. -moz-user-select: none;
  2308. -ms-user-select: none;
  2309. user-select: none;
  2310. font-family: sans-serif;
  2311. /* 1 */
  2312. -webkit-text-size-adjust: 100%;
  2313. -ms-text-size-adjust: 100%;
  2314. /* 2 */
  2315. -webkit-text-size-adjust: 100%;
  2316. /* 2 */ }
  2317. /**
  2318. * Remove default margin.
  2319. */
  2320. body {
  2321. margin: 0;
  2322. line-height: 1; }
  2323. /**
  2324. * Remove default outlines.
  2325. */
  2326. a,
  2327. button,
  2328. :focus,
  2329. a:focus,
  2330. button:focus,
  2331. a:active,
  2332. a:hover {
  2333. outline: 0; }
  2334. /* *
  2335. * Remove tap highlight color
  2336. */
  2337. a {
  2338. -webkit-user-drag: none;
  2339. -webkit-tap-highlight-color: transparent;
  2340. -webkit-tap-highlight-color: transparent; }
  2341. a[href]:hover {
  2342. cursor: pointer; }
  2343. /* ==========================================================================
  2344. Typography
  2345. ========================================================================== */
  2346. /**
  2347. * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
  2348. */
  2349. b,
  2350. strong {
  2351. font-weight: bold; }
  2352. /**
  2353. * Address styling not present in Safari 5 and Chrome.
  2354. */
  2355. dfn {
  2356. font-style: italic; }
  2357. /**
  2358. * Address differences between Firefox and other browsers.
  2359. */
  2360. hr {
  2361. -moz-box-sizing: content-box;
  2362. box-sizing: content-box;
  2363. height: 0; }
  2364. /**
  2365. * Correct font family set oddly in Safari 5 and Chrome.
  2366. */
  2367. code,
  2368. kbd,
  2369. pre,
  2370. samp {
  2371. font-size: 1em;
  2372. font-family: monospace, serif; }
  2373. /**
  2374. * Improve readability of pre-formatted text in all browsers.
  2375. */
  2376. pre {
  2377. white-space: pre-wrap; }
  2378. /**
  2379. * Set consistent quote types.
  2380. */
  2381. q {
  2382. quotes: "\201C" "\201D" "\2018" "\2019"; }
  2383. /**
  2384. * Address inconsistent and variable font size in all browsers.
  2385. */
  2386. small {
  2387. font-size: 80%; }
  2388. /**
  2389. * Prevent `sub` and `sup` affecting `line-height` in all browsers.
  2390. */
  2391. sub,
  2392. sup {
  2393. position: relative;
  2394. vertical-align: baseline;
  2395. font-size: 75%;
  2396. line-height: 0; }
  2397. sup {
  2398. top: -0.5em; }
  2399. sub {
  2400. bottom: -0.25em; }
  2401. /**
  2402. * Define consistent border, margin, and padding.
  2403. */
  2404. fieldset {
  2405. margin: 0 2px;
  2406. padding: 0.35em 0.625em 0.75em;
  2407. border: 1px solid #c0c0c0; }
  2408. /**
  2409. * 1. Correct `color` not being inherited in IE 8/9.
  2410. * 2. Remove padding so people aren't caught out if they zero out fieldsets.
  2411. */
  2412. legend {
  2413. padding: 0;
  2414. /* 2 */
  2415. border: 0;
  2416. /* 1 */ }
  2417. /**
  2418. * 1. Correct font family not being inherited in all browsers.
  2419. * 2. Correct font size not being inherited in all browsers.
  2420. * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
  2421. * 4. Remove any default :focus styles
  2422. * 5. Make sure webkit font smoothing is being inherited
  2423. * 6. Remove default gradient in Android Firefox / FirefoxOS
  2424. */
  2425. button,
  2426. input,
  2427. select,
  2428. textarea {
  2429. margin: 0;
  2430. /* 3 */
  2431. font-size: 100%;
  2432. /* 2 */
  2433. font-family: inherit;
  2434. /* 1 */
  2435. outline-offset: 0;
  2436. /* 4 */
  2437. outline-style: none;
  2438. /* 4 */
  2439. outline-width: 0;
  2440. /* 4 */
  2441. -webkit-font-smoothing: inherit;
  2442. /* 5 */
  2443. background-image: none;
  2444. /* 6 */ }
  2445. /**
  2446. * Address Firefox 4+ setting `line-height` on `input` using `importnt` in
  2447. * the UA stylesheet.
  2448. */
  2449. button,
  2450. input {
  2451. line-height: normal; }
  2452. /**
  2453. * Address inconsistent `text-transform` inheritance for `button` and `select`.
  2454. * All other form control elements do not inherit `text-transform` values.
  2455. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
  2456. * Correct `select` style inheritance in Firefox 4+ and Opera.
  2457. */
  2458. button,
  2459. select {
  2460. text-transform: none; }
  2461. /**
  2462. * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  2463. * and `video` controls.
  2464. * 2. Correct inability to style clickable `input` types in iOS.
  2465. * 3. Improve usability and consistency of cursor style between image-type
  2466. * `input` and others.
  2467. */
  2468. button,
  2469. html input[type="button"],
  2470. input[type="reset"],
  2471. input[type="submit"] {
  2472. cursor: pointer;
  2473. /* 3 */
  2474. -webkit-appearance: button;
  2475. /* 2 */ }
  2476. /**
  2477. * Re-set default cursor for disabled elements.
  2478. */
  2479. button[disabled],
  2480. html input[disabled] {
  2481. cursor: default; }
  2482. /**
  2483. * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  2484. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  2485. * (include `-moz` to future-proof).
  2486. */
  2487. input[type="search"] {
  2488. -webkit-box-sizing: content-box;
  2489. /* 2 */
  2490. -moz-box-sizing: content-box;
  2491. box-sizing: content-box;
  2492. -webkit-appearance: textfield;
  2493. /* 1 */ }
  2494. /**
  2495. * Remove inner padding and search cancel button in Safari 5 and Chrome
  2496. * on OS X.
  2497. */
  2498. input[type="search"]::-webkit-search-cancel-button,
  2499. input[type="search"]::-webkit-search-decoration {
  2500. -webkit-appearance: none; }
  2501. /**
  2502. * Remove inner padding and border in Firefox 4+.
  2503. */
  2504. button::-moz-focus-inner,
  2505. input::-moz-focus-inner {
  2506. padding: 0;
  2507. border: 0; }
  2508. /**
  2509. * 1. Remove default vertical scrollbar in IE 8/9.
  2510. * 2. Improve readability and alignment in all browsers.
  2511. */
  2512. textarea {
  2513. overflow: auto;
  2514. /* 1 */
  2515. vertical-align: top;
  2516. /* 2 */ }
  2517. img {
  2518. -webkit-user-drag: none; }
  2519. /* ==========================================================================
  2520. Tables
  2521. ========================================================================== */
  2522. /**
  2523. * Remove most spacing between table cells.
  2524. */
  2525. table {
  2526. border-spacing: 0;
  2527. border-collapse: collapse; }
  2528. /**
  2529. * Scaffolding
  2530. * --------------------------------------------------
  2531. */
  2532. *,
  2533. *:before,
  2534. *:after {
  2535. -webkit-box-sizing: border-box;
  2536. -moz-box-sizing: border-box;
  2537. box-sizing: border-box; }
  2538. html {
  2539. overflow: hidden;
  2540. -ms-touch-action: pan-y;
  2541. touch-action: pan-y; }
  2542. body,
  2543. .ionic-body {
  2544. -webkit-touch-callout: none;
  2545. -webkit-font-smoothing: antialiased;
  2546. font-smoothing: antialiased;
  2547. -webkit-text-size-adjust: none;
  2548. -moz-text-size-adjust: none;
  2549. text-size-adjust: none;
  2550. -webkit-tap-highlight-color: transparent;
  2551. -webkit-tap-highlight-color: transparent;
  2552. -webkit-user-select: none;
  2553. -moz-user-select: none;
  2554. -ms-user-select: none;
  2555. user-select: none;
  2556. top: 0;
  2557. right: 0;
  2558. bottom: 0;
  2559. left: 0;
  2560. overflow: hidden;
  2561. margin: 0;
  2562. padding: 0;
  2563. color: #000;
  2564. word-wrap: break-word;
  2565. font-size: 14px;
  2566. font-family: -apple-system;
  2567. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
  2568. line-height: 20px;
  2569. text-rendering: optimizeLegibility;
  2570. -webkit-backface-visibility: hidden;
  2571. -webkit-user-drag: none;
  2572. -ms-content-zooming: none; }
  2573. body.grade-b,
  2574. body.grade-c {
  2575. text-rendering: auto; }
  2576. .content {
  2577. position: relative; }
  2578. .scroll-content {
  2579. position: absolute;
  2580. top: 0;
  2581. right: 0;
  2582. bottom: 0;
  2583. left: 0;
  2584. overflow: hidden;
  2585. margin-top: -1px;
  2586. padding-top: 1px;
  2587. margin-bottom: -1px;
  2588. width: auto;
  2589. height: auto; }
  2590. .menu .scroll-content.scroll-content-false {
  2591. z-index: 11; }
  2592. .scroll-view {
  2593. position: relative;
  2594. display: block;
  2595. overflow: hidden;
  2596. margin-top: -1px; }
  2597. .scroll-view.overflow-scroll {
  2598. position: relative; }
  2599. .scroll-view.scroll-x {
  2600. overflow-x: scroll;
  2601. overflow-y: hidden; }
  2602. .scroll-view.scroll-y {
  2603. overflow-x: hidden;
  2604. overflow-y: scroll; }
  2605. .scroll-view.scroll-xy {
  2606. overflow-x: scroll;
  2607. overflow-y: scroll; }
  2608. /**
  2609. * Scroll is the scroll view component available for complex and custom
  2610. * scroll view functionality.
  2611. */
  2612. .scroll {
  2613. -webkit-user-select: none;
  2614. -moz-user-select: none;
  2615. -ms-user-select: none;
  2616. user-select: none;
  2617. -webkit-touch-callout: none;
  2618. -webkit-text-size-adjust: none;
  2619. -moz-text-size-adjust: none;
  2620. text-size-adjust: none;
  2621. -webkit-transform-origin: left top;
  2622. transform-origin: left top; }
  2623. /**
  2624. * Set ms-viewport to prevent MS "page squish" and allow fluid scrolling
  2625. * https://msdn.microsoft.com/en-us/library/ie/hh869615(v=vs.85).aspx
  2626. */
  2627. @-ms-viewport {
  2628. width: device-width; }
  2629. .scroll-bar {
  2630. position: absolute;
  2631. z-index: 9999; }
  2632. .ng-animate .scroll-bar {
  2633. visibility: hidden; }
  2634. .scroll-bar-h {
  2635. right: 2px;
  2636. bottom: 3px;
  2637. left: 2px;
  2638. height: 3px; }
  2639. .scroll-bar-h .scroll-bar-indicator {
  2640. height: 100%; }
  2641. .scroll-bar-v {
  2642. top: 2px;
  2643. right: 3px;
  2644. bottom: 2px;
  2645. width: 3px; }
  2646. .scroll-bar-v .scroll-bar-indicator {
  2647. width: 100%; }
  2648. .scroll-bar-indicator {
  2649. position: absolute;
  2650. border-radius: 4px;
  2651. background: rgba(0, 0, 0, 0.3);
  2652. opacity: 1;
  2653. -webkit-transition: opacity 0.3s linear;
  2654. transition: opacity 0.3s linear; }
  2655. .scroll-bar-indicator.scroll-bar-fade-out {
  2656. opacity: 0; }
  2657. .platform-android .scroll-bar-indicator {
  2658. border-radius: 0; }
  2659. .grade-b .scroll-bar-indicator,
  2660. .grade-c .scroll-bar-indicator {
  2661. background: #aaa; }
  2662. .grade-b .scroll-bar-indicator.scroll-bar-fade-out,
  2663. .grade-c .scroll-bar-indicator.scroll-bar-fade-out {
  2664. -webkit-transition: none;
  2665. transition: none; }
  2666. ion-infinite-scroll {
  2667. height: 60px;
  2668. width: 100%;
  2669. display: block;
  2670. display: -webkit-box;
  2671. display: -webkit-flex;
  2672. display: -moz-box;
  2673. display: -moz-flex;
  2674. display: -ms-flexbox;
  2675. display: flex;
  2676. -webkit-box-direction: normal;
  2677. -webkit-box-orient: horizontal;
  2678. -webkit-flex-direction: row;
  2679. -moz-flex-direction: row;
  2680. -ms-flex-direction: row;
  2681. flex-direction: row;
  2682. -webkit-box-pack: center;
  2683. -ms-flex-pack: center;
  2684. -webkit-justify-content: center;
  2685. -moz-justify-content: center;
  2686. justify-content: center;
  2687. -webkit-box-align: center;
  2688. -ms-flex-align: center;
  2689. -webkit-align-items: center;
  2690. -moz-align-items: center;
  2691. align-items: center; }
  2692. ion-infinite-scroll .icon {
  2693. color: #666666;
  2694. font-size: 30px;
  2695. color: #666666; }
  2696. ion-infinite-scroll:not(.active) .spinner,
  2697. ion-infinite-scroll:not(.active) .icon:before {
  2698. display: none; }
  2699. .overflow-scroll {
  2700. overflow-x: hidden;
  2701. overflow-y: scroll;
  2702. -webkit-overflow-scrolling: touch;
  2703. -ms-overflow-style: -ms-autohiding-scrollbar;
  2704. top: 0;
  2705. right: 0;
  2706. bottom: 0;
  2707. left: 0;
  2708. position: absolute; }
  2709. .overflow-scroll.pane {
  2710. overflow-x: hidden;
  2711. overflow-y: scroll; }
  2712. .overflow-scroll .scroll {
  2713. position: static;
  2714. height: 100%;
  2715. -webkit-transform: translate3d(0, 0, 0); }
  2716. /* If you change these, change platform.scss as well */
  2717. .has-header {
  2718. top: 44px; }
  2719. .no-header {
  2720. top: 0; }
  2721. .has-subheader {
  2722. top: 88px; }
  2723. .has-tabs-top {
  2724. top: 93px; }
  2725. .has-header.has-subheader.has-tabs-top {
  2726. top: 137px; }
  2727. .has-footer {
  2728. bottom: 44px; }
  2729. .has-subfooter {
  2730. bottom: 88px; }
  2731. .has-tabs,
  2732. .bar-footer.has-tabs {
  2733. bottom: 49px; }
  2734. .has-tabs.pane,
  2735. .bar-footer.has-tabs.pane {
  2736. bottom: 49px;
  2737. height: auto; }
  2738. .bar-subfooter.has-tabs {
  2739. bottom: 93px; }
  2740. .has-footer.has-tabs {
  2741. bottom: 93px; }
  2742. .pane {
  2743. -webkit-transform: translate3d(0, 0, 0);
  2744. transform: translate3d(0, 0, 0);
  2745. -webkit-transition-duration: 0;
  2746. transition-duration: 0;
  2747. z-index: 1; }
  2748. .view {
  2749. z-index: 1; }
  2750. .pane,
  2751. .view {
  2752. position: absolute;
  2753. top: 0;
  2754. right: 0;
  2755. bottom: 0;
  2756. left: 0;
  2757. width: 100%;
  2758. height: 100%;
  2759. background-color: #fff;
  2760. overflow: hidden; }
  2761. .view-container {
  2762. position: absolute;
  2763. display: block;
  2764. width: 100%;
  2765. height: 100%; }
  2766. /**
  2767. * Typography
  2768. * --------------------------------------------------
  2769. */
  2770. p {
  2771. margin: 0 0 10px; }
  2772. small {
  2773. font-size: 85%; }
  2774. cite {
  2775. font-style: normal; }
  2776. .text-left {
  2777. text-align: left; }
  2778. .text-right {
  2779. text-align: right; }
  2780. .text-center {
  2781. text-align: center; }
  2782. h1, h2, h3, h4, h5, h6,
  2783. .h1, .h2, .h3, .h4, .h5, .h6 {
  2784. color: #000;
  2785. font-weight: 500;
  2786. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
  2787. line-height: 1.2; }
  2788. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
  2789. .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
  2790. font-weight: normal;
  2791. line-height: 1; }
  2792. h1, .h1,
  2793. h2, .h2,
  2794. h3, .h3 {
  2795. margin-top: 20px;
  2796. margin-bottom: 10px; }
  2797. h1:first-child, .h1:first-child,
  2798. h2:first-child, .h2:first-child,
  2799. h3:first-child, .h3:first-child {
  2800. margin-top: 0; }
  2801. h1 + h1, h1 + .h1,
  2802. h1 + h2, h1 + .h2,
  2803. h1 + h3, h1 + .h3, .h1 + h1, .h1 + .h1,
  2804. .h1 + h2, .h1 + .h2,
  2805. .h1 + h3, .h1 + .h3,
  2806. h2 + h1,
  2807. h2 + .h1,
  2808. h2 + h2,
  2809. h2 + .h2,
  2810. h2 + h3,
  2811. h2 + .h3, .h2 + h1, .h2 + .h1,
  2812. .h2 + h2, .h2 + .h2,
  2813. .h2 + h3, .h2 + .h3,
  2814. h3 + h1,
  2815. h3 + .h1,
  2816. h3 + h2,
  2817. h3 + .h2,
  2818. h3 + h3,
  2819. h3 + .h3, .h3 + h1, .h3 + .h1,
  2820. .h3 + h2, .h3 + .h2,
  2821. .h3 + h3, .h3 + .h3 {
  2822. margin-top: 10px; }
  2823. h4, .h4,
  2824. h5, .h5,
  2825. h6, .h6 {
  2826. margin-top: 10px;
  2827. margin-bottom: 10px; }
  2828. h1, .h1 {
  2829. font-size: 36px; }
  2830. h2, .h2 {
  2831. font-size: 30px; }
  2832. h3, .h3 {
  2833. font-size: 24px; }
  2834. h4, .h4 {
  2835. font-size: 18px; }
  2836. h5, .h5 {
  2837. font-size: 14px; }
  2838. h6, .h6 {
  2839. font-size: 12px; }
  2840. h1 small, .h1 small {
  2841. font-size: 24px; }
  2842. h2 small, .h2 small {
  2843. font-size: 18px; }
  2844. h3 small, .h3 small,
  2845. h4 small, .h4 small {
  2846. font-size: 14px; }
  2847. dl {
  2848. margin-bottom: 20px; }
  2849. dt,
  2850. dd {
  2851. line-height: 1.42857; }
  2852. dt {
  2853. font-weight: bold; }
  2854. blockquote {
  2855. margin: 0 0 20px;
  2856. padding: 10px 20px;
  2857. border-left: 5px solid gray; }
  2858. blockquote p {
  2859. font-weight: 300;
  2860. font-size: 17.5px;
  2861. line-height: 1.25; }
  2862. blockquote p:last-child {
  2863. margin-bottom: 0; }
  2864. blockquote small {
  2865. display: block;
  2866. line-height: 1.42857; }
  2867. blockquote small:before {
  2868. content: '\2014 \00A0'; }
  2869. q:before,
  2870. q:after,
  2871. blockquote:before,
  2872. blockquote:after {
  2873. content: ""; }
  2874. address {
  2875. display: block;
  2876. margin-bottom: 20px;
  2877. font-style: normal;
  2878. line-height: 1.42857; }
  2879. a {
  2880. color: #387ef5; }
  2881. a.subdued {
  2882. padding-right: 10px;
  2883. color: #888;
  2884. text-decoration: none; }
  2885. a.subdued:hover {
  2886. text-decoration: none; }
  2887. a.subdued:last-child {
  2888. padding-right: 0; }
  2889. /**
  2890. * Action Sheets
  2891. * --------------------------------------------------
  2892. */
  2893. .action-sheet-backdrop {
  2894. -webkit-transition: background-color 150ms ease-in-out;
  2895. transition: background-color 150ms ease-in-out;
  2896. position: fixed;
  2897. top: 0;
  2898. left: 0;
  2899. z-index: 11;
  2900. width: 100%;
  2901. height: 100%;
  2902. background-color: transparent; }
  2903. .action-sheet-backdrop.active {
  2904. background-color: rgba(0, 0, 0, 0.4); }
  2905. .action-sheet-wrapper {
  2906. -webkit-transform: translate3d(0, 100%, 0);
  2907. transform: translate3d(0, 100%, 0);
  2908. -webkit-transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  2909. transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  2910. position: absolute;
  2911. bottom: 0;
  2912. left: 0;
  2913. right: 0;
  2914. width: 100%;
  2915. max-width: 500px;
  2916. margin: auto; }
  2917. .action-sheet-up {
  2918. -webkit-transform: translate3d(0, 0, 0);
  2919. transform: translate3d(0, 0, 0); }
  2920. .action-sheet {
  2921. margin-left: 8px;
  2922. margin-right: 8px;
  2923. width: auto;
  2924. z-index: 11;
  2925. overflow: hidden; }
  2926. .action-sheet .button {
  2927. display: block;
  2928. padding: 1px;
  2929. width: 100%;
  2930. border-radius: 0;
  2931. border-color: #d1d3d6;
  2932. background-color: transparent;
  2933. color: #007aff;
  2934. font-size: 21px; }
  2935. .action-sheet .button:hover {
  2936. color: #007aff; }
  2937. .action-sheet .button.destructive {
  2938. color: #ff3b30; }
  2939. .action-sheet .button.destructive:hover {
  2940. color: #ff3b30; }
  2941. .action-sheet .button.active, .action-sheet .button.activated {
  2942. box-shadow: none;
  2943. border-color: #d1d3d6;
  2944. color: #007aff;
  2945. background: #e4e5e7; }
  2946. .action-sheet-has-icons .icon {
  2947. position: absolute;
  2948. left: 16px; }
  2949. .action-sheet-title {
  2950. padding: 16px;
  2951. color: #8f8f8f;
  2952. text-align: center;
  2953. font-size: 13px; }
  2954. .action-sheet-group {
  2955. margin-bottom: 8px;
  2956. border-radius: 4px;
  2957. background-color: #fff;
  2958. overflow: hidden; }
  2959. .action-sheet-group .button {
  2960. border-width: 1px 0px 0px 0px; }
  2961. .action-sheet-group .button:first-child:last-child {
  2962. border-width: 0; }
  2963. .action-sheet-options {
  2964. background: #f1f2f3; }
  2965. .action-sheet-cancel .button {
  2966. font-weight: 500; }
  2967. .action-sheet-open {
  2968. pointer-events: none; }
  2969. .action-sheet-open.modal-open .modal {
  2970. pointer-events: none; }
  2971. .action-sheet-open .action-sheet-backdrop {
  2972. pointer-events: auto; }
  2973. .platform-android .action-sheet-backdrop.active {
  2974. background-color: rgba(0, 0, 0, 0.2); }
  2975. .platform-android .action-sheet {
  2976. margin: 0; }
  2977. .platform-android .action-sheet .action-sheet-title,
  2978. .platform-android .action-sheet .button {
  2979. text-align: left;
  2980. border-color: transparent;
  2981. font-size: 16px;
  2982. color: inherit; }
  2983. .platform-android .action-sheet .action-sheet-title {
  2984. font-size: 14px;
  2985. padding: 16px;
  2986. color: #666; }
  2987. .platform-android .action-sheet .button.active,
  2988. .platform-android .action-sheet .button.activated {
  2989. background: #e8e8e8; }
  2990. .platform-android .action-sheet-group {
  2991. margin: 0;
  2992. border-radius: 0;
  2993. background-color: #fafafa; }
  2994. .platform-android .action-sheet-cancel {
  2995. display: none; }
  2996. .platform-android .action-sheet-has-icons .button {
  2997. padding-left: 56px; }
  2998. .backdrop {
  2999. position: fixed;
  3000. top: 0;
  3001. left: 0;
  3002. z-index: 11;
  3003. width: 100%;
  3004. height: 100%;
  3005. background-color: rgba(0, 0, 0, 0.4);
  3006. visibility: hidden;
  3007. opacity: 0;
  3008. -webkit-transition: 0.1s opacity linear;
  3009. transition: 0.1s opacity linear; }
  3010. .backdrop.visible {
  3011. visibility: visible; }
  3012. .backdrop.active {
  3013. opacity: 1; }
  3014. /**
  3015. * Bar (Headers and Footers)
  3016. * --------------------------------------------------
  3017. */
  3018. .bar {
  3019. display: -webkit-box;
  3020. display: -webkit-flex;
  3021. display: -moz-box;
  3022. display: -moz-flex;
  3023. display: -ms-flexbox;
  3024. display: flex;
  3025. -webkit-transform: translate3d(0, 0, 0);
  3026. transform: translate3d(0, 0, 0);
  3027. -webkit-user-select: none;
  3028. -moz-user-select: none;
  3029. -ms-user-select: none;
  3030. user-select: none;
  3031. position: absolute;
  3032. right: 0;
  3033. left: 0;
  3034. z-index: 9;
  3035. -webkit-box-sizing: border-box;
  3036. -moz-box-sizing: border-box;
  3037. box-sizing: border-box;
  3038. padding: 5px;
  3039. width: 100%;
  3040. height: 44px;
  3041. border-width: 0;
  3042. border-style: solid;
  3043. border-top: 1px solid transparent;
  3044. border-bottom: 1px solid #ddd;
  3045. background-color: white;
  3046. /* border-width: 1px will actually create 2 device pixels on retina */
  3047. /* this nifty trick sets an actual 1px border on hi-res displays */
  3048. background-size: 0; }
  3049. @media (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  3050. .bar {
  3051. border: none;
  3052. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3053. background-position: bottom;
  3054. background-size: 100% 1px;
  3055. background-repeat: no-repeat; } }
  3056. .bar.bar-clear {
  3057. border: none;
  3058. background: none;
  3059. color: #fff; }
  3060. .bar.bar-clear .button {
  3061. color: #fff; }
  3062. .bar.bar-clear .title {
  3063. color: #fff; }
  3064. .bar.item-input-inset .item-input-wrapper {
  3065. margin-top: -1px; }
  3066. .bar.item-input-inset .item-input-wrapper input {
  3067. padding-left: 8px;
  3068. width: 94%;
  3069. height: 28px;
  3070. background: transparent; }
  3071. .bar.bar-light {
  3072. border-color: #ddd;
  3073. background-color: white;
  3074. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3075. color: #444; }
  3076. .bar.bar-light .title {
  3077. color: #444; }
  3078. .bar.bar-light.bar-footer {
  3079. background-image: linear-gradient(180deg, #ddd, #ddd 50%, transparent 50%); }
  3080. .bar.bar-stable {
  3081. border-color: #b2b2b2;
  3082. background-color: #f8f8f8;
  3083. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3084. color: #444; }
  3085. .bar.bar-stable .title {
  3086. color: #444; }
  3087. .bar.bar-stable.bar-footer {
  3088. background-image: linear-gradient(180deg, #b2b2b2, #b2b2b2 50%, transparent 50%); }
  3089. .bar.bar-positive {
  3090. border-color: #0c60ee;
  3091. background-color: #387ef5;
  3092. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3093. color: #fff; }
  3094. .bar.bar-positive .title {
  3095. color: #fff; }
  3096. .bar.bar-positive.bar-footer {
  3097. background-image: linear-gradient(180deg, #0c60ee, #0c60ee 50%, transparent 50%); }
  3098. .bar.bar-calm {
  3099. border-color: #0a9dc7;
  3100. background-color: #11c1f3;
  3101. background-image: linear-gradient(0deg, #0a9dc7, #0a9dc7 50%, transparent 50%);
  3102. color: #fff; }
  3103. .bar.bar-calm .title {
  3104. color: #fff; }
  3105. .bar.bar-calm.bar-footer {
  3106. background-image: linear-gradient(180deg, #0a9dc7, #0a9dc7 50%, transparent 50%); }
  3107. .bar.bar-assertive {
  3108. border-color: #e42112;
  3109. background-color: #ef473a;
  3110. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3111. color: #fff; }
  3112. .bar.bar-assertive .title {
  3113. color: #fff; }
  3114. .bar.bar-assertive.bar-footer {
  3115. background-image: linear-gradient(180deg, #e42112, #e42112 50%, transparent 50%); }
  3116. .bar.bar-balanced {
  3117. border-color: #28a54c;
  3118. background-color: #33cd5f;
  3119. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3120. color: #fff; }
  3121. .bar.bar-balanced .title {
  3122. color: #fff; }
  3123. .bar.bar-balanced.bar-footer {
  3124. background-image: linear-gradient(180deg, #28a54c, #28a54c 50%, transparent 50%); }
  3125. .bar.bar-energized {
  3126. border-color: #e6b500;
  3127. background-color: #ffc900;
  3128. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3129. color: #fff; }
  3130. .bar.bar-energized .title {
  3131. color: #fff; }
  3132. .bar.bar-energized.bar-footer {
  3133. background-image: linear-gradient(180deg, #e6b500, #e6b500 50%, transparent 50%); }
  3134. .bar.bar-royal {
  3135. border-color: #6b46e5;
  3136. background-color: #886aea;
  3137. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3138. color: #fff; }
  3139. .bar.bar-royal .title {
  3140. color: #fff; }
  3141. .bar.bar-royal.bar-footer {
  3142. background-image: linear-gradient(180deg, #6b46e5, #6b46e5 50%, transparent 50%); }
  3143. .bar.bar-dark {
  3144. border-color: #111;
  3145. background-color: #444444;
  3146. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3147. color: #fff; }
  3148. .bar.bar-dark .title {
  3149. color: #fff; }
  3150. .bar.bar-dark.bar-footer {
  3151. background-image: linear-gradient(180deg, #111, #111 50%, transparent 50%); }
  3152. .bar .title {
  3153. display: block;
  3154. position: absolute;
  3155. top: 0;
  3156. right: 0;
  3157. left: 0;
  3158. z-index: 0;
  3159. overflow: hidden;
  3160. margin: 0 10px;
  3161. min-width: 30px;
  3162. height: 43px;
  3163. text-align: center;
  3164. text-overflow: ellipsis;
  3165. white-space: nowrap;
  3166. font-size: 17px;
  3167. font-weight: 500;
  3168. line-height: 44px; }
  3169. .bar .title.title-left {
  3170. text-align: left; }
  3171. .bar .title.title-right {
  3172. text-align: right; }
  3173. .bar .title a {
  3174. color: inherit; }
  3175. .bar .button, .bar button {
  3176. z-index: 1;
  3177. padding: 0 8px;
  3178. min-width: initial;
  3179. min-height: 31px;
  3180. font-weight: 400;
  3181. font-size: 13px;
  3182. line-height: 32px; }
  3183. .bar .button.button-icon:before,
  3184. .bar .button .icon:before, .bar .button.icon:before, .bar .button.icon-left:before, .bar .button.icon-right:before, .bar button.button-icon:before,
  3185. .bar button .icon:before, .bar button.icon:before, .bar button.icon-left:before, .bar button.icon-right:before {
  3186. padding-right: 2px;
  3187. padding-left: 2px;
  3188. font-size: 20px;
  3189. line-height: 32px; }
  3190. .bar .button.button-icon, .bar button.button-icon {
  3191. font-size: 17px; }
  3192. .bar .button.button-icon .icon:before, .bar .button.button-icon:before, .bar .button.button-icon.icon-left:before, .bar .button.button-icon.icon-right:before, .bar button.button-icon .icon:before, .bar button.button-icon:before, .bar button.button-icon.icon-left:before, .bar button.button-icon.icon-right:before {
  3193. vertical-align: top;
  3194. font-size: 32px;
  3195. line-height: 32px; }
  3196. .bar .button.button-clear, .bar button.button-clear {
  3197. padding-right: 2px;
  3198. padding-left: 2px;
  3199. font-weight: 300;
  3200. font-size: 17px; }
  3201. .bar .button.button-clear .icon:before, .bar .button.button-clear.icon:before, .bar .button.button-clear.icon-left:before, .bar .button.button-clear.icon-right:before, .bar button.button-clear .icon:before, .bar button.button-clear.icon:before, .bar button.button-clear.icon-left:before, .bar button.button-clear.icon-right:before {
  3202. font-size: 32px;
  3203. line-height: 32px; }
  3204. .bar .button.back-button, .bar button.back-button {
  3205. display: block;
  3206. margin-right: 5px;
  3207. padding: 0;
  3208. white-space: nowrap;
  3209. font-weight: 400; }
  3210. .bar .button.back-button.active, .bar .button.back-button.activated, .bar button.back-button.active, .bar button.back-button.activated {
  3211. opacity: 0.2; }
  3212. .bar .button-bar > .button,
  3213. .bar .buttons > .button {
  3214. min-height: 31px;
  3215. line-height: 32px; }
  3216. .bar .button-bar + .button,
  3217. .bar .button + .button-bar {
  3218. margin-left: 5px; }
  3219. .bar .buttons,
  3220. .bar .buttons.primary-buttons,
  3221. .bar .buttons.secondary-buttons {
  3222. display: inherit; }
  3223. .bar .buttons span {
  3224. display: inline-block; }
  3225. .bar .buttons-left span {
  3226. margin-right: 5px;
  3227. display: inherit; }
  3228. .bar .buttons-right span {
  3229. margin-left: 5px;
  3230. display: inherit; }
  3231. .bar .title + .button:last-child,
  3232. .bar > .button + .button:last-child,
  3233. .bar > .button.pull-right,
  3234. .bar .buttons.pull-right,
  3235. .bar .title + .buttons {
  3236. position: absolute;
  3237. top: 5px;
  3238. right: 5px;
  3239. bottom: 5px; }
  3240. .platform-android .nav-bar-has-subheader .bar {
  3241. background-image: none; }
  3242. .platform-android .bar .back-button .icon:before {
  3243. font-size: 24px; }
  3244. .platform-android .bar .title {
  3245. font-size: 19px;
  3246. line-height: 44px; }
  3247. .bar-light .button {
  3248. border-color: #ddd;
  3249. background-color: white;
  3250. color: #444; }
  3251. .bar-light .button:hover {
  3252. color: #444;
  3253. text-decoration: none; }
  3254. .bar-light .button.active, .bar-light .button.activated {
  3255. border-color: #ccc;
  3256. background-color: #fafafa; }
  3257. .bar-light .button.button-clear {
  3258. border-color: transparent;
  3259. background: none;
  3260. box-shadow: none;
  3261. color: #444;
  3262. font-size: 17px; }
  3263. .bar-light .button.button-icon {
  3264. border-color: transparent;
  3265. background: none; }
  3266. .bar-stable .button {
  3267. border-color: #b2b2b2;
  3268. background-color: #f8f8f8;
  3269. color: #444; }
  3270. .bar-stable .button:hover {
  3271. color: #444;
  3272. text-decoration: none; }
  3273. .bar-stable .button.active, .bar-stable .button.activated {
  3274. border-color: #a2a2a2;
  3275. background-color: #e5e5e5; }
  3276. .bar-stable .button.button-clear {
  3277. border-color: transparent;
  3278. background: none;
  3279. box-shadow: none;
  3280. color: #444;
  3281. font-size: 17px; }
  3282. .bar-stable .button.button-icon {
  3283. border-color: transparent;
  3284. background: none; }
  3285. .bar-positive .button {
  3286. border-color: #0c60ee;
  3287. background-color: #387ef5;
  3288. color: #fff; }
  3289. .bar-positive .button:hover {
  3290. color: #fff;
  3291. text-decoration: none; }
  3292. .bar-positive .button.active, .bar-positive .button.activated {
  3293. border-color: #0c60ee;
  3294. background-color: #0c60ee; }
  3295. .bar-positive .button.button-clear {
  3296. border-color: transparent;
  3297. background: none;
  3298. box-shadow: none;
  3299. color: #fff;
  3300. font-size: 17px; }
  3301. .bar-positive .button.button-icon {
  3302. border-color: transparent;
  3303. background: none; }
  3304. .bar-calm .button {
  3305. border-color: #0a9dc7;
  3306. background-color: #11c1f3;
  3307. color: #fff; }
  3308. .bar-calm .button:hover {
  3309. color: #fff;
  3310. text-decoration: none; }
  3311. .bar-calm .button.active, .bar-calm .button.activated {
  3312. border-color: #0a9dc7;
  3313. background-color: #0a9dc7; }
  3314. .bar-calm .button.button-clear {
  3315. border-color: transparent;
  3316. background: none;
  3317. box-shadow: none;
  3318. color: #fff;
  3319. font-size: 17px; }
  3320. .bar-calm .button.button-icon {
  3321. border-color: transparent;
  3322. background: none; }
  3323. .bar-assertive .button {
  3324. border-color: #e42112;
  3325. background-color: #ef473a;
  3326. color: #fff; }
  3327. .bar-assertive .button:hover {
  3328. color: #fff;
  3329. text-decoration: none; }
  3330. .bar-assertive .button.active, .bar-assertive .button.activated {
  3331. border-color: #e42112;
  3332. background-color: #e42112; }
  3333. .bar-assertive .button.button-clear {
  3334. border-color: transparent;
  3335. background: none;
  3336. box-shadow: none;
  3337. color: #fff;
  3338. font-size: 17px; }
  3339. .bar-assertive .button.button-icon {
  3340. border-color: transparent;
  3341. background: none; }
  3342. .bar-balanced .button {
  3343. border-color: #28a54c;
  3344. background-color: #33cd5f;
  3345. color: #fff; }
  3346. .bar-balanced .button:hover {
  3347. color: #fff;
  3348. text-decoration: none; }
  3349. .bar-balanced .button.active, .bar-balanced .button.activated {
  3350. border-color: #28a54c;
  3351. background-color: #28a54c; }
  3352. .bar-balanced .button.button-clear {
  3353. border-color: transparent;
  3354. background: none;
  3355. box-shadow: none;
  3356. color: #fff;
  3357. font-size: 17px; }
  3358. .bar-balanced .button.button-icon {
  3359. border-color: transparent;
  3360. background: none; }
  3361. .bar-energized .button {
  3362. border-color: #e6b500;
  3363. background-color: #ffc900;
  3364. color: #fff; }
  3365. .bar-energized .button:hover {
  3366. color: #fff;
  3367. text-decoration: none; }
  3368. .bar-energized .button.active, .bar-energized .button.activated {
  3369. border-color: #e6b500;
  3370. background-color: #e6b500; }
  3371. .bar-energized .button.button-clear {
  3372. border-color: transparent;
  3373. background: none;
  3374. box-shadow: none;
  3375. color: #fff;
  3376. font-size: 17px; }
  3377. .bar-energized .button.button-icon {
  3378. border-color: transparent;
  3379. background: none; }
  3380. .bar-royal .button {
  3381. border-color: #6b46e5;
  3382. background-color: #886aea;
  3383. color: #fff; }
  3384. .bar-royal .button:hover {
  3385. color: #fff;
  3386. text-decoration: none; }
  3387. .bar-royal .button.active, .bar-royal .button.activated {
  3388. border-color: #6b46e5;
  3389. background-color: #6b46e5; }
  3390. .bar-royal .button.button-clear {
  3391. border-color: transparent;
  3392. background: none;
  3393. box-shadow: none;
  3394. color: #fff;
  3395. font-size: 17px; }
  3396. .bar-royal .button.button-icon {
  3397. border-color: transparent;
  3398. background: none; }
  3399. .bar-dark .button {
  3400. border-color: #111;
  3401. background-color: #444444;
  3402. color: #fff; }
  3403. .bar-dark .button:hover {
  3404. color: #fff;
  3405. text-decoration: none; }
  3406. .bar-dark .button.active, .bar-dark .button.activated {
  3407. border-color: #000;
  3408. background-color: #262626; }
  3409. .bar-dark .button.button-clear {
  3410. border-color: transparent;
  3411. background: none;
  3412. box-shadow: none;
  3413. color: #fff;
  3414. font-size: 17px; }
  3415. .bar-dark .button.button-icon {
  3416. border-color: transparent;
  3417. background: none; }
  3418. .bar-header {
  3419. top: 0;
  3420. border-top-width: 0;
  3421. border-bottom-width: 1px; }
  3422. .bar-header.has-tabs-top {
  3423. border-bottom-width: 0px;
  3424. background-image: none; }
  3425. .tabs-top .bar-header {
  3426. border-bottom-width: 0px;
  3427. background-image: none; }
  3428. .bar-footer {
  3429. bottom: 0;
  3430. border-top-width: 1px;
  3431. border-bottom-width: 0;
  3432. background-position: top;
  3433. height: 44px; }
  3434. .bar-footer.item-input-inset {
  3435. position: absolute; }
  3436. .bar-footer .title {
  3437. height: 43px;
  3438. line-height: 44px; }
  3439. .bar-tabs {
  3440. padding: 0; }
  3441. .bar-subheader {
  3442. top: 44px;
  3443. height: 44px; }
  3444. .bar-subheader .title {
  3445. height: 43px;
  3446. line-height: 44px; }
  3447. .bar-subfooter {
  3448. bottom: 44px;
  3449. height: 44px; }
  3450. .bar-subfooter .title {
  3451. height: 43px;
  3452. line-height: 44px; }
  3453. .nav-bar-block {
  3454. position: absolute;
  3455. top: 0;
  3456. right: 0;
  3457. left: 0;
  3458. z-index: 9; }
  3459. .bar .back-button.hide,
  3460. .bar .buttons .hide {
  3461. display: none; }
  3462. .nav-bar-tabs-top .bar {
  3463. background-image: none; }
  3464. /**
  3465. * Tabs
  3466. * --------------------------------------------------
  3467. * A navigation bar with any number of tab items supported.
  3468. */
  3469. .tabs {
  3470. display: -webkit-box;
  3471. display: -webkit-flex;
  3472. display: -moz-box;
  3473. display: -moz-flex;
  3474. display: -ms-flexbox;
  3475. display: flex;
  3476. -webkit-box-direction: normal;
  3477. -webkit-box-orient: horizontal;
  3478. -webkit-flex-direction: horizontal;
  3479. -moz-flex-direction: horizontal;
  3480. -ms-flex-direction: horizontal;
  3481. flex-direction: horizontal;
  3482. -webkit-box-pack: center;
  3483. -ms-flex-pack: center;
  3484. -webkit-justify-content: center;
  3485. -moz-justify-content: center;
  3486. justify-content: center;
  3487. -webkit-transform: translate3d(0, 0, 0);
  3488. transform: translate3d(0, 0, 0);
  3489. border-color: #b2b2b2;
  3490. background-color: #f8f8f8;
  3491. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3492. color: #444;
  3493. position: absolute;
  3494. bottom: 0;
  3495. z-index: 5;
  3496. width: 100%;
  3497. height: 49px;
  3498. border-style: solid;
  3499. border-top-width: 1px;
  3500. background-size: 0;
  3501. line-height: 49px; }
  3502. .tabs .tab-item .badge {
  3503. background-color: #444;
  3504. color: #f8f8f8; }
  3505. @media (min--moz-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-device-pixel-ratio: 1.5), (min-resolution: 144dpi), (min-resolution: 1.5dppx) {
  3506. .tabs {
  3507. padding-top: 2px;
  3508. border-top: none !important;
  3509. border-bottom: none;
  3510. background-position: top;
  3511. background-size: 100% 1px;
  3512. background-repeat: no-repeat; } }
  3513. /* Allow parent element of tabs to define color, or just the tab itself */
  3514. .tabs-light > .tabs,
  3515. .tabs.tabs-light {
  3516. border-color: #ddd;
  3517. background-color: #fff;
  3518. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3519. color: #444; }
  3520. .tabs-light > .tabs .tab-item .badge,
  3521. .tabs.tabs-light .tab-item .badge {
  3522. background-color: #444;
  3523. color: #fff; }
  3524. .tabs-stable > .tabs,
  3525. .tabs.tabs-stable {
  3526. border-color: #b2b2b2;
  3527. background-color: #f8f8f8;
  3528. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3529. color: #444; }
  3530. .tabs-stable > .tabs .tab-item .badge,
  3531. .tabs.tabs-stable .tab-item .badge {
  3532. background-color: #444;
  3533. color: #f8f8f8; }
  3534. .tabs-positive > .tabs,
  3535. .tabs.tabs-positive {
  3536. border-color: #0c60ee;
  3537. background-color: #387ef5;
  3538. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3539. color: #fff; }
  3540. .tabs-positive > .tabs .tab-item .badge,
  3541. .tabs.tabs-positive .tab-item .badge {
  3542. background-color: #fff;
  3543. color: #387ef5; }
  3544. .tabs-calm > .tabs,
  3545. .tabs.tabs-calm {
  3546. border-color: #0a9dc7;
  3547. background-color: #11c1f3;
  3548. background-image: linear-gradient(0deg, #0a9dc7, #0a9dc7 50%, transparent 50%);
  3549. color: #fff; }
  3550. .tabs-calm > .tabs .tab-item .badge,
  3551. .tabs.tabs-calm .tab-item .badge {
  3552. background-color: #fff;
  3553. color: #11c1f3; }
  3554. .tabs-assertive > .tabs,
  3555. .tabs.tabs-assertive {
  3556. border-color: #e42112;
  3557. background-color: #ef473a;
  3558. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3559. color: #fff; }
  3560. .tabs-assertive > .tabs .tab-item .badge,
  3561. .tabs.tabs-assertive .tab-item .badge {
  3562. background-color: #fff;
  3563. color: #ef473a; }
  3564. .tabs-balanced > .tabs,
  3565. .tabs.tabs-balanced {
  3566. border-color: #28a54c;
  3567. background-color: #33cd5f;
  3568. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3569. color: #fff; }
  3570. .tabs-balanced > .tabs .tab-item .badge,
  3571. .tabs.tabs-balanced .tab-item .badge {
  3572. background-color: #fff;
  3573. color: #33cd5f; }
  3574. .tabs-energized > .tabs,
  3575. .tabs.tabs-energized {
  3576. border-color: #e6b500;
  3577. background-color: #ffc900;
  3578. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3579. color: #fff; }
  3580. .tabs-energized > .tabs .tab-item .badge,
  3581. .tabs.tabs-energized .tab-item .badge {
  3582. background-color: #fff;
  3583. color: #ffc900; }
  3584. .tabs-royal > .tabs,
  3585. .tabs.tabs-royal {
  3586. border-color: #6b46e5;
  3587. background-color: #886aea;
  3588. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3589. color: #fff; }
  3590. .tabs-royal > .tabs .tab-item .badge,
  3591. .tabs.tabs-royal .tab-item .badge {
  3592. background-color: #fff;
  3593. color: #886aea; }
  3594. .tabs-dark > .tabs,
  3595. .tabs.tabs-dark {
  3596. border-color: #111;
  3597. background-color: #444;
  3598. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3599. color: #fff; }
  3600. .tabs-dark > .tabs .tab-item .badge,
  3601. .tabs.tabs-dark .tab-item .badge {
  3602. background-color: #fff;
  3603. color: #444; }
  3604. .tabs-striped .tabs {
  3605. background-color: white;
  3606. background-image: none;
  3607. border: none;
  3608. border-bottom: 1px solid #ddd;
  3609. padding-top: 2px; }
  3610. .tabs-striped .tab-item.tab-item-active, .tabs-striped .tab-item.active, .tabs-striped .tab-item.activated {
  3611. margin-top: -2px;
  3612. border-style: solid;
  3613. border-width: 2px 0 0 0;
  3614. border-color: #444; }
  3615. .tabs-striped .tab-item.tab-item-active .badge, .tabs-striped .tab-item.active .badge, .tabs-striped .tab-item.activated .badge {
  3616. top: 2px;
  3617. opacity: 1; }
  3618. .tabs-striped.tabs-light .tabs {
  3619. background-color: #fff; }
  3620. .tabs-striped.tabs-light .tab-item {
  3621. color: rgba(68, 68, 68, 0.4);
  3622. opacity: 1; }
  3623. .tabs-striped.tabs-light .tab-item .badge {
  3624. opacity: 0.4; }
  3625. .tabs-striped.tabs-light .tab-item.tab-item-active, .tabs-striped.tabs-light .tab-item.active, .tabs-striped.tabs-light .tab-item.activated {
  3626. margin-top: -2px;
  3627. color: #444;
  3628. border-style: solid;
  3629. border-width: 2px 0 0 0;
  3630. border-color: #444; }
  3631. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3632. top: 4%; }
  3633. .tabs-striped.tabs-stable .tabs {
  3634. background-color: #f8f8f8; }
  3635. .tabs-striped.tabs-stable .tab-item {
  3636. color: rgba(68, 68, 68, 0.4);
  3637. opacity: 1; }
  3638. .tabs-striped.tabs-stable .tab-item .badge {
  3639. opacity: 0.4; }
  3640. .tabs-striped.tabs-stable .tab-item.tab-item-active, .tabs-striped.tabs-stable .tab-item.active, .tabs-striped.tabs-stable .tab-item.activated {
  3641. margin-top: -2px;
  3642. color: #444;
  3643. border-style: solid;
  3644. border-width: 2px 0 0 0;
  3645. border-color: #444; }
  3646. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3647. top: 4%; }
  3648. .tabs-striped.tabs-positive .tabs {
  3649. background-color: #387ef5; }
  3650. .tabs-striped.tabs-positive .tab-item {
  3651. color: rgba(255, 255, 255, 0.4);
  3652. opacity: 1; }
  3653. .tabs-striped.tabs-positive .tab-item .badge {
  3654. opacity: 0.4; }
  3655. .tabs-striped.tabs-positive .tab-item.tab-item-active, .tabs-striped.tabs-positive .tab-item.active, .tabs-striped.tabs-positive .tab-item.activated {
  3656. margin-top: -2px;
  3657. color: #fff;
  3658. border-style: solid;
  3659. border-width: 2px 0 0 0;
  3660. border-color: #fff; }
  3661. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3662. top: 4%; }
  3663. .tabs-striped.tabs-calm .tabs {
  3664. background-color: #11c1f3; }
  3665. .tabs-striped.tabs-calm .tab-item {
  3666. color: rgba(255, 255, 255, 0.4);
  3667. opacity: 1; }
  3668. .tabs-striped.tabs-calm .tab-item .badge {
  3669. opacity: 0.4; }
  3670. .tabs-striped.tabs-calm .tab-item.tab-item-active, .tabs-striped.tabs-calm .tab-item.active, .tabs-striped.tabs-calm .tab-item.activated {
  3671. margin-top: -2px;
  3672. color: #fff;
  3673. border-style: solid;
  3674. border-width: 2px 0 0 0;
  3675. border-color: #fff; }
  3676. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3677. top: 4%; }
  3678. .tabs-striped.tabs-assertive .tabs {
  3679. background-color: #ef473a; }
  3680. .tabs-striped.tabs-assertive .tab-item {
  3681. color: rgba(255, 255, 255, 0.4);
  3682. opacity: 1; }
  3683. .tabs-striped.tabs-assertive .tab-item .badge {
  3684. opacity: 0.4; }
  3685. .tabs-striped.tabs-assertive .tab-item.tab-item-active, .tabs-striped.tabs-assertive .tab-item.active, .tabs-striped.tabs-assertive .tab-item.activated {
  3686. margin-top: -2px;
  3687. color: #fff;
  3688. border-style: solid;
  3689. border-width: 2px 0 0 0;
  3690. border-color: #fff; }
  3691. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3692. top: 4%; }
  3693. .tabs-striped.tabs-balanced .tabs {
  3694. background-color: #33cd5f; }
  3695. .tabs-striped.tabs-balanced .tab-item {
  3696. color: rgba(255, 255, 255, 0.4);
  3697. opacity: 1; }
  3698. .tabs-striped.tabs-balanced .tab-item .badge {
  3699. opacity: 0.4; }
  3700. .tabs-striped.tabs-balanced .tab-item.tab-item-active, .tabs-striped.tabs-balanced .tab-item.active, .tabs-striped.tabs-balanced .tab-item.activated {
  3701. margin-top: -2px;
  3702. color: #fff;
  3703. border-style: solid;
  3704. border-width: 2px 0 0 0;
  3705. border-color: #fff; }
  3706. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3707. top: 4%; }
  3708. .tabs-striped.tabs-energized .tabs {
  3709. background-color: #ffc900; }
  3710. .tabs-striped.tabs-energized .tab-item {
  3711. color: rgba(255, 255, 255, 0.4);
  3712. opacity: 1; }
  3713. .tabs-striped.tabs-energized .tab-item .badge {
  3714. opacity: 0.4; }
  3715. .tabs-striped.tabs-energized .tab-item.tab-item-active, .tabs-striped.tabs-energized .tab-item.active, .tabs-striped.tabs-energized .tab-item.activated {
  3716. margin-top: -2px;
  3717. color: #fff;
  3718. border-style: solid;
  3719. border-width: 2px 0 0 0;
  3720. border-color: #fff; }
  3721. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3722. top: 4%; }
  3723. .tabs-striped.tabs-royal .tabs {
  3724. background-color: #886aea; }
  3725. .tabs-striped.tabs-royal .tab-item {
  3726. color: rgba(255, 255, 255, 0.4);
  3727. opacity: 1; }
  3728. .tabs-striped.tabs-royal .tab-item .badge {
  3729. opacity: 0.4; }
  3730. .tabs-striped.tabs-royal .tab-item.tab-item-active, .tabs-striped.tabs-royal .tab-item.active, .tabs-striped.tabs-royal .tab-item.activated {
  3731. margin-top: -2px;
  3732. color: #fff;
  3733. border-style: solid;
  3734. border-width: 2px 0 0 0;
  3735. border-color: #fff; }
  3736. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3737. top: 4%; }
  3738. .tabs-striped.tabs-dark .tabs {
  3739. background-color: #444; }
  3740. .tabs-striped.tabs-dark .tab-item {
  3741. color: rgba(255, 255, 255, 0.4);
  3742. opacity: 1; }
  3743. .tabs-striped.tabs-dark .tab-item .badge {
  3744. opacity: 0.4; }
  3745. .tabs-striped.tabs-dark .tab-item.tab-item-active, .tabs-striped.tabs-dark .tab-item.active, .tabs-striped.tabs-dark .tab-item.activated {
  3746. margin-top: -2px;
  3747. color: #fff;
  3748. border-style: solid;
  3749. border-width: 2px 0 0 0;
  3750. border-color: #fff; }
  3751. .tabs-striped.tabs-top .tab-item.tab-item-active .badge, .tabs-striped.tabs-top .tab-item.active .badge, .tabs-striped.tabs-top .tab-item.activated .badge {
  3752. top: 4%; }
  3753. .tabs-striped.tabs-background-light .tabs {
  3754. background-color: #fff;
  3755. background-image: none; }
  3756. .tabs-striped.tabs-background-stable .tabs {
  3757. background-color: #f8f8f8;
  3758. background-image: none; }
  3759. .tabs-striped.tabs-background-positive .tabs {
  3760. background-color: #387ef5;
  3761. background-image: none; }
  3762. .tabs-striped.tabs-background-calm .tabs {
  3763. background-color: #11c1f3;
  3764. background-image: none; }
  3765. .tabs-striped.tabs-background-assertive .tabs {
  3766. background-color: #ef473a;
  3767. background-image: none; }
  3768. .tabs-striped.tabs-background-balanced .tabs {
  3769. background-color: #33cd5f;
  3770. background-image: none; }
  3771. .tabs-striped.tabs-background-energized .tabs {
  3772. background-color: #ffc900;
  3773. background-image: none; }
  3774. .tabs-striped.tabs-background-royal .tabs {
  3775. background-color: #886aea;
  3776. background-image: none; }
  3777. .tabs-striped.tabs-background-dark .tabs {
  3778. background-color: #444;
  3779. background-image: none; }
  3780. .tabs-striped.tabs-color-light .tab-item {
  3781. color: rgba(255, 255, 255, 0.4);
  3782. opacity: 1; }
  3783. .tabs-striped.tabs-color-light .tab-item .badge {
  3784. opacity: 0.4; }
  3785. .tabs-striped.tabs-color-light .tab-item.tab-item-active, .tabs-striped.tabs-color-light .tab-item.active, .tabs-striped.tabs-color-light .tab-item.activated {
  3786. margin-top: -2px;
  3787. color: #fff;
  3788. border: 0 solid #fff;
  3789. border-top-width: 2px; }
  3790. .tabs-striped.tabs-color-light .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-light .tab-item.active .badge, .tabs-striped.tabs-color-light .tab-item.activated .badge {
  3791. top: 2px;
  3792. opacity: 1; }
  3793. .tabs-striped.tabs-color-stable .tab-item {
  3794. color: rgba(248, 248, 248, 0.4);
  3795. opacity: 1; }
  3796. .tabs-striped.tabs-color-stable .tab-item .badge {
  3797. opacity: 0.4; }
  3798. .tabs-striped.tabs-color-stable .tab-item.tab-item-active, .tabs-striped.tabs-color-stable .tab-item.active, .tabs-striped.tabs-color-stable .tab-item.activated {
  3799. margin-top: -2px;
  3800. color: #f8f8f8;
  3801. border: 0 solid #f8f8f8;
  3802. border-top-width: 2px; }
  3803. .tabs-striped.tabs-color-stable .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-stable .tab-item.active .badge, .tabs-striped.tabs-color-stable .tab-item.activated .badge {
  3804. top: 2px;
  3805. opacity: 1; }
  3806. .tabs-striped.tabs-color-positive .tab-item {
  3807. color: rgba(56, 126, 245, 0.4);
  3808. opacity: 1; }
  3809. .tabs-striped.tabs-color-positive .tab-item .badge {
  3810. opacity: 0.4; }
  3811. .tabs-striped.tabs-color-positive .tab-item.tab-item-active, .tabs-striped.tabs-color-positive .tab-item.active, .tabs-striped.tabs-color-positive .tab-item.activated {
  3812. margin-top: -2px;
  3813. color: #387ef5;
  3814. border: 0 solid #387ef5;
  3815. border-top-width: 2px; }
  3816. .tabs-striped.tabs-color-positive .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-positive .tab-item.active .badge, .tabs-striped.tabs-color-positive .tab-item.activated .badge {
  3817. top: 2px;
  3818. opacity: 1; }
  3819. .tabs-striped.tabs-color-calm .tab-item {
  3820. color: rgba(17, 193, 243, 0.4);
  3821. opacity: 1; }
  3822. .tabs-striped.tabs-color-calm .tab-item .badge {
  3823. opacity: 0.4; }
  3824. .tabs-striped.tabs-color-calm .tab-item.tab-item-active, .tabs-striped.tabs-color-calm .tab-item.active, .tabs-striped.tabs-color-calm .tab-item.activated {
  3825. margin-top: -2px;
  3826. color: #11c1f3;
  3827. border: 0 solid #11c1f3;
  3828. border-top-width: 2px; }
  3829. .tabs-striped.tabs-color-calm .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-calm .tab-item.active .badge, .tabs-striped.tabs-color-calm .tab-item.activated .badge {
  3830. top: 2px;
  3831. opacity: 1; }
  3832. .tabs-striped.tabs-color-assertive .tab-item {
  3833. color: rgba(239, 71, 58, 0.4);
  3834. opacity: 1; }
  3835. .tabs-striped.tabs-color-assertive .tab-item .badge {
  3836. opacity: 0.4; }
  3837. .tabs-striped.tabs-color-assertive .tab-item.tab-item-active, .tabs-striped.tabs-color-assertive .tab-item.active, .tabs-striped.tabs-color-assertive .tab-item.activated {
  3838. margin-top: -2px;
  3839. color: #ef473a;
  3840. border: 0 solid #ef473a;
  3841. border-top-width: 2px; }
  3842. .tabs-striped.tabs-color-assertive .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-assertive .tab-item.active .badge, .tabs-striped.tabs-color-assertive .tab-item.activated .badge {
  3843. top: 2px;
  3844. opacity: 1; }
  3845. .tabs-striped.tabs-color-balanced .tab-item {
  3846. color: rgba(51, 205, 95, 0.4);
  3847. opacity: 1; }
  3848. .tabs-striped.tabs-color-balanced .tab-item .badge {
  3849. opacity: 0.4; }
  3850. .tabs-striped.tabs-color-balanced .tab-item.tab-item-active, .tabs-striped.tabs-color-balanced .tab-item.active, .tabs-striped.tabs-color-balanced .tab-item.activated {
  3851. margin-top: -2px;
  3852. color: #33cd5f;
  3853. border: 0 solid #33cd5f;
  3854. border-top-width: 2px; }
  3855. .tabs-striped.tabs-color-balanced .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-balanced .tab-item.active .badge, .tabs-striped.tabs-color-balanced .tab-item.activated .badge {
  3856. top: 2px;
  3857. opacity: 1; }
  3858. .tabs-striped.tabs-color-energized .tab-item {
  3859. color: rgba(255, 201, 0, 0.4);
  3860. opacity: 1; }
  3861. .tabs-striped.tabs-color-energized .tab-item .badge {
  3862. opacity: 0.4; }
  3863. .tabs-striped.tabs-color-energized .tab-item.tab-item-active, .tabs-striped.tabs-color-energized .tab-item.active, .tabs-striped.tabs-color-energized .tab-item.activated {
  3864. margin-top: -2px;
  3865. color: #ffc900;
  3866. border: 0 solid #ffc900;
  3867. border-top-width: 2px; }
  3868. .tabs-striped.tabs-color-energized .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-energized .tab-item.active .badge, .tabs-striped.tabs-color-energized .tab-item.activated .badge {
  3869. top: 2px;
  3870. opacity: 1; }
  3871. .tabs-striped.tabs-color-royal .tab-item {
  3872. color: rgba(136, 106, 234, 0.4);
  3873. opacity: 1; }
  3874. .tabs-striped.tabs-color-royal .tab-item .badge {
  3875. opacity: 0.4; }
  3876. .tabs-striped.tabs-color-royal .tab-item.tab-item-active, .tabs-striped.tabs-color-royal .tab-item.active, .tabs-striped.tabs-color-royal .tab-item.activated {
  3877. margin-top: -2px;
  3878. color: #886aea;
  3879. border: 0 solid #886aea;
  3880. border-top-width: 2px; }
  3881. .tabs-striped.tabs-color-royal .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-royal .tab-item.active .badge, .tabs-striped.tabs-color-royal .tab-item.activated .badge {
  3882. top: 2px;
  3883. opacity: 1; }
  3884. .tabs-striped.tabs-color-dark .tab-item {
  3885. color: rgba(68, 68, 68, 0.4);
  3886. opacity: 1; }
  3887. .tabs-striped.tabs-color-dark .tab-item .badge {
  3888. opacity: 0.4; }
  3889. .tabs-striped.tabs-color-dark .tab-item.tab-item-active, .tabs-striped.tabs-color-dark .tab-item.active, .tabs-striped.tabs-color-dark .tab-item.activated {
  3890. margin-top: -2px;
  3891. color: #444;
  3892. border: 0 solid #444;
  3893. border-top-width: 2px; }
  3894. .tabs-striped.tabs-color-dark .tab-item.tab-item-active .badge, .tabs-striped.tabs-color-dark .tab-item.active .badge, .tabs-striped.tabs-color-dark .tab-item.activated .badge {
  3895. top: 2px;
  3896. opacity: 1; }
  3897. .tabs-background-light .tabs,
  3898. .tabs-background-light > .tabs {
  3899. background-color: #fff;
  3900. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3901. border-color: #ddd; }
  3902. .tabs-background-stable .tabs,
  3903. .tabs-background-stable > .tabs {
  3904. background-color: #f8f8f8;
  3905. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3906. border-color: #b2b2b2; }
  3907. .tabs-background-positive .tabs,
  3908. .tabs-background-positive > .tabs {
  3909. background-color: #387ef5;
  3910. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3911. border-color: #0c60ee; }
  3912. .tabs-background-calm .tabs,
  3913. .tabs-background-calm > .tabs {
  3914. background-color: #11c1f3;
  3915. background-image: linear-gradient(0deg, #0a9dc7, #0a9dc7 50%, transparent 50%);
  3916. border-color: #0a9dc7; }
  3917. .tabs-background-assertive .tabs,
  3918. .tabs-background-assertive > .tabs {
  3919. background-color: #ef473a;
  3920. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3921. border-color: #e42112; }
  3922. .tabs-background-balanced .tabs,
  3923. .tabs-background-balanced > .tabs {
  3924. background-color: #33cd5f;
  3925. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3926. border-color: #28a54c; }
  3927. .tabs-background-energized .tabs,
  3928. .tabs-background-energized > .tabs {
  3929. background-color: #ffc900;
  3930. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3931. border-color: #e6b500; }
  3932. .tabs-background-royal .tabs,
  3933. .tabs-background-royal > .tabs {
  3934. background-color: #886aea;
  3935. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3936. border-color: #6b46e5; }
  3937. .tabs-background-dark .tabs,
  3938. .tabs-background-dark > .tabs {
  3939. background-color: #444;
  3940. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3941. border-color: #111; }
  3942. .tabs-color-light .tab-item {
  3943. color: rgba(255, 255, 255, 0.4);
  3944. opacity: 1; }
  3945. .tabs-color-light .tab-item .badge {
  3946. opacity: 0.4; }
  3947. .tabs-color-light .tab-item.tab-item-active, .tabs-color-light .tab-item.active, .tabs-color-light .tab-item.activated {
  3948. color: #fff;
  3949. border: 0 solid #fff; }
  3950. .tabs-color-light .tab-item.tab-item-active .badge, .tabs-color-light .tab-item.active .badge, .tabs-color-light .tab-item.activated .badge {
  3951. opacity: 1; }
  3952. .tabs-color-stable .tab-item {
  3953. color: rgba(248, 248, 248, 0.4);
  3954. opacity: 1; }
  3955. .tabs-color-stable .tab-item .badge {
  3956. opacity: 0.4; }
  3957. .tabs-color-stable .tab-item.tab-item-active, .tabs-color-stable .tab-item.active, .tabs-color-stable .tab-item.activated {
  3958. color: #f8f8f8;
  3959. border: 0 solid #f8f8f8; }
  3960. .tabs-color-stable .tab-item.tab-item-active .badge, .tabs-color-stable .tab-item.active .badge, .tabs-color-stable .tab-item.activated .badge {
  3961. opacity: 1; }
  3962. .tabs-color-positive .tab-item {
  3963. color: rgba(56, 126, 245, 0.4);
  3964. opacity: 1; }
  3965. .tabs-color-positive .tab-item .badge {
  3966. opacity: 0.4; }
  3967. .tabs-color-positive .tab-item.tab-item-active, .tabs-color-positive .tab-item.active, .tabs-color-positive .tab-item.activated {
  3968. color: #387ef5;
  3969. border: 0 solid #387ef5; }
  3970. .tabs-color-positive .tab-item.tab-item-active .badge, .tabs-color-positive .tab-item.active .badge, .tabs-color-positive .tab-item.activated .badge {
  3971. opacity: 1; }
  3972. .tabs-color-calm .tab-item {
  3973. color: rgba(17, 193, 243, 0.4);
  3974. opacity: 1; }
  3975. .tabs-color-calm .tab-item .badge {
  3976. opacity: 0.4; }
  3977. .tabs-color-calm .tab-item.tab-item-active, .tabs-color-calm .tab-item.active, .tabs-color-calm .tab-item.activated {
  3978. color: #11c1f3;
  3979. border: 0 solid #11c1f3; }
  3980. .tabs-color-calm .tab-item.tab-item-active .badge, .tabs-color-calm .tab-item.active .badge, .tabs-color-calm .tab-item.activated .badge {
  3981. opacity: 1; }
  3982. .tabs-color-assertive .tab-item {
  3983. color: rgba(239, 71, 58, 0.4);
  3984. opacity: 1; }
  3985. .tabs-color-assertive .tab-item .badge {
  3986. opacity: 0.4; }
  3987. .tabs-color-assertive .tab-item.tab-item-active, .tabs-color-assertive .tab-item.active, .tabs-color-assertive .tab-item.activated {
  3988. color: #ef473a;
  3989. border: 0 solid #ef473a; }
  3990. .tabs-color-assertive .tab-item.tab-item-active .badge, .tabs-color-assertive .tab-item.active .badge, .tabs-color-assertive .tab-item.activated .badge {
  3991. opacity: 1; }
  3992. .tabs-color-balanced .tab-item {
  3993. color: rgba(51, 205, 95, 0.4);
  3994. opacity: 1; }
  3995. .tabs-color-balanced .tab-item .badge {
  3996. opacity: 0.4; }
  3997. .tabs-color-balanced .tab-item.tab-item-active, .tabs-color-balanced .tab-item.active, .tabs-color-balanced .tab-item.activated {
  3998. color: #33cd5f;
  3999. border: 0 solid #33cd5f; }
  4000. .tabs-color-balanced .tab-item.tab-item-active .badge, .tabs-color-balanced .tab-item.active .badge, .tabs-color-balanced .tab-item.activated .badge {
  4001. opacity: 1; }
  4002. .tabs-color-energized .tab-item {
  4003. color: rgba(255, 201, 0, 0.4);
  4004. opacity: 1; }
  4005. .tabs-color-energized .tab-item .badge {
  4006. opacity: 0.4; }
  4007. .tabs-color-energized .tab-item.tab-item-active, .tabs-color-energized .tab-item.active, .tabs-color-energized .tab-item.activated {
  4008. color: #ffc900;
  4009. border: 0 solid #ffc900; }
  4010. .tabs-color-energized .tab-item.tab-item-active .badge, .tabs-color-energized .tab-item.active .badge, .tabs-color-energized .tab-item.activated .badge {
  4011. opacity: 1; }
  4012. .tabs-color-royal .tab-item {
  4013. color: rgba(136, 106, 234, 0.4);
  4014. opacity: 1; }
  4015. .tabs-color-royal .tab-item .badge {
  4016. opacity: 0.4; }
  4017. .tabs-color-royal .tab-item.tab-item-active, .tabs-color-royal .tab-item.active, .tabs-color-royal .tab-item.activated {
  4018. color: #886aea;
  4019. border: 0 solid #886aea; }
  4020. .tabs-color-royal .tab-item.tab-item-active .badge, .tabs-color-royal .tab-item.active .badge, .tabs-color-royal .tab-item.activated .badge {
  4021. opacity: 1; }
  4022. .tabs-color-dark .tab-item {
  4023. color: rgba(68, 68, 68, 0.4);
  4024. opacity: 1; }
  4025. .tabs-color-dark .tab-item .badge {
  4026. opacity: 0.4; }
  4027. .tabs-color-dark .tab-item.tab-item-active, .tabs-color-dark .tab-item.active, .tabs-color-dark .tab-item.activated {
  4028. color: #444;
  4029. border: 0 solid #444; }
  4030. .tabs-color-dark .tab-item.tab-item-active .badge, .tabs-color-dark .tab-item.active .badge, .tabs-color-dark .tab-item.activated .badge {
  4031. opacity: 1; }
  4032. ion-tabs.tabs-color-active-light .tab-item {
  4033. color: #444; }
  4034. ion-tabs.tabs-color-active-light .tab-item.tab-item-active, ion-tabs.tabs-color-active-light .tab-item.active, ion-tabs.tabs-color-active-light .tab-item.activated {
  4035. color: #fff; }
  4036. ion-tabs.tabs-striped.tabs-color-active-light .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-light .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-light .tab-item.activated {
  4037. border-color: #fff;
  4038. color: #fff; }
  4039. ion-tabs.tabs-color-active-stable .tab-item {
  4040. color: #444; }
  4041. ion-tabs.tabs-color-active-stable .tab-item.tab-item-active, ion-tabs.tabs-color-active-stable .tab-item.active, ion-tabs.tabs-color-active-stable .tab-item.activated {
  4042. color: #f8f8f8; }
  4043. ion-tabs.tabs-striped.tabs-color-active-stable .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-stable .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-stable .tab-item.activated {
  4044. border-color: #f8f8f8;
  4045. color: #f8f8f8; }
  4046. ion-tabs.tabs-color-active-positive .tab-item {
  4047. color: #444; }
  4048. ion-tabs.tabs-color-active-positive .tab-item.tab-item-active, ion-tabs.tabs-color-active-positive .tab-item.active, ion-tabs.tabs-color-active-positive .tab-item.activated {
  4049. color: #387ef5; }
  4050. ion-tabs.tabs-striped.tabs-color-active-positive .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-positive .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-positive .tab-item.activated {
  4051. border-color: #387ef5;
  4052. color: #387ef5; }
  4053. ion-tabs.tabs-color-active-calm .tab-item {
  4054. color: #444; }
  4055. ion-tabs.tabs-color-active-calm .tab-item.tab-item-active, ion-tabs.tabs-color-active-calm .tab-item.active, ion-tabs.tabs-color-active-calm .tab-item.activated {
  4056. color: #11c1f3; }
  4057. ion-tabs.tabs-striped.tabs-color-active-calm .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-calm .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-calm .tab-item.activated {
  4058. border-color: #11c1f3;
  4059. color: #11c1f3; }
  4060. ion-tabs.tabs-color-active-assertive .tab-item {
  4061. color: #444; }
  4062. ion-tabs.tabs-color-active-assertive .tab-item.tab-item-active, ion-tabs.tabs-color-active-assertive .tab-item.active, ion-tabs.tabs-color-active-assertive .tab-item.activated {
  4063. color: #ef473a; }
  4064. ion-tabs.tabs-striped.tabs-color-active-assertive .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-assertive .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-assertive .tab-item.activated {
  4065. border-color: #ef473a;
  4066. color: #ef473a; }
  4067. ion-tabs.tabs-color-active-balanced .tab-item {
  4068. color: #444; }
  4069. ion-tabs.tabs-color-active-balanced .tab-item.tab-item-active, ion-tabs.tabs-color-active-balanced .tab-item.active, ion-tabs.tabs-color-active-balanced .tab-item.activated {
  4070. color: #33cd5f; }
  4071. ion-tabs.tabs-striped.tabs-color-active-balanced .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-balanced .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-balanced .tab-item.activated {
  4072. border-color: #33cd5f;
  4073. color: #33cd5f; }
  4074. ion-tabs.tabs-color-active-energized .tab-item {
  4075. color: #444; }
  4076. ion-tabs.tabs-color-active-energized .tab-item.tab-item-active, ion-tabs.tabs-color-active-energized .tab-item.active, ion-tabs.tabs-color-active-energized .tab-item.activated {
  4077. color: #ffc900; }
  4078. ion-tabs.tabs-striped.tabs-color-active-energized .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-energized .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-energized .tab-item.activated {
  4079. border-color: #ffc900;
  4080. color: #ffc900; }
  4081. ion-tabs.tabs-color-active-royal .tab-item {
  4082. color: #444; }
  4083. ion-tabs.tabs-color-active-royal .tab-item.tab-item-active, ion-tabs.tabs-color-active-royal .tab-item.active, ion-tabs.tabs-color-active-royal .tab-item.activated {
  4084. color: #886aea; }
  4085. ion-tabs.tabs-striped.tabs-color-active-royal .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-royal .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-royal .tab-item.activated {
  4086. border-color: #886aea;
  4087. color: #886aea; }
  4088. ion-tabs.tabs-color-active-dark .tab-item {
  4089. color: #fff; }
  4090. ion-tabs.tabs-color-active-dark .tab-item.tab-item-active, ion-tabs.tabs-color-active-dark .tab-item.active, ion-tabs.tabs-color-active-dark .tab-item.activated {
  4091. color: #444; }
  4092. ion-tabs.tabs-striped.tabs-color-active-dark .tab-item.tab-item-active, ion-tabs.tabs-striped.tabs-color-active-dark .tab-item.active, ion-tabs.tabs-striped.tabs-color-active-dark .tab-item.activated {
  4093. border-color: #444;
  4094. color: #444; }
  4095. .tabs-top.tabs-striped {
  4096. padding-bottom: 0; }
  4097. .tabs-top.tabs-striped .tab-item {
  4098. background: transparent;
  4099. -webkit-transition: color .1s ease;
  4100. -moz-transition: color .1s ease;
  4101. -ms-transition: color .1s ease;
  4102. -o-transition: color .1s ease;
  4103. transition: color .1s ease; }
  4104. .tabs-top.tabs-striped .tab-item.tab-item-active, .tabs-top.tabs-striped .tab-item.active, .tabs-top.tabs-striped .tab-item.activated {
  4105. margin-top: 1px;
  4106. border-width: 0px 0px 2px 0px !important;
  4107. border-style: solid; }
  4108. .tabs-top.tabs-striped .tab-item.tab-item-active > .badge, .tabs-top.tabs-striped .tab-item.tab-item-active > i, .tabs-top.tabs-striped .tab-item.active > .badge, .tabs-top.tabs-striped .tab-item.active > i, .tabs-top.tabs-striped .tab-item.activated > .badge, .tabs-top.tabs-striped .tab-item.activated > i {
  4109. margin-top: -1px; }
  4110. .tabs-top.tabs-striped .tab-item .badge {
  4111. -webkit-transition: color .2s ease;
  4112. -moz-transition: color .2s ease;
  4113. -ms-transition: color .2s ease;
  4114. -o-transition: color .2s ease;
  4115. transition: color .2s ease; }
  4116. .tabs-top.tabs-striped:not(.tabs-icon-left):not(.tabs-icon-top) .tab-item.tab-item-active .tab-title, .tabs-top.tabs-striped:not(.tabs-icon-left):not(.tabs-icon-top) .tab-item.tab-item-active i, .tabs-top.tabs-striped:not(.tabs-icon-left):not(.tabs-icon-top) .tab-item.active .tab-title, .tabs-top.tabs-striped:not(.tabs-icon-left):not(.tabs-icon-top) .tab-item.active i, .tabs-top.tabs-striped:not(.tabs-icon-left):not(.tabs-icon-top) .tab-item.activated .tab-title, .tabs-top.tabs-striped:not(.tabs-icon-left):not(.tabs-icon-top) .tab-item.activated i {
  4117. display: block;
  4118. margin-top: -1px; }
  4119. .tabs-top.tabs-striped.tabs-icon-left .tab-item {
  4120. margin-top: 1px; }
  4121. .tabs-top.tabs-striped.tabs-icon-left .tab-item.tab-item-active .tab-title, .tabs-top.tabs-striped.tabs-icon-left .tab-item.tab-item-active i, .tabs-top.tabs-striped.tabs-icon-left .tab-item.active .tab-title, .tabs-top.tabs-striped.tabs-icon-left .tab-item.active i, .tabs-top.tabs-striped.tabs-icon-left .tab-item.activated .tab-title, .tabs-top.tabs-striped.tabs-icon-left .tab-item.activated i {
  4122. margin-top: -0.1em; }
  4123. /* Allow parent element to have tabs-top */
  4124. /* If you change this, change platform.scss as well */
  4125. .tabs-top > .tabs,
  4126. .tabs.tabs-top {
  4127. top: 44px;
  4128. padding-top: 0;
  4129. background-position: bottom;
  4130. border-top-width: 0;
  4131. border-bottom-width: 1px; }
  4132. .tabs-top > .tabs .tab-item.tab-item-active .badge, .tabs-top > .tabs .tab-item.active .badge, .tabs-top > .tabs .tab-item.activated .badge,
  4133. .tabs.tabs-top .tab-item.tab-item-active .badge,
  4134. .tabs.tabs-top .tab-item.active .badge,
  4135. .tabs.tabs-top .tab-item.activated .badge {
  4136. top: 4%; }
  4137. .tabs-top ~ .bar-header {
  4138. border-bottom-width: 0; }
  4139. .tab-item {
  4140. -webkit-box-flex: 1;
  4141. -webkit-flex: 1;
  4142. -moz-box-flex: 1;
  4143. -moz-flex: 1;
  4144. -ms-flex: 1;
  4145. flex: 1;
  4146. display: block;
  4147. overflow: hidden;
  4148. max-width: 150px;
  4149. height: 100%;
  4150. color: inherit;
  4151. text-align: center;
  4152. text-decoration: none;
  4153. text-overflow: ellipsis;
  4154. white-space: nowrap;
  4155. font-weight: 400;
  4156. font-size: 14px;
  4157. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
  4158. opacity: 0.7; }
  4159. .tab-item:hover {
  4160. cursor: pointer; }
  4161. .tab-item.tab-hidden {
  4162. display: none; }
  4163. .tabs-item-hide > .tabs,
  4164. .tabs.tabs-item-hide {
  4165. display: none; }
  4166. .tabs-icon-top > .tabs .tab-item,
  4167. .tabs-icon-top.tabs .tab-item,
  4168. .tabs-icon-bottom > .tabs .tab-item,
  4169. .tabs-icon-bottom.tabs .tab-item {
  4170. font-size: 10px;
  4171. line-height: 14px; }
  4172. .tab-item .icon {
  4173. display: block;
  4174. margin: 0 auto;
  4175. height: 32px;
  4176. font-size: 32px; }
  4177. .tabs-icon-left.tabs .tab-item,
  4178. .tabs-icon-left > .tabs .tab-item,
  4179. .tabs-icon-right.tabs .tab-item,
  4180. .tabs-icon-right > .tabs .tab-item {
  4181. font-size: 10px; }
  4182. .tabs-icon-left.tabs .tab-item .icon, .tabs-icon-left.tabs .tab-item .tab-title,
  4183. .tabs-icon-left > .tabs .tab-item .icon,
  4184. .tabs-icon-left > .tabs .tab-item .tab-title,
  4185. .tabs-icon-right.tabs .tab-item .icon,
  4186. .tabs-icon-right.tabs .tab-item .tab-title,
  4187. .tabs-icon-right > .tabs .tab-item .icon,
  4188. .tabs-icon-right > .tabs .tab-item .tab-title {
  4189. display: inline-block;
  4190. vertical-align: top;
  4191. margin-top: -.1em; }
  4192. .tabs-icon-left.tabs .tab-item .icon:before, .tabs-icon-left.tabs .tab-item .tab-title:before,
  4193. .tabs-icon-left > .tabs .tab-item .icon:before,
  4194. .tabs-icon-left > .tabs .tab-item .tab-title:before,
  4195. .tabs-icon-right.tabs .tab-item .icon:before,
  4196. .tabs-icon-right.tabs .tab-item .tab-title:before,
  4197. .tabs-icon-right > .tabs .tab-item .icon:before,
  4198. .tabs-icon-right > .tabs .tab-item .tab-title:before {
  4199. font-size: 24px;
  4200. line-height: 49px; }
  4201. .tabs-icon-left > .tabs .tab-item .icon,
  4202. .tabs-icon-left.tabs .tab-item .icon {
  4203. padding-right: 3px; }
  4204. .tabs-icon-right > .tabs .tab-item .icon,
  4205. .tabs-icon-right.tabs .tab-item .icon {
  4206. padding-left: 3px; }
  4207. .tabs-icon-only > .tabs .icon,
  4208. .tabs-icon-only.tabs .icon {
  4209. line-height: inherit; }
  4210. .tab-item.has-badge {
  4211. position: relative; }
  4212. .tab-item .badge {
  4213. position: absolute;
  4214. top: 4%;
  4215. right: 33%;
  4216. right: calc(50% - 26px);
  4217. padding: 1px 6px;
  4218. height: auto;
  4219. font-size: 12px;
  4220. line-height: 16px; }
  4221. /* Navigational tab */
  4222. /* Active state for tab */
  4223. .tab-item.tab-item-active,
  4224. .tab-item.active,
  4225. .tab-item.activated {
  4226. opacity: 1; }
  4227. .tab-item.tab-item-active.tab-item-light,
  4228. .tab-item.active.tab-item-light,
  4229. .tab-item.activated.tab-item-light {
  4230. color: #fff; }
  4231. .tab-item.tab-item-active.tab-item-stable,
  4232. .tab-item.active.tab-item-stable,
  4233. .tab-item.activated.tab-item-stable {
  4234. color: #f8f8f8; }
  4235. .tab-item.tab-item-active.tab-item-positive,
  4236. .tab-item.active.tab-item-positive,
  4237. .tab-item.activated.tab-item-positive {
  4238. color: #387ef5; }
  4239. .tab-item.tab-item-active.tab-item-calm,
  4240. .tab-item.active.tab-item-calm,
  4241. .tab-item.activated.tab-item-calm {
  4242. color: #11c1f3; }
  4243. .tab-item.tab-item-active.tab-item-assertive,
  4244. .tab-item.active.tab-item-assertive,
  4245. .tab-item.activated.tab-item-assertive {
  4246. color: #ef473a; }
  4247. .tab-item.tab-item-active.tab-item-balanced,
  4248. .tab-item.active.tab-item-balanced,
  4249. .tab-item.activated.tab-item-balanced {
  4250. color: #33cd5f; }
  4251. .tab-item.tab-item-active.tab-item-energized,
  4252. .tab-item.active.tab-item-energized,
  4253. .tab-item.activated.tab-item-energized {
  4254. color: #ffc900; }
  4255. .tab-item.tab-item-active.tab-item-royal,
  4256. .tab-item.active.tab-item-royal,
  4257. .tab-item.activated.tab-item-royal {
  4258. color: #886aea; }
  4259. .tab-item.tab-item-active.tab-item-dark,
  4260. .tab-item.active.tab-item-dark,
  4261. .tab-item.activated.tab-item-dark {
  4262. color: #444; }
  4263. .item.tabs {
  4264. display: -webkit-box;
  4265. display: -webkit-flex;
  4266. display: -moz-box;
  4267. display: -moz-flex;
  4268. display: -ms-flexbox;
  4269. display: flex;
  4270. padding: 0; }
  4271. .item.tabs .icon:before {
  4272. position: relative; }
  4273. .tab-item.disabled,
  4274. .tab-item[disabled] {
  4275. opacity: .4;
  4276. cursor: default;
  4277. pointer-events: none; }
  4278. .nav-bar-tabs-top.hide ~ .view-container .tabs-top .tabs {
  4279. top: 0; }
  4280. .pane[hide-nav-bar="true"] .has-tabs-top {
  4281. top: 49px; }
  4282. /**
  4283. * Menus
  4284. * --------------------------------------------------
  4285. * Side panel structure
  4286. */
  4287. .menu {
  4288. position: absolute;
  4289. top: 0;
  4290. bottom: 0;
  4291. z-index: 0;
  4292. overflow: hidden;
  4293. min-height: 100%;
  4294. max-height: 100%;
  4295. width: 275px;
  4296. background-color: #fff; }
  4297. .menu .scroll-content {
  4298. z-index: 10; }
  4299. .menu .bar-header {
  4300. z-index: 11; }
  4301. .menu-content {
  4302. -webkit-transform: none;
  4303. transform: none;
  4304. box-shadow: -1px 0px 2px rgba(0, 0, 0, 0.2), 1px 0px 2px rgba(0, 0, 0, 0.2); }
  4305. .menu-open .menu-content .pane,
  4306. .menu-open .menu-content .scroll-content {
  4307. pointer-events: none; }
  4308. .menu-open .menu-content .scroll-content .scroll {
  4309. pointer-events: none; }
  4310. .menu-open .menu-content .scroll-content:not(.overflow-scroll) {
  4311. overflow: hidden; }
  4312. .grade-b .menu-content,
  4313. .grade-c .menu-content {
  4314. -webkit-box-sizing: content-box;
  4315. -moz-box-sizing: content-box;
  4316. box-sizing: content-box;
  4317. right: -1px;
  4318. left: -1px;
  4319. border-right: 1px solid #ccc;
  4320. border-left: 1px solid #ccc;
  4321. box-shadow: none; }
  4322. .menu-left {
  4323. left: 0; }
  4324. .menu-right {
  4325. right: 0; }
  4326. .aside-open.aside-resizing .menu-right {
  4327. display: none; }
  4328. .menu-animated {
  4329. -webkit-transition: -webkit-transform 200ms ease;
  4330. transition: transform 200ms ease; }
  4331. /**
  4332. * Modals
  4333. * --------------------------------------------------
  4334. * Modals are independent windows that slide in from off-screen.
  4335. */
  4336. .modal-backdrop,
  4337. .modal-backdrop-bg {
  4338. position: fixed;
  4339. top: 0;
  4340. left: 0;
  4341. z-index: 10;
  4342. width: 100%;
  4343. height: 100%; }
  4344. .modal-backdrop-bg {
  4345. pointer-events: none; }
  4346. .modal {
  4347. display: block;
  4348. position: absolute;
  4349. top: 0;
  4350. z-index: 10;
  4351. overflow: hidden;
  4352. min-height: 100%;
  4353. width: 100%;
  4354. background-color: #fff; }
  4355. @media (min-width: 680px) {
  4356. .modal {
  4357. top: 20%;
  4358. right: 20%;
  4359. bottom: 20%;
  4360. left: 20%;
  4361. min-height: 240px;
  4362. width: 60%; }
  4363. .modal.ng-leave-active {
  4364. bottom: 0; }
  4365. .platform-ios.platform-cordova .modal-wrapper .modal .bar-header:not(.bar-subheader) {
  4366. height: 44px; }
  4367. .platform-ios.platform-cordova .modal-wrapper .modal .bar-header:not(.bar-subheader) > * {
  4368. margin-top: 0; }
  4369. .platform-ios.platform-cordova .modal-wrapper .modal .tabs-top > .tabs,
  4370. .platform-ios.platform-cordova .modal-wrapper .modal .tabs.tabs-top {
  4371. top: 44px; }
  4372. .platform-ios.platform-cordova .modal-wrapper .modal .has-header,
  4373. .platform-ios.platform-cordova .modal-wrapper .modal .bar-subheader {
  4374. top: 44px; }
  4375. .platform-ios.platform-cordova .modal-wrapper .modal .has-subheader {
  4376. top: 88px; }
  4377. .platform-ios.platform-cordova .modal-wrapper .modal .has-header.has-tabs-top {
  4378. top: 93px; }
  4379. .platform-ios.platform-cordova .modal-wrapper .modal .has-header.has-subheader.has-tabs-top {
  4380. top: 137px; }
  4381. .modal-backdrop-bg {
  4382. -webkit-transition: opacity 300ms ease-in-out;
  4383. transition: opacity 300ms ease-in-out;
  4384. background-color: #000;
  4385. opacity: 0; }
  4386. .active .modal-backdrop-bg {
  4387. opacity: 0.5; } }
  4388. .modal-open {
  4389. pointer-events: none; }
  4390. .modal-open .modal,
  4391. .modal-open .modal-backdrop {
  4392. pointer-events: auto; }
  4393. .modal-open.loading-active .modal,
  4394. .modal-open.loading-active .modal-backdrop {
  4395. pointer-events: none; }
  4396. /**
  4397. * Popovers
  4398. * --------------------------------------------------
  4399. * Popovers are independent views which float over content
  4400. */
  4401. .popover-backdrop {
  4402. position: fixed;
  4403. top: 0;
  4404. left: 0;
  4405. z-index: 10;
  4406. width: 100%;
  4407. height: 100%;
  4408. background-color: transparent; }
  4409. .popover-backdrop.active {
  4410. background-color: rgba(0, 0, 0, 0.1); }
  4411. .popover {
  4412. position: absolute;
  4413. top: 25%;
  4414. left: 50%;
  4415. z-index: 10;
  4416. display: block;
  4417. margin-top: 12px;
  4418. margin-left: -110px;
  4419. height: 280px;
  4420. width: 220px;
  4421. background-color: #fff;
  4422. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  4423. opacity: 0; }
  4424. .popover .item:first-child {
  4425. border-top: 0; }
  4426. .popover .item:last-child {
  4427. border-bottom: 0; }
  4428. .popover.popover-bottom {
  4429. margin-top: -12px; }
  4430. .popover,
  4431. .popover .bar-header {
  4432. border-radius: 2px; }
  4433. .popover .scroll-content {
  4434. z-index: 1;
  4435. margin: 2px 0; }
  4436. .popover .bar-header {
  4437. border-bottom-right-radius: 0;
  4438. border-bottom-left-radius: 0; }
  4439. .popover .has-header {
  4440. border-top-right-radius: 0;
  4441. border-top-left-radius: 0; }
  4442. .popover-arrow {
  4443. display: none; }
  4444. .platform-ios .popover {
  4445. box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  4446. border-radius: 10px; }
  4447. .platform-ios .popover .bar-header {
  4448. -webkit-border-top-right-radius: 10px;
  4449. border-top-right-radius: 10px;
  4450. -webkit-border-top-left-radius: 10px;
  4451. border-top-left-radius: 10px; }
  4452. .platform-ios .popover .scroll-content {
  4453. margin: 8px 0;
  4454. border-radius: 10px; }
  4455. .platform-ios .popover .scroll-content.has-header {
  4456. margin-top: 0; }
  4457. .platform-ios .popover-arrow {
  4458. position: absolute;
  4459. display: block;
  4460. top: -17px;
  4461. width: 30px;
  4462. height: 19px;
  4463. overflow: hidden; }
  4464. .platform-ios .popover-arrow:after {
  4465. position: absolute;
  4466. top: 12px;
  4467. left: 5px;
  4468. width: 20px;
  4469. height: 20px;
  4470. background-color: #fff;
  4471. border-radius: 3px;
  4472. content: '';
  4473. -webkit-transform: rotate(-45deg);
  4474. transform: rotate(-45deg); }
  4475. .platform-ios .popover-bottom .popover-arrow {
  4476. top: auto;
  4477. bottom: -10px; }
  4478. .platform-ios .popover-bottom .popover-arrow:after {
  4479. top: -6px; }
  4480. .platform-android .popover {
  4481. margin-top: -32px;
  4482. background-color: #fafafa;
  4483. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35); }
  4484. .platform-android .popover .item {
  4485. border-color: #fafafa;
  4486. background-color: #fafafa;
  4487. color: #4d4d4d; }
  4488. .platform-android .popover.popover-bottom {
  4489. margin-top: 32px; }
  4490. .platform-android .popover-backdrop,
  4491. .platform-android .popover-backdrop.active {
  4492. background-color: transparent; }
  4493. .popover-open {
  4494. pointer-events: none; }
  4495. .popover-open .popover,
  4496. .popover-open .popover-backdrop {
  4497. pointer-events: auto; }
  4498. .popover-open.loading-active .popover,
  4499. .popover-open.loading-active .popover-backdrop {
  4500. pointer-events: none; }
  4501. @media (min-width: 680px) {
  4502. .popover {
  4503. width: 360px;
  4504. margin-left: -180px; } }
  4505. /**
  4506. * Popups
  4507. * --------------------------------------------------
  4508. */
  4509. .popup-container {
  4510. position: absolute;
  4511. top: 0;
  4512. left: 0;
  4513. bottom: 0;
  4514. right: 0;
  4515. background: transparent;
  4516. display: -webkit-box;
  4517. display: -webkit-flex;
  4518. display: -moz-box;
  4519. display: -moz-flex;
  4520. display: -ms-flexbox;
  4521. display: flex;
  4522. -webkit-box-pack: center;
  4523. -ms-flex-pack: center;
  4524. -webkit-justify-content: center;
  4525. -moz-justify-content: center;
  4526. justify-content: center;
  4527. -webkit-box-align: center;
  4528. -ms-flex-align: center;
  4529. -webkit-align-items: center;
  4530. -moz-align-items: center;
  4531. align-items: center;
  4532. z-index: 12;
  4533. visibility: hidden; }
  4534. .popup-container.popup-showing {
  4535. visibility: visible; }
  4536. .popup-container.popup-hidden .popup {
  4537. -webkit-animation-name: scaleOut;
  4538. animation-name: scaleOut;
  4539. -webkit-animation-duration: 0.1s;
  4540. animation-duration: 0.1s;
  4541. -webkit-animation-timing-function: ease-in-out;
  4542. animation-timing-function: ease-in-out;
  4543. -webkit-animation-fill-mode: both;
  4544. animation-fill-mode: both; }
  4545. .popup-container.active .popup {
  4546. -webkit-animation-name: superScaleIn;
  4547. animation-name: superScaleIn;
  4548. -webkit-animation-duration: 0.2s;
  4549. animation-duration: 0.2s;
  4550. -webkit-animation-timing-function: ease-in-out;
  4551. animation-timing-function: ease-in-out;
  4552. -webkit-animation-fill-mode: both;
  4553. animation-fill-mode: both; }
  4554. .popup-container .popup {
  4555. width: 250px;
  4556. max-width: 100%;
  4557. max-height: 90%;
  4558. border-radius: 0px;
  4559. background-color: rgba(255, 255, 255, 0.9);
  4560. display: -webkit-box;
  4561. display: -webkit-flex;
  4562. display: -moz-box;
  4563. display: -moz-flex;
  4564. display: -ms-flexbox;
  4565. display: flex;
  4566. -webkit-box-direction: normal;
  4567. -webkit-box-orient: vertical;
  4568. -webkit-flex-direction: column;
  4569. -moz-flex-direction: column;
  4570. -ms-flex-direction: column;
  4571. flex-direction: column; }
  4572. .popup-container input,
  4573. .popup-container textarea {
  4574. width: 100%; }
  4575. .popup-head {
  4576. padding: 15px 10px;
  4577. border-bottom: 1px solid #eee;
  4578. text-align: center; }
  4579. .popup-title {
  4580. margin: 0;
  4581. padding: 0;
  4582. font-size: 15px; }
  4583. .popup-sub-title {
  4584. margin: 5px 0 0 0;
  4585. padding: 0;
  4586. font-weight: normal;
  4587. font-size: 11px; }
  4588. .popup-body {
  4589. padding: 10px;
  4590. overflow: auto; }
  4591. .popup-buttons {
  4592. display: -webkit-box;
  4593. display: -webkit-flex;
  4594. display: -moz-box;
  4595. display: -moz-flex;
  4596. display: -ms-flexbox;
  4597. display: flex;
  4598. -webkit-box-direction: normal;
  4599. -webkit-box-orient: horizontal;
  4600. -webkit-flex-direction: row;
  4601. -moz-flex-direction: row;
  4602. -ms-flex-direction: row;
  4603. flex-direction: row;
  4604. padding: 10px;
  4605. min-height: 65px; }
  4606. .popup-buttons .button {
  4607. -webkit-box-flex: 1;
  4608. -webkit-flex: 1;
  4609. -moz-box-flex: 1;
  4610. -moz-flex: 1;
  4611. -ms-flex: 1;
  4612. flex: 1;
  4613. display: block;
  4614. min-height: 45px;
  4615. border-radius: 2px;
  4616. line-height: 20px;
  4617. margin-right: 5px; }
  4618. .popup-buttons .button:last-child {
  4619. margin-right: 0px; }
  4620. .popup-open {
  4621. pointer-events: none; }
  4622. .popup-open.modal-open .modal {
  4623. pointer-events: none; }
  4624. .popup-open .popup-backdrop, .popup-open .popup {
  4625. pointer-events: auto; }
  4626. /**
  4627. * Loading
  4628. * --------------------------------------------------
  4629. */
  4630. .loading-container {
  4631. position: absolute;
  4632. left: 0;
  4633. top: 0;
  4634. right: 0;
  4635. bottom: 0;
  4636. z-index: 13;
  4637. display: -webkit-box;
  4638. display: -webkit-flex;
  4639. display: -moz-box;
  4640. display: -moz-flex;
  4641. display: -ms-flexbox;
  4642. display: flex;
  4643. -webkit-box-pack: center;
  4644. -ms-flex-pack: center;
  4645. -webkit-justify-content: center;
  4646. -moz-justify-content: center;
  4647. justify-content: center;
  4648. -webkit-box-align: center;
  4649. -ms-flex-align: center;
  4650. -webkit-align-items: center;
  4651. -moz-align-items: center;
  4652. align-items: center;
  4653. -webkit-transition: 0.2s opacity linear;
  4654. transition: 0.2s opacity linear;
  4655. visibility: hidden;
  4656. opacity: 0; }
  4657. .loading-container:not(.visible) .icon,
  4658. .loading-container:not(.visible) .spinner {
  4659. display: none; }
  4660. .loading-container.visible {
  4661. visibility: visible; }
  4662. .loading-container.active {
  4663. opacity: 1; }
  4664. .loading-container .loading {
  4665. padding: 20px;
  4666. border-radius: 5px;
  4667. background-color: rgba(0, 0, 0, 0.7);
  4668. color: #fff;
  4669. text-align: center;
  4670. text-overflow: ellipsis;
  4671. font-size: 15px; }
  4672. .loading-container .loading h1, .loading-container .loading h2, .loading-container .loading h3, .loading-container .loading h4, .loading-container .loading h5, .loading-container .loading h6 {
  4673. color: #fff; }
  4674. /**
  4675. * Items
  4676. * --------------------------------------------------
  4677. */
  4678. .item {
  4679. border-color: #ddd;
  4680. background-color: #fff;
  4681. color: #444;
  4682. position: relative;
  4683. z-index: 2;
  4684. display: block;
  4685. margin: -1px;
  4686. padding: 16px;
  4687. border-width: 1px;
  4688. border-style: solid;
  4689. font-size: 16px; }
  4690. .item h2 {
  4691. margin: 0 0 2px 0;
  4692. font-size: 16px;
  4693. font-weight: normal; }
  4694. .item h3 {
  4695. margin: 0 0 4px 0;
  4696. font-size: 14px; }
  4697. .item h4 {
  4698. margin: 0 0 4px 0;
  4699. font-size: 12px; }
  4700. .item h5, .item h6 {
  4701. margin: 0 0 3px 0;
  4702. font-size: 10px; }
  4703. .item p {
  4704. color: #666;
  4705. font-size: 14px;
  4706. margin-bottom: 2px; }
  4707. .item h1:last-child,
  4708. .item h2:last-child,
  4709. .item h3:last-child,
  4710. .item h4:last-child,
  4711. .item h5:last-child,
  4712. .item h6:last-child,
  4713. .item p:last-child {
  4714. margin-bottom: 0; }
  4715. .item .badge {
  4716. display: -webkit-box;
  4717. display: -webkit-flex;
  4718. display: -moz-box;
  4719. display: -moz-flex;
  4720. display: -ms-flexbox;
  4721. display: flex;
  4722. position: absolute;
  4723. top: 16px;
  4724. right: 32px; }
  4725. .item.item-button-right .badge {
  4726. right: 67px; }
  4727. .item.item-divider .badge {
  4728. top: 8px; }
  4729. .item .badge + .badge {
  4730. margin-right: 5px; }
  4731. .item.item-light {
  4732. border-color: #ddd;
  4733. background-color: #fff;
  4734. color: #444; }
  4735. .item.item-stable {
  4736. border-color: #b2b2b2;
  4737. background-color: #f8f8f8;
  4738. color: #444; }
  4739. .item.item-positive {
  4740. border-color: #0c60ee;
  4741. background-color: #387ef5;
  4742. color: #fff; }
  4743. .item.item-calm {
  4744. border-color: #0a9dc7;
  4745. background-color: #11c1f3;
  4746. color: #fff; }
  4747. .item.item-assertive {
  4748. border-color: #e42112;
  4749. background-color: #ef473a;
  4750. color: #fff; }
  4751. .item.item-balanced {
  4752. border-color: #28a54c;
  4753. background-color: #33cd5f;
  4754. color: #fff; }
  4755. .item.item-energized {
  4756. border-color: #e6b500;
  4757. background-color: #ffc900;
  4758. color: #fff; }
  4759. .item.item-royal {
  4760. border-color: #6b46e5;
  4761. background-color: #886aea;
  4762. color: #fff; }
  4763. .item.item-dark {
  4764. border-color: #111;
  4765. background-color: #444;
  4766. color: #fff; }
  4767. .item[ng-click]:hover {
  4768. cursor: pointer; }
  4769. .list-borderless .item,
  4770. .item-borderless {
  4771. border-width: 0; }
  4772. .item.active,
  4773. .item.activated,
  4774. .item-complex.active .item-content,
  4775. .item-complex.activated .item-content,
  4776. .item .item-content.active,
  4777. .item .item-content.activated {
  4778. border-color: #ccc;
  4779. background-color: #D9D9D9; }
  4780. .item.active.item-complex > .item-content,
  4781. .item.activated.item-complex > .item-content,
  4782. .item-complex.active .item-content.item-complex > .item-content,
  4783. .item-complex.activated .item-content.item-complex > .item-content,
  4784. .item .item-content.active.item-complex > .item-content,
  4785. .item .item-content.activated.item-complex > .item-content {
  4786. border-color: #ccc;
  4787. background-color: #D9D9D9; }
  4788. .item.active.item-light,
  4789. .item.activated.item-light,
  4790. .item-complex.active .item-content.item-light,
  4791. .item-complex.activated .item-content.item-light,
  4792. .item .item-content.active.item-light,
  4793. .item .item-content.activated.item-light {
  4794. border-color: #ccc;
  4795. background-color: #fafafa; }
  4796. .item.active.item-light.item-complex > .item-content,
  4797. .item.activated.item-light.item-complex > .item-content,
  4798. .item-complex.active .item-content.item-light.item-complex > .item-content,
  4799. .item-complex.activated .item-content.item-light.item-complex > .item-content,
  4800. .item .item-content.active.item-light.item-complex > .item-content,
  4801. .item .item-content.activated.item-light.item-complex > .item-content {
  4802. border-color: #ccc;
  4803. background-color: #fafafa; }
  4804. .item.active.item-stable,
  4805. .item.activated.item-stable,
  4806. .item-complex.active .item-content.item-stable,
  4807. .item-complex.activated .item-content.item-stable,
  4808. .item .item-content.active.item-stable,
  4809. .item .item-content.activated.item-stable {
  4810. border-color: #a2a2a2;
  4811. background-color: #e5e5e5; }
  4812. .item.active.item-stable.item-complex > .item-content,
  4813. .item.activated.item-stable.item-complex > .item-content,
  4814. .item-complex.active .item-content.item-stable.item-complex > .item-content,
  4815. .item-complex.activated .item-content.item-stable.item-complex > .item-content,
  4816. .item .item-content.active.item-stable.item-complex > .item-content,
  4817. .item .item-content.activated.item-stable.item-complex > .item-content {
  4818. border-color: #a2a2a2;
  4819. background-color: #e5e5e5; }
  4820. .item.active.item-positive,
  4821. .item.activated.item-positive,
  4822. .item-complex.active .item-content.item-positive,
  4823. .item-complex.activated .item-content.item-positive,
  4824. .item .item-content.active.item-positive,
  4825. .item .item-content.activated.item-positive {
  4826. border-color: #0c60ee;
  4827. background-color: #0c60ee; }
  4828. .item.active.item-positive.item-complex > .item-content,
  4829. .item.activated.item-positive.item-complex > .item-content,
  4830. .item-complex.active .item-content.item-positive.item-complex > .item-content,
  4831. .item-complex.activated .item-content.item-positive.item-complex > .item-content,
  4832. .item .item-content.active.item-positive.item-complex > .item-content,
  4833. .item .item-content.activated.item-positive.item-complex > .item-content {
  4834. border-color: #0c60ee;
  4835. background-color: #0c60ee; }
  4836. .item.active.item-calm,
  4837. .item.activated.item-calm,
  4838. .item-complex.active .item-content.item-calm,
  4839. .item-complex.activated .item-content.item-calm,
  4840. .item .item-content.active.item-calm,
  4841. .item .item-content.activated.item-calm {
  4842. border-color: #0a9dc7;
  4843. background-color: #0a9dc7; }
  4844. .item.active.item-calm.item-complex > .item-content,
  4845. .item.activated.item-calm.item-complex > .item-content,
  4846. .item-complex.active .item-content.item-calm.item-complex > .item-content,
  4847. .item-complex.activated .item-content.item-calm.item-complex > .item-content,
  4848. .item .item-content.active.item-calm.item-complex > .item-content,
  4849. .item .item-content.activated.item-calm.item-complex > .item-content {
  4850. border-color: #0a9dc7;
  4851. background-color: #0a9dc7; }
  4852. .item.active.item-assertive,
  4853. .item.activated.item-assertive,
  4854. .item-complex.active .item-content.item-assertive,
  4855. .item-complex.activated .item-content.item-assertive,
  4856. .item .item-content.active.item-assertive,
  4857. .item .item-content.activated.item-assertive {
  4858. border-color: #e42112;
  4859. background-color: #e42112; }
  4860. .item.active.item-assertive.item-complex > .item-content,
  4861. .item.activated.item-assertive.item-complex > .item-content,
  4862. .item-complex.active .item-content.item-assertive.item-complex > .item-content,
  4863. .item-complex.activated .item-content.item-assertive.item-complex > .item-content,
  4864. .item .item-content.active.item-assertive.item-complex > .item-content,
  4865. .item .item-content.activated.item-assertive.item-complex > .item-content {
  4866. border-color: #e42112;
  4867. background-color: #e42112; }
  4868. .item.active.item-balanced,
  4869. .item.activated.item-balanced,
  4870. .item-complex.active .item-content.item-balanced,
  4871. .item-complex.activated .item-content.item-balanced,
  4872. .item .item-content.active.item-balanced,
  4873. .item .item-content.activated.item-balanced {
  4874. border-color: #28a54c;
  4875. background-color: #28a54c; }
  4876. .item.active.item-balanced.item-complex > .item-content,
  4877. .item.activated.item-balanced.item-complex > .item-content,
  4878. .item-complex.active .item-content.item-balanced.item-complex > .item-content,
  4879. .item-complex.activated .item-content.item-balanced.item-complex > .item-content,
  4880. .item .item-content.active.item-balanced.item-complex > .item-content,
  4881. .item .item-content.activated.item-balanced.item-complex > .item-content {
  4882. border-color: #28a54c;
  4883. background-color: #28a54c; }
  4884. .item.active.item-energized,
  4885. .item.activated.item-energized,
  4886. .item-complex.active .item-content.item-energized,
  4887. .item-complex.activated .item-content.item-energized,
  4888. .item .item-content.active.item-energized,
  4889. .item .item-content.activated.item-energized {
  4890. border-color: #e6b500;
  4891. background-color: #e6b500; }
  4892. .item.active.item-energized.item-complex > .item-content,
  4893. .item.activated.item-energized.item-complex > .item-content,
  4894. .item-complex.active .item-content.item-energized.item-complex > .item-content,
  4895. .item-complex.activated .item-content.item-energized.item-complex > .item-content,
  4896. .item .item-content.active.item-energized.item-complex > .item-content,
  4897. .item .item-content.activated.item-energized.item-complex > .item-content {
  4898. border-color: #e6b500;
  4899. background-color: #e6b500; }
  4900. .item.active.item-royal,
  4901. .item.activated.item-royal,
  4902. .item-complex.active .item-content.item-royal,
  4903. .item-complex.activated .item-content.item-royal,
  4904. .item .item-content.active.item-royal,
  4905. .item .item-content.activated.item-royal {
  4906. border-color: #6b46e5;
  4907. background-color: #6b46e5; }
  4908. .item.active.item-royal.item-complex > .item-content,
  4909. .item.activated.item-royal.item-complex > .item-content,
  4910. .item-complex.active .item-content.item-royal.item-complex > .item-content,
  4911. .item-complex.activated .item-content.item-royal.item-complex > .item-content,
  4912. .item .item-content.active.item-royal.item-complex > .item-content,
  4913. .item .item-content.activated.item-royal.item-complex > .item-content {
  4914. border-color: #6b46e5;
  4915. background-color: #6b46e5; }
  4916. .item.active.item-dark,
  4917. .item.activated.item-dark,
  4918. .item-complex.active .item-content.item-dark,
  4919. .item-complex.activated .item-content.item-dark,
  4920. .item .item-content.active.item-dark,
  4921. .item .item-content.activated.item-dark {
  4922. border-color: #000;
  4923. background-color: #262626; }
  4924. .item.active.item-dark.item-complex > .item-content,
  4925. .item.activated.item-dark.item-complex > .item-content,
  4926. .item-complex.active .item-content.item-dark.item-complex > .item-content,
  4927. .item-complex.activated .item-content.item-dark.item-complex > .item-content,
  4928. .item .item-content.active.item-dark.item-complex > .item-content,
  4929. .item .item-content.activated.item-dark.item-complex > .item-content {
  4930. border-color: #000;
  4931. background-color: #262626; }
  4932. .item,
  4933. .item h1,
  4934. .item h2,
  4935. .item h3,
  4936. .item h4,
  4937. .item h5,
  4938. .item h6,
  4939. .item p,
  4940. .item-content,
  4941. .item-content h1,
  4942. .item-content h2,
  4943. .item-content h3,
  4944. .item-content h4,
  4945. .item-content h5,
  4946. .item-content h6,
  4947. .item-content p {
  4948. overflow: hidden;
  4949. text-overflow: ellipsis;
  4950. white-space: nowrap; }
  4951. a.item {
  4952. color: inherit;
  4953. text-decoration: none; }
  4954. a.item:hover, a.item:focus {
  4955. text-decoration: none; }
  4956. /**
  4957. * Complex Items
  4958. * --------------------------------------------------
  4959. * Adding .item-complex allows the .item to be slidable and
  4960. * have options underneath the button, but also requires an
  4961. * additional .item-content element inside .item.
  4962. * Basically .item-complex removes any default settings which
  4963. * .item added, so that .item-content looks them as just .item.
  4964. */
  4965. .item-complex,
  4966. a.item.item-complex,
  4967. button.item.item-complex {
  4968. padding: 0; }
  4969. .item-complex .item-content,
  4970. .item-radio .item-content {
  4971. position: relative;
  4972. z-index: 2;
  4973. padding: 16px 49px 16px 16px;
  4974. border: none;
  4975. background-color: #fff; }
  4976. a.item-content {
  4977. display: block;
  4978. color: inherit;
  4979. text-decoration: none; }
  4980. .item-text-wrap .item,
  4981. .item-text-wrap .item-content,
  4982. .item-text-wrap,
  4983. .item-text-wrap h1,
  4984. .item-text-wrap h2,
  4985. .item-text-wrap h3,
  4986. .item-text-wrap h4,
  4987. .item-text-wrap h5,
  4988. .item-text-wrap h6,
  4989. .item-text-wrap p,
  4990. .item-complex.item-text-wrap .item-content,
  4991. .item-body h1,
  4992. .item-body h2,
  4993. .item-body h3,
  4994. .item-body h4,
  4995. .item-body h5,
  4996. .item-body h6,
  4997. .item-body p {
  4998. overflow: visible;
  4999. white-space: normal; }
  5000. .item-complex.item-text-wrap,
  5001. .item-complex.item-text-wrap h1,
  5002. .item-complex.item-text-wrap h2,
  5003. .item-complex.item-text-wrap h3,
  5004. .item-complex.item-text-wrap h4,
  5005. .item-complex.item-text-wrap h5,
  5006. .item-complex.item-text-wrap h6,
  5007. .item-complex.item-text-wrap p {
  5008. overflow: visible;
  5009. white-space: normal; }
  5010. .item-complex.item-light > .item-content {
  5011. border-color: #ddd;
  5012. background-color: #fff;
  5013. color: #444; }
  5014. .item-complex.item-light > .item-content.active, .item-complex.item-light > .item-content:active {
  5015. border-color: #ccc;
  5016. background-color: #fafafa; }
  5017. .item-complex.item-light > .item-content.active.item-complex > .item-content, .item-complex.item-light > .item-content:active.item-complex > .item-content {
  5018. border-color: #ccc;
  5019. background-color: #fafafa; }
  5020. .item-complex.item-stable > .item-content {
  5021. border-color: #b2b2b2;
  5022. background-color: #f8f8f8;
  5023. color: #444; }
  5024. .item-complex.item-stable > .item-content.active, .item-complex.item-stable > .item-content:active {
  5025. border-color: #a2a2a2;
  5026. background-color: #e5e5e5; }
  5027. .item-complex.item-stable > .item-content.active.item-complex > .item-content, .item-complex.item-stable > .item-content:active.item-complex > .item-content {
  5028. border-color: #a2a2a2;
  5029. background-color: #e5e5e5; }
  5030. .item-complex.item-positive > .item-content {
  5031. border-color: #0c60ee;
  5032. background-color: #387ef5;
  5033. color: #fff; }
  5034. .item-complex.item-positive > .item-content.active, .item-complex.item-positive > .item-content:active {
  5035. border-color: #0c60ee;
  5036. background-color: #0c60ee; }
  5037. .item-complex.item-positive > .item-content.active.item-complex > .item-content, .item-complex.item-positive > .item-content:active.item-complex > .item-content {
  5038. border-color: #0c60ee;
  5039. background-color: #0c60ee; }
  5040. .item-complex.item-calm > .item-content {
  5041. border-color: #0a9dc7;
  5042. background-color: #11c1f3;
  5043. color: #fff; }
  5044. .item-complex.item-calm > .item-content.active, .item-complex.item-calm > .item-content:active {
  5045. border-color: #0a9dc7;
  5046. background-color: #0a9dc7; }
  5047. .item-complex.item-calm > .item-content.active.item-complex > .item-content, .item-complex.item-calm > .item-content:active.item-complex > .item-content {
  5048. border-color: #0a9dc7;
  5049. background-color: #0a9dc7; }
  5050. .item-complex.item-assertive > .item-content {
  5051. border-color: #e42112;
  5052. background-color: #ef473a;
  5053. color: #fff; }
  5054. .item-complex.item-assertive > .item-content.active, .item-complex.item-assertive > .item-content:active {
  5055. border-color: #e42112;
  5056. background-color: #e42112; }
  5057. .item-complex.item-assertive > .item-content.active.item-complex > .item-content, .item-complex.item-assertive > .item-content:active.item-complex > .item-content {
  5058. border-color: #e42112;
  5059. background-color: #e42112; }
  5060. .item-complex.item-balanced > .item-content {
  5061. border-color: #28a54c;
  5062. background-color: #33cd5f;
  5063. color: #fff; }
  5064. .item-complex.item-balanced > .item-content.active, .item-complex.item-balanced > .item-content:active {
  5065. border-color: #28a54c;
  5066. background-color: #28a54c; }
  5067. .item-complex.item-balanced > .item-content.active.item-complex > .item-content, .item-complex.item-balanced > .item-content:active.item-complex > .item-content {
  5068. border-color: #28a54c;
  5069. background-color: #28a54c; }
  5070. .item-complex.item-energized > .item-content {
  5071. border-color: #e6b500;
  5072. background-color: #ffc900;
  5073. color: #fff; }
  5074. .item-complex.item-energized > .item-content.active, .item-complex.item-energized > .item-content:active {
  5075. border-color: #e6b500;
  5076. background-color: #e6b500; }
  5077. .item-complex.item-energized > .item-content.active.item-complex > .item-content, .item-complex.item-energized > .item-content:active.item-complex > .item-content {
  5078. border-color: #e6b500;
  5079. background-color: #e6b500; }
  5080. .item-complex.item-royal > .item-content {
  5081. border-color: #6b46e5;
  5082. background-color: #886aea;
  5083. color: #fff; }
  5084. .item-complex.item-royal > .item-content.active, .item-complex.item-royal > .item-content:active {
  5085. border-color: #6b46e5;
  5086. background-color: #6b46e5; }
  5087. .item-complex.item-royal > .item-content.active.item-complex > .item-content, .item-complex.item-royal > .item-content:active.item-complex > .item-content {
  5088. border-color: #6b46e5;
  5089. background-color: #6b46e5; }
  5090. .item-complex.item-dark > .item-content {
  5091. border-color: #111;
  5092. background-color: #444;
  5093. color: #fff; }
  5094. .item-complex.item-dark > .item-content.active, .item-complex.item-dark > .item-content:active {
  5095. border-color: #000;
  5096. background-color: #262626; }
  5097. .item-complex.item-dark > .item-content.active.item-complex > .item-content, .item-complex.item-dark > .item-content:active.item-complex > .item-content {
  5098. border-color: #000;
  5099. background-color: #262626; }
  5100. /**
  5101. * Item Icons
  5102. * --------------------------------------------------
  5103. */
  5104. .item-icon-left .icon,
  5105. .item-icon-right .icon {
  5106. display: -webkit-box;
  5107. display: -webkit-flex;
  5108. display: -moz-box;
  5109. display: -moz-flex;
  5110. display: -ms-flexbox;
  5111. display: flex;
  5112. -webkit-box-align: center;
  5113. -ms-flex-align: center;
  5114. -webkit-align-items: center;
  5115. -moz-align-items: center;
  5116. align-items: center;
  5117. position: absolute;
  5118. top: 0;
  5119. height: 100%;
  5120. font-size: 32px; }
  5121. .item-icon-left .icon:before,
  5122. .item-icon-right .icon:before {
  5123. display: block;
  5124. width: 32px;
  5125. text-align: center; }
  5126. .item .fill-icon {
  5127. min-width: 30px;
  5128. min-height: 30px;
  5129. font-size: 28px; }
  5130. .item-icon-left {
  5131. padding-left: 54px; }
  5132. .item-icon-left .icon {
  5133. left: 11px; }
  5134. .item-complex.item-icon-left {
  5135. padding-left: 0; }
  5136. .item-complex.item-icon-left .item-content {
  5137. padding-left: 54px; }
  5138. .item-icon-right {
  5139. padding-right: 54px; }
  5140. .item-icon-right .icon {
  5141. right: 11px; }
  5142. .item-complex.item-icon-right {
  5143. padding-right: 0; }
  5144. .item-complex.item-icon-right .item-content {
  5145. padding-right: 54px; }
  5146. .item-icon-left.item-icon-right .icon:first-child {
  5147. right: auto; }
  5148. .item-icon-left.item-icon-right .icon:last-child,
  5149. .item-icon-left .item-delete .icon {
  5150. left: auto; }
  5151. .item-icon-left .icon-accessory,
  5152. .item-icon-right .icon-accessory {
  5153. color: #ccc;
  5154. font-size: 16px; }
  5155. .item-icon-left .icon-accessory {
  5156. left: 3px; }
  5157. .item-icon-right .icon-accessory {
  5158. right: 3px; }
  5159. /**
  5160. * Item Button
  5161. * --------------------------------------------------
  5162. * An item button is a child button inside an .item (not the entire .item)
  5163. */
  5164. .item-button-left {
  5165. padding-left: 72px; }
  5166. .item-button-left > .button,
  5167. .item-button-left .item-content > .button {
  5168. display: -webkit-box;
  5169. display: -webkit-flex;
  5170. display: -moz-box;
  5171. display: -moz-flex;
  5172. display: -ms-flexbox;
  5173. display: flex;
  5174. -webkit-box-align: center;
  5175. -ms-flex-align: center;
  5176. -webkit-align-items: center;
  5177. -moz-align-items: center;
  5178. align-items: center;
  5179. position: absolute;
  5180. top: 8px;
  5181. left: 11px;
  5182. min-width: 34px;
  5183. min-height: 34px;
  5184. font-size: 18px;
  5185. line-height: 32px; }
  5186. .item-button-left > .button .icon:before,
  5187. .item-button-left .item-content > .button .icon:before {
  5188. position: relative;
  5189. left: auto;
  5190. width: auto;
  5191. line-height: 31px; }
  5192. .item-button-left > .button > .button,
  5193. .item-button-left .item-content > .button > .button {
  5194. margin: 0px 2px;
  5195. min-height: 34px;
  5196. font-size: 18px;
  5197. line-height: 32px; }
  5198. .item-button-right,
  5199. a.item.item-button-right,
  5200. button.item.item-button-right {
  5201. padding-right: 80px; }
  5202. .item-button-right > .button,
  5203. .item-button-right .item-content > .button,
  5204. .item-button-right > .buttons,
  5205. .item-button-right .item-content > .buttons {
  5206. display: -webkit-box;
  5207. display: -webkit-flex;
  5208. display: -moz-box;
  5209. display: -moz-flex;
  5210. display: -ms-flexbox;
  5211. display: flex;
  5212. -webkit-box-align: center;
  5213. -ms-flex-align: center;
  5214. -webkit-align-items: center;
  5215. -moz-align-items: center;
  5216. align-items: center;
  5217. position: absolute;
  5218. top: 8px;
  5219. right: 16px;
  5220. min-width: 34px;
  5221. min-height: 34px;
  5222. font-size: 18px;
  5223. line-height: 32px; }
  5224. .item-button-right > .button .icon:before,
  5225. .item-button-right .item-content > .button .icon:before,
  5226. .item-button-right > .buttons .icon:before,
  5227. .item-button-right .item-content > .buttons .icon:before {
  5228. position: relative;
  5229. left: auto;
  5230. width: auto;
  5231. line-height: 31px; }
  5232. .item-button-right > .button > .button,
  5233. .item-button-right .item-content > .button > .button,
  5234. .item-button-right > .buttons > .button,
  5235. .item-button-right .item-content > .buttons > .button {
  5236. margin: 0px 2px;
  5237. min-width: 34px;
  5238. min-height: 34px;
  5239. font-size: 18px;
  5240. line-height: 32px; }
  5241. .item-button-left.item-button-right .button:first-child {
  5242. right: auto; }
  5243. .item-button-left.item-button-right .button:last-child {
  5244. left: auto; }
  5245. .item-avatar,
  5246. .item-avatar .item-content,
  5247. .item-avatar-left,
  5248. .item-avatar-left .item-content {
  5249. padding-left: 72px;
  5250. min-height: 72px; }
  5251. .item-avatar > img:first-child,
  5252. .item-avatar .item-image,
  5253. .item-avatar .item-content > img:first-child,
  5254. .item-avatar .item-content .item-image,
  5255. .item-avatar-left > img:first-child,
  5256. .item-avatar-left .item-image,
  5257. .item-avatar-left .item-content > img:first-child,
  5258. .item-avatar-left .item-content .item-image {
  5259. position: absolute;
  5260. top: 16px;
  5261. left: 16px;
  5262. max-width: 40px;
  5263. max-height: 40px;
  5264. width: 100%;
  5265. height: 100%;
  5266. border-radius: 50%; }
  5267. .item-avatar-right,
  5268. .item-avatar-right .item-content {
  5269. padding-right: 72px;
  5270. min-height: 72px; }
  5271. .item-avatar-right > img:first-child,
  5272. .item-avatar-right .item-image,
  5273. .item-avatar-right .item-content > img:first-child,
  5274. .item-avatar-right .item-content .item-image {
  5275. position: absolute;
  5276. top: 16px;
  5277. right: 16px;
  5278. max-width: 40px;
  5279. max-height: 40px;
  5280. width: 100%;
  5281. height: 100%;
  5282. border-radius: 50%; }
  5283. .item-thumbnail-left,
  5284. .item-thumbnail-left .item-content {
  5285. padding-top: 8px;
  5286. padding-left: 106px;
  5287. min-height: 100px; }
  5288. .item-thumbnail-left > img:first-child,
  5289. .item-thumbnail-left .item-image,
  5290. .item-thumbnail-left .item-content > img:first-child,
  5291. .item-thumbnail-left .item-content .item-image {
  5292. position: absolute;
  5293. top: 10px;
  5294. left: 10px;
  5295. max-width: 80px;
  5296. max-height: 80px;
  5297. width: 100%;
  5298. height: 100%; }
  5299. .item-avatar.item-complex,
  5300. .item-avatar-left.item-complex,
  5301. .item-thumbnail-left.item-complex {
  5302. padding-top: 0;
  5303. padding-left: 0; }
  5304. .item-thumbnail-right,
  5305. .item-thumbnail-right .item-content {
  5306. padding-top: 8px;
  5307. padding-right: 106px;
  5308. min-height: 100px; }
  5309. .item-thumbnail-right > img:first-child,
  5310. .item-thumbnail-right .item-image,
  5311. .item-thumbnail-right .item-content > img:first-child,
  5312. .item-thumbnail-right .item-content .item-image {
  5313. position: absolute;
  5314. top: 10px;
  5315. right: 10px;
  5316. max-width: 80px;
  5317. max-height: 80px;
  5318. width: 100%;
  5319. height: 100%; }
  5320. .item-avatar-right.item-complex,
  5321. .item-thumbnail-right.item-complex {
  5322. padding-top: 0;
  5323. padding-right: 0; }
  5324. .item-image {
  5325. padding: 0;
  5326. text-align: center; }
  5327. .item-image img:first-child, .item-image .list-img {
  5328. width: 100%;
  5329. vertical-align: middle; }
  5330. .item-body {
  5331. overflow: auto;
  5332. padding: 16px;
  5333. text-overflow: inherit;
  5334. white-space: normal; }
  5335. .item-body h1, .item-body h2, .item-body h3, .item-body h4, .item-body h5, .item-body h6, .item-body p {
  5336. margin-top: 16px;
  5337. margin-bottom: 16px; }
  5338. .item-divider {
  5339. padding-top: 8px;
  5340. padding-bottom: 8px;
  5341. min-height: 30px;
  5342. background-color: #f5f5f5;
  5343. color: #222;
  5344. font-weight: 500; }
  5345. .platform-ios .item-divider-platform,
  5346. .item-divider-ios {
  5347. padding-top: 26px;
  5348. text-transform: uppercase;
  5349. font-weight: 300;
  5350. font-size: 13px;
  5351. background-color: #efeff4;
  5352. color: #555; }
  5353. .platform-android .item-divider-platform,
  5354. .item-divider-android {
  5355. font-weight: 300;
  5356. font-size: 13px; }
  5357. .item-note {
  5358. float: right;
  5359. color: #aaa;
  5360. font-size: 14px; }
  5361. .item-left-editable .item-content,
  5362. .item-right-editable .item-content {
  5363. -webkit-transition-duration: 250ms;
  5364. transition-duration: 250ms;
  5365. -webkit-transition-timing-function: ease-in-out;
  5366. transition-timing-function: ease-in-out;
  5367. -webkit-transition-property: -webkit-transform;
  5368. -moz-transition-property: -moz-transform;
  5369. transition-property: transform; }
  5370. .list-left-editing .item-left-editable .item-content,
  5371. .item-left-editing.item-left-editable .item-content {
  5372. -webkit-transform: translate3d(50px, 0, 0);
  5373. transform: translate3d(50px, 0, 0); }
  5374. .item-remove-animate.ng-leave {
  5375. -webkit-transition-duration: 300ms;
  5376. transition-duration: 300ms; }
  5377. .item-remove-animate.ng-leave .item-content, .item-remove-animate.ng-leave:last-of-type {
  5378. -webkit-transition-duration: 300ms;
  5379. transition-duration: 300ms;
  5380. -webkit-transition-timing-function: ease-in;
  5381. transition-timing-function: ease-in;
  5382. -webkit-transition-property: all;
  5383. transition-property: all; }
  5384. .item-remove-animate.ng-leave.ng-leave-active .item-content {
  5385. opacity: 0;
  5386. -webkit-transform: translate3d(-100%, 0, 0) !important;
  5387. transform: translate3d(-100%, 0, 0) !important; }
  5388. .item-remove-animate.ng-leave.ng-leave-active:last-of-type {
  5389. opacity: 0; }
  5390. .item-remove-animate.ng-leave.ng-leave-active ~ ion-item:not(.ng-leave) {
  5391. -webkit-transform: translate3d(0, -webkit-calc(-100% + 1px), 0);
  5392. transform: translate3d(0, calc(-100% + 1px), 0);
  5393. -webkit-transition-duration: 300ms;
  5394. transition-duration: 300ms;
  5395. -webkit-transition-timing-function: cubic-bezier(0.25, 0.81, 0.24, 1);
  5396. transition-timing-function: cubic-bezier(0.25, 0.81, 0.24, 1);
  5397. -webkit-transition-property: all;
  5398. transition-property: all; }
  5399. .item-left-edit {
  5400. -webkit-transition: all ease-in-out 125ms;
  5401. transition: all ease-in-out 125ms;
  5402. position: absolute;
  5403. top: 0;
  5404. left: 0;
  5405. z-index: 0;
  5406. width: 50px;
  5407. height: 100%;
  5408. line-height: 100%;
  5409. display: none;
  5410. opacity: 0;
  5411. -webkit-transform: translate3d(-21px, 0, 0);
  5412. transform: translate3d(-21px, 0, 0); }
  5413. .item-left-edit .button {
  5414. height: 100%; }
  5415. .item-left-edit .button.icon {
  5416. display: -webkit-box;
  5417. display: -webkit-flex;
  5418. display: -moz-box;
  5419. display: -moz-flex;
  5420. display: -ms-flexbox;
  5421. display: flex;
  5422. -webkit-box-align: center;
  5423. -ms-flex-align: center;
  5424. -webkit-align-items: center;
  5425. -moz-align-items: center;
  5426. align-items: center;
  5427. position: absolute;
  5428. top: 0;
  5429. height: 100%; }
  5430. .item-left-edit.visible {
  5431. display: block; }
  5432. .item-left-edit.visible.active {
  5433. opacity: 1;
  5434. -webkit-transform: translate3d(8px, 0, 0);
  5435. transform: translate3d(8px, 0, 0); }
  5436. .list-left-editing .item-left-edit {
  5437. -webkit-transition-delay: 125ms;
  5438. transition-delay: 125ms; }
  5439. .item-delete .button.icon {
  5440. color: #ef473a;
  5441. font-size: 24px; }
  5442. .item-delete .button.icon:hover {
  5443. opacity: .7; }
  5444. .item-right-edit {
  5445. -webkit-transition: all ease-in-out 250ms;
  5446. transition: all ease-in-out 250ms;
  5447. position: absolute;
  5448. top: 0;
  5449. right: 0;
  5450. z-index: 3;
  5451. width: 75px;
  5452. height: 100%;
  5453. background: inherit;
  5454. padding-left: 20px;
  5455. display: block;
  5456. opacity: 0;
  5457. -webkit-transform: translate3d(75px, 0, 0);
  5458. transform: translate3d(75px, 0, 0); }
  5459. .item-right-edit .button {
  5460. min-width: 50px;
  5461. height: 100%; }
  5462. .item-right-edit .button.icon {
  5463. display: -webkit-box;
  5464. display: -webkit-flex;
  5465. display: -moz-box;
  5466. display: -moz-flex;
  5467. display: -ms-flexbox;
  5468. display: flex;
  5469. -webkit-box-align: center;
  5470. -ms-flex-align: center;
  5471. -webkit-align-items: center;
  5472. -moz-align-items: center;
  5473. align-items: center;
  5474. position: absolute;
  5475. top: 0;
  5476. height: 100%;
  5477. font-size: 32px; }
  5478. .item-right-edit.visible {
  5479. display: block; }
  5480. .item-right-edit.visible.active {
  5481. opacity: 1;
  5482. -webkit-transform: translate3d(0, 0, 0);
  5483. transform: translate3d(0, 0, 0); }
  5484. .item-reorder .button.icon {
  5485. color: #444;
  5486. font-size: 32px; }
  5487. .item-reordering {
  5488. position: absolute;
  5489. left: 0;
  5490. top: 0;
  5491. z-index: 9;
  5492. width: 100%;
  5493. box-shadow: 0px 0px 10px 0px #aaa; }
  5494. .item-reordering .item-reorder {
  5495. z-index: 9; }
  5496. .item-placeholder {
  5497. opacity: 0.7; }
  5498. /**
  5499. * The hidden right-side buttons that can be exposed under a list item
  5500. * with dragging.
  5501. */
  5502. .item-options {
  5503. position: absolute;
  5504. top: 0;
  5505. right: 0;
  5506. z-index: 1;
  5507. height: 100%; }
  5508. .item-options .button {
  5509. height: 100%;
  5510. border: none;
  5511. border-radius: 0;
  5512. display: -webkit-inline-box;
  5513. display: -webkit-inline-flex;
  5514. display: -moz-inline-flex;
  5515. display: -ms-inline-flexbox;
  5516. display: inline-flex;
  5517. -webkit-box-align: center;
  5518. -ms-flex-align: center;
  5519. -webkit-align-items: center;
  5520. -moz-align-items: center;
  5521. align-items: center; }
  5522. .item-options .button:before {
  5523. margin: 0 auto; }
  5524. /**
  5525. * Lists
  5526. * --------------------------------------------------
  5527. */
  5528. .list {
  5529. position: relative;
  5530. padding-top: 1px;
  5531. padding-bottom: 1px;
  5532. padding-left: 0;
  5533. margin-bottom: 20px; }
  5534. .list:last-child {
  5535. margin-bottom: 0px; }
  5536. .list:last-child.card {
  5537. margin-bottom: 40px; }
  5538. /**
  5539. * List Header
  5540. * --------------------------------------------------
  5541. */
  5542. .list-header {
  5543. margin-top: 20px;
  5544. padding: 5px 15px;
  5545. background-color: transparent;
  5546. color: #222;
  5547. font-weight: bold; }
  5548. .card.list .list-item {
  5549. padding-right: 1px;
  5550. padding-left: 1px; }
  5551. /**
  5552. * Cards and Inset Lists
  5553. * --------------------------------------------------
  5554. * A card and list-inset are close to the same thing, except a card as a box shadow.
  5555. */
  5556. .card,
  5557. .list-inset {
  5558. overflow: hidden;
  5559. margin: 20px 10px;
  5560. border-radius: 2px;
  5561. background-color: #fff; }
  5562. .card {
  5563. padding-top: 1px;
  5564. padding-bottom: 1px;
  5565. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
  5566. .card .item {
  5567. border-left: 0;
  5568. border-right: 0; }
  5569. .card .item:first-child {
  5570. border-top: 0; }
  5571. .card .item:last-child {
  5572. border-bottom: 0; }
  5573. .padding .card, .padding .list-inset {
  5574. margin-left: 0;
  5575. margin-right: 0; }
  5576. .card .item:first-child,
  5577. .list-inset .item:first-child,
  5578. .padding > .list .item:first-child {
  5579. border-top-left-radius: 2px;
  5580. border-top-right-radius: 2px; }
  5581. .card .item:first-child .item-content,
  5582. .list-inset .item:first-child .item-content,
  5583. .padding > .list .item:first-child .item-content {
  5584. border-top-left-radius: 2px;
  5585. border-top-right-radius: 2px; }
  5586. .card .item:last-child,
  5587. .list-inset .item:last-child,
  5588. .padding > .list .item:last-child {
  5589. border-bottom-right-radius: 2px;
  5590. border-bottom-left-radius: 2px; }
  5591. .card .item:last-child .item-content,
  5592. .list-inset .item:last-child .item-content,
  5593. .padding > .list .item:last-child .item-content {
  5594. border-bottom-right-radius: 2px;
  5595. border-bottom-left-radius: 2px; }
  5596. .card .item:last-child,
  5597. .list-inset .item:last-child {
  5598. margin-bottom: -1px; }
  5599. .card .item,
  5600. .list-inset .item,
  5601. .padding > .list .item,
  5602. .padding-horizontal > .list .item {
  5603. margin-right: 0;
  5604. margin-left: 0; }
  5605. .card .item.item-input input,
  5606. .list-inset .item.item-input input,
  5607. .padding > .list .item.item-input input,
  5608. .padding-horizontal > .list .item.item-input input {
  5609. padding-right: 44px; }
  5610. .padding-left > .list .item {
  5611. margin-left: 0; }
  5612. .padding-right > .list .item {
  5613. margin-right: 0; }
  5614. /**
  5615. * Badges
  5616. * --------------------------------------------------
  5617. */
  5618. .badge {
  5619. background-color: transparent;
  5620. color: #AAAAAA;
  5621. z-index: 1;
  5622. display: inline-block;
  5623. padding: 3px 8px;
  5624. min-width: 10px;
  5625. border-radius: 10px;
  5626. vertical-align: baseline;
  5627. text-align: center;
  5628. white-space: nowrap;
  5629. font-weight: bold;
  5630. font-size: 14px;
  5631. line-height: 16px; }
  5632. .badge:empty {
  5633. display: none; }
  5634. .tabs .tab-item .badge.badge-light,
  5635. .badge.badge-light {
  5636. background-color: #fff;
  5637. color: #444; }
  5638. .tabs .tab-item .badge.badge-stable,
  5639. .badge.badge-stable {
  5640. background-color: #f8f8f8;
  5641. color: #444; }
  5642. .tabs .tab-item .badge.badge-positive,
  5643. .badge.badge-positive {
  5644. background-color: #387ef5;
  5645. color: #fff; }
  5646. .tabs .tab-item .badge.badge-calm,
  5647. .badge.badge-calm {
  5648. background-color: #11c1f3;
  5649. color: #fff; }
  5650. .tabs .tab-item .badge.badge-assertive,
  5651. .badge.badge-assertive {
  5652. background-color: #ef473a;
  5653. color: #fff; }
  5654. .tabs .tab-item .badge.badge-balanced,
  5655. .badge.badge-balanced {
  5656. background-color: #33cd5f;
  5657. color: #fff; }
  5658. .tabs .tab-item .badge.badge-energized,
  5659. .badge.badge-energized {
  5660. background-color: #ffc900;
  5661. color: #fff; }
  5662. .tabs .tab-item .badge.badge-royal,
  5663. .badge.badge-royal {
  5664. background-color: #886aea;
  5665. color: #fff; }
  5666. .tabs .tab-item .badge.badge-dark,
  5667. .badge.badge-dark {
  5668. background-color: #444;
  5669. color: #fff; }
  5670. .button .badge {
  5671. position: relative;
  5672. top: -1px; }
  5673. /**
  5674. * Slide Box
  5675. * --------------------------------------------------
  5676. */
  5677. .slider {
  5678. position: relative;
  5679. visibility: hidden;
  5680. overflow: hidden; }
  5681. .slider-slides {
  5682. position: relative;
  5683. height: 100%; }
  5684. .slider-slide {
  5685. position: relative;
  5686. display: block;
  5687. float: left;
  5688. width: 100%;
  5689. height: 100%;
  5690. vertical-align: top; }
  5691. .slider-slide-image > img {
  5692. width: 100%; }
  5693. .slider-pager {
  5694. position: absolute;
  5695. bottom: 20px;
  5696. z-index: 1;
  5697. width: 100%;
  5698. height: 15px;
  5699. text-align: center; }
  5700. .slider-pager .slider-pager-page {
  5701. display: inline-block;
  5702. margin: 0px 3px;
  5703. width: 15px;
  5704. color: #000;
  5705. text-decoration: none;
  5706. opacity: 0.3; }
  5707. .slider-pager .slider-pager-page.active {
  5708. -webkit-transition: opacity 0.4s ease-in;
  5709. transition: opacity 0.4s ease-in;
  5710. opacity: 1; }
  5711. .slider-slide.ng-enter, .slider-slide.ng-leave, .slider-slide.ng-animate,
  5712. .slider-pager-page.ng-enter,
  5713. .slider-pager-page.ng-leave,
  5714. .slider-pager-page.ng-animate {
  5715. -webkit-transition: none !important;
  5716. transition: none !important; }
  5717. .slider-slide.ng-animate,
  5718. .slider-pager-page.ng-animate {
  5719. -webkit-animation: none 0s;
  5720. animation: none 0s; }
  5721. /**
  5722. * Swiper 3.2.7
  5723. * Most modern mobile touch slider and framework with hardware accelerated transitions
  5724. *
  5725. * http://www.idangero.us/swiper/
  5726. *
  5727. * Copyright 2015, Vladimir Kharlampidi
  5728. * The iDangero.us
  5729. * http://www.idangero.us/
  5730. *
  5731. * Licensed under MIT
  5732. *
  5733. * Released on: December 7, 2015
  5734. */
  5735. .swiper-container {
  5736. margin: 0 auto;
  5737. position: relative;
  5738. overflow: hidden;
  5739. /* Fix of Webkit flickering */
  5740. z-index: 1; }
  5741. .swiper-container-no-flexbox .swiper-slide {
  5742. float: left; }
  5743. .swiper-container-vertical > .swiper-wrapper {
  5744. -webkit-box-orient: vertical;
  5745. -moz-box-orient: vertical;
  5746. -ms-flex-direction: column;
  5747. -webkit-flex-direction: column;
  5748. flex-direction: column; }
  5749. .swiper-wrapper {
  5750. position: relative;
  5751. width: 100%;
  5752. height: 100%;
  5753. z-index: 1;
  5754. display: -webkit-box;
  5755. display: -moz-box;
  5756. display: -ms-flexbox;
  5757. display: -webkit-flex;
  5758. display: flex;
  5759. -webkit-transition-property: -webkit-transform;
  5760. -moz-transition-property: -moz-transform;
  5761. -o-transition-property: -o-transform;
  5762. -ms-transition-property: -ms-transform;
  5763. transition-property: transform;
  5764. -webkit-box-sizing: content-box;
  5765. -moz-box-sizing: content-box;
  5766. box-sizing: content-box; }
  5767. .swiper-container-android .swiper-slide,
  5768. .swiper-wrapper {
  5769. -webkit-transform: translate3d(0px, 0, 0);
  5770. -moz-transform: translate3d(0px, 0, 0);
  5771. -o-transform: translate(0px, 0px);
  5772. -ms-transform: translate3d(0px, 0, 0);
  5773. transform: translate3d(0px, 0, 0); }
  5774. .swiper-container-multirow > .swiper-wrapper {
  5775. -webkit-box-lines: multiple;
  5776. -moz-box-lines: multiple;
  5777. -ms-flex-wrap: wrap;
  5778. -webkit-flex-wrap: wrap;
  5779. flex-wrap: wrap; }
  5780. .swiper-container-free-mode > .swiper-wrapper {
  5781. -webkit-transition-timing-function: ease-out;
  5782. -moz-transition-timing-function: ease-out;
  5783. -ms-transition-timing-function: ease-out;
  5784. -o-transition-timing-function: ease-out;
  5785. transition-timing-function: ease-out;
  5786. margin: 0 auto; }
  5787. .swiper-slide {
  5788. display: block;
  5789. -webkit-flex-shrink: 0;
  5790. -ms-flex: 0 0 auto;
  5791. flex-shrink: 0;
  5792. width: 100%;
  5793. height: 100%;
  5794. position: relative; }
  5795. /* Auto Height */
  5796. .swiper-container-autoheight,
  5797. .swiper-container-autoheight .swiper-slide {
  5798. height: auto; }
  5799. .swiper-container-autoheight .swiper-wrapper {
  5800. -webkit-box-align: start;
  5801. -ms-flex-align: start;
  5802. -webkit-align-items: flex-start;
  5803. align-items: flex-start;
  5804. -webkit-transition-property: -webkit-transform, height;
  5805. -moz-transition-property: -moz-transform;
  5806. -o-transition-property: -o-transform;
  5807. -ms-transition-property: -ms-transform;
  5808. transition-property: transform, height; }
  5809. /* a11y */
  5810. .swiper-container .swiper-notification {
  5811. position: absolute;
  5812. left: 0;
  5813. top: 0;
  5814. pointer-events: none;
  5815. opacity: 0;
  5816. z-index: -1000; }
  5817. /* IE10 Windows Phone 8 Fixes */
  5818. .swiper-wp8-horizontal {
  5819. -ms-touch-action: pan-y;
  5820. touch-action: pan-y; }
  5821. .swiper-wp8-vertical {
  5822. -ms-touch-action: pan-x;
  5823. touch-action: pan-x; }
  5824. /* Arrows */
  5825. .swiper-button-prev,
  5826. .swiper-button-next {
  5827. position: absolute;
  5828. top: 50%;
  5829. width: 27px;
  5830. height: 44px;
  5831. margin-top: -22px;
  5832. z-index: 10;
  5833. cursor: pointer;
  5834. -moz-background-size: 27px 44px;
  5835. -webkit-background-size: 27px 44px;
  5836. background-size: 27px 44px;
  5837. background-position: center;
  5838. background-repeat: no-repeat; }
  5839. .swiper-button-prev.swiper-button-disabled,
  5840. .swiper-button-next.swiper-button-disabled {
  5841. opacity: 0.35;
  5842. cursor: auto;
  5843. pointer-events: none; }
  5844. .swiper-button-prev,
  5845. .swiper-container-rtl .swiper-button-next {
  5846. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  5847. left: 10px;
  5848. right: auto; }
  5849. .swiper-button-prev.swiper-button-black,
  5850. .swiper-container-rtl .swiper-button-next.swiper-button-black {
  5851. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }
  5852. .swiper-button-prev.swiper-button-white,
  5853. .swiper-container-rtl .swiper-button-next.swiper-button-white {
  5854. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
  5855. .swiper-button-next,
  5856. .swiper-container-rtl .swiper-button-prev {
  5857. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  5858. right: 10px;
  5859. left: auto; }
  5860. .swiper-button-next.swiper-button-black,
  5861. .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  5862. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }
  5863. .swiper-button-next.swiper-button-white,
  5864. .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  5865. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
  5866. /* Pagination Styles */
  5867. .swiper-pagination {
  5868. position: absolute;
  5869. text-align: center;
  5870. -webkit-transition: 300ms;
  5871. -moz-transition: 300ms;
  5872. -o-transition: 300ms;
  5873. transition: 300ms;
  5874. -webkit-transform: translate3d(0, 0, 0);
  5875. -ms-transform: translate3d(0, 0, 0);
  5876. -o-transform: translate3d(0, 0, 0);
  5877. transform: translate3d(0, 0, 0);
  5878. z-index: 10; }
  5879. .swiper-pagination.swiper-pagination-hidden {
  5880. opacity: 0; }
  5881. .swiper-pagination-bullet {
  5882. width: 8px;
  5883. height: 8px;
  5884. display: inline-block;
  5885. border-radius: 100%;
  5886. background: #000;
  5887. opacity: 0.2; }
  5888. button.swiper-pagination-bullet {
  5889. border: none;
  5890. margin: 0;
  5891. padding: 0;
  5892. box-shadow: none;
  5893. -moz-appearance: none;
  5894. -ms-appearance: none;
  5895. -webkit-appearance: none;
  5896. appearance: none; }
  5897. .swiper-pagination-clickable .swiper-pagination-bullet {
  5898. cursor: pointer; }
  5899. .swiper-pagination-white .swiper-pagination-bullet {
  5900. background: #fff; }
  5901. .swiper-pagination-bullet-active {
  5902. opacity: 1; }
  5903. .swiper-pagination-white .swiper-pagination-bullet-active {
  5904. background: #fff; }
  5905. .swiper-pagination-black .swiper-pagination-bullet-active {
  5906. background: #000; }
  5907. .swiper-container-vertical > .swiper-pagination {
  5908. right: 10px;
  5909. top: 50%;
  5910. -webkit-transform: translate3d(0px, -50%, 0);
  5911. -moz-transform: translate3d(0px, -50%, 0);
  5912. -o-transform: translate(0px, -50%);
  5913. -ms-transform: translate3d(0px, -50%, 0);
  5914. transform: translate3d(0px, -50%, 0); }
  5915. .swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  5916. margin: 5px 0;
  5917. display: block; }
  5918. .swiper-container-horizontal > .swiper-pagination {
  5919. bottom: 10px;
  5920. left: 0;
  5921. width: 100%; }
  5922. .swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  5923. margin: 0 5px; }
  5924. /* 3D Container */
  5925. .swiper-container-3d {
  5926. -webkit-perspective: 1200px;
  5927. -moz-perspective: 1200px;
  5928. -o-perspective: 1200px;
  5929. perspective: 1200px; }
  5930. .swiper-container-3d .swiper-wrapper,
  5931. .swiper-container-3d .swiper-slide,
  5932. .swiper-container-3d .swiper-slide-shadow-left,
  5933. .swiper-container-3d .swiper-slide-shadow-right,
  5934. .swiper-container-3d .swiper-slide-shadow-top,
  5935. .swiper-container-3d .swiper-slide-shadow-bottom,
  5936. .swiper-container-3d .swiper-cube-shadow {
  5937. -webkit-transform-style: preserve-3d;
  5938. -moz-transform-style: preserve-3d;
  5939. -ms-transform-style: preserve-3d;
  5940. transform-style: preserve-3d; }
  5941. .swiper-container-3d .swiper-slide-shadow-left,
  5942. .swiper-container-3d .swiper-slide-shadow-right,
  5943. .swiper-container-3d .swiper-slide-shadow-top,
  5944. .swiper-container-3d .swiper-slide-shadow-bottom {
  5945. position: absolute;
  5946. left: 0;
  5947. top: 0;
  5948. width: 100%;
  5949. height: 100%;
  5950. pointer-events: none;
  5951. z-index: 10; }
  5952. .swiper-container-3d .swiper-slide-shadow-left {
  5953. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5954. /* Safari 4+, Chrome */
  5955. background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5956. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5957. background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5958. /* Firefox 3.6-15 */
  5959. background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5960. /* Opera 11.10-12.00 */
  5961. background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  5962. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5963. .swiper-container-3d .swiper-slide-shadow-right {
  5964. background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5965. /* Safari 4+, Chrome */
  5966. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5967. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5968. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5969. /* Firefox 3.6-15 */
  5970. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5971. /* Opera 11.10-12.00 */
  5972. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  5973. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5974. .swiper-container-3d .swiper-slide-shadow-top {
  5975. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5976. /* Safari 4+, Chrome */
  5977. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5978. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5979. background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5980. /* Firefox 3.6-15 */
  5981. background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5982. /* Opera 11.10-12.00 */
  5983. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  5984. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5985. .swiper-container-3d .swiper-slide-shadow-bottom {
  5986. background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5987. /* Safari 4+, Chrome */
  5988. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5989. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5990. background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5991. /* Firefox 3.6-15 */
  5992. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5993. /* Opera 11.10-12.00 */
  5994. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  5995. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5996. /* Coverflow */
  5997. .swiper-container-coverflow .swiper-wrapper {
  5998. /* Windows 8 IE 10 fix */
  5999. -ms-perspective: 1200px; }
  6000. /* Fade */
  6001. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  6002. -webkit-transition-timing-function: ease-out;
  6003. -moz-transition-timing-function: ease-out;
  6004. -ms-transition-timing-function: ease-out;
  6005. -o-transition-timing-function: ease-out;
  6006. transition-timing-function: ease-out; }
  6007. .swiper-container-fade .swiper-slide {
  6008. pointer-events: none; }
  6009. .swiper-container-fade .swiper-slide .swiper-slide {
  6010. pointer-events: none; }
  6011. .swiper-container-fade .swiper-slide-active,
  6012. .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  6013. pointer-events: auto; }
  6014. /* Cube */
  6015. .swiper-container-cube {
  6016. overflow: visible; }
  6017. .swiper-container-cube .swiper-slide {
  6018. pointer-events: none;
  6019. visibility: hidden;
  6020. -webkit-transform-origin: 0 0;
  6021. -moz-transform-origin: 0 0;
  6022. -ms-transform-origin: 0 0;
  6023. transform-origin: 0 0;
  6024. -webkit-backface-visibility: hidden;
  6025. -moz-backface-visibility: hidden;
  6026. -ms-backface-visibility: hidden;
  6027. backface-visibility: hidden;
  6028. width: 100%;
  6029. height: 100%;
  6030. z-index: 1; }
  6031. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  6032. -webkit-transform-origin: 100% 0;
  6033. -moz-transform-origin: 100% 0;
  6034. -ms-transform-origin: 100% 0;
  6035. transform-origin: 100% 0; }
  6036. .swiper-container-cube .swiper-slide-active,
  6037. .swiper-container-cube .swiper-slide-next,
  6038. .swiper-container-cube .swiper-slide-prev,
  6039. .swiper-container-cube .swiper-slide-next + .swiper-slide {
  6040. pointer-events: auto;
  6041. visibility: visible; }
  6042. .swiper-container-cube .swiper-slide-shadow-top,
  6043. .swiper-container-cube .swiper-slide-shadow-bottom,
  6044. .swiper-container-cube .swiper-slide-shadow-left,
  6045. .swiper-container-cube .swiper-slide-shadow-right {
  6046. z-index: 0;
  6047. -webkit-backface-visibility: hidden;
  6048. -moz-backface-visibility: hidden;
  6049. -ms-backface-visibility: hidden;
  6050. backface-visibility: hidden; }
  6051. .swiper-container-cube .swiper-cube-shadow {
  6052. position: absolute;
  6053. left: 0;
  6054. bottom: 0px;
  6055. width: 100%;
  6056. height: 100%;
  6057. background: #000;
  6058. opacity: 0.6;
  6059. -webkit-filter: blur(50px);
  6060. filter: blur(50px);
  6061. z-index: 0; }
  6062. /* Scrollbar */
  6063. .swiper-scrollbar {
  6064. border-radius: 10px;
  6065. position: relative;
  6066. -ms-touch-action: none;
  6067. background: rgba(0, 0, 0, 0.1); }
  6068. .swiper-container-horizontal > .swiper-scrollbar {
  6069. position: absolute;
  6070. left: 1%;
  6071. bottom: 3px;
  6072. z-index: 50;
  6073. height: 5px;
  6074. width: 98%; }
  6075. .swiper-container-vertical > .swiper-scrollbar {
  6076. position: absolute;
  6077. right: 3px;
  6078. top: 1%;
  6079. z-index: 50;
  6080. width: 5px;
  6081. height: 98%; }
  6082. .swiper-scrollbar-drag {
  6083. height: 100%;
  6084. width: 100%;
  6085. position: relative;
  6086. background: rgba(0, 0, 0, 0.5);
  6087. border-radius: 10px;
  6088. left: 0;
  6089. top: 0; }
  6090. .swiper-scrollbar-cursor-drag {
  6091. cursor: move; }
  6092. /* Preloader */
  6093. .swiper-lazy-preloader {
  6094. width: 42px;
  6095. height: 42px;
  6096. position: absolute;
  6097. left: 50%;
  6098. top: 50%;
  6099. margin-left: -21px;
  6100. margin-top: -21px;
  6101. z-index: 10;
  6102. -webkit-transform-origin: 50%;
  6103. -moz-transform-origin: 50%;
  6104. transform-origin: 50%;
  6105. -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  6106. -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  6107. animation: swiper-preloader-spin 1s steps(12, end) infinite; }
  6108. .swiper-lazy-preloader:after {
  6109. display: block;
  6110. content: "";
  6111. width: 100%;
  6112. height: 100%;
  6113. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  6114. background-position: 50%;
  6115. -webkit-background-size: 100%;
  6116. background-size: 100%;
  6117. background-repeat: no-repeat; }
  6118. .swiper-lazy-preloader-white:after {
  6119. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }
  6120. @-webkit-keyframes swiper-preloader-spin {
  6121. 100% {
  6122. -webkit-transform: rotate(360deg); } }
  6123. @keyframes swiper-preloader-spin {
  6124. 100% {
  6125. transform: rotate(360deg); } }
  6126. ion-slides {
  6127. width: 100%;
  6128. height: 100%;
  6129. display: block; }
  6130. .slide-zoom {
  6131. display: block;
  6132. width: 100%;
  6133. text-align: center; }
  6134. .swiper-container {
  6135. width: 100%;
  6136. height: 100%;
  6137. padding: 0;
  6138. overflow: hidden; }
  6139. .swiper-wrapper {
  6140. position: absolute;
  6141. left: 0;
  6142. top: 0;
  6143. width: 100%;
  6144. height: 100%;
  6145. padding: 0; }
  6146. .swiper-slide {
  6147. width: 100%;
  6148. height: 100%;
  6149. box-sizing: border-box;
  6150. /* Center slide text vertically */ }
  6151. .swiper-slide img {
  6152. width: auto;
  6153. height: auto;
  6154. max-width: 100%;
  6155. max-height: 100%; }
  6156. .scroll-refresher {
  6157. position: absolute;
  6158. top: -60px;
  6159. right: 0;
  6160. left: 0;
  6161. overflow: hidden;
  6162. margin: auto;
  6163. height: 60px; }
  6164. .scroll-refresher .ionic-refresher-content {
  6165. position: absolute;
  6166. bottom: 15px;
  6167. left: 0;
  6168. width: 100%;
  6169. color: #666666;
  6170. text-align: center;
  6171. font-size: 30px; }
  6172. .scroll-refresher .ionic-refresher-content .text-refreshing,
  6173. .scroll-refresher .ionic-refresher-content .text-pulling {
  6174. font-size: 16px;
  6175. line-height: 16px; }
  6176. .scroll-refresher .ionic-refresher-content.ionic-refresher-with-text {
  6177. bottom: 10px; }
  6178. .scroll-refresher .icon-refreshing,
  6179. .scroll-refresher .icon-pulling {
  6180. width: 100%;
  6181. -webkit-backface-visibility: hidden;
  6182. backface-visibility: hidden;
  6183. -webkit-transform-style: preserve-3d;
  6184. transform-style: preserve-3d; }
  6185. .scroll-refresher .icon-pulling {
  6186. -webkit-animation-name: refresh-spin-back;
  6187. animation-name: refresh-spin-back;
  6188. -webkit-animation-duration: 200ms;
  6189. animation-duration: 200ms;
  6190. -webkit-animation-timing-function: linear;
  6191. animation-timing-function: linear;
  6192. -webkit-animation-fill-mode: none;
  6193. animation-fill-mode: none;
  6194. -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  6195. transform: translate3d(0, 0, 0) rotate(0deg); }
  6196. .scroll-refresher .icon-refreshing,
  6197. .scroll-refresher .text-refreshing {
  6198. display: none; }
  6199. .scroll-refresher .icon-refreshing {
  6200. -webkit-animation-duration: 1.5s;
  6201. animation-duration: 1.5s; }
  6202. .scroll-refresher.active .icon-pulling:not(.pulling-rotation-disabled) {
  6203. -webkit-animation-name: refresh-spin;
  6204. animation-name: refresh-spin;
  6205. -webkit-transform: translate3d(0, 0, 0) rotate(-180deg);
  6206. transform: translate3d(0, 0, 0) rotate(-180deg); }
  6207. .scroll-refresher.active.refreshing {
  6208. -webkit-transition: -webkit-transform 0.2s;
  6209. transition: -webkit-transform 0.2s;
  6210. -webkit-transition: transform 0.2s;
  6211. transition: transform 0.2s;
  6212. -webkit-transform: scale(1, 1);
  6213. transform: scale(1, 1); }
  6214. .scroll-refresher.active.refreshing .icon-pulling,
  6215. .scroll-refresher.active.refreshing .text-pulling {
  6216. display: none; }
  6217. .scroll-refresher.active.refreshing .icon-refreshing,
  6218. .scroll-refresher.active.refreshing .text-refreshing {
  6219. display: block; }
  6220. .scroll-refresher.active.refreshing.refreshing-tail {
  6221. -webkit-transform: scale(0, 0);
  6222. transform: scale(0, 0); }
  6223. .overflow-scroll > .scroll {
  6224. -webkit-overflow-scrolling: touch;
  6225. width: 100%; }
  6226. .overflow-scroll > .scroll.overscroll {
  6227. position: fixed;
  6228. right: 0;
  6229. left: 0; }
  6230. .overflow-scroll.padding > .scroll.overscroll {
  6231. padding: 10px; }
  6232. @-webkit-keyframes refresh-spin {
  6233. 0% {
  6234. -webkit-transform: translate3d(0, 0, 0) rotate(0); }
  6235. 100% {
  6236. -webkit-transform: translate3d(0, 0, 0) rotate(180deg); } }
  6237. @keyframes refresh-spin {
  6238. 0% {
  6239. transform: translate3d(0, 0, 0) rotate(0); }
  6240. 100% {
  6241. transform: translate3d(0, 0, 0) rotate(180deg); } }
  6242. @-webkit-keyframes refresh-spin-back {
  6243. 0% {
  6244. -webkit-transform: translate3d(0, 0, 0) rotate(180deg); }
  6245. 100% {
  6246. -webkit-transform: translate3d(0, 0, 0) rotate(0); } }
  6247. @keyframes refresh-spin-back {
  6248. 0% {
  6249. transform: translate3d(0, 0, 0) rotate(180deg); }
  6250. 100% {
  6251. transform: translate3d(0, 0, 0) rotate(0); } }
  6252. /**
  6253. * Spinners
  6254. * --------------------------------------------------
  6255. */
  6256. .spinner {
  6257. stroke: #444;
  6258. fill: #444; }
  6259. .spinner svg {
  6260. width: 28px;
  6261. height: 28px; }
  6262. .spinner.spinner-light {
  6263. stroke: #fff;
  6264. fill: #fff; }
  6265. .spinner.spinner-stable {
  6266. stroke: #f8f8f8;
  6267. fill: #f8f8f8; }
  6268. .spinner.spinner-positive {
  6269. stroke: #387ef5;
  6270. fill: #387ef5; }
  6271. .spinner.spinner-calm {
  6272. stroke: #11c1f3;
  6273. fill: #11c1f3; }
  6274. .spinner.spinner-balanced {
  6275. stroke: #33cd5f;
  6276. fill: #33cd5f; }
  6277. .spinner.spinner-assertive {
  6278. stroke: #ef473a;
  6279. fill: #ef473a; }
  6280. .spinner.spinner-energized {
  6281. stroke: #ffc900;
  6282. fill: #ffc900; }
  6283. .spinner.spinner-royal {
  6284. stroke: #886aea;
  6285. fill: #886aea; }
  6286. .spinner.spinner-dark {
  6287. stroke: #444;
  6288. fill: #444; }
  6289. .spinner-android {
  6290. stroke: #4b8bf4; }
  6291. .spinner-ios,
  6292. .spinner-ios-small {
  6293. stroke: #69717d; }
  6294. .spinner-spiral .stop1 {
  6295. stop-color: #fff;
  6296. stop-opacity: 0; }
  6297. .spinner-spiral.spinner-light .stop1 {
  6298. stop-color: #444; }
  6299. .spinner-spiral.spinner-light .stop2 {
  6300. stop-color: #fff; }
  6301. .spinner-spiral.spinner-stable .stop2 {
  6302. stop-color: #f8f8f8; }
  6303. .spinner-spiral.spinner-positive .stop2 {
  6304. stop-color: #387ef5; }
  6305. .spinner-spiral.spinner-calm .stop2 {
  6306. stop-color: #11c1f3; }
  6307. .spinner-spiral.spinner-balanced .stop2 {
  6308. stop-color: #33cd5f; }
  6309. .spinner-spiral.spinner-assertive .stop2 {
  6310. stop-color: #ef473a; }
  6311. .spinner-spiral.spinner-energized .stop2 {
  6312. stop-color: #ffc900; }
  6313. .spinner-spiral.spinner-royal .stop2 {
  6314. stop-color: #886aea; }
  6315. .spinner-spiral.spinner-dark .stop2 {
  6316. stop-color: #444; }
  6317. /**
  6318. * Forms
  6319. * --------------------------------------------------
  6320. */
  6321. form {
  6322. margin: 0 0 1.42857; }
  6323. legend {
  6324. display: block;
  6325. margin-bottom: 1.42857;
  6326. padding: 0;
  6327. width: 100%;
  6328. border: 1px solid #ddd;
  6329. color: #444;
  6330. font-size: 21px;
  6331. line-height: 2.85714; }
  6332. legend small {
  6333. color: #f8f8f8;
  6334. font-size: 1.07143; }
  6335. label,
  6336. input,
  6337. button,
  6338. select,
  6339. textarea {
  6340. font-weight: normal;
  6341. font-size: 14px;
  6342. line-height: 1.42857; }
  6343. input,
  6344. button,
  6345. select,
  6346. textarea {
  6347. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif; }
  6348. .item-input {
  6349. display: -webkit-box;
  6350. display: -webkit-flex;
  6351. display: -moz-box;
  6352. display: -moz-flex;
  6353. display: -ms-flexbox;
  6354. display: flex;
  6355. -webkit-box-align: center;
  6356. -ms-flex-align: center;
  6357. -webkit-align-items: center;
  6358. -moz-align-items: center;
  6359. align-items: center;
  6360. position: relative;
  6361. overflow: hidden;
  6362. padding: 6px 0 5px 16px; }
  6363. .item-input input {
  6364. -webkit-border-radius: 0;
  6365. border-radius: 0;
  6366. -webkit-box-flex: 1;
  6367. -webkit-flex: 1 220px;
  6368. -moz-box-flex: 1;
  6369. -moz-flex: 1 220px;
  6370. -ms-flex: 1 220px;
  6371. flex: 1 220px;
  6372. -webkit-appearance: none;
  6373. -moz-appearance: none;
  6374. appearance: none;
  6375. margin: 0;
  6376. padding-right: 24px;
  6377. background-color: transparent; }
  6378. .item-input .button .icon {
  6379. -webkit-box-flex: 0;
  6380. -webkit-flex: 0 0 24px;
  6381. -moz-box-flex: 0;
  6382. -moz-flex: 0 0 24px;
  6383. -ms-flex: 0 0 24px;
  6384. flex: 0 0 24px;
  6385. position: static;
  6386. display: inline-block;
  6387. height: auto;
  6388. text-align: center;
  6389. font-size: 16px; }
  6390. .item-input .button-bar {
  6391. -webkit-border-radius: 0;
  6392. border-radius: 0;
  6393. -webkit-box-flex: 1;
  6394. -webkit-flex: 1 0 220px;
  6395. -moz-box-flex: 1;
  6396. -moz-flex: 1 0 220px;
  6397. -ms-flex: 1 0 220px;
  6398. flex: 1 0 220px;
  6399. -webkit-appearance: none;
  6400. -moz-appearance: none;
  6401. appearance: none; }
  6402. .item-input .icon {
  6403. min-width: 14px; }
  6404. .platform-windowsphone .item-input input {
  6405. flex-shrink: 1; }
  6406. .item-input-inset {
  6407. display: -webkit-box;
  6408. display: -webkit-flex;
  6409. display: -moz-box;
  6410. display: -moz-flex;
  6411. display: -ms-flexbox;
  6412. display: flex;
  6413. -webkit-box-align: center;
  6414. -ms-flex-align: center;
  6415. -webkit-align-items: center;
  6416. -moz-align-items: center;
  6417. align-items: center;
  6418. position: relative;
  6419. overflow: hidden;
  6420. padding: 10.66667px; }
  6421. .item-input-wrapper {
  6422. display: -webkit-box;
  6423. display: -webkit-flex;
  6424. display: -moz-box;
  6425. display: -moz-flex;
  6426. display: -ms-flexbox;
  6427. display: flex;
  6428. -webkit-box-flex: 1;
  6429. -webkit-flex: 1 0;
  6430. -moz-box-flex: 1;
  6431. -moz-flex: 1 0;
  6432. -ms-flex: 1 0;
  6433. flex: 1 0;
  6434. -webkit-box-align: center;
  6435. -ms-flex-align: center;
  6436. -webkit-align-items: center;
  6437. -moz-align-items: center;
  6438. align-items: center;
  6439. -webkit-border-radius: 4px;
  6440. border-radius: 4px;
  6441. padding-right: 8px;
  6442. padding-left: 8px;
  6443. background: #eee; }
  6444. .item-input-inset .item-input-wrapper input {
  6445. padding-left: 4px;
  6446. height: 29px;
  6447. background: transparent;
  6448. line-height: 18px; }
  6449. .item-input-wrapper ~ .button {
  6450. margin-left: 10.66667px; }
  6451. .input-label {
  6452. display: table;
  6453. padding: 7px 10px 7px 0px;
  6454. max-width: 200px;
  6455. width: 35%;
  6456. color: #444;
  6457. font-size: 16px; }
  6458. .placeholder-icon {
  6459. color: #aaa; }
  6460. .placeholder-icon:first-child {
  6461. padding-right: 6px; }
  6462. .placeholder-icon:last-child {
  6463. padding-left: 6px; }
  6464. .item-stacked-label {
  6465. display: block;
  6466. background-color: transparent;
  6467. box-shadow: none; }
  6468. .item-stacked-label .input-label, .item-stacked-label .icon {
  6469. display: inline-block;
  6470. padding: 4px 0 0 0px;
  6471. vertical-align: middle; }
  6472. .item-stacked-label input,
  6473. .item-stacked-label textarea {
  6474. -webkit-border-radius: 2px;
  6475. border-radius: 2px;
  6476. padding: 4px 8px 3px 0;
  6477. border: none;
  6478. background-color: #fff; }
  6479. .item-stacked-label input {
  6480. overflow: hidden;
  6481. height: 46px; }
  6482. .item-select.item-stacked-label select {
  6483. position: relative;
  6484. padding: 0px;
  6485. max-width: 90%;
  6486. direction: ltr;
  6487. white-space: pre-wrap;
  6488. margin: -3px; }
  6489. .item-floating-label {
  6490. display: block;
  6491. background-color: transparent;
  6492. box-shadow: none; }
  6493. .item-floating-label .input-label {
  6494. position: relative;
  6495. padding: 5px 0 0 0;
  6496. opacity: 0;
  6497. top: 10px;
  6498. -webkit-transition: opacity 0.15s ease-in, top 0.2s linear;
  6499. transition: opacity 0.15s ease-in, top 0.2s linear; }
  6500. .item-floating-label .input-label.has-input {
  6501. opacity: 1;
  6502. top: 0;
  6503. -webkit-transition: opacity 0.15s ease-in, top 0.2s linear;
  6504. transition: opacity 0.15s ease-in, top 0.2s linear; }
  6505. textarea,
  6506. input[type="text"],
  6507. input[type="password"],
  6508. input[type="datetime"],
  6509. input[type="datetime-local"],
  6510. input[type="date"],
  6511. input[type="month"],
  6512. input[type="time"],
  6513. input[type="week"],
  6514. input[type="number"],
  6515. input[type="email"],
  6516. input[type="url"],
  6517. input[type="search"],
  6518. input[type="tel"],
  6519. input[type="color"] {
  6520. display: block;
  6521. padding-top: 2px;
  6522. padding-left: 0;
  6523. height: 34px;
  6524. color: #111;
  6525. vertical-align: middle;
  6526. font-size: 14px;
  6527. line-height: 16px; }
  6528. .platform-ios input[type="datetime-local"],
  6529. .platform-ios input[type="date"],
  6530. .platform-ios input[type="month"],
  6531. .platform-ios input[type="time"],
  6532. .platform-ios input[type="week"],
  6533. .platform-android input[type="datetime-local"],
  6534. .platform-android input[type="date"],
  6535. .platform-android input[type="month"],
  6536. .platform-android input[type="time"],
  6537. .platform-android input[type="week"] {
  6538. padding-top: 8px; }
  6539. .item-input input,
  6540. .item-input textarea {
  6541. width: 100%; }
  6542. textarea {
  6543. padding-left: 0; }
  6544. textarea::-moz-placeholder {
  6545. color: #aaaaaa; }
  6546. textarea:-ms-input-placeholder {
  6547. color: #aaaaaa; }
  6548. textarea::-webkit-input-placeholder {
  6549. color: #aaaaaa;
  6550. text-indent: -3px; }
  6551. textarea {
  6552. height: auto; }
  6553. textarea,
  6554. input[type="text"],
  6555. input[type="password"],
  6556. input[type="datetime"],
  6557. input[type="datetime-local"],
  6558. input[type="date"],
  6559. input[type="month"],
  6560. input[type="time"],
  6561. input[type="week"],
  6562. input[type="number"],
  6563. input[type="email"],
  6564. input[type="url"],
  6565. input[type="search"],
  6566. input[type="tel"],
  6567. input[type="color"] {
  6568. border: 0; }
  6569. input[type="radio"],
  6570. input[type="checkbox"] {
  6571. margin: 0;
  6572. line-height: normal; }
  6573. .item-input input[type="file"],
  6574. .item-input input[type="image"],
  6575. .item-input input[type="submit"],
  6576. .item-input input[type="reset"],
  6577. .item-input input[type="button"],
  6578. .item-input input[type="radio"],
  6579. .item-input input[type="checkbox"] {
  6580. width: auto; }
  6581. input[type="file"] {
  6582. line-height: 34px; }
  6583. .previous-input-focus,
  6584. .cloned-text-input + input,
  6585. .cloned-text-input + textarea {
  6586. position: absolute !important;
  6587. left: -9999px;
  6588. width: 200px; }
  6589. input::-moz-placeholder,
  6590. textarea::-moz-placeholder {
  6591. color: #aaaaaa; }
  6592. input:-ms-input-placeholder,
  6593. textarea:-ms-input-placeholder {
  6594. color: #aaaaaa; }
  6595. input::-webkit-input-placeholder,
  6596. textarea::-webkit-input-placeholder {
  6597. color: #aaaaaa;
  6598. text-indent: 0; }
  6599. input[disabled],
  6600. select[disabled],
  6601. textarea[disabled],
  6602. input[readonly]:not(.cloned-text-input),
  6603. textarea[readonly]:not(.cloned-text-input),
  6604. select[readonly] {
  6605. background-color: #f8f8f8;
  6606. cursor: not-allowed; }
  6607. input[type="radio"][disabled],
  6608. input[type="checkbox"][disabled],
  6609. input[type="radio"][readonly],
  6610. input[type="checkbox"][readonly] {
  6611. background-color: transparent; }
  6612. /**
  6613. * Checkbox
  6614. * --------------------------------------------------
  6615. */
  6616. .checkbox {
  6617. position: relative;
  6618. display: inline-block;
  6619. padding: 7px 7px;
  6620. cursor: pointer; }
  6621. .checkbox input:before,
  6622. .checkbox .checkbox-icon:before {
  6623. border-color: #ddd; }
  6624. .checkbox input:checked:before,
  6625. .checkbox input:checked + .checkbox-icon:before {
  6626. background: #387ef5;
  6627. border-color: #387ef5; }
  6628. .checkbox-light input:before,
  6629. .checkbox-light .checkbox-icon:before {
  6630. border-color: #ddd; }
  6631. .checkbox-light input:checked:before,
  6632. .checkbox-light input:checked + .checkbox-icon:before {
  6633. background: #ddd;
  6634. border-color: #ddd; }
  6635. .checkbox-stable input:before,
  6636. .checkbox-stable .checkbox-icon:before {
  6637. border-color: #b2b2b2; }
  6638. .checkbox-stable input:checked:before,
  6639. .checkbox-stable input:checked + .checkbox-icon:before {
  6640. background: #b2b2b2;
  6641. border-color: #b2b2b2; }
  6642. .checkbox-positive input:before,
  6643. .checkbox-positive .checkbox-icon:before {
  6644. border-color: #387ef5; }
  6645. .checkbox-positive input:checked:before,
  6646. .checkbox-positive input:checked + .checkbox-icon:before {
  6647. background: #387ef5;
  6648. border-color: #387ef5; }
  6649. .checkbox-calm input:before,
  6650. .checkbox-calm .checkbox-icon:before {
  6651. border-color: #11c1f3; }
  6652. .checkbox-calm input:checked:before,
  6653. .checkbox-calm input:checked + .checkbox-icon:before {
  6654. background: #11c1f3;
  6655. border-color: #11c1f3; }
  6656. .checkbox-assertive input:before,
  6657. .checkbox-assertive .checkbox-icon:before {
  6658. border-color: #ef473a; }
  6659. .checkbox-assertive input:checked:before,
  6660. .checkbox-assertive input:checked + .checkbox-icon:before {
  6661. background: #ef473a;
  6662. border-color: #ef473a; }
  6663. .checkbox-balanced input:before,
  6664. .checkbox-balanced .checkbox-icon:before {
  6665. border-color: #33cd5f; }
  6666. .checkbox-balanced input:checked:before,
  6667. .checkbox-balanced input:checked + .checkbox-icon:before {
  6668. background: #33cd5f;
  6669. border-color: #33cd5f; }
  6670. .checkbox-energized input:before,
  6671. .checkbox-energized .checkbox-icon:before {
  6672. border-color: #ffc900; }
  6673. .checkbox-energized input:checked:before,
  6674. .checkbox-energized input:checked + .checkbox-icon:before {
  6675. background: #ffc900;
  6676. border-color: #ffc900; }
  6677. .checkbox-royal input:before,
  6678. .checkbox-royal .checkbox-icon:before {
  6679. border-color: #886aea; }
  6680. .checkbox-royal input:checked:before,
  6681. .checkbox-royal input:checked + .checkbox-icon:before {
  6682. background: #886aea;
  6683. border-color: #886aea; }
  6684. .checkbox-dark input:before,
  6685. .checkbox-dark .checkbox-icon:before {
  6686. border-color: #444; }
  6687. .checkbox-dark input:checked:before,
  6688. .checkbox-dark input:checked + .checkbox-icon:before {
  6689. background: #444;
  6690. border-color: #444; }
  6691. .checkbox input:disabled:before,
  6692. .checkbox input:disabled + .checkbox-icon:before {
  6693. border-color: #ddd; }
  6694. .checkbox input:disabled:checked:before,
  6695. .checkbox input:disabled:checked + .checkbox-icon:before {
  6696. background: #ddd; }
  6697. .checkbox.checkbox-input-hidden input {
  6698. display: none !important; }
  6699. .checkbox input,
  6700. .checkbox-icon {
  6701. position: relative;
  6702. width: 28px;
  6703. height: 28px;
  6704. display: block;
  6705. border: 0;
  6706. background: transparent;
  6707. cursor: pointer;
  6708. -webkit-appearance: none; }
  6709. .checkbox input:before,
  6710. .checkbox-icon:before {
  6711. display: table;
  6712. width: 100%;
  6713. height: 100%;
  6714. border-width: 1px;
  6715. border-style: solid;
  6716. border-radius: 28px;
  6717. background: #fff;
  6718. content: ' ';
  6719. -webkit-transition: background-color 20ms ease-in-out;
  6720. transition: background-color 20ms ease-in-out; }
  6721. .checkbox input:checked:before,
  6722. input:checked + .checkbox-icon:before {
  6723. border-width: 2px; }
  6724. .checkbox input:after,
  6725. .checkbox-icon:after {
  6726. -webkit-transition: opacity 0.05s ease-in-out;
  6727. transition: opacity 0.05s ease-in-out;
  6728. -webkit-transform: rotate(-45deg);
  6729. transform: rotate(-45deg);
  6730. position: absolute;
  6731. top: 33%;
  6732. left: 25%;
  6733. display: table;
  6734. width: 14px;
  6735. height: 6px;
  6736. border: 1px solid #fff;
  6737. border-top: 0;
  6738. border-right: 0;
  6739. content: ' ';
  6740. opacity: 0; }
  6741. .platform-android .checkbox-platform input:before,
  6742. .platform-android .checkbox-platform .checkbox-icon:before,
  6743. .checkbox-square input:before,
  6744. .checkbox-square .checkbox-icon:before {
  6745. border-radius: 2px;
  6746. width: 72%;
  6747. height: 72%;
  6748. margin-top: 14%;
  6749. margin-left: 14%;
  6750. border-width: 2px; }
  6751. .platform-android .checkbox-platform input:after,
  6752. .platform-android .checkbox-platform .checkbox-icon:after,
  6753. .checkbox-square input:after,
  6754. .checkbox-square .checkbox-icon:after {
  6755. border-width: 2px;
  6756. top: 19%;
  6757. left: 25%;
  6758. width: 13px;
  6759. height: 7px; }
  6760. .platform-android .item-checkbox-right .checkbox-square .checkbox-icon::after {
  6761. top: 31%; }
  6762. .grade-c .checkbox input:after,
  6763. .grade-c .checkbox-icon:after {
  6764. -webkit-transform: rotate(0);
  6765. transform: rotate(0);
  6766. top: 3px;
  6767. left: 4px;
  6768. border: none;
  6769. color: #fff;
  6770. content: '\2713';
  6771. font-weight: bold;
  6772. font-size: 20px; }
  6773. .checkbox input:checked:after,
  6774. input:checked + .checkbox-icon:after {
  6775. opacity: 1; }
  6776. .item-checkbox {
  6777. padding-left: 60px; }
  6778. .item-checkbox.active {
  6779. box-shadow: none; }
  6780. .item-checkbox .checkbox {
  6781. position: absolute;
  6782. top: 50%;
  6783. right: 8px;
  6784. left: 8px;
  6785. z-index: 3;
  6786. margin-top: -21px; }
  6787. .item-checkbox.item-checkbox-right {
  6788. padding-right: 60px;
  6789. padding-left: 16px; }
  6790. .item-checkbox-right .checkbox input,
  6791. .item-checkbox-right .checkbox-icon {
  6792. float: right; }
  6793. /**
  6794. * Toggle
  6795. * --------------------------------------------------
  6796. */
  6797. .item-toggle {
  6798. pointer-events: none; }
  6799. .toggle {
  6800. position: relative;
  6801. display: inline-block;
  6802. pointer-events: auto;
  6803. margin: -5px;
  6804. padding: 5px; }
  6805. .toggle input:checked + .track {
  6806. border-color: #4cd964;
  6807. background-color: #4cd964; }
  6808. .toggle.dragging .handle {
  6809. background-color: #f2f2f2 !important; }
  6810. .toggle.toggle-light input:checked + .track {
  6811. border-color: #ddd;
  6812. background-color: #ddd; }
  6813. .toggle.toggle-stable input:checked + .track {
  6814. border-color: #b2b2b2;
  6815. background-color: #b2b2b2; }
  6816. .toggle.toggle-positive input:checked + .track {
  6817. border-color: #387ef5;
  6818. background-color: #387ef5; }
  6819. .toggle.toggle-calm input:checked + .track {
  6820. border-color: #11c1f3;
  6821. background-color: #11c1f3; }
  6822. .toggle.toggle-assertive input:checked + .track {
  6823. border-color: #ef473a;
  6824. background-color: #ef473a; }
  6825. .toggle.toggle-balanced input:checked + .track {
  6826. border-color: #33cd5f;
  6827. background-color: #33cd5f; }
  6828. .toggle.toggle-energized input:checked + .track {
  6829. border-color: #ffc900;
  6830. background-color: #ffc900; }
  6831. .toggle.toggle-royal input:checked + .track {
  6832. border-color: #886aea;
  6833. background-color: #886aea; }
  6834. .toggle.toggle-dark input:checked + .track {
  6835. border-color: #444;
  6836. background-color: #444; }
  6837. .toggle input {
  6838. display: none; }
  6839. /* the track appearance when the toggle is "off" */
  6840. .toggle .track {
  6841. -webkit-transition-timing-function: ease-in-out;
  6842. transition-timing-function: ease-in-out;
  6843. -webkit-transition-duration: 0.3s;
  6844. transition-duration: 0.3s;
  6845. -webkit-transition-property: background-color, border;
  6846. transition-property: background-color, border;
  6847. display: inline-block;
  6848. box-sizing: border-box;
  6849. width: 51px;
  6850. height: 31px;
  6851. border: solid 2px #e6e6e6;
  6852. border-radius: 20px;
  6853. background-color: #fff;
  6854. content: ' ';
  6855. cursor: pointer;
  6856. pointer-events: none; }
  6857. /* Fix to avoid background color bleeding */
  6858. /* (occurred on (at least) Android 4.2, Asus MeMO Pad HD7 ME173X) */
  6859. .platform-android4_2 .toggle .track {
  6860. -webkit-background-clip: padding-box; }
  6861. /* the handle (circle) thats inside the toggle's track area */
  6862. /* also the handle's appearance when it is "off" */
  6863. .toggle .handle {
  6864. -webkit-transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  6865. transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  6866. -webkit-transition-property: background-color, transform;
  6867. transition-property: background-color, transform;
  6868. position: absolute;
  6869. display: block;
  6870. width: 27px;
  6871. height: 27px;
  6872. border-radius: 27px;
  6873. background-color: #fff;
  6874. top: 7px;
  6875. left: 7px;
  6876. box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.15); }
  6877. .toggle .handle:before {
  6878. position: absolute;
  6879. top: -4px;
  6880. left: -21.5px;
  6881. padding: 18.5px 34px;
  6882. content: " "; }
  6883. .toggle input:checked + .track .handle {
  6884. -webkit-transform: translate3d(20px, 0, 0);
  6885. transform: translate3d(20px, 0, 0);
  6886. background-color: #fff; }
  6887. .item-toggle.active {
  6888. box-shadow: none; }
  6889. .item-toggle,
  6890. .item-toggle.item-complex .item-content {
  6891. padding-right: 99px; }
  6892. .item-toggle.item-complex {
  6893. padding-right: 0; }
  6894. .item-toggle .toggle {
  6895. position: absolute;
  6896. top: 10px;
  6897. right: 16px;
  6898. z-index: 3; }
  6899. .toggle input:disabled + .track {
  6900. opacity: .6; }
  6901. .toggle-small .track {
  6902. border: 0;
  6903. width: 34px;
  6904. height: 15px;
  6905. background: #9e9e9e; }
  6906. .toggle-small input:checked + .track {
  6907. background: rgba(0, 150, 137, 0.5); }
  6908. .toggle-small .handle {
  6909. top: 2px;
  6910. left: 4px;
  6911. width: 21px;
  6912. height: 21px;
  6913. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); }
  6914. .toggle-small input:checked + .track .handle {
  6915. -webkit-transform: translate3d(16px, 0, 0);
  6916. transform: translate3d(16px, 0, 0);
  6917. background: #009689; }
  6918. .toggle-small.item-toggle .toggle {
  6919. top: 19px; }
  6920. .toggle-small .toggle-light input:checked + .track {
  6921. background-color: rgba(221, 221, 221, 0.5); }
  6922. .toggle-small .toggle-light input:checked + .track .handle {
  6923. background-color: #ddd; }
  6924. .toggle-small .toggle-stable input:checked + .track {
  6925. background-color: rgba(178, 178, 178, 0.5); }
  6926. .toggle-small .toggle-stable input:checked + .track .handle {
  6927. background-color: #b2b2b2; }
  6928. .toggle-small .toggle-positive input:checked + .track {
  6929. background-color: rgba(56, 126, 245, 0.5); }
  6930. .toggle-small .toggle-positive input:checked + .track .handle {
  6931. background-color: #387ef5; }
  6932. .toggle-small .toggle-calm input:checked + .track {
  6933. background-color: rgba(17, 193, 243, 0.5); }
  6934. .toggle-small .toggle-calm input:checked + .track .handle {
  6935. background-color: #11c1f3; }
  6936. .toggle-small .toggle-assertive input:checked + .track {
  6937. background-color: rgba(239, 71, 58, 0.5); }
  6938. .toggle-small .toggle-assertive input:checked + .track .handle {
  6939. background-color: #ef473a; }
  6940. .toggle-small .toggle-balanced input:checked + .track {
  6941. background-color: rgba(51, 205, 95, 0.5); }
  6942. .toggle-small .toggle-balanced input:checked + .track .handle {
  6943. background-color: #33cd5f; }
  6944. .toggle-small .toggle-energized input:checked + .track {
  6945. background-color: rgba(255, 201, 0, 0.5); }
  6946. .toggle-small .toggle-energized input:checked + .track .handle {
  6947. background-color: #ffc900; }
  6948. .toggle-small .toggle-royal input:checked + .track {
  6949. background-color: rgba(136, 106, 234, 0.5); }
  6950. .toggle-small .toggle-royal input:checked + .track .handle {
  6951. background-color: #886aea; }
  6952. .toggle-small .toggle-dark input:checked + .track {
  6953. background-color: rgba(68, 68, 68, 0.5); }
  6954. .toggle-small .toggle-dark input:checked + .track .handle {
  6955. background-color: #444; }
  6956. /**
  6957. * Radio Button Inputs
  6958. * --------------------------------------------------
  6959. */
  6960. .item-radio {
  6961. padding: 0; }
  6962. .item-radio:hover {
  6963. cursor: pointer; }
  6964. .item-radio .item-content {
  6965. /* give some room to the right for the checkmark icon */
  6966. padding-right: 64px; }
  6967. .item-radio .radio-icon {
  6968. /* checkmark icon will be hidden by default */
  6969. position: absolute;
  6970. top: 0;
  6971. right: 0;
  6972. z-index: 3;
  6973. visibility: hidden;
  6974. padding: 14px;
  6975. height: 100%;
  6976. font-size: 24px; }
  6977. .item-radio input {
  6978. /* hide any radio button inputs elements (the ugly circles) */
  6979. position: absolute;
  6980. left: -9999px; }
  6981. .item-radio input:checked + .radio-content .item-content {
  6982. /* style the item content when its checked */
  6983. background: #f7f7f7; }
  6984. .item-radio input:checked + .radio-content .radio-icon {
  6985. /* show the checkmark icon when its checked */
  6986. visibility: visible; }
  6987. /**
  6988. * Range
  6989. * --------------------------------------------------
  6990. */
  6991. .range input {
  6992. display: inline-block;
  6993. overflow: hidden;
  6994. margin-top: 5px;
  6995. margin-bottom: 5px;
  6996. padding-right: 2px;
  6997. padding-left: 1px;
  6998. width: auto;
  6999. height: 43px;
  7000. outline: none;
  7001. background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccc), color-stop(100%, #ccc));
  7002. background: linear-gradient(to right, #ccc 0%, #ccc 100%);
  7003. background-position: center;
  7004. background-size: 99% 2px;
  7005. background-repeat: no-repeat;
  7006. -webkit-appearance: none;
  7007. /*
  7008. &::-ms-track{
  7009. background: transparent;
  7010. border-color: transparent;
  7011. border-width: 11px 0 16px;
  7012. color:transparent;
  7013. margin-top:20px;
  7014. }
  7015. &::-ms-thumb {
  7016. width: $range-slider-width;
  7017. height: $range-slider-height;
  7018. border-radius: $range-slider-border-radius;
  7019. background-color: $toggle-handle-off-bg-color;
  7020. border-color:$toggle-handle-off-bg-color;
  7021. box-shadow: $range-slider-box-shadow;
  7022. margin-left:1px;
  7023. margin-right:1px;
  7024. outline:none;
  7025. }
  7026. &::-ms-fill-upper {
  7027. height: $range-track-height;
  7028. background:$range-default-track-bg;
  7029. }
  7030. */ }
  7031. .range input::-moz-focus-outer {
  7032. /* hide the focus outline in Firefox */
  7033. border: 0; }
  7034. .range input::-webkit-slider-thumb {
  7035. position: relative;
  7036. width: 28px;
  7037. height: 28px;
  7038. border-radius: 50%;
  7039. background-color: #fff;
  7040. box-shadow: 0 0 2px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2);
  7041. cursor: pointer;
  7042. -webkit-appearance: none;
  7043. border: 0; }
  7044. .range input::-webkit-slider-thumb:before {
  7045. /* what creates the colorful line on the left side of the slider */
  7046. position: absolute;
  7047. top: 13px;
  7048. left: -2001px;
  7049. width: 2000px;
  7050. height: 2px;
  7051. background: #444;
  7052. content: ' '; }
  7053. .range input::-webkit-slider-thumb:after {
  7054. /* create a larger (but hidden) hit area */
  7055. position: absolute;
  7056. top: -15px;
  7057. left: -15px;
  7058. padding: 30px;
  7059. content: ' '; }
  7060. .range input::-ms-fill-lower {
  7061. height: 2px;
  7062. background: #444; }
  7063. .range {
  7064. display: -webkit-box;
  7065. display: -webkit-flex;
  7066. display: -moz-box;
  7067. display: -moz-flex;
  7068. display: -ms-flexbox;
  7069. display: flex;
  7070. -webkit-box-align: center;
  7071. -ms-flex-align: center;
  7072. -webkit-align-items: center;
  7073. -moz-align-items: center;
  7074. align-items: center;
  7075. padding: 2px 11px; }
  7076. .range.range-light input::-webkit-slider-thumb:before {
  7077. background: #ddd; }
  7078. .range.range-light input::-ms-fill-lower {
  7079. background: #ddd; }
  7080. .range.range-stable input::-webkit-slider-thumb:before {
  7081. background: #b2b2b2; }
  7082. .range.range-stable input::-ms-fill-lower {
  7083. background: #b2b2b2; }
  7084. .range.range-positive input::-webkit-slider-thumb:before {
  7085. background: #387ef5; }
  7086. .range.range-positive input::-ms-fill-lower {
  7087. background: #387ef5; }
  7088. .range.range-calm input::-webkit-slider-thumb:before {
  7089. background: #11c1f3; }
  7090. .range.range-calm input::-ms-fill-lower {
  7091. background: #11c1f3; }
  7092. .range.range-balanced input::-webkit-slider-thumb:before {
  7093. background: #33cd5f; }
  7094. .range.range-balanced input::-ms-fill-lower {
  7095. background: #33cd5f; }
  7096. .range.range-assertive input::-webkit-slider-thumb:before {
  7097. background: #ef473a; }
  7098. .range.range-assertive input::-ms-fill-lower {
  7099. background: #ef473a; }
  7100. .range.range-energized input::-webkit-slider-thumb:before {
  7101. background: #ffc900; }
  7102. .range.range-energized input::-ms-fill-lower {
  7103. background: #ffc900; }
  7104. .range.range-royal input::-webkit-slider-thumb:before {
  7105. background: #886aea; }
  7106. .range.range-royal input::-ms-fill-lower {
  7107. background: #886aea; }
  7108. .range.range-dark input::-webkit-slider-thumb:before {
  7109. background: #444; }
  7110. .range.range-dark input::-ms-fill-lower {
  7111. background: #444; }
  7112. .range .icon {
  7113. -webkit-box-flex: 0;
  7114. -webkit-flex: 0;
  7115. -moz-box-flex: 0;
  7116. -moz-flex: 0;
  7117. -ms-flex: 0;
  7118. flex: 0;
  7119. display: block;
  7120. min-width: 24px;
  7121. text-align: center;
  7122. font-size: 24px; }
  7123. .range input {
  7124. -webkit-box-flex: 1;
  7125. -webkit-flex: 1;
  7126. -moz-box-flex: 1;
  7127. -moz-flex: 1;
  7128. -ms-flex: 1;
  7129. flex: 1;
  7130. display: block;
  7131. margin-right: 10px;
  7132. margin-left: 10px; }
  7133. .range-label {
  7134. -webkit-box-flex: 0;
  7135. -webkit-flex: 0 0 auto;
  7136. -moz-box-flex: 0;
  7137. -moz-flex: 0 0 auto;
  7138. -ms-flex: 0 0 auto;
  7139. flex: 0 0 auto;
  7140. display: block;
  7141. white-space: nowrap; }
  7142. .range-label:first-child {
  7143. padding-left: 5px; }
  7144. .range input + .range-label {
  7145. padding-right: 5px;
  7146. padding-left: 0; }
  7147. .platform-windowsphone .range input {
  7148. height: auto; }
  7149. /**
  7150. * Select
  7151. * --------------------------------------------------
  7152. */
  7153. .item-select {
  7154. position: relative; }
  7155. .item-select select {
  7156. -webkit-appearance: none;
  7157. -moz-appearance: none;
  7158. appearance: none;
  7159. position: absolute;
  7160. top: 0;
  7161. bottom: 0;
  7162. right: 0;
  7163. padding: 0 48px 0 16px;
  7164. max-width: 65%;
  7165. border: none;
  7166. background: #fff;
  7167. color: #333;
  7168. text-indent: .01px;
  7169. text-overflow: '';
  7170. white-space: nowrap;
  7171. font-size: 14px;
  7172. cursor: pointer;
  7173. direction: rtl; }
  7174. .item-select select::-ms-expand {
  7175. display: none; }
  7176. .item-select option {
  7177. direction: ltr; }
  7178. .item-select:after {
  7179. position: absolute;
  7180. top: 50%;
  7181. right: 16px;
  7182. margin-top: -3px;
  7183. width: 0;
  7184. height: 0;
  7185. border-top: 5px solid;
  7186. border-right: 5px solid transparent;
  7187. border-left: 5px solid transparent;
  7188. color: #999;
  7189. content: "";
  7190. pointer-events: none; }
  7191. .item-select.item-light select {
  7192. background: #fff;
  7193. color: #444; }
  7194. .item-select.item-stable select {
  7195. background: #f8f8f8;
  7196. color: #444; }
  7197. .item-select.item-stable:after, .item-select.item-stable .input-label {
  7198. color: #666666; }
  7199. .item-select.item-positive select {
  7200. background: #387ef5;
  7201. color: #fff; }
  7202. .item-select.item-positive:after, .item-select.item-positive .input-label {
  7203. color: #fff; }
  7204. .item-select.item-calm select {
  7205. background: #11c1f3;
  7206. color: #fff; }
  7207. .item-select.item-calm:after, .item-select.item-calm .input-label {
  7208. color: #fff; }
  7209. .item-select.item-assertive select {
  7210. background: #ef473a;
  7211. color: #fff; }
  7212. .item-select.item-assertive:after, .item-select.item-assertive .input-label {
  7213. color: #fff; }
  7214. .item-select.item-balanced select {
  7215. background: #33cd5f;
  7216. color: #fff; }
  7217. .item-select.item-balanced:after, .item-select.item-balanced .input-label {
  7218. color: #fff; }
  7219. .item-select.item-energized select {
  7220. background: #ffc900;
  7221. color: #fff; }
  7222. .item-select.item-energized:after, .item-select.item-energized .input-label {
  7223. color: #fff; }
  7224. .item-select.item-royal select {
  7225. background: #886aea;
  7226. color: #fff; }
  7227. .item-select.item-royal:after, .item-select.item-royal .input-label {
  7228. color: #fff; }
  7229. .item-select.item-dark select {
  7230. background: #444;
  7231. color: #fff; }
  7232. .item-select.item-dark:after, .item-select.item-dark .input-label {
  7233. color: #fff; }
  7234. select[multiple], select[size] {
  7235. height: auto; }
  7236. /**
  7237. * Progress
  7238. * --------------------------------------------------
  7239. */
  7240. progress {
  7241. display: block;
  7242. margin: 15px auto;
  7243. width: 100%; }
  7244. /**
  7245. * Buttons
  7246. * --------------------------------------------------
  7247. */
  7248. .button {
  7249. border-color: transparent;
  7250. background-color: #f8f8f8;
  7251. color: #444;
  7252. position: relative;
  7253. display: inline-block;
  7254. margin: 0;
  7255. padding: 0 12px;
  7256. min-width: 52px;
  7257. min-height: 47px;
  7258. border-width: 1px;
  7259. border-style: solid;
  7260. border-radius: 4px;
  7261. vertical-align: top;
  7262. text-align: center;
  7263. text-overflow: ellipsis;
  7264. font-size: 16px;
  7265. line-height: 42px;
  7266. cursor: pointer; }
  7267. .button:hover {
  7268. color: #444;
  7269. text-decoration: none; }
  7270. .button.active, .button.activated {
  7271. border-color: #a2a2a2;
  7272. background-color: #e5e5e5; }
  7273. .button:after {
  7274. position: absolute;
  7275. top: -6px;
  7276. right: -6px;
  7277. bottom: -6px;
  7278. left: -6px;
  7279. content: ' '; }
  7280. .button .icon {
  7281. vertical-align: top;
  7282. pointer-events: none; }
  7283. .button .icon:before, .button.icon:before, .button.icon-left:before, .button.icon-right:before {
  7284. display: inline-block;
  7285. padding: 0 0 1px 0;
  7286. vertical-align: inherit;
  7287. font-size: 24px;
  7288. line-height: 41px;
  7289. pointer-events: none; }
  7290. .button.icon-left:before {
  7291. float: left;
  7292. padding-right: .2em;
  7293. padding-left: 0; }
  7294. .button.icon-right:before {
  7295. float: right;
  7296. padding-right: 0;
  7297. padding-left: .2em; }
  7298. .button.button-block, .button.button-full {
  7299. margin-top: 10px;
  7300. margin-bottom: 10px; }
  7301. .button.button-light {
  7302. border-color: transparent;
  7303. background-color: #fff;
  7304. color: #444; }
  7305. .button.button-light:hover {
  7306. color: #444;
  7307. text-decoration: none; }
  7308. .button.button-light.active, .button.button-light.activated {
  7309. border-color: #a2a2a2;
  7310. background-color: #fafafa; }
  7311. .button.button-light.button-clear {
  7312. border-color: transparent;
  7313. background: none;
  7314. box-shadow: none;
  7315. color: #ddd; }
  7316. .button.button-light.button-icon {
  7317. border-color: transparent;
  7318. background: none; }
  7319. .button.button-light.button-outline {
  7320. border-color: #ddd;
  7321. background: transparent;
  7322. color: #ddd; }
  7323. .button.button-light.button-outline.active, .button.button-light.button-outline.activated {
  7324. background-color: #ddd;
  7325. box-shadow: none;
  7326. color: #fff; }
  7327. .button.button-stable {
  7328. border-color: transparent;
  7329. background-color: #f8f8f8;
  7330. color: #444; }
  7331. .button.button-stable:hover {
  7332. color: #444;
  7333. text-decoration: none; }
  7334. .button.button-stable.active, .button.button-stable.activated {
  7335. border-color: #a2a2a2;
  7336. background-color: #e5e5e5; }
  7337. .button.button-stable.button-clear {
  7338. border-color: transparent;
  7339. background: none;
  7340. box-shadow: none;
  7341. color: #b2b2b2; }
  7342. .button.button-stable.button-icon {
  7343. border-color: transparent;
  7344. background: none; }
  7345. .button.button-stable.button-outline {
  7346. border-color: #b2b2b2;
  7347. background: transparent;
  7348. color: #b2b2b2; }
  7349. .button.button-stable.button-outline.active, .button.button-stable.button-outline.activated {
  7350. background-color: #b2b2b2;
  7351. box-shadow: none;
  7352. color: #fff; }
  7353. .button.button-positive {
  7354. border-color: transparent;
  7355. background-color: #387ef5;
  7356. color: #fff; }
  7357. .button.button-positive:hover {
  7358. color: #fff;
  7359. text-decoration: none; }
  7360. .button.button-positive.active, .button.button-positive.activated {
  7361. border-color: #a2a2a2;
  7362. background-color: #0c60ee; }
  7363. .button.button-positive.button-clear {
  7364. border-color: transparent;
  7365. background: none;
  7366. box-shadow: none;
  7367. color: #387ef5; }
  7368. .button.button-positive.button-icon {
  7369. border-color: transparent;
  7370. background: none; }
  7371. .button.button-positive.button-outline {
  7372. border-color: #387ef5;
  7373. background: transparent;
  7374. color: #387ef5; }
  7375. .button.button-positive.button-outline.active, .button.button-positive.button-outline.activated {
  7376. background-color: #387ef5;
  7377. box-shadow: none;
  7378. color: #fff; }
  7379. .button.button-calm {
  7380. border-color: transparent;
  7381. background-color: #11c1f3;
  7382. color: #fff; }
  7383. .button.button-calm:hover {
  7384. color: #fff;
  7385. text-decoration: none; }
  7386. .button.button-calm.active, .button.button-calm.activated {
  7387. border-color: #a2a2a2;
  7388. background-color: #0a9dc7; }
  7389. .button.button-calm.button-clear {
  7390. border-color: transparent;
  7391. background: none;
  7392. box-shadow: none;
  7393. color: #11c1f3; }
  7394. .button.button-calm.button-icon {
  7395. border-color: transparent;
  7396. background: none; }
  7397. .button.button-calm.button-outline {
  7398. border-color: #11c1f3;
  7399. background: transparent;
  7400. color: #11c1f3; }
  7401. .button.button-calm.button-outline.active, .button.button-calm.button-outline.activated {
  7402. background-color: #11c1f3;
  7403. box-shadow: none;
  7404. color: #fff; }
  7405. .button.button-assertive {
  7406. border-color: transparent;
  7407. background-color: #ef473a;
  7408. color: #fff; }
  7409. .button.button-assertive:hover {
  7410. color: #fff;
  7411. text-decoration: none; }
  7412. .button.button-assertive.active, .button.button-assertive.activated {
  7413. border-color: #a2a2a2;
  7414. background-color: #e42112; }
  7415. .button.button-assertive.button-clear {
  7416. border-color: transparent;
  7417. background: none;
  7418. box-shadow: none;
  7419. color: #ef473a; }
  7420. .button.button-assertive.button-icon {
  7421. border-color: transparent;
  7422. background: none; }
  7423. .button.button-assertive.button-outline {
  7424. border-color: #ef473a;
  7425. background: transparent;
  7426. color: #ef473a; }
  7427. .button.button-assertive.button-outline.active, .button.button-assertive.button-outline.activated {
  7428. background-color: #ef473a;
  7429. box-shadow: none;
  7430. color: #fff; }
  7431. .button.button-balanced {
  7432. border-color: transparent;
  7433. background-color: #33cd5f;
  7434. color: #fff; }
  7435. .button.button-balanced:hover {
  7436. color: #fff;
  7437. text-decoration: none; }
  7438. .button.button-balanced.active, .button.button-balanced.activated {
  7439. border-color: #a2a2a2;
  7440. background-color: #28a54c; }
  7441. .button.button-balanced.button-clear {
  7442. border-color: transparent;
  7443. background: none;
  7444. box-shadow: none;
  7445. color: #33cd5f; }
  7446. .button.button-balanced.button-icon {
  7447. border-color: transparent;
  7448. background: none; }
  7449. .button.button-balanced.button-outline {
  7450. border-color: #33cd5f;
  7451. background: transparent;
  7452. color: #33cd5f; }
  7453. .button.button-balanced.button-outline.active, .button.button-balanced.button-outline.activated {
  7454. background-color: #33cd5f;
  7455. box-shadow: none;
  7456. color: #fff; }
  7457. .button.button-energized {
  7458. border-color: transparent;
  7459. background-color: #ffc900;
  7460. color: #fff; }
  7461. .button.button-energized:hover {
  7462. color: #fff;
  7463. text-decoration: none; }
  7464. .button.button-energized.active, .button.button-energized.activated {
  7465. border-color: #a2a2a2;
  7466. background-color: #e6b500; }
  7467. .button.button-energized.button-clear {
  7468. border-color: transparent;
  7469. background: none;
  7470. box-shadow: none;
  7471. color: #ffc900; }
  7472. .button.button-energized.button-icon {
  7473. border-color: transparent;
  7474. background: none; }
  7475. .button.button-energized.button-outline {
  7476. border-color: #ffc900;
  7477. background: transparent;
  7478. color: #ffc900; }
  7479. .button.button-energized.button-outline.active, .button.button-energized.button-outline.activated {
  7480. background-color: #ffc900;
  7481. box-shadow: none;
  7482. color: #fff; }
  7483. .button.button-royal {
  7484. border-color: transparent;
  7485. background-color: #886aea;
  7486. color: #fff; }
  7487. .button.button-royal:hover {
  7488. color: #fff;
  7489. text-decoration: none; }
  7490. .button.button-royal.active, .button.button-royal.activated {
  7491. border-color: #a2a2a2;
  7492. background-color: #6b46e5; }
  7493. .button.button-royal.button-clear {
  7494. border-color: transparent;
  7495. background: none;
  7496. box-shadow: none;
  7497. color: #886aea; }
  7498. .button.button-royal.button-icon {
  7499. border-color: transparent;
  7500. background: none; }
  7501. .button.button-royal.button-outline {
  7502. border-color: #886aea;
  7503. background: transparent;
  7504. color: #886aea; }
  7505. .button.button-royal.button-outline.active, .button.button-royal.button-outline.activated {
  7506. background-color: #886aea;
  7507. box-shadow: none;
  7508. color: #fff; }
  7509. .button.button-dark {
  7510. border-color: transparent;
  7511. background-color: #444;
  7512. color: #fff; }
  7513. .button.button-dark:hover {
  7514. color: #fff;
  7515. text-decoration: none; }
  7516. .button.button-dark.active, .button.button-dark.activated {
  7517. border-color: #a2a2a2;
  7518. background-color: #262626; }
  7519. .button.button-dark.button-clear {
  7520. border-color: transparent;
  7521. background: none;
  7522. box-shadow: none;
  7523. color: #444; }
  7524. .button.button-dark.button-icon {
  7525. border-color: transparent;
  7526. background: none; }
  7527. .button.button-dark.button-outline {
  7528. border-color: #444;
  7529. background: transparent;
  7530. color: #444; }
  7531. .button.button-dark.button-outline.active, .button.button-dark.button-outline.activated {
  7532. background-color: #444;
  7533. box-shadow: none;
  7534. color: #fff; }
  7535. .button-small {
  7536. padding: 2px 4px 1px;
  7537. min-width: 28px;
  7538. min-height: 30px;
  7539. font-size: 12px;
  7540. line-height: 26px; }
  7541. .button-small .icon:before, .button-small.icon:before, .button-small.icon-left:before, .button-small.icon-right:before {
  7542. font-size: 16px;
  7543. line-height: 19px;
  7544. margin-top: 3px; }
  7545. .button-large {
  7546. padding: 0 16px;
  7547. min-width: 68px;
  7548. min-height: 59px;
  7549. font-size: 20px;
  7550. line-height: 53px; }
  7551. .button-large .icon:before, .button-large.icon:before, .button-large.icon-left:before, .button-large.icon-right:before {
  7552. padding-bottom: 2px;
  7553. font-size: 32px;
  7554. line-height: 51px; }
  7555. .button-icon {
  7556. -webkit-transition: opacity 0.1s;
  7557. transition: opacity 0.1s;
  7558. padding: 0 6px;
  7559. min-width: initial;
  7560. border-color: transparent;
  7561. background: none; }
  7562. .button-icon.button.active, .button-icon.button.activated {
  7563. border-color: transparent;
  7564. background: none;
  7565. box-shadow: none;
  7566. opacity: 0.3; }
  7567. .button-icon .icon:before, .button-icon.icon:before {
  7568. font-size: 32px; }
  7569. .button-clear {
  7570. -webkit-transition: opacity 0.1s;
  7571. transition: opacity 0.1s;
  7572. padding: 0 6px;
  7573. max-height: 42px;
  7574. border-color: transparent;
  7575. background: none;
  7576. box-shadow: none; }
  7577. .button-clear.button-clear {
  7578. border-color: transparent;
  7579. background: none;
  7580. box-shadow: none;
  7581. color: transparent; }
  7582. .button-clear.button-icon {
  7583. border-color: transparent;
  7584. background: none; }
  7585. .button-clear.active, .button-clear.activated {
  7586. opacity: 0.3; }
  7587. .button-outline {
  7588. -webkit-transition: opacity 0.1s;
  7589. transition: opacity 0.1s;
  7590. background: none;
  7591. box-shadow: none; }
  7592. .button-outline.button-outline {
  7593. border-color: transparent;
  7594. background: transparent;
  7595. color: transparent; }
  7596. .button-outline.button-outline.active, .button-outline.button-outline.activated {
  7597. background-color: transparent;
  7598. box-shadow: none;
  7599. color: #fff; }
  7600. .padding > .button.button-block:first-child {
  7601. margin-top: 0; }
  7602. .button-block {
  7603. display: block;
  7604. clear: both; }
  7605. .button-block:after {
  7606. clear: both; }
  7607. .button-full,
  7608. .button-full > .button {
  7609. display: block;
  7610. margin-right: 0;
  7611. margin-left: 0;
  7612. border-right-width: 0;
  7613. border-left-width: 0;
  7614. border-radius: 0; }
  7615. button.button-block,
  7616. button.button-full,
  7617. .button-full > button.button,
  7618. input.button.button-block {
  7619. width: 100%; }
  7620. a.button {
  7621. text-decoration: none; }
  7622. a.button .icon:before, a.button.icon:before, a.button.icon-left:before, a.button.icon-right:before {
  7623. margin-top: 2px; }
  7624. .button.disabled,
  7625. .button[disabled] {
  7626. opacity: .4;
  7627. cursor: default !important;
  7628. pointer-events: none; }
  7629. /**
  7630. * Button Bar
  7631. * --------------------------------------------------
  7632. */
  7633. .button-bar {
  7634. display: -webkit-box;
  7635. display: -webkit-flex;
  7636. display: -moz-box;
  7637. display: -moz-flex;
  7638. display: -ms-flexbox;
  7639. display: flex;
  7640. -webkit-box-flex: 1;
  7641. -webkit-flex: 1;
  7642. -moz-box-flex: 1;
  7643. -moz-flex: 1;
  7644. -ms-flex: 1;
  7645. flex: 1;
  7646. width: 100%; }
  7647. .button-bar.button-bar-inline {
  7648. display: block;
  7649. width: auto;
  7650. *zoom: 1; }
  7651. .button-bar.button-bar-inline:before, .button-bar.button-bar-inline:after {
  7652. display: table;
  7653. content: "";
  7654. line-height: 0; }
  7655. .button-bar.button-bar-inline:after {
  7656. clear: both; }
  7657. .button-bar.button-bar-inline > .button {
  7658. width: auto;
  7659. display: inline-block;
  7660. float: left; }
  7661. .button-bar.bar-light > .button {
  7662. border-color: #ddd; }
  7663. .button-bar.bar-stable > .button {
  7664. border-color: #b2b2b2; }
  7665. .button-bar.bar-positive > .button {
  7666. border-color: #0c60ee; }
  7667. .button-bar.bar-calm > .button {
  7668. border-color: #0a9dc7; }
  7669. .button-bar.bar-assertive > .button {
  7670. border-color: #e42112; }
  7671. .button-bar.bar-balanced > .button {
  7672. border-color: #28a54c; }
  7673. .button-bar.bar-energized > .button {
  7674. border-color: #e6b500; }
  7675. .button-bar.bar-royal > .button {
  7676. border-color: #6b46e5; }
  7677. .button-bar.bar-dark > .button {
  7678. border-color: #111; }
  7679. .button-bar > .button {
  7680. -webkit-box-flex: 1;
  7681. -webkit-flex: 1;
  7682. -moz-box-flex: 1;
  7683. -moz-flex: 1;
  7684. -ms-flex: 1;
  7685. flex: 1;
  7686. display: block;
  7687. overflow: hidden;
  7688. padding: 0 16px;
  7689. width: 0;
  7690. border-width: 1px 0px 1px 1px;
  7691. border-radius: 0;
  7692. text-align: center;
  7693. text-overflow: ellipsis;
  7694. white-space: nowrap; }
  7695. .button-bar > .button:before,
  7696. .button-bar > .button .icon:before {
  7697. line-height: 44px; }
  7698. .button-bar > .button:first-child {
  7699. border-radius: 4px 0px 0px 4px; }
  7700. .button-bar > .button:last-child {
  7701. border-right-width: 1px;
  7702. border-radius: 0px 4px 4px 0px; }
  7703. .button-bar > .button:only-child {
  7704. border-radius: 4px; }
  7705. .button-bar > .button-small:before,
  7706. .button-bar > .button-small .icon:before {
  7707. line-height: 28px; }
  7708. /**
  7709. * Grid
  7710. * --------------------------------------------------
  7711. * Using flexbox for the grid, inspired by Philip Walton:
  7712. * http://philipwalton.github.io/solved-by-flexbox/demos/grids/
  7713. * By default each .col within a .row will evenly take up
  7714. * available width, and the height of each .col with take
  7715. * up the height of the tallest .col in the same .row.
  7716. */
  7717. .row {
  7718. display: -webkit-box;
  7719. display: -webkit-flex;
  7720. display: -moz-box;
  7721. display: -moz-flex;
  7722. display: -ms-flexbox;
  7723. display: flex;
  7724. padding: 5px;
  7725. width: 100%; }
  7726. .row-wrap {
  7727. -webkit-flex-wrap: wrap;
  7728. -moz-flex-wrap: wrap;
  7729. -ms-flex-wrap: wrap;
  7730. flex-wrap: wrap; }
  7731. .row-no-padding {
  7732. padding: 0; }
  7733. .row-no-padding > .col {
  7734. padding: 0; }
  7735. .row + .row {
  7736. margin-top: -5px;
  7737. padding-top: 0; }
  7738. .col {
  7739. -webkit-box-flex: 1;
  7740. -webkit-flex: 1;
  7741. -moz-box-flex: 1;
  7742. -moz-flex: 1;
  7743. -ms-flex: 1;
  7744. flex: 1;
  7745. display: block;
  7746. padding: 5px;
  7747. width: 100%; }
  7748. /* Vertically Align Columns */
  7749. /* .row-* vertically aligns every .col in the .row */
  7750. .row-top {
  7751. -webkit-box-align: start;
  7752. -ms-flex-align: start;
  7753. -webkit-align-items: flex-start;
  7754. -moz-align-items: flex-start;
  7755. align-items: flex-start; }
  7756. .row-bottom {
  7757. -webkit-box-align: end;
  7758. -ms-flex-align: end;
  7759. -webkit-align-items: flex-end;
  7760. -moz-align-items: flex-end;
  7761. align-items: flex-end; }
  7762. .row-center {
  7763. -webkit-box-align: center;
  7764. -ms-flex-align: center;
  7765. -webkit-align-items: center;
  7766. -moz-align-items: center;
  7767. align-items: center; }
  7768. .row-stretch {
  7769. -webkit-box-align: stretch;
  7770. -ms-flex-align: stretch;
  7771. -webkit-align-items: stretch;
  7772. -moz-align-items: stretch;
  7773. align-items: stretch; }
  7774. .row-baseline {
  7775. -webkit-box-align: baseline;
  7776. -ms-flex-align: baseline;
  7777. -webkit-align-items: baseline;
  7778. -moz-align-items: baseline;
  7779. align-items: baseline; }
  7780. /* .col-* vertically aligns an individual .col */
  7781. .col-top {
  7782. -webkit-align-self: flex-start;
  7783. -moz-align-self: flex-start;
  7784. -ms-flex-item-align: start;
  7785. align-self: flex-start; }
  7786. .col-bottom {
  7787. -webkit-align-self: flex-end;
  7788. -moz-align-self: flex-end;
  7789. -ms-flex-item-align: end;
  7790. align-self: flex-end; }
  7791. .col-center {
  7792. -webkit-align-self: center;
  7793. -moz-align-self: center;
  7794. -ms-flex-item-align: center;
  7795. align-self: center; }
  7796. /* Column Offsets */
  7797. .col-offset-10 {
  7798. margin-left: 10%; }
  7799. .col-offset-20 {
  7800. margin-left: 20%; }
  7801. .col-offset-25 {
  7802. margin-left: 25%; }
  7803. .col-offset-33, .col-offset-34 {
  7804. margin-left: 33.3333%; }
  7805. .col-offset-50 {
  7806. margin-left: 50%; }
  7807. .col-offset-66, .col-offset-67 {
  7808. margin-left: 66.6666%; }
  7809. .col-offset-75 {
  7810. margin-left: 75%; }
  7811. .col-offset-80 {
  7812. margin-left: 80%; }
  7813. .col-offset-90 {
  7814. margin-left: 90%; }
  7815. /* Explicit Column Percent Sizes */
  7816. /* By default each grid column will evenly distribute */
  7817. /* across the grid. However, you can specify individual */
  7818. /* columns to take up a certain size of the available area */
  7819. .col-10 {
  7820. -webkit-box-flex: 0;
  7821. -webkit-flex: 0 0 10%;
  7822. -moz-box-flex: 0;
  7823. -moz-flex: 0 0 10%;
  7824. -ms-flex: 0 0 10%;
  7825. flex: 0 0 10%;
  7826. max-width: 10%; }
  7827. .col-20 {
  7828. -webkit-box-flex: 0;
  7829. -webkit-flex: 0 0 20%;
  7830. -moz-box-flex: 0;
  7831. -moz-flex: 0 0 20%;
  7832. -ms-flex: 0 0 20%;
  7833. flex: 0 0 20%;
  7834. max-width: 20%; }
  7835. .col-25 {
  7836. -webkit-box-flex: 0;
  7837. -webkit-flex: 0 0 25%;
  7838. -moz-box-flex: 0;
  7839. -moz-flex: 0 0 25%;
  7840. -ms-flex: 0 0 25%;
  7841. flex: 0 0 25%;
  7842. max-width: 25%; }
  7843. .col-33, .col-34 {
  7844. -webkit-box-flex: 0;
  7845. -webkit-flex: 0 0 33.3333%;
  7846. -moz-box-flex: 0;
  7847. -moz-flex: 0 0 33.3333%;
  7848. -ms-flex: 0 0 33.3333%;
  7849. flex: 0 0 33.3333%;
  7850. max-width: 33.3333%; }
  7851. .col-40 {
  7852. -webkit-box-flex: 0;
  7853. -webkit-flex: 0 0 40%;
  7854. -moz-box-flex: 0;
  7855. -moz-flex: 0 0 40%;
  7856. -ms-flex: 0 0 40%;
  7857. flex: 0 0 40%;
  7858. max-width: 40%; }
  7859. .col-50 {
  7860. -webkit-box-flex: 0;
  7861. -webkit-flex: 0 0 50%;
  7862. -moz-box-flex: 0;
  7863. -moz-flex: 0 0 50%;
  7864. -ms-flex: 0 0 50%;
  7865. flex: 0 0 50%;
  7866. max-width: 50%; }
  7867. .col-60 {
  7868. -webkit-box-flex: 0;
  7869. -webkit-flex: 0 0 60%;
  7870. -moz-box-flex: 0;
  7871. -moz-flex: 0 0 60%;
  7872. -ms-flex: 0 0 60%;
  7873. flex: 0 0 60%;
  7874. max-width: 60%; }
  7875. .col-66, .col-67 {
  7876. -webkit-box-flex: 0;
  7877. -webkit-flex: 0 0 66.6666%;
  7878. -moz-box-flex: 0;
  7879. -moz-flex: 0 0 66.6666%;
  7880. -ms-flex: 0 0 66.6666%;
  7881. flex: 0 0 66.6666%;
  7882. max-width: 66.6666%; }
  7883. .col-75 {
  7884. -webkit-box-flex: 0;
  7885. -webkit-flex: 0 0 75%;
  7886. -moz-box-flex: 0;
  7887. -moz-flex: 0 0 75%;
  7888. -ms-flex: 0 0 75%;
  7889. flex: 0 0 75%;
  7890. max-width: 75%; }
  7891. .col-80 {
  7892. -webkit-box-flex: 0;
  7893. -webkit-flex: 0 0 80%;
  7894. -moz-box-flex: 0;
  7895. -moz-flex: 0 0 80%;
  7896. -ms-flex: 0 0 80%;
  7897. flex: 0 0 80%;
  7898. max-width: 80%; }
  7899. .col-90 {
  7900. -webkit-box-flex: 0;
  7901. -webkit-flex: 0 0 90%;
  7902. -moz-box-flex: 0;
  7903. -moz-flex: 0 0 90%;
  7904. -ms-flex: 0 0 90%;
  7905. flex: 0 0 90%;
  7906. max-width: 90%; }
  7907. /* Responsive Grid Classes */
  7908. /* Adding a class of responsive-X to a row */
  7909. /* will trigger the flex-direction to */
  7910. /* change to column and add some margin */
  7911. /* to any columns in the row for clearity */
  7912. @media (max-width: 567px) {
  7913. .responsive-sm {
  7914. -webkit-box-direction: normal;
  7915. -moz-box-direction: normal;
  7916. -webkit-box-orient: vertical;
  7917. -moz-box-orient: vertical;
  7918. -webkit-flex-direction: column;
  7919. -ms-flex-direction: column;
  7920. flex-direction: column; }
  7921. .responsive-sm .col, .responsive-sm .col-10, .responsive-sm .col-20, .responsive-sm .col-25, .responsive-sm .col-33, .responsive-sm .col-34, .responsive-sm .col-50, .responsive-sm .col-66, .responsive-sm .col-67, .responsive-sm .col-75, .responsive-sm .col-80, .responsive-sm .col-90 {
  7922. -webkit-box-flex: 1;
  7923. -webkit-flex: 1;
  7924. -moz-box-flex: 1;
  7925. -moz-flex: 1;
  7926. -ms-flex: 1;
  7927. flex: 1;
  7928. margin-bottom: 15px;
  7929. margin-left: 0;
  7930. max-width: 100%;
  7931. width: 100%; } }
  7932. @media (max-width: 767px) {
  7933. .responsive-md {
  7934. -webkit-box-direction: normal;
  7935. -moz-box-direction: normal;
  7936. -webkit-box-orient: vertical;
  7937. -moz-box-orient: vertical;
  7938. -webkit-flex-direction: column;
  7939. -ms-flex-direction: column;
  7940. flex-direction: column; }
  7941. .responsive-md .col, .responsive-md .col-10, .responsive-md .col-20, .responsive-md .col-25, .responsive-md .col-33, .responsive-md .col-34, .responsive-md .col-50, .responsive-md .col-66, .responsive-md .col-67, .responsive-md .col-75, .responsive-md .col-80, .responsive-md .col-90 {
  7942. -webkit-box-flex: 1;
  7943. -webkit-flex: 1;
  7944. -moz-box-flex: 1;
  7945. -moz-flex: 1;
  7946. -ms-flex: 1;
  7947. flex: 1;
  7948. margin-bottom: 15px;
  7949. margin-left: 0;
  7950. max-width: 100%;
  7951. width: 100%; } }
  7952. @media (max-width: 1023px) {
  7953. .responsive-lg {
  7954. -webkit-box-direction: normal;
  7955. -moz-box-direction: normal;
  7956. -webkit-box-orient: vertical;
  7957. -moz-box-orient: vertical;
  7958. -webkit-flex-direction: column;
  7959. -ms-flex-direction: column;
  7960. flex-direction: column; }
  7961. .responsive-lg .col, .responsive-lg .col-10, .responsive-lg .col-20, .responsive-lg .col-25, .responsive-lg .col-33, .responsive-lg .col-34, .responsive-lg .col-50, .responsive-lg .col-66, .responsive-lg .col-67, .responsive-lg .col-75, .responsive-lg .col-80, .responsive-lg .col-90 {
  7962. -webkit-box-flex: 1;
  7963. -webkit-flex: 1;
  7964. -moz-box-flex: 1;
  7965. -moz-flex: 1;
  7966. -ms-flex: 1;
  7967. flex: 1;
  7968. margin-bottom: 15px;
  7969. margin-left: 0;
  7970. max-width: 100%;
  7971. width: 100%; } }
  7972. /**
  7973. * Utility Classes
  7974. * --------------------------------------------------
  7975. */
  7976. .hide {
  7977. display: none; }
  7978. .opacity-hide {
  7979. opacity: 0; }
  7980. .grade-b .opacity-hide,
  7981. .grade-c .opacity-hide {
  7982. opacity: 1;
  7983. display: none; }
  7984. .show {
  7985. display: block; }
  7986. .opacity-show {
  7987. opacity: 1; }
  7988. .invisible {
  7989. visibility: hidden; }
  7990. .keyboard-open .hide-on-keyboard-open {
  7991. display: none; }
  7992. .keyboard-open .tabs.hide-on-keyboard-open + .pane .has-tabs,
  7993. .keyboard-open .bar-footer.hide-on-keyboard-open + .pane .has-footer {
  7994. bottom: 0; }
  7995. .inline {
  7996. display: inline-block; }
  7997. .disable-pointer-events {
  7998. pointer-events: none; }
  7999. .enable-pointer-events {
  8000. pointer-events: auto; }
  8001. .disable-user-behavior {
  8002. -webkit-user-select: none;
  8003. -moz-user-select: none;
  8004. -ms-user-select: none;
  8005. user-select: none;
  8006. -webkit-touch-callout: none;
  8007. -webkit-tap-highlight-color: transparent;
  8008. -webkit-tap-highlight-color: transparent;
  8009. -webkit-user-drag: none;
  8010. -ms-touch-action: none;
  8011. -ms-content-zooming: none; }
  8012. .click-block {
  8013. position: absolute;
  8014. top: 0;
  8015. right: 0;
  8016. bottom: 0;
  8017. left: 0;
  8018. opacity: 0;
  8019. z-index: 99999;
  8020. -webkit-transform: translate3d(0, 0, 0);
  8021. transform: translate3d(0, 0, 0);
  8022. overflow: hidden; }
  8023. .click-block-hide {
  8024. -webkit-transform: translate3d(-9999px, 0, 0);
  8025. transform: translate3d(-9999px, 0, 0); }
  8026. .no-resize {
  8027. resize: none; }
  8028. .block {
  8029. display: block;
  8030. clear: both; }
  8031. .block:after {
  8032. display: block;
  8033. visibility: hidden;
  8034. clear: both;
  8035. height: 0;
  8036. content: "."; }
  8037. .full-image {
  8038. width: 100%; }
  8039. .clearfix {
  8040. *zoom: 1; }
  8041. .clearfix:before, .clearfix:after {
  8042. display: table;
  8043. content: "";
  8044. line-height: 0; }
  8045. .clearfix:after {
  8046. clear: both; }
  8047. /**
  8048. * Content Padding
  8049. * --------------------------------------------------
  8050. */
  8051. .padding {
  8052. padding: 10px; }
  8053. .padding-top,
  8054. .padding-vertical {
  8055. padding-top: 10px; }
  8056. .padding-right,
  8057. .padding-horizontal {
  8058. padding-right: 10px; }
  8059. .padding-bottom,
  8060. .padding-vertical {
  8061. padding-bottom: 10px; }
  8062. .padding-left,
  8063. .padding-horizontal {
  8064. padding-left: 10px; }
  8065. /**
  8066. * Scrollable iFrames
  8067. * --------------------------------------------------
  8068. */
  8069. .iframe-wrapper {
  8070. position: fixed;
  8071. -webkit-overflow-scrolling: touch;
  8072. overflow: scroll; }
  8073. .iframe-wrapper iframe {
  8074. height: 100%;
  8075. width: 100%; }
  8076. /**
  8077. * Rounded
  8078. * --------------------------------------------------
  8079. */
  8080. .rounded {
  8081. border-radius: 4px; }
  8082. /**
  8083. * Utility Colors
  8084. * --------------------------------------------------
  8085. * Utility colors are added to help set a naming convention. You'll
  8086. * notice we purposely do not use words like "red" or "blue", but
  8087. * instead have colors which represent an emotion or generic theme.
  8088. */
  8089. .light, a.light {
  8090. color: #fff; }
  8091. .light-bg {
  8092. background-color: #fff; }
  8093. .light-border {
  8094. border-color: #ddd; }
  8095. .stable, a.stable {
  8096. color: #f8f8f8; }
  8097. .stable-bg {
  8098. background-color: #f8f8f8; }
  8099. .stable-border {
  8100. border-color: #b2b2b2; }
  8101. .positive, a.positive {
  8102. color: #387ef5; }
  8103. .positive-bg {
  8104. background-color: #387ef5; }
  8105. .positive-border {
  8106. border-color: #0c60ee; }
  8107. .calm, a.calm {
  8108. color: #11c1f3; }
  8109. .calm-bg {
  8110. background-color: #11c1f3; }
  8111. .calm-border {
  8112. border-color: #0a9dc7; }
  8113. .assertive, a.assertive {
  8114. color: #ef473a; }
  8115. .assertive-bg {
  8116. background-color: #ef473a; }
  8117. .assertive-border {
  8118. border-color: #e42112; }
  8119. .balanced, a.balanced {
  8120. color: #33cd5f; }
  8121. .balanced-bg {
  8122. background-color: #33cd5f; }
  8123. .balanced-border {
  8124. border-color: #28a54c; }
  8125. .energized, a.energized {
  8126. color: #ffc900; }
  8127. .energized-bg {
  8128. background-color: #ffc900; }
  8129. .energized-border {
  8130. border-color: #e6b500; }
  8131. .royal, a.royal {
  8132. color: #886aea; }
  8133. .royal-bg {
  8134. background-color: #886aea; }
  8135. .royal-border {
  8136. border-color: #6b46e5; }
  8137. .dark, a.dark {
  8138. color: #444; }
  8139. .dark-bg {
  8140. background-color: #444; }
  8141. .dark-border {
  8142. border-color: #111; }
  8143. [collection-repeat] {
  8144. /* Position is set by transforms */
  8145. left: 0 !important;
  8146. top: 0 !important;
  8147. position: absolute !important;
  8148. z-index: 1; }
  8149. .collection-repeat-container {
  8150. position: relative;
  8151. z-index: 1; }
  8152. .collection-repeat-after-container {
  8153. z-index: 0;
  8154. display: block;
  8155. /* when scrolling horizontally, make sure the after container doesn't take up 100% width */ }
  8156. .collection-repeat-after-container.horizontal {
  8157. display: inline-block; }
  8158. [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak,
  8159. .x-ng-cloak, .ng-hide:not(.ng-hide-animate) {
  8160. display: none !important; }
  8161. /**
  8162. * Platform
  8163. * --------------------------------------------------
  8164. * Platform specific tweaks
  8165. */
  8166. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader) {
  8167. height: 64px; }
  8168. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader).item-input-inset .item-input-wrapper {
  8169. margin-top: 19px !important; }
  8170. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader) > * {
  8171. margin-top: 20px; }
  8172. .platform-ios.platform-cordova:not(.fullscreen) .tabs-top > .tabs,
  8173. .platform-ios.platform-cordova:not(.fullscreen) .tabs.tabs-top {
  8174. top: 64px; }
  8175. .platform-ios.platform-cordova:not(.fullscreen) .has-header,
  8176. .platform-ios.platform-cordova:not(.fullscreen) .bar-subheader {
  8177. top: 64px; }
  8178. .platform-ios.platform-cordova:not(.fullscreen) .has-subheader {
  8179. top: 108px; }
  8180. .platform-ios.platform-cordova:not(.fullscreen) .has-header.has-tabs-top {
  8181. top: 113px; }
  8182. .platform-ios.platform-cordova:not(.fullscreen) .has-header.has-subheader.has-tabs-top {
  8183. top: 157px; }
  8184. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader) {
  8185. height: 44px; }
  8186. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader).item-input-inset .item-input-wrapper {
  8187. margin-top: -1px; }
  8188. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader) > * {
  8189. margin-top: 0; }
  8190. .platform-ios.platform-cordova .popover .has-header,
  8191. .platform-ios.platform-cordova .popover .bar-subheader {
  8192. top: 44px; }
  8193. .platform-ios.platform-cordova .popover .has-subheader {
  8194. top: 88px; }
  8195. .platform-ios.platform-cordova.status-bar-hide {
  8196. margin-bottom: 20px; }
  8197. @media (orientation: landscape) {
  8198. .platform-ios.platform-browser.platform-ipad {
  8199. position: fixed; } }
  8200. .platform-c:not(.enable-transitions) * {
  8201. -webkit-transition: none !important;
  8202. transition: none !important; }
  8203. .slide-in-up {
  8204. -webkit-transform: translate3d(0, 100%, 0);
  8205. transform: translate3d(0, 100%, 0); }
  8206. .slide-in-up.ng-enter,
  8207. .slide-in-up > .ng-enter {
  8208. -webkit-transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms;
  8209. transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms; }
  8210. .slide-in-up.ng-enter-active,
  8211. .slide-in-up > .ng-enter-active {
  8212. -webkit-transform: translate3d(0, 0, 0);
  8213. transform: translate3d(0, 0, 0); }
  8214. .slide-in-up.ng-leave,
  8215. .slide-in-up > .ng-leave {
  8216. -webkit-transition: all ease-in-out 250ms;
  8217. transition: all ease-in-out 250ms; }
  8218. @-webkit-keyframes scaleOut {
  8219. from {
  8220. -webkit-transform: scale(1);
  8221. opacity: 1; }
  8222. to {
  8223. -webkit-transform: scale(0.8);
  8224. opacity: 0; } }
  8225. @keyframes scaleOut {
  8226. from {
  8227. transform: scale(1);
  8228. opacity: 1; }
  8229. to {
  8230. transform: scale(0.8);
  8231. opacity: 0; } }
  8232. @-webkit-keyframes superScaleIn {
  8233. from {
  8234. -webkit-transform: scale(1.2);
  8235. opacity: 0; }
  8236. to {
  8237. -webkit-transform: scale(1);
  8238. opacity: 1; } }
  8239. @keyframes superScaleIn {
  8240. from {
  8241. transform: scale(1.2);
  8242. opacity: 0; }
  8243. to {
  8244. transform: scale(1);
  8245. opacity: 1; } }
  8246. [nav-view-transition="ios"] [nav-view="entering"],
  8247. [nav-view-transition="ios"] [nav-view="leaving"] {
  8248. -webkit-transition-duration: 500ms;
  8249. transition-duration: 500ms;
  8250. -webkit-transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8251. transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8252. -webkit-transition-property: opacity, -webkit-transform, box-shadow;
  8253. transition-property: opacity, transform, box-shadow; }
  8254. [nav-view-transition="ios"][nav-view-direction="forward"], [nav-view-transition="ios"][nav-view-direction="back"] {
  8255. background-color: #000; }
  8256. [nav-view-transition="ios"] [nav-view="active"],
  8257. [nav-view-transition="ios"][nav-view-direction="forward"] [nav-view="entering"],
  8258. [nav-view-transition="ios"][nav-view-direction="back"] [nav-view="leaving"] {
  8259. z-index: 3; }
  8260. [nav-view-transition="ios"][nav-view-direction="back"] [nav-view="entering"],
  8261. [nav-view-transition="ios"][nav-view-direction="forward"] [nav-view="leaving"] {
  8262. z-index: 2; }
  8263. [nav-bar-transition="ios"] .title,
  8264. [nav-bar-transition="ios"] .buttons,
  8265. [nav-bar-transition="ios"] .back-text {
  8266. -webkit-transition-duration: 500ms;
  8267. transition-duration: 500ms;
  8268. -webkit-transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8269. transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8270. -webkit-transition-property: opacity, -webkit-transform;
  8271. transition-property: opacity, transform; }
  8272. [nav-bar-transition="ios"] [nav-bar="active"],
  8273. [nav-bar-transition="ios"] [nav-bar="entering"] {
  8274. z-index: 10; }
  8275. [nav-bar-transition="ios"] [nav-bar="active"] .bar,
  8276. [nav-bar-transition="ios"] [nav-bar="entering"] .bar {
  8277. background: transparent; }
  8278. [nav-bar-transition="ios"] [nav-bar="cached"] {
  8279. display: block; }
  8280. [nav-bar-transition="ios"] [nav-bar="cached"] .header-item {
  8281. display: none; }
  8282. [nav-view-transition="android"] [nav-view="entering"],
  8283. [nav-view-transition="android"] [nav-view="leaving"] {
  8284. -webkit-transition-duration: 200ms;
  8285. transition-duration: 200ms;
  8286. -webkit-transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8287. transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8288. -webkit-transition-property: -webkit-transform;
  8289. transition-property: transform; }
  8290. [nav-view-transition="android"] [nav-view="active"],
  8291. [nav-view-transition="android"][nav-view-direction="forward"] [nav-view="entering"],
  8292. [nav-view-transition="android"][nav-view-direction="back"] [nav-view="leaving"] {
  8293. z-index: 3; }
  8294. [nav-view-transition="android"][nav-view-direction="back"] [nav-view="entering"],
  8295. [nav-view-transition="android"][nav-view-direction="forward"] [nav-view="leaving"] {
  8296. z-index: 2; }
  8297. [nav-bar-transition="android"] .title,
  8298. [nav-bar-transition="android"] .buttons {
  8299. -webkit-transition-duration: 200ms;
  8300. transition-duration: 200ms;
  8301. -webkit-transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8302. transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8303. -webkit-transition-property: opacity;
  8304. transition-property: opacity; }
  8305. [nav-bar-transition="android"] [nav-bar="active"],
  8306. [nav-bar-transition="android"] [nav-bar="entering"] {
  8307. z-index: 10; }
  8308. [nav-bar-transition="android"] [nav-bar="active"] .bar,
  8309. [nav-bar-transition="android"] [nav-bar="entering"] .bar {
  8310. background: transparent; }
  8311. [nav-bar-transition="android"] [nav-bar="cached"] {
  8312. display: block; }
  8313. [nav-bar-transition="android"] [nav-bar="cached"] .header-item {
  8314. display: none; }
  8315. [nav-swipe="fast"] [nav-view],
  8316. [nav-swipe="fast"] .title,
  8317. [nav-swipe="fast"] .buttons,
  8318. [nav-swipe="fast"] .back-text {
  8319. -webkit-transition-duration: 50ms;
  8320. transition-duration: 50ms;
  8321. -webkit-transition-timing-function: linear;
  8322. transition-timing-function: linear; }
  8323. [nav-swipe="slow"] [nav-view],
  8324. [nav-swipe="slow"] .title,
  8325. [nav-swipe="slow"] .buttons,
  8326. [nav-swipe="slow"] .back-text {
  8327. -webkit-transition-duration: 160ms;
  8328. transition-duration: 160ms;
  8329. -webkit-transition-timing-function: linear;
  8330. transition-timing-function: linear; }
  8331. [nav-view="cached"],
  8332. [nav-bar="cached"] {
  8333. display: none; }
  8334. [nav-view="stage"] {
  8335. opacity: 0;
  8336. -webkit-transition-duration: 0;
  8337. transition-duration: 0; }
  8338. [nav-bar="stage"] .title,
  8339. [nav-bar="stage"] .buttons,
  8340. [nav-bar="stage"] .back-text {
  8341. position: absolute;
  8342. opacity: 0;
  8343. -webkit-transition-duration: 0s;
  8344. transition-duration: 0s; }