ionic.app.css 244 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732
  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. .overflow-scroll.keyboard-up:not(.keyboard-up-confirm) {
  2717. overflow: hidden; }
  2718. /* If you change these, change platform.scss as well */
  2719. .has-header {
  2720. top: 44px; }
  2721. .no-header {
  2722. top: 0; }
  2723. .has-subheader {
  2724. top: 88px; }
  2725. .has-tabs-top {
  2726. top: 93px; }
  2727. .has-header.has-subheader.has-tabs-top {
  2728. top: 137px; }
  2729. .has-footer {
  2730. bottom: 44px; }
  2731. .has-subfooter {
  2732. bottom: 88px; }
  2733. .has-tabs,
  2734. .bar-footer.has-tabs {
  2735. bottom: 49px; }
  2736. .has-tabs.pane,
  2737. .bar-footer.has-tabs.pane {
  2738. bottom: 49px;
  2739. height: auto; }
  2740. .bar-subfooter.has-tabs {
  2741. bottom: 93px; }
  2742. .has-footer.has-tabs {
  2743. bottom: 93px; }
  2744. .pane {
  2745. -webkit-transform: translate3d(0, 0, 0);
  2746. transform: translate3d(0, 0, 0);
  2747. -webkit-transition-duration: 0;
  2748. transition-duration: 0;
  2749. z-index: 1; }
  2750. .view {
  2751. z-index: 1; }
  2752. .pane,
  2753. .view {
  2754. position: absolute;
  2755. top: 0;
  2756. right: 0;
  2757. bottom: 0;
  2758. left: 0;
  2759. width: 100%;
  2760. height: 100%;
  2761. background-color: #fff;
  2762. overflow: hidden; }
  2763. .view-container {
  2764. position: absolute;
  2765. display: block;
  2766. width: 100%;
  2767. height: 100%; }
  2768. /**
  2769. * Typography
  2770. * --------------------------------------------------
  2771. */
  2772. p {
  2773. margin: 0 0 10px; }
  2774. small {
  2775. font-size: 85%; }
  2776. cite {
  2777. font-style: normal; }
  2778. .text-left {
  2779. text-align: left; }
  2780. .text-right {
  2781. text-align: right; }
  2782. .text-center {
  2783. text-align: center; }
  2784. h1, h2, h3, h4, h5, h6,
  2785. .h1, .h2, .h3, .h4, .h5, .h6 {
  2786. color: #000;
  2787. font-weight: 500;
  2788. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
  2789. line-height: 1.2; }
  2790. h1 small, h2 small, h3 small, h4 small, h5 small, h6 small,
  2791. .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small {
  2792. font-weight: normal;
  2793. line-height: 1; }
  2794. h1, .h1,
  2795. h2, .h2,
  2796. h3, .h3 {
  2797. margin-top: 20px;
  2798. margin-bottom: 10px; }
  2799. h1:first-child, .h1:first-child,
  2800. h2:first-child, .h2:first-child,
  2801. h3:first-child, .h3:first-child {
  2802. margin-top: 0; }
  2803. h1 + h1, h1 + .h1,
  2804. h1 + h2, h1 + .h2,
  2805. h1 + h3, h1 + .h3, .h1 + h1, .h1 + .h1,
  2806. .h1 + h2, .h1 + .h2,
  2807. .h1 + h3, .h1 + .h3,
  2808. h2 + h1,
  2809. h2 + .h1,
  2810. h2 + h2,
  2811. h2 + .h2,
  2812. h2 + h3,
  2813. h2 + .h3, .h2 + h1, .h2 + .h1,
  2814. .h2 + h2, .h2 + .h2,
  2815. .h2 + h3, .h2 + .h3,
  2816. h3 + h1,
  2817. h3 + .h1,
  2818. h3 + h2,
  2819. h3 + .h2,
  2820. h3 + h3,
  2821. h3 + .h3, .h3 + h1, .h3 + .h1,
  2822. .h3 + h2, .h3 + .h2,
  2823. .h3 + h3, .h3 + .h3 {
  2824. margin-top: 10px; }
  2825. h4, .h4,
  2826. h5, .h5,
  2827. h6, .h6 {
  2828. margin-top: 10px;
  2829. margin-bottom: 10px; }
  2830. h1, .h1 {
  2831. font-size: 36px; }
  2832. h2, .h2 {
  2833. font-size: 30px; }
  2834. h3, .h3 {
  2835. font-size: 24px; }
  2836. h4, .h4 {
  2837. font-size: 18px; }
  2838. h5, .h5 {
  2839. font-size: 14px; }
  2840. h6, .h6 {
  2841. font-size: 12px; }
  2842. h1 small, .h1 small {
  2843. font-size: 24px; }
  2844. h2 small, .h2 small {
  2845. font-size: 18px; }
  2846. h3 small, .h3 small,
  2847. h4 small, .h4 small {
  2848. font-size: 14px; }
  2849. dl {
  2850. margin-bottom: 20px; }
  2851. dt,
  2852. dd {
  2853. line-height: 1.42857; }
  2854. dt {
  2855. font-weight: bold; }
  2856. blockquote {
  2857. margin: 0 0 20px;
  2858. padding: 10px 20px;
  2859. border-left: 5px solid gray; }
  2860. blockquote p {
  2861. font-weight: 300;
  2862. font-size: 17.5px;
  2863. line-height: 1.25; }
  2864. blockquote p:last-child {
  2865. margin-bottom: 0; }
  2866. blockquote small {
  2867. display: block;
  2868. line-height: 1.42857; }
  2869. blockquote small:before {
  2870. content: '\2014 \00A0'; }
  2871. q:before,
  2872. q:after,
  2873. blockquote:before,
  2874. blockquote:after {
  2875. content: ""; }
  2876. address {
  2877. display: block;
  2878. margin-bottom: 20px;
  2879. font-style: normal;
  2880. line-height: 1.42857; }
  2881. a {
  2882. color: #387ef5; }
  2883. a.subdued {
  2884. padding-right: 10px;
  2885. color: #888;
  2886. text-decoration: none; }
  2887. a.subdued:hover {
  2888. text-decoration: none; }
  2889. a.subdued:last-child {
  2890. padding-right: 0; }
  2891. /**
  2892. * Action Sheets
  2893. * --------------------------------------------------
  2894. */
  2895. .action-sheet-backdrop {
  2896. -webkit-transition: background-color 150ms ease-in-out;
  2897. transition: background-color 150ms ease-in-out;
  2898. position: fixed;
  2899. top: 0;
  2900. left: 0;
  2901. z-index: 11;
  2902. width: 100%;
  2903. height: 100%;
  2904. background-color: transparent; }
  2905. .action-sheet-backdrop.active {
  2906. background-color: rgba(0, 0, 0, 0.4); }
  2907. .action-sheet-wrapper {
  2908. -webkit-transform: translate3d(0, 100%, 0);
  2909. transform: translate3d(0, 100%, 0);
  2910. -webkit-transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  2911. transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  2912. position: absolute;
  2913. bottom: 0;
  2914. left: 0;
  2915. right: 0;
  2916. width: 100%;
  2917. max-width: 500px;
  2918. margin: auto; }
  2919. .action-sheet-up {
  2920. -webkit-transform: translate3d(0, 0, 0);
  2921. transform: translate3d(0, 0, 0); }
  2922. .action-sheet {
  2923. margin-left: 8px;
  2924. margin-right: 8px;
  2925. width: auto;
  2926. z-index: 11;
  2927. overflow: hidden; }
  2928. .action-sheet .button {
  2929. display: block;
  2930. padding: 1px;
  2931. width: 100%;
  2932. border-radius: 0;
  2933. border-color: #d1d3d6;
  2934. background-color: transparent;
  2935. color: #007aff;
  2936. font-size: 21px; }
  2937. .action-sheet .button:hover {
  2938. color: #007aff; }
  2939. .action-sheet .button.destructive {
  2940. color: #ff3b30; }
  2941. .action-sheet .button.destructive:hover {
  2942. color: #ff3b30; }
  2943. .action-sheet .button.active, .action-sheet .button.activated {
  2944. box-shadow: none;
  2945. border-color: #d1d3d6;
  2946. color: #007aff;
  2947. background: #e4e5e7; }
  2948. .action-sheet-has-icons .icon {
  2949. position: absolute;
  2950. left: 16px; }
  2951. .action-sheet-title {
  2952. padding: 16px;
  2953. color: #8f8f8f;
  2954. text-align: center;
  2955. font-size: 13px; }
  2956. .action-sheet-group {
  2957. margin-bottom: 8px;
  2958. border-radius: 4px;
  2959. background-color: #fff;
  2960. overflow: hidden; }
  2961. .action-sheet-group .button {
  2962. border-width: 1px 0px 0px 0px; }
  2963. .action-sheet-group .button:first-child:last-child {
  2964. border-width: 0; }
  2965. .action-sheet-options {
  2966. background: #f1f2f3; }
  2967. .action-sheet-cancel .button {
  2968. font-weight: 500; }
  2969. .action-sheet-open {
  2970. pointer-events: none; }
  2971. .action-sheet-open.modal-open .modal {
  2972. pointer-events: none; }
  2973. .action-sheet-open .action-sheet-backdrop {
  2974. pointer-events: auto; }
  2975. .platform-android .action-sheet-backdrop.active {
  2976. background-color: rgba(0, 0, 0, 0.2); }
  2977. .platform-android .action-sheet {
  2978. margin: 0; }
  2979. .platform-android .action-sheet .action-sheet-title,
  2980. .platform-android .action-sheet .button {
  2981. text-align: left;
  2982. border-color: transparent;
  2983. font-size: 16px;
  2984. color: inherit; }
  2985. .platform-android .action-sheet .action-sheet-title {
  2986. font-size: 14px;
  2987. padding: 16px;
  2988. color: #666; }
  2989. .platform-android .action-sheet .button.active,
  2990. .platform-android .action-sheet .button.activated {
  2991. background: #e8e8e8; }
  2992. .platform-android .action-sheet-group {
  2993. margin: 0;
  2994. border-radius: 0;
  2995. background-color: #fafafa; }
  2996. .platform-android .action-sheet-cancel {
  2997. display: none; }
  2998. .platform-android .action-sheet-has-icons .button {
  2999. padding-left: 56px; }
  3000. .backdrop {
  3001. position: fixed;
  3002. top: 0;
  3003. left: 0;
  3004. z-index: 11;
  3005. width: 100%;
  3006. height: 100%;
  3007. background-color: rgba(0, 0, 0, 0.4);
  3008. visibility: hidden;
  3009. opacity: 0;
  3010. -webkit-transition: 0.1s opacity linear;
  3011. transition: 0.1s opacity linear; }
  3012. .backdrop.visible {
  3013. visibility: visible; }
  3014. .backdrop.active {
  3015. opacity: 1; }
  3016. /**
  3017. * Bar (Headers and Footers)
  3018. * --------------------------------------------------
  3019. */
  3020. .bar {
  3021. display: -webkit-box;
  3022. display: -webkit-flex;
  3023. display: -moz-box;
  3024. display: -moz-flex;
  3025. display: -ms-flexbox;
  3026. display: flex;
  3027. -webkit-transform: translate3d(0, 0, 0);
  3028. transform: translate3d(0, 0, 0);
  3029. -webkit-user-select: none;
  3030. -moz-user-select: none;
  3031. -ms-user-select: none;
  3032. user-select: none;
  3033. position: absolute;
  3034. right: 0;
  3035. left: 0;
  3036. z-index: 9;
  3037. -webkit-box-sizing: border-box;
  3038. -moz-box-sizing: border-box;
  3039. box-sizing: border-box;
  3040. padding: 5px;
  3041. width: 100%;
  3042. height: 44px;
  3043. border-width: 0;
  3044. border-style: solid;
  3045. border-top: 1px solid transparent;
  3046. border-bottom: 1px solid #ddd;
  3047. background-color: white;
  3048. /* border-width: 1px will actually create 2 device pixels on retina */
  3049. /* this nifty trick sets an actual 1px border on hi-res displays */
  3050. background-size: 0; }
  3051. @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) {
  3052. .bar {
  3053. border: none;
  3054. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3055. background-position: bottom;
  3056. background-size: 100% 1px;
  3057. background-repeat: no-repeat; } }
  3058. .bar.bar-clear {
  3059. border: none;
  3060. background: none;
  3061. color: #fff; }
  3062. .bar.bar-clear .button {
  3063. color: #fff; }
  3064. .bar.bar-clear .title {
  3065. color: #fff; }
  3066. .bar.item-input-inset .item-input-wrapper {
  3067. margin-top: -1px; }
  3068. .bar.item-input-inset .item-input-wrapper input {
  3069. padding-left: 8px;
  3070. width: 94%;
  3071. height: 28px;
  3072. background: transparent; }
  3073. .bar.bar-light {
  3074. border-color: #ddd;
  3075. background-color: white;
  3076. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3077. color: #444; }
  3078. .bar.bar-light .title {
  3079. color: #444; }
  3080. .bar.bar-light.bar-footer {
  3081. background-image: linear-gradient(180deg, #ddd, #ddd 50%, transparent 50%); }
  3082. .bar.bar-stable {
  3083. border-color: #b2b2b2;
  3084. background-color: #f8f8f8;
  3085. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3086. color: #444; }
  3087. .bar.bar-stable .title {
  3088. color: #444; }
  3089. .bar.bar-stable.bar-footer {
  3090. background-image: linear-gradient(180deg, #b2b2b2, #b2b2b2 50%, transparent 50%); }
  3091. .bar.bar-positive {
  3092. border-color: #0c60ee;
  3093. background-color: #387ef5;
  3094. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3095. color: #fff; }
  3096. .bar.bar-positive .title {
  3097. color: #fff; }
  3098. .bar.bar-positive.bar-footer {
  3099. background-image: linear-gradient(180deg, #0c60ee, #0c60ee 50%, transparent 50%); }
  3100. .bar.bar-calm {
  3101. border-color: #ff185f;
  3102. background-color: #ff4b82;
  3103. background-image: linear-gradient(0deg, #ff185f, #ff185f 50%, transparent 50%);
  3104. color: #fff; }
  3105. .bar.bar-calm .title {
  3106. color: #fff; }
  3107. .bar.bar-calm.bar-footer {
  3108. background-image: linear-gradient(180deg, #ff185f, #ff185f 50%, transparent 50%); }
  3109. .bar.bar-assertive {
  3110. border-color: #e42112;
  3111. background-color: #ef473a;
  3112. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3113. color: #fff; }
  3114. .bar.bar-assertive .title {
  3115. color: #fff; }
  3116. .bar.bar-assertive.bar-footer {
  3117. background-image: linear-gradient(180deg, #e42112, #e42112 50%, transparent 50%); }
  3118. .bar.bar-balanced {
  3119. border-color: #28a54c;
  3120. background-color: #33cd5f;
  3121. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3122. color: #fff; }
  3123. .bar.bar-balanced .title {
  3124. color: #fff; }
  3125. .bar.bar-balanced.bar-footer {
  3126. background-image: linear-gradient(180deg, #28a54c, #0c60ee 50%, transparent 50%); }
  3127. .bar.bar-energized {
  3128. border-color: #e6b500;
  3129. background-color: #ffc900;
  3130. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3131. color: #fff; }
  3132. .bar.bar-energized .title {
  3133. color: #fff; }
  3134. .bar.bar-energized.bar-footer {
  3135. background-image: linear-gradient(180deg, #e6b500, #e6b500 50%, transparent 50%); }
  3136. .bar.bar-royal {
  3137. border-color: #6b46e5;
  3138. background-color: #886aea;
  3139. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3140. color: #fff; }
  3141. .bar.bar-royal .title {
  3142. color: #fff; }
  3143. .bar.bar-royal.bar-footer {
  3144. background-image: linear-gradient(180deg, #6b46e5, #6b46e5 50%, transparent 50%); }
  3145. .bar.bar-dark {
  3146. border-color: #111;
  3147. background-color: #444444;
  3148. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3149. color: #fff; }
  3150. .bar.bar-dark .title {
  3151. color: #fff; }
  3152. .bar.bar-dark.bar-footer {
  3153. background-image: linear-gradient(180deg, #111, #111 50%, transparent 50%); }
  3154. .bar .title {
  3155. display: block;
  3156. position: absolute;
  3157. top: 0;
  3158. right: 0;
  3159. left: 0;
  3160. z-index: 0;
  3161. overflow: hidden;
  3162. margin: 0 10px;
  3163. min-width: 30px;
  3164. height: 43px;
  3165. text-align: center;
  3166. text-overflow: ellipsis;
  3167. white-space: nowrap;
  3168. font-size: 17px;
  3169. font-weight: 500;
  3170. line-height: 44px; }
  3171. .bar .title.title-left {
  3172. text-align: left; }
  3173. .bar .title.title-right {
  3174. text-align: right; }
  3175. .bar .title a {
  3176. color: inherit; }
  3177. .bar .button, .bar button {
  3178. z-index: 1;
  3179. padding: 0 8px;
  3180. min-width: initial;
  3181. min-height: 31px;
  3182. font-weight: 400;
  3183. font-size: 13px;
  3184. line-height: 32px; }
  3185. .bar .button.button-icon:before,
  3186. .bar .button .icon:before, .bar .button.icon:before, .bar .button.icon-left:before, .bar .button.icon-right:before, .bar button.button-icon:before,
  3187. .bar button .icon:before, .bar button.icon:before, .bar button.icon-left:before, .bar button.icon-right:before {
  3188. padding-right: 2px;
  3189. padding-left: 2px;
  3190. font-size: 20px;
  3191. line-height: 32px; }
  3192. .bar .button.button-icon, .bar button.button-icon {
  3193. font-size: 17px; }
  3194. .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 {
  3195. vertical-align: top;
  3196. font-size: 32px;
  3197. line-height: 32px; }
  3198. .bar .button.button-clear, .bar button.button-clear {
  3199. padding-right: 2px;
  3200. padding-left: 2px;
  3201. font-weight: 300;
  3202. font-size: 17px; }
  3203. .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 {
  3204. font-size: 32px;
  3205. line-height: 32px; }
  3206. .bar .button.back-button, .bar button.back-button {
  3207. display: block;
  3208. margin-right: 5px;
  3209. padding: 0;
  3210. white-space: nowrap;
  3211. font-weight: 400; }
  3212. .bar .button.back-button.active, .bar .button.back-button.activated, .bar button.back-button.active, .bar button.back-button.activated {
  3213. opacity: 0.2; }
  3214. .bar .button-bar > .button,
  3215. .bar .buttons > .button {
  3216. min-height: 31px;
  3217. line-height: 32px; }
  3218. .bar .button-bar + .button,
  3219. .bar .button + .button-bar {
  3220. margin-left: 5px; }
  3221. .bar .buttons,
  3222. .bar .buttons.primary-buttons,
  3223. .bar .buttons.secondary-buttons {
  3224. display: inherit; }
  3225. .bar .buttons span {
  3226. display: inline-block; }
  3227. .bar .buttons-left span {
  3228. margin-right: 5px;
  3229. display: inherit; }
  3230. .bar .buttons-right span {
  3231. margin-left: 5px;
  3232. display: inherit; }
  3233. .bar .title + .button:last-child,
  3234. .bar > .button + .button:last-child,
  3235. .bar > .button.pull-right,
  3236. .bar .buttons.pull-right,
  3237. .bar .title + .buttons {
  3238. position: absolute;
  3239. top: 5px;
  3240. right: 5px;
  3241. bottom: 5px; }
  3242. .platform-android .nav-bar-has-subheader .bar {
  3243. background-image: none; }
  3244. .platform-android .bar .back-button .icon:before {
  3245. font-size: 24px; }
  3246. .platform-android .bar .title {
  3247. font-size: 19px;
  3248. line-height: 44px; }
  3249. .bar-light .button {
  3250. border-color: transparent;
  3251. background-color: white;
  3252. color: #444; }
  3253. .bar-light .button:hover {
  3254. color: #444;
  3255. text-decoration: none; }
  3256. .bar-light .button.active, .bar-light .button.activated {
  3257. background-color: #fafafa; }
  3258. .bar-light .button.button-clear {
  3259. border-color: transparent;
  3260. background: none;
  3261. box-shadow: none;
  3262. color: #444;
  3263. font-size: 17px; }
  3264. .bar-light .button.button-icon {
  3265. border-color: transparent;
  3266. background: none; }
  3267. .bar-stable .button {
  3268. border-color: transparent;
  3269. background-color: #f8f8f8;
  3270. color: #444; }
  3271. .bar-stable .button:hover {
  3272. color: #444;
  3273. text-decoration: none; }
  3274. .bar-stable .button.active, .bar-stable .button.activated {
  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: transparent;
  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. background-color: #0c60ee; }
  3294. .bar-positive .button.button-clear {
  3295. border-color: transparent;
  3296. background: none;
  3297. box-shadow: none;
  3298. color: #fff;
  3299. font-size: 17px; }
  3300. .bar-positive .button.button-icon {
  3301. border-color: transparent;
  3302. background: none; }
  3303. .bar-calm .button {
  3304. border-color: transparent;
  3305. background-color: #ff4b82;
  3306. color: #fff; }
  3307. .bar-calm .button:hover {
  3308. color: #fff;
  3309. text-decoration: none; }
  3310. .bar-calm .button.active, .bar-calm .button.activated {
  3311. background-color: #ff185f; }
  3312. .bar-calm .button.button-clear {
  3313. border-color: transparent;
  3314. background: none;
  3315. box-shadow: none;
  3316. color: #fff;
  3317. font-size: 17px; }
  3318. .bar-calm .button.button-icon {
  3319. border-color: transparent;
  3320. background: none; }
  3321. .bar-assertive .button {
  3322. border-color: transparent;
  3323. background-color: #ef473a;
  3324. color: #fff; }
  3325. .bar-assertive .button:hover {
  3326. color: #fff;
  3327. text-decoration: none; }
  3328. .bar-assertive .button.active, .bar-assertive .button.activated {
  3329. background-color: #e42112; }
  3330. .bar-assertive .button.button-clear {
  3331. border-color: transparent;
  3332. background: none;
  3333. box-shadow: none;
  3334. color: #fff;
  3335. font-size: 17px; }
  3336. .bar-assertive .button.button-icon {
  3337. border-color: transparent;
  3338. background: none; }
  3339. .bar-balanced .button {
  3340. border-color: transparent;
  3341. background-color: #33cd5f;
  3342. color: #fff; }
  3343. .bar-balanced .button:hover {
  3344. color: #fff;
  3345. text-decoration: none; }
  3346. .bar-balanced .button.active, .bar-balanced .button.activated {
  3347. background-color: #28a54c; }
  3348. .bar-balanced .button.button-clear {
  3349. border-color: transparent;
  3350. background: none;
  3351. box-shadow: none;
  3352. color: #fff;
  3353. font-size: 17px; }
  3354. .bar-balanced .button.button-icon {
  3355. border-color: transparent;
  3356. background: none; }
  3357. .bar-energized .button {
  3358. border-color: transparent;
  3359. background-color: #ffc900;
  3360. color: #fff; }
  3361. .bar-energized .button:hover {
  3362. color: #fff;
  3363. text-decoration: none; }
  3364. .bar-energized .button.active, .bar-energized .button.activated {
  3365. background-color: #e6b500; }
  3366. .bar-energized .button.button-clear {
  3367. border-color: transparent;
  3368. background: none;
  3369. box-shadow: none;
  3370. color: #fff;
  3371. font-size: 17px; }
  3372. .bar-energized .button.button-icon {
  3373. border-color: transparent;
  3374. background: none; }
  3375. .bar-royal .button {
  3376. border-color: transparent;
  3377. background-color: #886aea;
  3378. color: #fff; }
  3379. .bar-royal .button:hover {
  3380. color: #fff;
  3381. text-decoration: none; }
  3382. .bar-royal .button.active, .bar-royal .button.activated {
  3383. background-color: #6b46e5; }
  3384. .bar-royal .button.button-clear {
  3385. border-color: transparent;
  3386. background: none;
  3387. box-shadow: none;
  3388. color: #fff;
  3389. font-size: 17px; }
  3390. .bar-royal .button.button-icon {
  3391. border-color: transparent;
  3392. background: none; }
  3393. .bar-dark .button {
  3394. border-color: transparent;
  3395. background-color: #444444;
  3396. color: #fff; }
  3397. .bar-dark .button:hover {
  3398. color: #fff;
  3399. text-decoration: none; }
  3400. .bar-dark .button.active, .bar-dark .button.activated {
  3401. background-color: #262626; }
  3402. .bar-dark .button.button-clear {
  3403. border-color: transparent;
  3404. background: none;
  3405. box-shadow: none;
  3406. color: #fff;
  3407. font-size: 17px; }
  3408. .bar-dark .button.button-icon {
  3409. border-color: transparent;
  3410. background: none; }
  3411. .bar-header {
  3412. top: 0;
  3413. border-top-width: 0;
  3414. border-bottom-width: 1px; }
  3415. .bar-header.has-tabs-top {
  3416. border-bottom-width: 0px;
  3417. background-image: none; }
  3418. .tabs-top .bar-header {
  3419. border-bottom-width: 0px;
  3420. background-image: none; }
  3421. .bar-footer {
  3422. bottom: 0;
  3423. border-top-width: 1px;
  3424. border-bottom-width: 0;
  3425. background-position: top;
  3426. height: 44px; }
  3427. .bar-footer.item-input-inset {
  3428. position: absolute; }
  3429. .bar-tabs {
  3430. padding: 0; }
  3431. .bar-subheader {
  3432. top: 44px;
  3433. display: block;
  3434. height: 44px; }
  3435. .bar-subfooter {
  3436. bottom: 44px;
  3437. display: block;
  3438. height: 44px; }
  3439. .nav-bar-block {
  3440. position: absolute;
  3441. top: 0;
  3442. right: 0;
  3443. left: 0;
  3444. z-index: 9; }
  3445. .bar .back-button.hide,
  3446. .bar .buttons .hide {
  3447. display: none; }
  3448. .nav-bar-tabs-top .bar {
  3449. background-image: none; }
  3450. /**
  3451. * Tabs
  3452. * --------------------------------------------------
  3453. * A navigation bar with any number of tab items supported.
  3454. */
  3455. .tabs {
  3456. display: -webkit-box;
  3457. display: -webkit-flex;
  3458. display: -moz-box;
  3459. display: -moz-flex;
  3460. display: -ms-flexbox;
  3461. display: flex;
  3462. -webkit-box-direction: normal;
  3463. -webkit-box-orient: horizontal;
  3464. -webkit-flex-direction: horizontal;
  3465. -moz-flex-direction: horizontal;
  3466. -ms-flex-direction: horizontal;
  3467. flex-direction: horizontal;
  3468. -webkit-box-pack: center;
  3469. -ms-flex-pack: center;
  3470. -webkit-justify-content: center;
  3471. -moz-justify-content: center;
  3472. justify-content: center;
  3473. -webkit-transform: translate3d(0, 0, 0);
  3474. transform: translate3d(0, 0, 0);
  3475. border-color: #b2b2b2;
  3476. background-color: #f8f8f8;
  3477. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3478. color: #444;
  3479. position: absolute;
  3480. bottom: 0;
  3481. z-index: 5;
  3482. width: 100%;
  3483. height: 49px;
  3484. border-style: solid;
  3485. border-top-width: 1px;
  3486. background-size: 0;
  3487. line-height: 49px; }
  3488. .tabs .tab-item .badge {
  3489. background-color: #444;
  3490. color: #f8f8f8; }
  3491. @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) {
  3492. .tabs {
  3493. padding-top: 2px;
  3494. border-top: none !important;
  3495. border-bottom: none;
  3496. background-position: top;
  3497. background-size: 100% 1px;
  3498. background-repeat: no-repeat; } }
  3499. /* Allow parent element of tabs to define color, or just the tab itself */
  3500. .tabs-light > .tabs,
  3501. .tabs.tabs-light {
  3502. border-color: #ddd;
  3503. background-color: #fff;
  3504. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3505. color: #444; }
  3506. .tabs-light > .tabs .tab-item .badge,
  3507. .tabs.tabs-light .tab-item .badge {
  3508. background-color: #444;
  3509. color: #fff; }
  3510. .tabs-stable > .tabs,
  3511. .tabs.tabs-stable {
  3512. border-color: #b2b2b2;
  3513. background-color: #f8f8f8;
  3514. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3515. color: #444; }
  3516. .tabs-stable > .tabs .tab-item .badge,
  3517. .tabs.tabs-stable .tab-item .badge {
  3518. background-color: #444;
  3519. color: #f8f8f8; }
  3520. .tabs-positive > .tabs,
  3521. .tabs.tabs-positive {
  3522. border-color: #0c60ee;
  3523. background-color: #387ef5;
  3524. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3525. color: #fff; }
  3526. .tabs-positive > .tabs .tab-item .badge,
  3527. .tabs.tabs-positive .tab-item .badge {
  3528. background-color: #fff;
  3529. color: #387ef5; }
  3530. .tabs-calm > .tabs,
  3531. .tabs.tabs-calm {
  3532. border-color: #ff185f;
  3533. background-color: #ff4b82;
  3534. background-image: linear-gradient(0deg, #ff185f, #ff185f 50%, transparent 50%);
  3535. color: #fff; }
  3536. .tabs-calm > .tabs .tab-item .badge,
  3537. .tabs.tabs-calm .tab-item .badge {
  3538. background-color: #fff;
  3539. color: #ff4b82; }
  3540. .tabs-assertive > .tabs,
  3541. .tabs.tabs-assertive {
  3542. border-color: #e42112;
  3543. background-color: #ef473a;
  3544. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3545. color: #fff; }
  3546. .tabs-assertive > .tabs .tab-item .badge,
  3547. .tabs.tabs-assertive .tab-item .badge {
  3548. background-color: #fff;
  3549. color: #ef473a; }
  3550. .tabs-balanced > .tabs,
  3551. .tabs.tabs-balanced {
  3552. border-color: #28a54c;
  3553. background-color: #33cd5f;
  3554. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3555. color: #fff; }
  3556. .tabs-balanced > .tabs .tab-item .badge,
  3557. .tabs.tabs-balanced .tab-item .badge {
  3558. background-color: #fff;
  3559. color: #33cd5f; }
  3560. .tabs-energized > .tabs,
  3561. .tabs.tabs-energized {
  3562. border-color: #e6b500;
  3563. background-color: #ffc900;
  3564. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3565. color: #fff; }
  3566. .tabs-energized > .tabs .tab-item .badge,
  3567. .tabs.tabs-energized .tab-item .badge {
  3568. background-color: #fff;
  3569. color: #ffc900; }
  3570. .tabs-royal > .tabs,
  3571. .tabs.tabs-royal {
  3572. border-color: #6b46e5;
  3573. background-color: #886aea;
  3574. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3575. color: #fff; }
  3576. .tabs-royal > .tabs .tab-item .badge,
  3577. .tabs.tabs-royal .tab-item .badge {
  3578. background-color: #fff;
  3579. color: #886aea; }
  3580. .tabs-dark > .tabs,
  3581. .tabs.tabs-dark {
  3582. border-color: #111;
  3583. background-color: #444;
  3584. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3585. color: #fff; }
  3586. .tabs-dark > .tabs .tab-item .badge,
  3587. .tabs.tabs-dark .tab-item .badge {
  3588. background-color: #fff;
  3589. color: #444; }
  3590. .tabs-striped .tabs {
  3591. background-color: white;
  3592. background-image: none;
  3593. border: none;
  3594. border-bottom: 1px solid #ddd;
  3595. padding-top: 2px; }
  3596. .tabs-striped .tab-item.tab-item-active, .tabs-striped .tab-item.active, .tabs-striped .tab-item.activated {
  3597. margin-top: -2px;
  3598. border-style: solid;
  3599. border-width: 2px 0 0 0;
  3600. border-color: #444; }
  3601. .tabs-striped .tab-item.tab-item-active .badge, .tabs-striped .tab-item.active .badge, .tabs-striped .tab-item.activated .badge {
  3602. top: 2px;
  3603. opacity: 1; }
  3604. .tabs-striped.tabs-light .tabs {
  3605. background-color: #fff; }
  3606. .tabs-striped.tabs-light .tab-item {
  3607. color: rgba(68, 68, 68, 0.4);
  3608. opacity: 1; }
  3609. .tabs-striped.tabs-light .tab-item .badge {
  3610. opacity: 0.4; }
  3611. .tabs-striped.tabs-light .tab-item.tab-item-active, .tabs-striped.tabs-light .tab-item.active, .tabs-striped.tabs-light .tab-item.activated {
  3612. margin-top: -2px;
  3613. color: #444;
  3614. border-style: solid;
  3615. border-width: 2px 0 0 0;
  3616. border-color: #444; }
  3617. .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 {
  3618. top: 4%; }
  3619. .tabs-striped.tabs-stable .tabs {
  3620. background-color: #f8f8f8; }
  3621. .tabs-striped.tabs-stable .tab-item {
  3622. color: rgba(68, 68, 68, 0.4);
  3623. opacity: 1; }
  3624. .tabs-striped.tabs-stable .tab-item .badge {
  3625. opacity: 0.4; }
  3626. .tabs-striped.tabs-stable .tab-item.tab-item-active, .tabs-striped.tabs-stable .tab-item.active, .tabs-striped.tabs-stable .tab-item.activated {
  3627. margin-top: -2px;
  3628. color: #444;
  3629. border-style: solid;
  3630. border-width: 2px 0 0 0;
  3631. border-color: #444; }
  3632. .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 {
  3633. top: 4%; }
  3634. .tabs-striped.tabs-positive .tabs {
  3635. background-color: #387ef5; }
  3636. .tabs-striped.tabs-positive .tab-item {
  3637. color: rgba(255, 255, 255, 0.4);
  3638. opacity: 1; }
  3639. .tabs-striped.tabs-positive .tab-item .badge {
  3640. opacity: 0.4; }
  3641. .tabs-striped.tabs-positive .tab-item.tab-item-active, .tabs-striped.tabs-positive .tab-item.active, .tabs-striped.tabs-positive .tab-item.activated {
  3642. margin-top: -2px;
  3643. color: #fff;
  3644. border-style: solid;
  3645. border-width: 2px 0 0 0;
  3646. border-color: #fff; }
  3647. .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 {
  3648. top: 4%; }
  3649. .tabs-striped.tabs-calm .tabs {
  3650. background-color: #ff4b82; }
  3651. .tabs-striped.tabs-calm .tab-item {
  3652. color: rgba(255, 255, 255, 0.4);
  3653. opacity: 1; }
  3654. .tabs-striped.tabs-calm .tab-item .badge {
  3655. opacity: 0.4; }
  3656. .tabs-striped.tabs-calm .tab-item.tab-item-active, .tabs-striped.tabs-calm .tab-item.active, .tabs-striped.tabs-calm .tab-item.activated {
  3657. margin-top: -2px;
  3658. color: #fff;
  3659. border-style: solid;
  3660. border-width: 2px 0 0 0;
  3661. border-color: #fff; }
  3662. .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 {
  3663. top: 4%; }
  3664. .tabs-striped.tabs-assertive .tabs {
  3665. background-color: #ef473a; }
  3666. .tabs-striped.tabs-assertive .tab-item {
  3667. color: rgba(255, 255, 255, 0.4);
  3668. opacity: 1; }
  3669. .tabs-striped.tabs-assertive .tab-item .badge {
  3670. opacity: 0.4; }
  3671. .tabs-striped.tabs-assertive .tab-item.tab-item-active, .tabs-striped.tabs-assertive .tab-item.active, .tabs-striped.tabs-assertive .tab-item.activated {
  3672. margin-top: -2px;
  3673. color: #fff;
  3674. border-style: solid;
  3675. border-width: 2px 0 0 0;
  3676. border-color: #fff; }
  3677. .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 {
  3678. top: 4%; }
  3679. .tabs-striped.tabs-balanced .tabs {
  3680. background-color: #33cd5f; }
  3681. .tabs-striped.tabs-balanced .tab-item {
  3682. color: rgba(255, 255, 255, 0.4);
  3683. opacity: 1; }
  3684. .tabs-striped.tabs-balanced .tab-item .badge {
  3685. opacity: 0.4; }
  3686. .tabs-striped.tabs-balanced .tab-item.tab-item-active, .tabs-striped.tabs-balanced .tab-item.active, .tabs-striped.tabs-balanced .tab-item.activated {
  3687. margin-top: -2px;
  3688. color: #fff;
  3689. border-style: solid;
  3690. border-width: 2px 0 0 0;
  3691. border-color: #fff; }
  3692. .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 {
  3693. top: 4%; }
  3694. .tabs-striped.tabs-energized .tabs {
  3695. background-color: #ffc900; }
  3696. .tabs-striped.tabs-energized .tab-item {
  3697. color: rgba(255, 255, 255, 0.4);
  3698. opacity: 1; }
  3699. .tabs-striped.tabs-energized .tab-item .badge {
  3700. opacity: 0.4; }
  3701. .tabs-striped.tabs-energized .tab-item.tab-item-active, .tabs-striped.tabs-energized .tab-item.active, .tabs-striped.tabs-energized .tab-item.activated {
  3702. margin-top: -2px;
  3703. color: #fff;
  3704. border-style: solid;
  3705. border-width: 2px 0 0 0;
  3706. border-color: #fff; }
  3707. .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 {
  3708. top: 4%; }
  3709. .tabs-striped.tabs-royal .tabs {
  3710. background-color: #886aea; }
  3711. .tabs-striped.tabs-royal .tab-item {
  3712. color: rgba(255, 255, 255, 0.4);
  3713. opacity: 1; }
  3714. .tabs-striped.tabs-royal .tab-item .badge {
  3715. opacity: 0.4; }
  3716. .tabs-striped.tabs-royal .tab-item.tab-item-active, .tabs-striped.tabs-royal .tab-item.active, .tabs-striped.tabs-royal .tab-item.activated {
  3717. margin-top: -2px;
  3718. color: #fff;
  3719. border-style: solid;
  3720. border-width: 2px 0 0 0;
  3721. border-color: #fff; }
  3722. .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 {
  3723. top: 4%; }
  3724. .tabs-striped.tabs-dark .tabs {
  3725. background-color: #444; }
  3726. .tabs-striped.tabs-dark .tab-item {
  3727. color: rgba(255, 255, 255, 0.4);
  3728. opacity: 1; }
  3729. .tabs-striped.tabs-dark .tab-item .badge {
  3730. opacity: 0.4; }
  3731. .tabs-striped.tabs-dark .tab-item.tab-item-active, .tabs-striped.tabs-dark .tab-item.active, .tabs-striped.tabs-dark .tab-item.activated {
  3732. margin-top: -2px;
  3733. color: #fff;
  3734. border-style: solid;
  3735. border-width: 2px 0 0 0;
  3736. border-color: #fff; }
  3737. .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 {
  3738. top: 4%; }
  3739. .tabs-striped.tabs-background-light .tabs {
  3740. background-color: #fff;
  3741. background-image: none; }
  3742. .tabs-striped.tabs-background-stable .tabs {
  3743. background-color: #f8f8f8;
  3744. background-image: none; }
  3745. .tabs-striped.tabs-background-positive .tabs {
  3746. background-color: #387ef5;
  3747. background-image: none; }
  3748. .tabs-striped.tabs-background-calm .tabs {
  3749. background-color: #ff4b82;
  3750. background-image: none; }
  3751. .tabs-striped.tabs-background-assertive .tabs {
  3752. background-color: #ef473a;
  3753. background-image: none; }
  3754. .tabs-striped.tabs-background-balanced .tabs {
  3755. background-color: #33cd5f;
  3756. background-image: none; }
  3757. .tabs-striped.tabs-background-energized .tabs {
  3758. background-color: #ffc900;
  3759. background-image: none; }
  3760. .tabs-striped.tabs-background-royal .tabs {
  3761. background-color: #886aea;
  3762. background-image: none; }
  3763. .tabs-striped.tabs-background-dark .tabs {
  3764. background-color: #444;
  3765. background-image: none; }
  3766. .tabs-striped.tabs-color-light .tab-item {
  3767. color: rgba(255, 255, 255, 0.4);
  3768. opacity: 1; }
  3769. .tabs-striped.tabs-color-light .tab-item .badge {
  3770. opacity: 0.4; }
  3771. .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 {
  3772. margin-top: -2px;
  3773. color: #fff;
  3774. border: 0 solid #fff;
  3775. border-top-width: 2px; }
  3776. .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 {
  3777. top: 2px;
  3778. opacity: 1; }
  3779. .tabs-striped.tabs-color-stable .tab-item {
  3780. color: rgba(248, 248, 248, 0.4);
  3781. opacity: 1; }
  3782. .tabs-striped.tabs-color-stable .tab-item .badge {
  3783. opacity: 0.4; }
  3784. .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 {
  3785. margin-top: -2px;
  3786. color: #f8f8f8;
  3787. border: 0 solid #f8f8f8;
  3788. border-top-width: 2px; }
  3789. .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 {
  3790. top: 2px;
  3791. opacity: 1; }
  3792. .tabs-striped.tabs-color-positive .tab-item {
  3793. color: rgba(56, 126, 245, 0.4);
  3794. opacity: 1; }
  3795. .tabs-striped.tabs-color-positive .tab-item .badge {
  3796. opacity: 0.4; }
  3797. .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 {
  3798. margin-top: -2px;
  3799. color: #387ef5;
  3800. border: 0 solid #387ef5;
  3801. border-top-width: 2px; }
  3802. .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 {
  3803. top: 2px;
  3804. opacity: 1; }
  3805. .tabs-striped.tabs-color-calm .tab-item {
  3806. color: rgba(255, 75, 130, 0.4);
  3807. opacity: 1; }
  3808. .tabs-striped.tabs-color-calm .tab-item .badge {
  3809. opacity: 0.4; }
  3810. .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 {
  3811. margin-top: -2px;
  3812. color: #ff4b82;
  3813. border: 0 solid #ff4b82;
  3814. border-top-width: 2px; }
  3815. .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 {
  3816. top: 2px;
  3817. opacity: 1; }
  3818. .tabs-striped.tabs-color-assertive .tab-item {
  3819. color: rgba(239, 71, 58, 0.4);
  3820. opacity: 1; }
  3821. .tabs-striped.tabs-color-assertive .tab-item .badge {
  3822. opacity: 0.4; }
  3823. .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 {
  3824. margin-top: -2px;
  3825. color: #ef473a;
  3826. border: 0 solid #ef473a;
  3827. border-top-width: 2px; }
  3828. .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 {
  3829. top: 2px;
  3830. opacity: 1; }
  3831. .tabs-striped.tabs-color-balanced .tab-item {
  3832. color: rgba(51, 205, 95, 0.4);
  3833. opacity: 1; }
  3834. .tabs-striped.tabs-color-balanced .tab-item .badge {
  3835. opacity: 0.4; }
  3836. .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 {
  3837. margin-top: -2px;
  3838. color: #33cd5f;
  3839. border: 0 solid #33cd5f;
  3840. border-top-width: 2px; }
  3841. .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 {
  3842. top: 2px;
  3843. opacity: 1; }
  3844. .tabs-striped.tabs-color-energized .tab-item {
  3845. color: rgba(255, 201, 0, 0.4);
  3846. opacity: 1; }
  3847. .tabs-striped.tabs-color-energized .tab-item .badge {
  3848. opacity: 0.4; }
  3849. .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 {
  3850. margin-top: -2px;
  3851. color: #ffc900;
  3852. border: 0 solid #ffc900;
  3853. border-top-width: 2px; }
  3854. .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 {
  3855. top: 2px;
  3856. opacity: 1; }
  3857. .tabs-striped.tabs-color-royal .tab-item {
  3858. color: rgba(136, 106, 234, 0.4);
  3859. opacity: 1; }
  3860. .tabs-striped.tabs-color-royal .tab-item .badge {
  3861. opacity: 0.4; }
  3862. .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 {
  3863. margin-top: -2px;
  3864. color: #886aea;
  3865. border: 0 solid #886aea;
  3866. border-top-width: 2px; }
  3867. .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 {
  3868. top: 2px;
  3869. opacity: 1; }
  3870. .tabs-striped.tabs-color-dark .tab-item {
  3871. color: rgba(68, 68, 68, 0.4);
  3872. opacity: 1; }
  3873. .tabs-striped.tabs-color-dark .tab-item .badge {
  3874. opacity: 0.4; }
  3875. .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 {
  3876. margin-top: -2px;
  3877. color: #444;
  3878. border: 0 solid #444;
  3879. border-top-width: 2px; }
  3880. .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 {
  3881. top: 2px;
  3882. opacity: 1; }
  3883. .tabs-background-light .tabs,
  3884. .tabs-background-light > .tabs {
  3885. background-color: #fff;
  3886. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3887. border-color: #ddd; }
  3888. .tabs-background-stable .tabs,
  3889. .tabs-background-stable > .tabs {
  3890. background-color: #f8f8f8;
  3891. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3892. border-color: #b2b2b2; }
  3893. .tabs-background-positive .tabs,
  3894. .tabs-background-positive > .tabs {
  3895. background-color: #387ef5;
  3896. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3897. border-color: #0c60ee; }
  3898. .tabs-background-calm .tabs,
  3899. .tabs-background-calm > .tabs {
  3900. background-color: #ff4b82;
  3901. background-image: linear-gradient(0deg, #ff185f, #ff185f 50%, transparent 50%);
  3902. border-color: #ff185f; }
  3903. .tabs-background-assertive .tabs,
  3904. .tabs-background-assertive > .tabs {
  3905. background-color: #ef473a;
  3906. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3907. border-color: #e42112; }
  3908. .tabs-background-balanced .tabs,
  3909. .tabs-background-balanced > .tabs {
  3910. background-color: #33cd5f;
  3911. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3912. border-color: #28a54c; }
  3913. .tabs-background-energized .tabs,
  3914. .tabs-background-energized > .tabs {
  3915. background-color: #ffc900;
  3916. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3917. border-color: #e6b500; }
  3918. .tabs-background-royal .tabs,
  3919. .tabs-background-royal > .tabs {
  3920. background-color: #886aea;
  3921. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3922. border-color: #6b46e5; }
  3923. .tabs-background-dark .tabs,
  3924. .tabs-background-dark > .tabs {
  3925. background-color: #444;
  3926. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3927. border-color: #111; }
  3928. .tabs-color-light .tab-item {
  3929. color: rgba(255, 255, 255, 0.4);
  3930. opacity: 1; }
  3931. .tabs-color-light .tab-item .badge {
  3932. opacity: 0.4; }
  3933. .tabs-color-light .tab-item.tab-item-active, .tabs-color-light .tab-item.active, .tabs-color-light .tab-item.activated {
  3934. color: #fff;
  3935. border: 0 solid #fff; }
  3936. .tabs-color-light .tab-item.tab-item-active .badge, .tabs-color-light .tab-item.active .badge, .tabs-color-light .tab-item.activated .badge {
  3937. opacity: 1; }
  3938. .tabs-color-stable .tab-item {
  3939. color: rgba(248, 248, 248, 0.4);
  3940. opacity: 1; }
  3941. .tabs-color-stable .tab-item .badge {
  3942. opacity: 0.4; }
  3943. .tabs-color-stable .tab-item.tab-item-active, .tabs-color-stable .tab-item.active, .tabs-color-stable .tab-item.activated {
  3944. color: #f8f8f8;
  3945. border: 0 solid #f8f8f8; }
  3946. .tabs-color-stable .tab-item.tab-item-active .badge, .tabs-color-stable .tab-item.active .badge, .tabs-color-stable .tab-item.activated .badge {
  3947. opacity: 1; }
  3948. .tabs-color-positive .tab-item {
  3949. color: rgba(56, 126, 245, 0.4);
  3950. opacity: 1; }
  3951. .tabs-color-positive .tab-item .badge {
  3952. opacity: 0.4; }
  3953. .tabs-color-positive .tab-item.tab-item-active, .tabs-color-positive .tab-item.active, .tabs-color-positive .tab-item.activated {
  3954. color: #387ef5;
  3955. border: 0 solid #387ef5; }
  3956. .tabs-color-positive .tab-item.tab-item-active .badge, .tabs-color-positive .tab-item.active .badge, .tabs-color-positive .tab-item.activated .badge {
  3957. opacity: 1; }
  3958. .tabs-color-calm .tab-item {
  3959. color: rgba(255, 75, 130, 0.4);
  3960. opacity: 1; }
  3961. .tabs-color-calm .tab-item .badge {
  3962. opacity: 0.4; }
  3963. .tabs-color-calm .tab-item.tab-item-active, .tabs-color-calm .tab-item.active, .tabs-color-calm .tab-item.activated {
  3964. color: #ff4b82;
  3965. border: 0 solid #ff4b82; }
  3966. .tabs-color-calm .tab-item.tab-item-active .badge, .tabs-color-calm .tab-item.active .badge, .tabs-color-calm .tab-item.activated .badge {
  3967. opacity: 1; }
  3968. .tabs-color-assertive .tab-item {
  3969. color: rgba(239, 71, 58, 0.4);
  3970. opacity: 1; }
  3971. .tabs-color-assertive .tab-item .badge {
  3972. opacity: 0.4; }
  3973. .tabs-color-assertive .tab-item.tab-item-active, .tabs-color-assertive .tab-item.active, .tabs-color-assertive .tab-item.activated {
  3974. color: #ef473a;
  3975. border: 0 solid #ef473a; }
  3976. .tabs-color-assertive .tab-item.tab-item-active .badge, .tabs-color-assertive .tab-item.active .badge, .tabs-color-assertive .tab-item.activated .badge {
  3977. opacity: 1; }
  3978. .tabs-color-balanced .tab-item {
  3979. color: rgba(51, 205, 95, 0.4);
  3980. opacity: 1; }
  3981. .tabs-color-balanced .tab-item .badge {
  3982. opacity: 0.4; }
  3983. .tabs-color-balanced .tab-item.tab-item-active, .tabs-color-balanced .tab-item.active, .tabs-color-balanced .tab-item.activated {
  3984. color: #33cd5f;
  3985. border: 0 solid #33cd5f; }
  3986. .tabs-color-balanced .tab-item.tab-item-active .badge, .tabs-color-balanced .tab-item.active .badge, .tabs-color-balanced .tab-item.activated .badge {
  3987. opacity: 1; }
  3988. .tabs-color-energized .tab-item {
  3989. color: rgba(255, 201, 0, 0.4);
  3990. opacity: 1; }
  3991. .tabs-color-energized .tab-item .badge {
  3992. opacity: 0.4; }
  3993. .tabs-color-energized .tab-item.tab-item-active, .tabs-color-energized .tab-item.active, .tabs-color-energized .tab-item.activated {
  3994. color: #ffc900;
  3995. border: 0 solid #ffc900; }
  3996. .tabs-color-energized .tab-item.tab-item-active .badge, .tabs-color-energized .tab-item.active .badge, .tabs-color-energized .tab-item.activated .badge {
  3997. opacity: 1; }
  3998. .tabs-color-royal .tab-item {
  3999. color: rgba(136, 106, 234, 0.4);
  4000. opacity: 1; }
  4001. .tabs-color-royal .tab-item .badge {
  4002. opacity: 0.4; }
  4003. .tabs-color-royal .tab-item.tab-item-active, .tabs-color-royal .tab-item.active, .tabs-color-royal .tab-item.activated {
  4004. color: #886aea;
  4005. border: 0 solid #886aea; }
  4006. .tabs-color-royal .tab-item.tab-item-active .badge, .tabs-color-royal .tab-item.active .badge, .tabs-color-royal .tab-item.activated .badge {
  4007. opacity: 1; }
  4008. .tabs-color-dark .tab-item {
  4009. color: rgba(68, 68, 68, 0.4);
  4010. opacity: 1; }
  4011. .tabs-color-dark .tab-item .badge {
  4012. opacity: 0.4; }
  4013. .tabs-color-dark .tab-item.tab-item-active, .tabs-color-dark .tab-item.active, .tabs-color-dark .tab-item.activated {
  4014. color: #444;
  4015. border: 0 solid #444; }
  4016. .tabs-color-dark .tab-item.tab-item-active .badge, .tabs-color-dark .tab-item.active .badge, .tabs-color-dark .tab-item.activated .badge {
  4017. opacity: 1; }
  4018. ion-tabs.tabs-color-active-light .tab-item {
  4019. color: #444; }
  4020. 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 {
  4021. color: #fff; }
  4022. ion-tabs.tabs-color-active-stable .tab-item {
  4023. color: #444; }
  4024. 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 {
  4025. color: #f8f8f8; }
  4026. ion-tabs.tabs-color-active-positive .tab-item {
  4027. color: #444; }
  4028. 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 {
  4029. color: #387ef5; }
  4030. ion-tabs.tabs-color-active-calm .tab-item {
  4031. color: #444; }
  4032. 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 {
  4033. color: #ff4b82; }
  4034. ion-tabs.tabs-color-active-assertive .tab-item {
  4035. color: #444; }
  4036. 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 {
  4037. color: #ef473a; }
  4038. ion-tabs.tabs-color-active-balanced .tab-item {
  4039. color: #444; }
  4040. 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 {
  4041. color: #33cd5f; }
  4042. ion-tabs.tabs-color-active-energized .tab-item {
  4043. color: #444; }
  4044. 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 {
  4045. color: #ffc900; }
  4046. ion-tabs.tabs-color-active-royal .tab-item {
  4047. color: #444; }
  4048. 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 {
  4049. color: #886aea; }
  4050. ion-tabs.tabs-color-active-dark .tab-item {
  4051. color: #fff; }
  4052. 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 {
  4053. color: #444; }
  4054. .tabs-top.tabs-striped {
  4055. padding-bottom: 0; }
  4056. .tabs-top.tabs-striped .tab-item {
  4057. background: transparent;
  4058. -webkit-transition: color .1s ease;
  4059. -moz-transition: color .1s ease;
  4060. -ms-transition: color .1s ease;
  4061. -o-transition: color .1s ease;
  4062. transition: color .1s ease; }
  4063. .tabs-top.tabs-striped .tab-item.tab-item-active, .tabs-top.tabs-striped .tab-item.active, .tabs-top.tabs-striped .tab-item.activated {
  4064. margin-top: 1px;
  4065. border-width: 0px 0px 2px 0px !important;
  4066. border-style: solid; }
  4067. .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 {
  4068. margin-top: -1px; }
  4069. .tabs-top.tabs-striped .tab-item .badge {
  4070. -webkit-transition: color .2s ease;
  4071. -moz-transition: color .2s ease;
  4072. -ms-transition: color .2s ease;
  4073. -o-transition: color .2s ease;
  4074. transition: color .2s ease; }
  4075. .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 {
  4076. display: block;
  4077. margin-top: -1px; }
  4078. .tabs-top.tabs-striped.tabs-icon-left .tab-item {
  4079. margin-top: 1px; }
  4080. .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 {
  4081. margin-top: -0.1em; }
  4082. /* Allow parent element to have tabs-top */
  4083. /* If you change this, change platform.scss as well */
  4084. .tabs-top > .tabs,
  4085. .tabs.tabs-top {
  4086. top: 44px;
  4087. padding-top: 0;
  4088. background-position: bottom;
  4089. border-top-width: 0;
  4090. border-bottom-width: 1px; }
  4091. .tabs-top > .tabs .tab-item.tab-item-active .badge, .tabs-top > .tabs .tab-item.active .badge, .tabs-top > .tabs .tab-item.activated .badge,
  4092. .tabs.tabs-top .tab-item.tab-item-active .badge,
  4093. .tabs.tabs-top .tab-item.active .badge,
  4094. .tabs.tabs-top .tab-item.activated .badge {
  4095. top: 4%; }
  4096. .tabs-top ~ .bar-header {
  4097. border-bottom-width: 0; }
  4098. .tab-item {
  4099. -webkit-box-flex: 1;
  4100. -webkit-flex: 1;
  4101. -moz-box-flex: 1;
  4102. -moz-flex: 1;
  4103. -ms-flex: 1;
  4104. flex: 1;
  4105. display: block;
  4106. overflow: hidden;
  4107. max-width: 150px;
  4108. height: 100%;
  4109. color: inherit;
  4110. text-align: center;
  4111. text-decoration: none;
  4112. text-overflow: ellipsis;
  4113. white-space: nowrap;
  4114. font-weight: 400;
  4115. font-size: 14px;
  4116. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
  4117. opacity: 0.7; }
  4118. .tab-item:hover {
  4119. cursor: pointer; }
  4120. .tab-item.tab-hidden {
  4121. display: none; }
  4122. .tabs-item-hide > .tabs,
  4123. .tabs.tabs-item-hide {
  4124. display: none; }
  4125. .tabs-icon-top > .tabs .tab-item,
  4126. .tabs-icon-top.tabs .tab-item,
  4127. .tabs-icon-bottom > .tabs .tab-item,
  4128. .tabs-icon-bottom.tabs .tab-item {
  4129. font-size: 10px;
  4130. line-height: 14px; }
  4131. .tab-item .icon {
  4132. display: block;
  4133. margin: 0 auto;
  4134. height: 32px;
  4135. font-size: 32px; }
  4136. .tabs-icon-left.tabs .tab-item,
  4137. .tabs-icon-left > .tabs .tab-item,
  4138. .tabs-icon-right.tabs .tab-item,
  4139. .tabs-icon-right > .tabs .tab-item {
  4140. font-size: 10px; }
  4141. .tabs-icon-left.tabs .tab-item .icon, .tabs-icon-left.tabs .tab-item .tab-title,
  4142. .tabs-icon-left > .tabs .tab-item .icon,
  4143. .tabs-icon-left > .tabs .tab-item .tab-title,
  4144. .tabs-icon-right.tabs .tab-item .icon,
  4145. .tabs-icon-right.tabs .tab-item .tab-title,
  4146. .tabs-icon-right > .tabs .tab-item .icon,
  4147. .tabs-icon-right > .tabs .tab-item .tab-title {
  4148. display: inline-block;
  4149. vertical-align: top;
  4150. margin-top: -.1em; }
  4151. .tabs-icon-left.tabs .tab-item .icon:before, .tabs-icon-left.tabs .tab-item .tab-title:before,
  4152. .tabs-icon-left > .tabs .tab-item .icon:before,
  4153. .tabs-icon-left > .tabs .tab-item .tab-title:before,
  4154. .tabs-icon-right.tabs .tab-item .icon:before,
  4155. .tabs-icon-right.tabs .tab-item .tab-title:before,
  4156. .tabs-icon-right > .tabs .tab-item .icon:before,
  4157. .tabs-icon-right > .tabs .tab-item .tab-title:before {
  4158. font-size: 24px;
  4159. line-height: 49px; }
  4160. .tabs-icon-left > .tabs .tab-item .icon,
  4161. .tabs-icon-left.tabs .tab-item .icon {
  4162. padding-right: 3px; }
  4163. .tabs-icon-right > .tabs .tab-item .icon,
  4164. .tabs-icon-right.tabs .tab-item .icon {
  4165. padding-left: 3px; }
  4166. .tabs-icon-only > .tabs .icon,
  4167. .tabs-icon-only.tabs .icon {
  4168. line-height: inherit; }
  4169. .tab-item.has-badge {
  4170. position: relative; }
  4171. .tab-item .badge {
  4172. position: absolute;
  4173. top: 4%;
  4174. right: 33%;
  4175. right: calc(50% - 26px);
  4176. padding: 1px 6px;
  4177. height: auto;
  4178. font-size: 12px;
  4179. line-height: 16px; }
  4180. /* Navigational tab */
  4181. /* Active state for tab */
  4182. .tab-item.tab-item-active,
  4183. .tab-item.active,
  4184. .tab-item.activated {
  4185. opacity: 1; }
  4186. .tab-item.tab-item-active.tab-item-light,
  4187. .tab-item.active.tab-item-light,
  4188. .tab-item.activated.tab-item-light {
  4189. color: #fff; }
  4190. .tab-item.tab-item-active.tab-item-stable,
  4191. .tab-item.active.tab-item-stable,
  4192. .tab-item.activated.tab-item-stable {
  4193. color: #f8f8f8; }
  4194. .tab-item.tab-item-active.tab-item-positive,
  4195. .tab-item.active.tab-item-positive,
  4196. .tab-item.activated.tab-item-positive {
  4197. color: #387ef5; }
  4198. .tab-item.tab-item-active.tab-item-calm,
  4199. .tab-item.active.tab-item-calm,
  4200. .tab-item.activated.tab-item-calm {
  4201. color: #ff4b82; }
  4202. .tab-item.tab-item-active.tab-item-assertive,
  4203. .tab-item.active.tab-item-assertive,
  4204. .tab-item.activated.tab-item-assertive {
  4205. color: #ef473a; }
  4206. .tab-item.tab-item-active.tab-item-balanced,
  4207. .tab-item.active.tab-item-balanced,
  4208. .tab-item.activated.tab-item-balanced {
  4209. color: #33cd5f; }
  4210. .tab-item.tab-item-active.tab-item-energized,
  4211. .tab-item.active.tab-item-energized,
  4212. .tab-item.activated.tab-item-energized {
  4213. color: #ffc900; }
  4214. .tab-item.tab-item-active.tab-item-royal,
  4215. .tab-item.active.tab-item-royal,
  4216. .tab-item.activated.tab-item-royal {
  4217. color: #886aea; }
  4218. .tab-item.tab-item-active.tab-item-dark,
  4219. .tab-item.active.tab-item-dark,
  4220. .tab-item.activated.tab-item-dark {
  4221. color: #444; }
  4222. .item.tabs {
  4223. display: -webkit-box;
  4224. display: -webkit-flex;
  4225. display: -moz-box;
  4226. display: -moz-flex;
  4227. display: -ms-flexbox;
  4228. display: flex;
  4229. padding: 0; }
  4230. .item.tabs .icon:before {
  4231. position: relative; }
  4232. .tab-item.disabled,
  4233. .tab-item[disabled] {
  4234. opacity: .4;
  4235. cursor: default;
  4236. pointer-events: none; }
  4237. .nav-bar-tabs-top.hide ~ .view-container .tabs-top .tabs {
  4238. top: 0; }
  4239. .pane[hide-nav-bar="true"] .has-tabs-top {
  4240. top: 49px; }
  4241. /**
  4242. * Menus
  4243. * --------------------------------------------------
  4244. * Side panel structure
  4245. */
  4246. .menu {
  4247. position: absolute;
  4248. top: 0;
  4249. bottom: 0;
  4250. z-index: 0;
  4251. overflow: hidden;
  4252. min-height: 100%;
  4253. max-height: 100%;
  4254. width: 275px;
  4255. background-color: #fff; }
  4256. .menu .scroll-content {
  4257. z-index: 10; }
  4258. .menu .bar-header {
  4259. z-index: 11; }
  4260. .menu-content {
  4261. -webkit-transform: none;
  4262. transform: none;
  4263. box-shadow: -1px 0px 2px rgba(0, 0, 0, 0.2), 1px 0px 2px rgba(0, 0, 0, 0.2); }
  4264. .menu-open .menu-content .pane,
  4265. .menu-open .menu-content .scroll-content {
  4266. pointer-events: none; }
  4267. .menu-open .menu-content .scroll-content .scroll {
  4268. pointer-events: none; }
  4269. .menu-open .menu-content .scroll-content:not(.overflow-scroll) {
  4270. overflow: hidden; }
  4271. .grade-b .menu-content,
  4272. .grade-c .menu-content {
  4273. -webkit-box-sizing: content-box;
  4274. -moz-box-sizing: content-box;
  4275. box-sizing: content-box;
  4276. right: -1px;
  4277. left: -1px;
  4278. border-right: 1px solid #ccc;
  4279. border-left: 1px solid #ccc;
  4280. box-shadow: none; }
  4281. .menu-left {
  4282. left: 0; }
  4283. .menu-right {
  4284. right: 0; }
  4285. .aside-open.aside-resizing .menu-right {
  4286. display: none; }
  4287. .menu-animated {
  4288. -webkit-transition: -webkit-transform 200ms ease;
  4289. transition: transform 200ms ease; }
  4290. /**
  4291. * Modals
  4292. * --------------------------------------------------
  4293. * Modals are independent windows that slide in from off-screen.
  4294. */
  4295. .modal-backdrop,
  4296. .modal-backdrop-bg {
  4297. position: fixed;
  4298. top: 0;
  4299. left: 0;
  4300. z-index: 10;
  4301. width: 100%;
  4302. height: 100%; }
  4303. .modal-backdrop-bg {
  4304. pointer-events: none; }
  4305. .modal {
  4306. display: block;
  4307. position: absolute;
  4308. top: 0;
  4309. z-index: 10;
  4310. overflow: hidden;
  4311. min-height: 100%;
  4312. width: 100%;
  4313. background-color: #fff; }
  4314. @media (min-width: 680px) {
  4315. .modal {
  4316. top: 20%;
  4317. right: 20%;
  4318. bottom: 20%;
  4319. left: 20%;
  4320. min-height: 240px;
  4321. width: 60%; }
  4322. .modal.ng-leave-active {
  4323. bottom: 0; }
  4324. .platform-ios.platform-cordova .modal-wrapper .modal .bar-header:not(.bar-subheader) {
  4325. height: 44px; }
  4326. .platform-ios.platform-cordova .modal-wrapper .modal .bar-header:not(.bar-subheader) > * {
  4327. margin-top: 0; }
  4328. .platform-ios.platform-cordova .modal-wrapper .modal .tabs-top > .tabs,
  4329. .platform-ios.platform-cordova .modal-wrapper .modal .tabs.tabs-top {
  4330. top: 44px; }
  4331. .platform-ios.platform-cordova .modal-wrapper .modal .has-header,
  4332. .platform-ios.platform-cordova .modal-wrapper .modal .bar-subheader {
  4333. top: 44px; }
  4334. .platform-ios.platform-cordova .modal-wrapper .modal .has-subheader {
  4335. top: 88px; }
  4336. .platform-ios.platform-cordova .modal-wrapper .modal .has-header.has-tabs-top {
  4337. top: 93px; }
  4338. .platform-ios.platform-cordova .modal-wrapper .modal .has-header.has-subheader.has-tabs-top {
  4339. top: 137px; }
  4340. .modal-backdrop-bg {
  4341. -webkit-transition: opacity 300ms ease-in-out;
  4342. transition: opacity 300ms ease-in-out;
  4343. background-color: #000;
  4344. opacity: 0; }
  4345. .active .modal-backdrop-bg {
  4346. opacity: 0.5; } }
  4347. .modal-open {
  4348. pointer-events: none; }
  4349. .modal-open .modal,
  4350. .modal-open .modal-backdrop {
  4351. pointer-events: auto; }
  4352. .modal-open.loading-active .modal,
  4353. .modal-open.loading-active .modal-backdrop {
  4354. pointer-events: none; }
  4355. /**
  4356. * Popovers
  4357. * --------------------------------------------------
  4358. * Popovers are independent views which float over content
  4359. */
  4360. .popover-backdrop {
  4361. position: fixed;
  4362. top: 0;
  4363. left: 0;
  4364. z-index: 10;
  4365. width: 100%;
  4366. height: 100%;
  4367. background-color: transparent; }
  4368. .popover-backdrop.active {
  4369. background-color: rgba(0, 0, 0, 0.1); }
  4370. .popover {
  4371. position: absolute;
  4372. top: 25%;
  4373. left: 50%;
  4374. z-index: 10;
  4375. display: block;
  4376. margin-top: 12px;
  4377. margin-left: -110px;
  4378. height: 280px;
  4379. width: 220px;
  4380. background-color: #fff;
  4381. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  4382. opacity: 0; }
  4383. .popover .item:first-child {
  4384. border-top: 0; }
  4385. .popover .item:last-child {
  4386. border-bottom: 0; }
  4387. .popover.popover-bottom {
  4388. margin-top: -12px; }
  4389. .popover,
  4390. .popover .bar-header {
  4391. border-radius: 2px; }
  4392. .popover .scroll-content {
  4393. z-index: 1;
  4394. margin: 2px 0; }
  4395. .popover .bar-header {
  4396. border-bottom-right-radius: 0;
  4397. border-bottom-left-radius: 0; }
  4398. .popover .has-header {
  4399. border-top-right-radius: 0;
  4400. border-top-left-radius: 0; }
  4401. .popover-arrow {
  4402. display: none; }
  4403. .platform-ios .popover {
  4404. box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  4405. border-radius: 10px; }
  4406. .platform-ios .popover .bar-header {
  4407. -webkit-border-top-right-radius: 10px;
  4408. border-top-right-radius: 10px;
  4409. -webkit-border-top-left-radius: 10px;
  4410. border-top-left-radius: 10px; }
  4411. .platform-ios .popover .scroll-content {
  4412. margin: 8px 0;
  4413. border-radius: 10px; }
  4414. .platform-ios .popover .scroll-content.has-header {
  4415. margin-top: 0; }
  4416. .platform-ios .popover-arrow {
  4417. position: absolute;
  4418. display: block;
  4419. top: -17px;
  4420. width: 30px;
  4421. height: 19px;
  4422. overflow: hidden; }
  4423. .platform-ios .popover-arrow:after {
  4424. position: absolute;
  4425. top: 12px;
  4426. left: 5px;
  4427. width: 20px;
  4428. height: 20px;
  4429. background-color: #fff;
  4430. border-radius: 3px;
  4431. content: '';
  4432. -webkit-transform: rotate(-45deg);
  4433. transform: rotate(-45deg); }
  4434. .platform-ios .popover-bottom .popover-arrow {
  4435. top: auto;
  4436. bottom: -10px; }
  4437. .platform-ios .popover-bottom .popover-arrow:after {
  4438. top: -6px; }
  4439. .platform-android .popover {
  4440. margin-top: -32px;
  4441. background-color: #fafafa;
  4442. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35); }
  4443. .platform-android .popover .item {
  4444. border-color: #fafafa;
  4445. background-color: #fafafa;
  4446. color: #4d4d4d; }
  4447. .platform-android .popover.popover-bottom {
  4448. margin-top: 32px; }
  4449. .platform-android .popover-backdrop,
  4450. .platform-android .popover-backdrop.active {
  4451. background-color: transparent; }
  4452. .popover-open {
  4453. pointer-events: none; }
  4454. .popover-open .popover,
  4455. .popover-open .popover-backdrop {
  4456. pointer-events: auto; }
  4457. .popover-open.loading-active .popover,
  4458. .popover-open.loading-active .popover-backdrop {
  4459. pointer-events: none; }
  4460. @media (min-width: 680px) {
  4461. .popover {
  4462. width: 360px;
  4463. margin-left: -180px; } }
  4464. /**
  4465. * Popups
  4466. * --------------------------------------------------
  4467. */
  4468. .popup-container {
  4469. position: absolute;
  4470. top: 0;
  4471. left: 0;
  4472. bottom: 0;
  4473. right: 0;
  4474. background: transparent;
  4475. display: -webkit-box;
  4476. display: -webkit-flex;
  4477. display: -moz-box;
  4478. display: -moz-flex;
  4479. display: -ms-flexbox;
  4480. display: flex;
  4481. -webkit-box-pack: center;
  4482. -ms-flex-pack: center;
  4483. -webkit-justify-content: center;
  4484. -moz-justify-content: center;
  4485. justify-content: center;
  4486. -webkit-box-align: center;
  4487. -ms-flex-align: center;
  4488. -webkit-align-items: center;
  4489. -moz-align-items: center;
  4490. align-items: center;
  4491. z-index: 12;
  4492. visibility: hidden; }
  4493. .popup-container.popup-showing {
  4494. visibility: visible; }
  4495. .popup-container.popup-hidden .popup {
  4496. -webkit-animation-name: scaleOut;
  4497. animation-name: scaleOut;
  4498. -webkit-animation-duration: 0.1s;
  4499. animation-duration: 0.1s;
  4500. -webkit-animation-timing-function: ease-in-out;
  4501. animation-timing-function: ease-in-out;
  4502. -webkit-animation-fill-mode: both;
  4503. animation-fill-mode: both; }
  4504. .popup-container.active .popup {
  4505. -webkit-animation-name: superScaleIn;
  4506. animation-name: superScaleIn;
  4507. -webkit-animation-duration: 0.2s;
  4508. animation-duration: 0.2s;
  4509. -webkit-animation-timing-function: ease-in-out;
  4510. animation-timing-function: ease-in-out;
  4511. -webkit-animation-fill-mode: both;
  4512. animation-fill-mode: both; }
  4513. .popup-container .popup {
  4514. width: 250px;
  4515. max-width: 100%;
  4516. max-height: 90%;
  4517. border-radius: 0px;
  4518. background-color: rgba(255, 255, 255, 0.9);
  4519. display: -webkit-box;
  4520. display: -webkit-flex;
  4521. display: -moz-box;
  4522. display: -moz-flex;
  4523. display: -ms-flexbox;
  4524. display: flex;
  4525. -webkit-box-direction: normal;
  4526. -webkit-box-orient: vertical;
  4527. -webkit-flex-direction: column;
  4528. -moz-flex-direction: column;
  4529. -ms-flex-direction: column;
  4530. flex-direction: column; }
  4531. .popup-container input,
  4532. .popup-container textarea {
  4533. width: 100%; }
  4534. .popup-head {
  4535. padding: 15px 10px;
  4536. border-bottom: 1px solid #eee;
  4537. text-align: center; }
  4538. .popup-title {
  4539. margin: 0;
  4540. padding: 0;
  4541. font-size: 15px; }
  4542. .popup-sub-title {
  4543. margin: 5px 0 0 0;
  4544. padding: 0;
  4545. font-weight: normal;
  4546. font-size: 11px; }
  4547. .popup-body {
  4548. padding: 10px;
  4549. overflow: auto; }
  4550. .popup-buttons {
  4551. display: -webkit-box;
  4552. display: -webkit-flex;
  4553. display: -moz-box;
  4554. display: -moz-flex;
  4555. display: -ms-flexbox;
  4556. display: flex;
  4557. -webkit-box-direction: normal;
  4558. -webkit-box-orient: horizontal;
  4559. -webkit-flex-direction: row;
  4560. -moz-flex-direction: row;
  4561. -ms-flex-direction: row;
  4562. flex-direction: row;
  4563. padding: 10px;
  4564. min-height: 65px; }
  4565. .popup-buttons .button {
  4566. -webkit-box-flex: 1;
  4567. -webkit-flex: 1;
  4568. -moz-box-flex: 1;
  4569. -moz-flex: 1;
  4570. -ms-flex: 1;
  4571. flex: 1;
  4572. display: block;
  4573. min-height: 45px;
  4574. border-radius: 2px;
  4575. line-height: 20px;
  4576. margin-right: 5px; }
  4577. .popup-buttons .button:last-child {
  4578. margin-right: 0px; }
  4579. .popup-open {
  4580. pointer-events: none; }
  4581. .popup-open.modal-open .modal {
  4582. pointer-events: none; }
  4583. .popup-open .popup-backdrop, .popup-open .popup {
  4584. pointer-events: auto; }
  4585. /**
  4586. * Loading
  4587. * --------------------------------------------------
  4588. */
  4589. .loading-container {
  4590. position: absolute;
  4591. left: 0;
  4592. top: 0;
  4593. right: 0;
  4594. bottom: 0;
  4595. z-index: 13;
  4596. display: -webkit-box;
  4597. display: -webkit-flex;
  4598. display: -moz-box;
  4599. display: -moz-flex;
  4600. display: -ms-flexbox;
  4601. display: flex;
  4602. -webkit-box-pack: center;
  4603. -ms-flex-pack: center;
  4604. -webkit-justify-content: center;
  4605. -moz-justify-content: center;
  4606. justify-content: center;
  4607. -webkit-box-align: center;
  4608. -ms-flex-align: center;
  4609. -webkit-align-items: center;
  4610. -moz-align-items: center;
  4611. align-items: center;
  4612. -webkit-transition: 0.2s opacity linear;
  4613. transition: 0.2s opacity linear;
  4614. visibility: hidden;
  4615. opacity: 0; }
  4616. .loading-container:not(.visible) .icon,
  4617. .loading-container:not(.visible) .spinner {
  4618. display: none; }
  4619. .loading-container.visible {
  4620. visibility: visible; }
  4621. .loading-container.active {
  4622. opacity: 1; }
  4623. .loading-container .loading {
  4624. padding: 20px;
  4625. border-radius: 5px;
  4626. background-color: rgba(0, 0, 0, 0.7);
  4627. color: #fff;
  4628. text-align: center;
  4629. text-overflow: ellipsis;
  4630. font-size: 15px; }
  4631. .loading-container .loading h1, .loading-container .loading h2, .loading-container .loading h3, .loading-container .loading h4, .loading-container .loading h5, .loading-container .loading h6 {
  4632. color: #fff; }
  4633. /**
  4634. * Items
  4635. * --------------------------------------------------
  4636. */
  4637. .item {
  4638. border-color: #ddd;
  4639. background-color: #fff;
  4640. color: #444;
  4641. position: relative;
  4642. z-index: 2;
  4643. display: block;
  4644. margin: -1px;
  4645. padding: 16px;
  4646. border-width: 1px;
  4647. border-style: solid;
  4648. font-size: 16px; }
  4649. .item h2 {
  4650. margin: 0 0 2px 0;
  4651. font-size: 16px;
  4652. font-weight: normal; }
  4653. .item h3 {
  4654. margin: 0 0 4px 0;
  4655. font-size: 14px; }
  4656. .item h4 {
  4657. margin: 0 0 4px 0;
  4658. font-size: 12px; }
  4659. .item h5, .item h6 {
  4660. margin: 0 0 3px 0;
  4661. font-size: 10px; }
  4662. .item p {
  4663. color: #666;
  4664. font-size: 14px;
  4665. margin-bottom: 2px; }
  4666. .item h1:last-child,
  4667. .item h2:last-child,
  4668. .item h3:last-child,
  4669. .item h4:last-child,
  4670. .item h5:last-child,
  4671. .item h6:last-child,
  4672. .item p:last-child {
  4673. margin-bottom: 0; }
  4674. .item .badge {
  4675. display: -webkit-box;
  4676. display: -webkit-flex;
  4677. display: -moz-box;
  4678. display: -moz-flex;
  4679. display: -ms-flexbox;
  4680. display: flex;
  4681. position: absolute;
  4682. top: 16px;
  4683. right: 32px; }
  4684. .item.item-button-right .badge {
  4685. right: 67px; }
  4686. .item.item-divider .badge {
  4687. top: 8px; }
  4688. .item .badge + .badge {
  4689. margin-right: 5px; }
  4690. .item.item-light {
  4691. border-color: #ddd;
  4692. background-color: #fff;
  4693. color: #444; }
  4694. .item.item-stable {
  4695. border-color: #b2b2b2;
  4696. background-color: #f8f8f8;
  4697. color: #444; }
  4698. .item.item-positive {
  4699. border-color: #0c60ee;
  4700. background-color: #387ef5;
  4701. color: #fff; }
  4702. .item.item-calm {
  4703. border-color: #ff185f;
  4704. background-color: #ff4b82;
  4705. color: #fff; }
  4706. .item.item-assertive {
  4707. border-color: #e42112;
  4708. background-color: #ef473a;
  4709. color: #fff; }
  4710. .item.item-balanced {
  4711. border-color: #28a54c;
  4712. background-color: #33cd5f;
  4713. color: #fff; }
  4714. .item.item-energized {
  4715. border-color: #e6b500;
  4716. background-color: #ffc900;
  4717. color: #fff; }
  4718. .item.item-royal {
  4719. border-color: #6b46e5;
  4720. background-color: #886aea;
  4721. color: #fff; }
  4722. .item.item-dark {
  4723. border-color: #111;
  4724. background-color: #444;
  4725. color: #fff; }
  4726. .item[ng-click]:hover {
  4727. cursor: pointer; }
  4728. .list-borderless .item,
  4729. .item-borderless {
  4730. border-width: 0; }
  4731. .item.active,
  4732. .item.activated,
  4733. .item-complex.active .item-content,
  4734. .item-complex.activated .item-content,
  4735. .item .item-content.active,
  4736. .item .item-content.activated {
  4737. border-color: #ccc;
  4738. background-color: #D9D9D9; }
  4739. .item.active.item-complex > .item-content,
  4740. .item.activated.item-complex > .item-content,
  4741. .item-complex.active .item-content.item-complex > .item-content,
  4742. .item-complex.activated .item-content.item-complex > .item-content,
  4743. .item .item-content.active.item-complex > .item-content,
  4744. .item .item-content.activated.item-complex > .item-content {
  4745. border-color: #ccc;
  4746. background-color: #D9D9D9; }
  4747. .item.active.item-light,
  4748. .item.activated.item-light,
  4749. .item-complex.active .item-content.item-light,
  4750. .item-complex.activated .item-content.item-light,
  4751. .item .item-content.active.item-light,
  4752. .item .item-content.activated.item-light {
  4753. border-color: #ccc;
  4754. background-color: #fafafa; }
  4755. .item.active.item-light.item-complex > .item-content,
  4756. .item.activated.item-light.item-complex > .item-content,
  4757. .item-complex.active .item-content.item-light.item-complex > .item-content,
  4758. .item-complex.activated .item-content.item-light.item-complex > .item-content,
  4759. .item .item-content.active.item-light.item-complex > .item-content,
  4760. .item .item-content.activated.item-light.item-complex > .item-content {
  4761. border-color: #ccc;
  4762. background-color: #fafafa; }
  4763. .item.active.item-stable,
  4764. .item.activated.item-stable,
  4765. .item-complex.active .item-content.item-stable,
  4766. .item-complex.activated .item-content.item-stable,
  4767. .item .item-content.active.item-stable,
  4768. .item .item-content.activated.item-stable {
  4769. border-color: #a2a2a2;
  4770. background-color: #e5e5e5; }
  4771. .item.active.item-stable.item-complex > .item-content,
  4772. .item.activated.item-stable.item-complex > .item-content,
  4773. .item-complex.active .item-content.item-stable.item-complex > .item-content,
  4774. .item-complex.activated .item-content.item-stable.item-complex > .item-content,
  4775. .item .item-content.active.item-stable.item-complex > .item-content,
  4776. .item .item-content.activated.item-stable.item-complex > .item-content {
  4777. border-color: #a2a2a2;
  4778. background-color: #e5e5e5; }
  4779. .item.active.item-positive,
  4780. .item.activated.item-positive,
  4781. .item-complex.active .item-content.item-positive,
  4782. .item-complex.activated .item-content.item-positive,
  4783. .item .item-content.active.item-positive,
  4784. .item .item-content.activated.item-positive {
  4785. border-color: #0c60ee;
  4786. background-color: #0c60ee; }
  4787. .item.active.item-positive.item-complex > .item-content,
  4788. .item.activated.item-positive.item-complex > .item-content,
  4789. .item-complex.active .item-content.item-positive.item-complex > .item-content,
  4790. .item-complex.activated .item-content.item-positive.item-complex > .item-content,
  4791. .item .item-content.active.item-positive.item-complex > .item-content,
  4792. .item .item-content.activated.item-positive.item-complex > .item-content {
  4793. border-color: #0c60ee;
  4794. background-color: #0c60ee; }
  4795. .item.active.item-calm,
  4796. .item.activated.item-calm,
  4797. .item-complex.active .item-content.item-calm,
  4798. .item-complex.activated .item-content.item-calm,
  4799. .item .item-content.active.item-calm,
  4800. .item .item-content.activated.item-calm {
  4801. border-color: #ff185f;
  4802. background-color: #ff185f; }
  4803. .item.active.item-calm.item-complex > .item-content,
  4804. .item.activated.item-calm.item-complex > .item-content,
  4805. .item-complex.active .item-content.item-calm.item-complex > .item-content,
  4806. .item-complex.activated .item-content.item-calm.item-complex > .item-content,
  4807. .item .item-content.active.item-calm.item-complex > .item-content,
  4808. .item .item-content.activated.item-calm.item-complex > .item-content {
  4809. border-color: #ff185f;
  4810. background-color: #ff185f; }
  4811. .item.active.item-assertive,
  4812. .item.activated.item-assertive,
  4813. .item-complex.active .item-content.item-assertive,
  4814. .item-complex.activated .item-content.item-assertive,
  4815. .item .item-content.active.item-assertive,
  4816. .item .item-content.activated.item-assertive {
  4817. border-color: #e42112;
  4818. background-color: #e42112; }
  4819. .item.active.item-assertive.item-complex > .item-content,
  4820. .item.activated.item-assertive.item-complex > .item-content,
  4821. .item-complex.active .item-content.item-assertive.item-complex > .item-content,
  4822. .item-complex.activated .item-content.item-assertive.item-complex > .item-content,
  4823. .item .item-content.active.item-assertive.item-complex > .item-content,
  4824. .item .item-content.activated.item-assertive.item-complex > .item-content {
  4825. border-color: #e42112;
  4826. background-color: #e42112; }
  4827. .item.active.item-balanced,
  4828. .item.activated.item-balanced,
  4829. .item-complex.active .item-content.item-balanced,
  4830. .item-complex.activated .item-content.item-balanced,
  4831. .item .item-content.active.item-balanced,
  4832. .item .item-content.activated.item-balanced {
  4833. border-color: #28a54c;
  4834. background-color: #28a54c; }
  4835. .item.active.item-balanced.item-complex > .item-content,
  4836. .item.activated.item-balanced.item-complex > .item-content,
  4837. .item-complex.active .item-content.item-balanced.item-complex > .item-content,
  4838. .item-complex.activated .item-content.item-balanced.item-complex > .item-content,
  4839. .item .item-content.active.item-balanced.item-complex > .item-content,
  4840. .item .item-content.activated.item-balanced.item-complex > .item-content {
  4841. border-color: #28a54c;
  4842. background-color: #28a54c; }
  4843. .item.active.item-energized,
  4844. .item.activated.item-energized,
  4845. .item-complex.active .item-content.item-energized,
  4846. .item-complex.activated .item-content.item-energized,
  4847. .item .item-content.active.item-energized,
  4848. .item .item-content.activated.item-energized {
  4849. border-color: #e6b500;
  4850. background-color: #e6b500; }
  4851. .item.active.item-energized.item-complex > .item-content,
  4852. .item.activated.item-energized.item-complex > .item-content,
  4853. .item-complex.active .item-content.item-energized.item-complex > .item-content,
  4854. .item-complex.activated .item-content.item-energized.item-complex > .item-content,
  4855. .item .item-content.active.item-energized.item-complex > .item-content,
  4856. .item .item-content.activated.item-energized.item-complex > .item-content {
  4857. border-color: #e6b500;
  4858. background-color: #e6b500; }
  4859. .item.active.item-royal,
  4860. .item.activated.item-royal,
  4861. .item-complex.active .item-content.item-royal,
  4862. .item-complex.activated .item-content.item-royal,
  4863. .item .item-content.active.item-royal,
  4864. .item .item-content.activated.item-royal {
  4865. border-color: #6b46e5;
  4866. background-color: #6b46e5; }
  4867. .item.active.item-royal.item-complex > .item-content,
  4868. .item.activated.item-royal.item-complex > .item-content,
  4869. .item-complex.active .item-content.item-royal.item-complex > .item-content,
  4870. .item-complex.activated .item-content.item-royal.item-complex > .item-content,
  4871. .item .item-content.active.item-royal.item-complex > .item-content,
  4872. .item .item-content.activated.item-royal.item-complex > .item-content {
  4873. border-color: #6b46e5;
  4874. background-color: #6b46e5; }
  4875. .item.active.item-dark,
  4876. .item.activated.item-dark,
  4877. .item-complex.active .item-content.item-dark,
  4878. .item-complex.activated .item-content.item-dark,
  4879. .item .item-content.active.item-dark,
  4880. .item .item-content.activated.item-dark {
  4881. border-color: #000;
  4882. background-color: #262626; }
  4883. .item.active.item-dark.item-complex > .item-content,
  4884. .item.activated.item-dark.item-complex > .item-content,
  4885. .item-complex.active .item-content.item-dark.item-complex > .item-content,
  4886. .item-complex.activated .item-content.item-dark.item-complex > .item-content,
  4887. .item .item-content.active.item-dark.item-complex > .item-content,
  4888. .item .item-content.activated.item-dark.item-complex > .item-content {
  4889. border-color: #000;
  4890. background-color: #262626; }
  4891. .item,
  4892. .item h1,
  4893. .item h2,
  4894. .item h3,
  4895. .item h4,
  4896. .item h5,
  4897. .item h6,
  4898. .item p,
  4899. .item-content,
  4900. .item-content h1,
  4901. .item-content h2,
  4902. .item-content h3,
  4903. .item-content h4,
  4904. .item-content h5,
  4905. .item-content h6,
  4906. .item-content p {
  4907. overflow: hidden;
  4908. text-overflow: ellipsis;
  4909. white-space: nowrap; }
  4910. a.item {
  4911. color: inherit;
  4912. text-decoration: none; }
  4913. a.item:hover, a.item:focus {
  4914. text-decoration: none; }
  4915. /**
  4916. * Complex Items
  4917. * --------------------------------------------------
  4918. * Adding .item-complex allows the .item to be slidable and
  4919. * have options underneath the button, but also requires an
  4920. * additional .item-content element inside .item.
  4921. * Basically .item-complex removes any default settings which
  4922. * .item added, so that .item-content looks them as just .item.
  4923. */
  4924. .item-complex,
  4925. a.item.item-complex,
  4926. button.item.item-complex {
  4927. padding: 0; }
  4928. .item-complex .item-content,
  4929. .item-radio .item-content {
  4930. position: relative;
  4931. z-index: 2;
  4932. padding: 16px 49px 16px 16px;
  4933. border: none;
  4934. background-color: #fff; }
  4935. a.item-content {
  4936. display: block;
  4937. color: inherit;
  4938. text-decoration: none; }
  4939. .item-text-wrap .item,
  4940. .item-text-wrap .item-content,
  4941. .item-text-wrap,
  4942. .item-text-wrap h1,
  4943. .item-text-wrap h2,
  4944. .item-text-wrap h3,
  4945. .item-text-wrap h4,
  4946. .item-text-wrap h5,
  4947. .item-text-wrap h6,
  4948. .item-text-wrap p,
  4949. .item-complex.item-text-wrap .item-content,
  4950. .item-body h1,
  4951. .item-body h2,
  4952. .item-body h3,
  4953. .item-body h4,
  4954. .item-body h5,
  4955. .item-body h6,
  4956. .item-body p {
  4957. overflow: visible;
  4958. white-space: normal; }
  4959. .item-complex.item-text-wrap,
  4960. .item-complex.item-text-wrap h1,
  4961. .item-complex.item-text-wrap h2,
  4962. .item-complex.item-text-wrap h3,
  4963. .item-complex.item-text-wrap h4,
  4964. .item-complex.item-text-wrap h5,
  4965. .item-complex.item-text-wrap h6,
  4966. .item-complex.item-text-wrap p {
  4967. overflow: visible;
  4968. white-space: normal; }
  4969. .item-complex.item-light > .item-content {
  4970. border-color: #ddd;
  4971. background-color: #fff;
  4972. color: #444; }
  4973. .item-complex.item-light > .item-content.active, .item-complex.item-light > .item-content:active {
  4974. border-color: #ccc;
  4975. background-color: #fafafa; }
  4976. .item-complex.item-light > .item-content.active.item-complex > .item-content, .item-complex.item-light > .item-content:active.item-complex > .item-content {
  4977. border-color: #ccc;
  4978. background-color: #fafafa; }
  4979. .item-complex.item-stable > .item-content {
  4980. border-color: #b2b2b2;
  4981. background-color: #f8f8f8;
  4982. color: #444; }
  4983. .item-complex.item-stable > .item-content.active, .item-complex.item-stable > .item-content:active {
  4984. border-color: #a2a2a2;
  4985. background-color: #e5e5e5; }
  4986. .item-complex.item-stable > .item-content.active.item-complex > .item-content, .item-complex.item-stable > .item-content:active.item-complex > .item-content {
  4987. border-color: #a2a2a2;
  4988. background-color: #e5e5e5; }
  4989. .item-complex.item-positive > .item-content {
  4990. border-color: #0c60ee;
  4991. background-color: #387ef5;
  4992. color: #fff; }
  4993. .item-complex.item-positive > .item-content.active, .item-complex.item-positive > .item-content:active {
  4994. border-color: #0c60ee;
  4995. background-color: #0c60ee; }
  4996. .item-complex.item-positive > .item-content.active.item-complex > .item-content, .item-complex.item-positive > .item-content:active.item-complex > .item-content {
  4997. border-color: #0c60ee;
  4998. background-color: #0c60ee; }
  4999. .item-complex.item-calm > .item-content {
  5000. border-color: #ff185f;
  5001. background-color: #ff4b82;
  5002. color: #fff; }
  5003. .item-complex.item-calm > .item-content.active, .item-complex.item-calm > .item-content:active {
  5004. border-color: #ff185f;
  5005. background-color: #ff185f; }
  5006. .item-complex.item-calm > .item-content.active.item-complex > .item-content, .item-complex.item-calm > .item-content:active.item-complex > .item-content {
  5007. border-color: #ff185f;
  5008. background-color: #ff185f; }
  5009. .item-complex.item-assertive > .item-content {
  5010. border-color: #e42112;
  5011. background-color: #ef473a;
  5012. color: #fff; }
  5013. .item-complex.item-assertive > .item-content.active, .item-complex.item-assertive > .item-content:active {
  5014. border-color: #e42112;
  5015. background-color: #e42112; }
  5016. .item-complex.item-assertive > .item-content.active.item-complex > .item-content, .item-complex.item-assertive > .item-content:active.item-complex > .item-content {
  5017. border-color: #e42112;
  5018. background-color: #e42112; }
  5019. .item-complex.item-balanced > .item-content {
  5020. border-color: #28a54c;
  5021. background-color: #33cd5f;
  5022. color: #fff; }
  5023. .item-complex.item-balanced > .item-content.active, .item-complex.item-balanced > .item-content:active {
  5024. border-color: #28a54c;
  5025. background-color: #28a54c; }
  5026. .item-complex.item-balanced > .item-content.active.item-complex > .item-content, .item-complex.item-balanced > .item-content:active.item-complex > .item-content {
  5027. border-color: #28a54c;
  5028. background-color: #28a54c; }
  5029. .item-complex.item-energized > .item-content {
  5030. border-color: #e6b500;
  5031. background-color: #ffc900;
  5032. color: #fff; }
  5033. .item-complex.item-energized > .item-content.active, .item-complex.item-energized > .item-content:active {
  5034. border-color: #e6b500;
  5035. background-color: #e6b500; }
  5036. .item-complex.item-energized > .item-content.active.item-complex > .item-content, .item-complex.item-energized > .item-content:active.item-complex > .item-content {
  5037. border-color: #e6b500;
  5038. background-color: #e6b500; }
  5039. .item-complex.item-royal > .item-content {
  5040. border-color: #6b46e5;
  5041. background-color: #886aea;
  5042. color: #fff; }
  5043. .item-complex.item-royal > .item-content.active, .item-complex.item-royal > .item-content:active {
  5044. border-color: #6b46e5;
  5045. background-color: #6b46e5; }
  5046. .item-complex.item-royal > .item-content.active.item-complex > .item-content, .item-complex.item-royal > .item-content:active.item-complex > .item-content {
  5047. border-color: #6b46e5;
  5048. background-color: #6b46e5; }
  5049. .item-complex.item-dark > .item-content {
  5050. border-color: #111;
  5051. background-color: #444;
  5052. color: #fff; }
  5053. .item-complex.item-dark > .item-content.active, .item-complex.item-dark > .item-content:active {
  5054. border-color: #000;
  5055. background-color: #262626; }
  5056. .item-complex.item-dark > .item-content.active.item-complex > .item-content, .item-complex.item-dark > .item-content:active.item-complex > .item-content {
  5057. border-color: #000;
  5058. background-color: #262626; }
  5059. /**
  5060. * Item Icons
  5061. * --------------------------------------------------
  5062. */
  5063. .item-icon-left .icon,
  5064. .item-icon-right .icon {
  5065. display: -webkit-box;
  5066. display: -webkit-flex;
  5067. display: -moz-box;
  5068. display: -moz-flex;
  5069. display: -ms-flexbox;
  5070. display: flex;
  5071. -webkit-box-align: center;
  5072. -ms-flex-align: center;
  5073. -webkit-align-items: center;
  5074. -moz-align-items: center;
  5075. align-items: center;
  5076. position: absolute;
  5077. top: 0;
  5078. height: 100%;
  5079. font-size: 32px; }
  5080. .item-icon-left .icon:before,
  5081. .item-icon-right .icon:before {
  5082. display: block;
  5083. width: 32px;
  5084. text-align: center; }
  5085. .item .fill-icon {
  5086. min-width: 30px;
  5087. min-height: 30px;
  5088. font-size: 28px; }
  5089. .item-icon-left {
  5090. padding-left: 54px; }
  5091. .item-icon-left .icon {
  5092. left: 11px; }
  5093. .item-complex.item-icon-left {
  5094. padding-left: 0; }
  5095. .item-complex.item-icon-left .item-content {
  5096. padding-left: 54px; }
  5097. .item-icon-right {
  5098. padding-right: 54px; }
  5099. .item-icon-right .icon {
  5100. right: 11px; }
  5101. .item-complex.item-icon-right {
  5102. padding-right: 0; }
  5103. .item-complex.item-icon-right .item-content {
  5104. padding-right: 54px; }
  5105. .item-icon-left.item-icon-right .icon:first-child {
  5106. right: auto; }
  5107. .item-icon-left.item-icon-right .icon:last-child,
  5108. .item-icon-left .item-delete .icon {
  5109. left: auto; }
  5110. .item-icon-left .icon-accessory,
  5111. .item-icon-right .icon-accessory {
  5112. color: #ccc;
  5113. font-size: 16px; }
  5114. .item-icon-left .icon-accessory {
  5115. left: 3px; }
  5116. .item-icon-right .icon-accessory {
  5117. right: 3px; }
  5118. /**
  5119. * Item Button
  5120. * --------------------------------------------------
  5121. * An item button is a child button inside an .item (not the entire .item)
  5122. */
  5123. .item-button-left {
  5124. padding-left: 72px; }
  5125. .item-button-left > .button,
  5126. .item-button-left .item-content > .button {
  5127. display: -webkit-box;
  5128. display: -webkit-flex;
  5129. display: -moz-box;
  5130. display: -moz-flex;
  5131. display: -ms-flexbox;
  5132. display: flex;
  5133. -webkit-box-align: center;
  5134. -ms-flex-align: center;
  5135. -webkit-align-items: center;
  5136. -moz-align-items: center;
  5137. align-items: center;
  5138. position: absolute;
  5139. top: 8px;
  5140. left: 11px;
  5141. min-width: 34px;
  5142. min-height: 34px;
  5143. font-size: 18px;
  5144. line-height: 32px; }
  5145. .item-button-left > .button .icon:before,
  5146. .item-button-left .item-content > .button .icon:before {
  5147. position: relative;
  5148. left: auto;
  5149. width: auto;
  5150. line-height: 31px; }
  5151. .item-button-left > .button > .button,
  5152. .item-button-left .item-content > .button > .button {
  5153. margin: 0px 2px;
  5154. min-height: 34px;
  5155. font-size: 18px;
  5156. line-height: 32px; }
  5157. .item-button-right,
  5158. a.item.item-button-right,
  5159. button.item.item-button-right {
  5160. padding-right: 80px; }
  5161. .item-button-right > .button,
  5162. .item-button-right .item-content > .button,
  5163. .item-button-right > .buttons,
  5164. .item-button-right .item-content > .buttons {
  5165. display: -webkit-box;
  5166. display: -webkit-flex;
  5167. display: -moz-box;
  5168. display: -moz-flex;
  5169. display: -ms-flexbox;
  5170. display: flex;
  5171. -webkit-box-align: center;
  5172. -ms-flex-align: center;
  5173. -webkit-align-items: center;
  5174. -moz-align-items: center;
  5175. align-items: center;
  5176. position: absolute;
  5177. top: 8px;
  5178. right: 16px;
  5179. min-width: 34px;
  5180. min-height: 34px;
  5181. font-size: 18px;
  5182. line-height: 32px; }
  5183. .item-button-right > .button .icon:before,
  5184. .item-button-right .item-content > .button .icon:before,
  5185. .item-button-right > .buttons .icon:before,
  5186. .item-button-right .item-content > .buttons .icon:before {
  5187. position: relative;
  5188. left: auto;
  5189. width: auto;
  5190. line-height: 31px; }
  5191. .item-button-right > .button > .button,
  5192. .item-button-right .item-content > .button > .button,
  5193. .item-button-right > .buttons > .button,
  5194. .item-button-right .item-content > .buttons > .button {
  5195. margin: 0px 2px;
  5196. min-width: 34px;
  5197. min-height: 34px;
  5198. font-size: 18px;
  5199. line-height: 32px; }
  5200. .item-avatar,
  5201. .item-avatar .item-content,
  5202. .item-avatar-left,
  5203. .item-avatar-left .item-content {
  5204. padding-left: 72px;
  5205. min-height: 72px; }
  5206. .item-avatar > img:first-child,
  5207. .item-avatar .item-image,
  5208. .item-avatar .item-content > img:first-child,
  5209. .item-avatar .item-content .item-image,
  5210. .item-avatar-left > img:first-child,
  5211. .item-avatar-left .item-image,
  5212. .item-avatar-left .item-content > img:first-child,
  5213. .item-avatar-left .item-content .item-image {
  5214. position: absolute;
  5215. top: 16px;
  5216. left: 16px;
  5217. max-width: 40px;
  5218. max-height: 40px;
  5219. width: 100%;
  5220. height: 100%;
  5221. border-radius: 50%; }
  5222. .item-avatar-right,
  5223. .item-avatar-right .item-content {
  5224. padding-right: 72px;
  5225. min-height: 72px; }
  5226. .item-avatar-right > img:first-child,
  5227. .item-avatar-right .item-image,
  5228. .item-avatar-right .item-content > img:first-child,
  5229. .item-avatar-right .item-content .item-image {
  5230. position: absolute;
  5231. top: 16px;
  5232. right: 16px;
  5233. max-width: 40px;
  5234. max-height: 40px;
  5235. width: 100%;
  5236. height: 100%;
  5237. border-radius: 50%; }
  5238. .item-thumbnail-left,
  5239. .item-thumbnail-left .item-content {
  5240. padding-top: 8px;
  5241. padding-left: 106px;
  5242. min-height: 100px; }
  5243. .item-thumbnail-left > img:first-child,
  5244. .item-thumbnail-left .item-image,
  5245. .item-thumbnail-left .item-content > img:first-child,
  5246. .item-thumbnail-left .item-content .item-image {
  5247. position: absolute;
  5248. top: 10px;
  5249. left: 10px;
  5250. max-width: 80px;
  5251. max-height: 80px;
  5252. width: 100%;
  5253. height: 100%; }
  5254. .item-avatar.item-complex,
  5255. .item-avatar-left.item-complex,
  5256. .item-thumbnail-left.item-complex {
  5257. padding-top: 0;
  5258. padding-left: 0; }
  5259. .item-thumbnail-right,
  5260. .item-thumbnail-right .item-content {
  5261. padding-top: 8px;
  5262. padding-right: 106px;
  5263. min-height: 100px; }
  5264. .item-thumbnail-right > img:first-child,
  5265. .item-thumbnail-right .item-image,
  5266. .item-thumbnail-right .item-content > img:first-child,
  5267. .item-thumbnail-right .item-content .item-image {
  5268. position: absolute;
  5269. top: 10px;
  5270. right: 10px;
  5271. max-width: 80px;
  5272. max-height: 80px;
  5273. width: 100%;
  5274. height: 100%; }
  5275. .item-avatar-right.item-complex,
  5276. .item-thumbnail-right.item-complex {
  5277. padding-top: 0;
  5278. padding-right: 0; }
  5279. .item-image {
  5280. padding: 0;
  5281. text-align: center; }
  5282. .item-image img:first-child, .item-image .list-img {
  5283. width: 100%;
  5284. vertical-align: middle; }
  5285. .item-body {
  5286. overflow: auto;
  5287. padding: 16px;
  5288. text-overflow: inherit;
  5289. white-space: normal; }
  5290. .item-body h1, .item-body h2, .item-body h3, .item-body h4, .item-body h5, .item-body h6, .item-body p {
  5291. margin-top: 16px;
  5292. margin-bottom: 16px; }
  5293. .item-divider {
  5294. padding-top: 8px;
  5295. padding-bottom: 8px;
  5296. min-height: 30px;
  5297. background-color: #f5f5f5;
  5298. color: #222;
  5299. font-weight: 500; }
  5300. .platform-ios .item-divider-platform,
  5301. .item-divider-ios {
  5302. padding-top: 26px;
  5303. text-transform: uppercase;
  5304. font-weight: 300;
  5305. font-size: 13px;
  5306. background-color: #efeff4;
  5307. color: #555; }
  5308. .platform-android .item-divider-platform,
  5309. .item-divider-android {
  5310. font-weight: 300;
  5311. font-size: 13px; }
  5312. .item-note {
  5313. float: right;
  5314. color: #aaa;
  5315. font-size: 14px; }
  5316. .item-left-editable .item-content,
  5317. .item-right-editable .item-content {
  5318. -webkit-transition-duration: 250ms;
  5319. transition-duration: 250ms;
  5320. -webkit-transition-timing-function: ease-in-out;
  5321. transition-timing-function: ease-in-out;
  5322. -webkit-transition-property: -webkit-transform;
  5323. -moz-transition-property: -moz-transform;
  5324. transition-property: transform; }
  5325. .list-left-editing .item-left-editable .item-content,
  5326. .item-left-editing.item-left-editable .item-content {
  5327. -webkit-transform: translate3d(50px, 0, 0);
  5328. transform: translate3d(50px, 0, 0); }
  5329. .item-remove-animate.ng-leave {
  5330. -webkit-transition-duration: 300ms;
  5331. transition-duration: 300ms; }
  5332. .item-remove-animate.ng-leave .item-content, .item-remove-animate.ng-leave:last-of-type {
  5333. -webkit-transition-duration: 300ms;
  5334. transition-duration: 300ms;
  5335. -webkit-transition-timing-function: ease-in;
  5336. transition-timing-function: ease-in;
  5337. -webkit-transition-property: all;
  5338. transition-property: all; }
  5339. .item-remove-animate.ng-leave.ng-leave-active .item-content {
  5340. opacity: 0;
  5341. -webkit-transform: translate3d(-100%, 0, 0) !important;
  5342. transform: translate3d(-100%, 0, 0) !important; }
  5343. .item-remove-animate.ng-leave.ng-leave-active:last-of-type {
  5344. opacity: 0; }
  5345. .item-remove-animate.ng-leave.ng-leave-active ~ ion-item:not(.ng-leave) {
  5346. -webkit-transform: translate3d(0, -webkit-calc(-100% + 1px), 0);
  5347. transform: translate3d(0, calc(-100% + 1px), 0);
  5348. -webkit-transition-duration: 300ms;
  5349. transition-duration: 300ms;
  5350. -webkit-transition-timing-function: cubic-bezier(0.25, 0.81, 0.24, 1);
  5351. transition-timing-function: cubic-bezier(0.25, 0.81, 0.24, 1);
  5352. -webkit-transition-property: all;
  5353. transition-property: all; }
  5354. .item-left-edit {
  5355. -webkit-transition: all ease-in-out 125ms;
  5356. transition: all ease-in-out 125ms;
  5357. position: absolute;
  5358. top: 0;
  5359. left: 0;
  5360. z-index: 0;
  5361. width: 50px;
  5362. height: 100%;
  5363. line-height: 100%;
  5364. display: none;
  5365. opacity: 0;
  5366. -webkit-transform: translate3d(-21px, 0, 0);
  5367. transform: translate3d(-21px, 0, 0); }
  5368. .item-left-edit .button {
  5369. height: 100%; }
  5370. .item-left-edit .button.icon {
  5371. display: -webkit-box;
  5372. display: -webkit-flex;
  5373. display: -moz-box;
  5374. display: -moz-flex;
  5375. display: -ms-flexbox;
  5376. display: flex;
  5377. -webkit-box-align: center;
  5378. -ms-flex-align: center;
  5379. -webkit-align-items: center;
  5380. -moz-align-items: center;
  5381. align-items: center;
  5382. position: absolute;
  5383. top: 0;
  5384. height: 100%; }
  5385. .item-left-edit.visible {
  5386. display: block; }
  5387. .item-left-edit.visible.active {
  5388. opacity: 1;
  5389. -webkit-transform: translate3d(8px, 0, 0);
  5390. transform: translate3d(8px, 0, 0); }
  5391. .list-left-editing .item-left-edit {
  5392. -webkit-transition-delay: 125ms;
  5393. transition-delay: 125ms; }
  5394. .item-delete .button.icon {
  5395. color: #ef473a;
  5396. font-size: 24px; }
  5397. .item-delete .button.icon:hover {
  5398. opacity: .7; }
  5399. .item-right-edit {
  5400. -webkit-transition: all ease-in-out 250ms;
  5401. transition: all ease-in-out 250ms;
  5402. position: absolute;
  5403. top: 0;
  5404. right: 0;
  5405. z-index: 3;
  5406. width: 75px;
  5407. height: 100%;
  5408. background: inherit;
  5409. padding-left: 20px;
  5410. display: block;
  5411. opacity: 0;
  5412. -webkit-transform: translate3d(75px, 0, 0);
  5413. transform: translate3d(75px, 0, 0); }
  5414. .item-right-edit .button {
  5415. min-width: 50px;
  5416. height: 100%; }
  5417. .item-right-edit .button.icon {
  5418. display: -webkit-box;
  5419. display: -webkit-flex;
  5420. display: -moz-box;
  5421. display: -moz-flex;
  5422. display: -ms-flexbox;
  5423. display: flex;
  5424. -webkit-box-align: center;
  5425. -ms-flex-align: center;
  5426. -webkit-align-items: center;
  5427. -moz-align-items: center;
  5428. align-items: center;
  5429. position: absolute;
  5430. top: 0;
  5431. height: 100%;
  5432. font-size: 32px; }
  5433. .item-right-edit.visible {
  5434. display: block; }
  5435. .item-right-edit.visible.active {
  5436. opacity: 1;
  5437. -webkit-transform: translate3d(0, 0, 0);
  5438. transform: translate3d(0, 0, 0); }
  5439. .item-reorder .button.icon {
  5440. color: #444;
  5441. font-size: 32px; }
  5442. .item-reordering {
  5443. position: absolute;
  5444. left: 0;
  5445. top: 0;
  5446. z-index: 9;
  5447. width: 100%;
  5448. box-shadow: 0px 0px 10px 0px #aaa; }
  5449. .item-reordering .item-reorder {
  5450. z-index: 9; }
  5451. .item-placeholder {
  5452. opacity: 0.7; }
  5453. /**
  5454. * The hidden right-side buttons that can be exposed under a list item
  5455. * with dragging.
  5456. */
  5457. .item-options {
  5458. position: absolute;
  5459. top: 0;
  5460. right: 0;
  5461. z-index: 1;
  5462. height: 100%; }
  5463. .item-options .button {
  5464. height: 100%;
  5465. border: none;
  5466. border-radius: 0;
  5467. display: -webkit-inline-box;
  5468. display: -webkit-inline-flex;
  5469. display: -moz-inline-flex;
  5470. display: -ms-inline-flexbox;
  5471. display: inline-flex;
  5472. -webkit-box-align: center;
  5473. -ms-flex-align: center;
  5474. -webkit-align-items: center;
  5475. -moz-align-items: center;
  5476. align-items: center; }
  5477. .item-options .button:before {
  5478. margin: 0 auto; }
  5479. /**
  5480. * Lists
  5481. * --------------------------------------------------
  5482. */
  5483. .list {
  5484. position: relative;
  5485. padding-top: 1px;
  5486. padding-bottom: 1px;
  5487. padding-left: 0;
  5488. margin-bottom: 20px; }
  5489. .list:last-child {
  5490. margin-bottom: 0px; }
  5491. .list:last-child.card {
  5492. margin-bottom: 40px; }
  5493. /**
  5494. * List Header
  5495. * --------------------------------------------------
  5496. */
  5497. .list-header {
  5498. margin-top: 20px;
  5499. padding: 5px 15px;
  5500. background-color: transparent;
  5501. color: #222;
  5502. font-weight: bold; }
  5503. .card.list .list-item {
  5504. padding-right: 1px;
  5505. padding-left: 1px; }
  5506. /**
  5507. * Cards and Inset Lists
  5508. * --------------------------------------------------
  5509. * A card and list-inset are close to the same thing, except a card as a box shadow.
  5510. */
  5511. .card,
  5512. .list-inset {
  5513. overflow: hidden;
  5514. margin: 20px 10px;
  5515. border-radius: 2px;
  5516. background-color: #fff; }
  5517. .card {
  5518. padding-top: 1px;
  5519. padding-bottom: 1px;
  5520. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
  5521. .card .item {
  5522. border-left: 0;
  5523. border-right: 0; }
  5524. .card .item:first-child {
  5525. border-top: 0; }
  5526. .card .item:last-child {
  5527. border-bottom: 0; }
  5528. .padding .card, .padding .list-inset {
  5529. margin-left: 0;
  5530. margin-right: 0; }
  5531. .card .item:first-child,
  5532. .list-inset .item:first-child,
  5533. .padding > .list .item:first-child {
  5534. border-top-left-radius: 2px;
  5535. border-top-right-radius: 2px; }
  5536. .card .item:first-child .item-content,
  5537. .list-inset .item:first-child .item-content,
  5538. .padding > .list .item:first-child .item-content {
  5539. border-top-left-radius: 2px;
  5540. border-top-right-radius: 2px; }
  5541. .card .item:last-child,
  5542. .list-inset .item:last-child,
  5543. .padding > .list .item:last-child {
  5544. border-bottom-right-radius: 2px;
  5545. border-bottom-left-radius: 2px; }
  5546. .card .item:last-child .item-content,
  5547. .list-inset .item:last-child .item-content,
  5548. .padding > .list .item:last-child .item-content {
  5549. border-bottom-right-radius: 2px;
  5550. border-bottom-left-radius: 2px; }
  5551. .card .item:last-child,
  5552. .list-inset .item:last-child {
  5553. margin-bottom: -1px; }
  5554. .card .item,
  5555. .list-inset .item,
  5556. .padding > .list .item,
  5557. .padding-horizontal > .list .item {
  5558. margin-right: 0;
  5559. margin-left: 0; }
  5560. .card .item.item-input input,
  5561. .list-inset .item.item-input input,
  5562. .padding > .list .item.item-input input,
  5563. .padding-horizontal > .list .item.item-input input {
  5564. padding-right: 44px; }
  5565. .padding-left > .list .item {
  5566. margin-left: 0; }
  5567. .padding-right > .list .item {
  5568. margin-right: 0; }
  5569. /**
  5570. * Badges
  5571. * --------------------------------------------------
  5572. */
  5573. .badge {
  5574. background-color: transparent;
  5575. color: #AAAAAA;
  5576. z-index: 1;
  5577. display: inline-block;
  5578. padding: 3px 8px;
  5579. min-width: 10px;
  5580. border-radius: 10px;
  5581. vertical-align: baseline;
  5582. text-align: center;
  5583. white-space: nowrap;
  5584. font-weight: bold;
  5585. font-size: 14px;
  5586. line-height: 16px; }
  5587. .badge:empty {
  5588. display: none; }
  5589. .tabs .tab-item .badge.badge-light,
  5590. .badge.badge-light {
  5591. background-color: #fff;
  5592. color: #444; }
  5593. .tabs .tab-item .badge.badge-stable,
  5594. .badge.badge-stable {
  5595. background-color: #f8f8f8;
  5596. color: #444; }
  5597. .tabs .tab-item .badge.badge-positive,
  5598. .badge.badge-positive {
  5599. background-color: #387ef5;
  5600. color: #fff; }
  5601. .tabs .tab-item .badge.badge-calm,
  5602. .badge.badge-calm {
  5603. background-color: #ff4b82;
  5604. color: #fff; }
  5605. .tabs .tab-item .badge.badge-assertive,
  5606. .badge.badge-assertive {
  5607. background-color: #ef473a;
  5608. color: #fff; }
  5609. .tabs .tab-item .badge.badge-balanced,
  5610. .badge.badge-balanced {
  5611. background-color: #33cd5f;
  5612. color: #fff; }
  5613. .tabs .tab-item .badge.badge-energized,
  5614. .badge.badge-energized {
  5615. background-color: #ffc900;
  5616. color: #fff; }
  5617. .tabs .tab-item .badge.badge-royal,
  5618. .badge.badge-royal {
  5619. background-color: #886aea;
  5620. color: #fff; }
  5621. .tabs .tab-item .badge.badge-dark,
  5622. .badge.badge-dark {
  5623. background-color: #444;
  5624. color: #fff; }
  5625. .button .badge {
  5626. position: relative;
  5627. top: -1px; }
  5628. /**
  5629. * Slide Box
  5630. * --------------------------------------------------
  5631. */
  5632. .slider {
  5633. position: relative;
  5634. visibility: hidden;
  5635. overflow: hidden; }
  5636. .slider-slides {
  5637. position: relative;
  5638. height: 100%; }
  5639. .slider-slide {
  5640. position: relative;
  5641. display: block;
  5642. float: left;
  5643. width: 100%;
  5644. height: 100%;
  5645. vertical-align: top; }
  5646. .slider-slide-image > img {
  5647. width: 100%; }
  5648. .slider-pager {
  5649. position: absolute;
  5650. bottom: 20px;
  5651. z-index: 1;
  5652. width: 100%;
  5653. height: 15px;
  5654. text-align: center; }
  5655. .slider-pager .slider-pager-page {
  5656. display: inline-block;
  5657. margin: 0px 3px;
  5658. width: 15px;
  5659. color: #000;
  5660. text-decoration: none;
  5661. opacity: 0.3; }
  5662. .slider-pager .slider-pager-page.active {
  5663. -webkit-transition: opacity 0.4s ease-in;
  5664. transition: opacity 0.4s ease-in;
  5665. opacity: 1; }
  5666. .slider-slide.ng-enter, .slider-slide.ng-leave, .slider-slide.ng-animate,
  5667. .slider-pager-page.ng-enter,
  5668. .slider-pager-page.ng-leave,
  5669. .slider-pager-page.ng-animate {
  5670. -webkit-transition: none !important;
  5671. transition: none !important; }
  5672. .slider-slide.ng-animate,
  5673. .slider-pager-page.ng-animate {
  5674. -webkit-animation: none 0s;
  5675. animation: none 0s; }
  5676. /**
  5677. * Swiper 3.2.7
  5678. * Most modern mobile touch slider and framework with hardware accelerated transitions
  5679. *
  5680. * http://www.idangero.us/swiper/
  5681. *
  5682. * Copyright 2015, Vladimir Kharlampidi
  5683. * The iDangero.us
  5684. * http://www.idangero.us/
  5685. *
  5686. * Licensed under MIT
  5687. *
  5688. * Released on: December 7, 2015
  5689. */
  5690. .swiper-container {
  5691. margin: 0 auto;
  5692. position: relative;
  5693. overflow: hidden;
  5694. /* Fix of Webkit flickering */
  5695. z-index: 1; }
  5696. .swiper-container-no-flexbox .swiper-slide {
  5697. float: left; }
  5698. .swiper-container-vertical > .swiper-wrapper {
  5699. -webkit-box-orient: vertical;
  5700. -moz-box-orient: vertical;
  5701. -ms-flex-direction: column;
  5702. -webkit-flex-direction: column;
  5703. flex-direction: column; }
  5704. .swiper-wrapper {
  5705. position: relative;
  5706. width: 100%;
  5707. height: 100%;
  5708. z-index: 1;
  5709. display: -webkit-box;
  5710. display: -moz-box;
  5711. display: -ms-flexbox;
  5712. display: -webkit-flex;
  5713. display: flex;
  5714. -webkit-transition-property: -webkit-transform;
  5715. -moz-transition-property: -moz-transform;
  5716. -o-transition-property: -o-transform;
  5717. -ms-transition-property: -ms-transform;
  5718. transition-property: transform;
  5719. -webkit-box-sizing: content-box;
  5720. -moz-box-sizing: content-box;
  5721. box-sizing: content-box; }
  5722. .swiper-container-android .swiper-slide,
  5723. .swiper-wrapper {
  5724. -webkit-transform: translate3d(0px, 0, 0);
  5725. -moz-transform: translate3d(0px, 0, 0);
  5726. -o-transform: translate(0px, 0px);
  5727. -ms-transform: translate3d(0px, 0, 0);
  5728. transform: translate3d(0px, 0, 0); }
  5729. .swiper-container-multirow > .swiper-wrapper {
  5730. -webkit-box-lines: multiple;
  5731. -moz-box-lines: multiple;
  5732. -ms-flex-wrap: wrap;
  5733. -webkit-flex-wrap: wrap;
  5734. flex-wrap: wrap; }
  5735. .swiper-container-free-mode > .swiper-wrapper {
  5736. -webkit-transition-timing-function: ease-out;
  5737. -moz-transition-timing-function: ease-out;
  5738. -ms-transition-timing-function: ease-out;
  5739. -o-transition-timing-function: ease-out;
  5740. transition-timing-function: ease-out;
  5741. margin: 0 auto; }
  5742. .swiper-slide {
  5743. display: block;
  5744. -webkit-flex-shrink: 0;
  5745. -ms-flex: 0 0 auto;
  5746. flex-shrink: 0;
  5747. width: 100%;
  5748. height: 100%;
  5749. position: relative; }
  5750. /* Auto Height */
  5751. .swiper-container-autoheight,
  5752. .swiper-container-autoheight .swiper-slide {
  5753. height: auto; }
  5754. .swiper-container-autoheight .swiper-wrapper {
  5755. -webkit-box-align: start;
  5756. -ms-flex-align: start;
  5757. -webkit-align-items: flex-start;
  5758. align-items: flex-start;
  5759. -webkit-transition-property: -webkit-transform, height;
  5760. -moz-transition-property: -moz-transform;
  5761. -o-transition-property: -o-transform;
  5762. -ms-transition-property: -ms-transform;
  5763. transition-property: transform, height; }
  5764. /* a11y */
  5765. .swiper-container .swiper-notification {
  5766. position: absolute;
  5767. left: 0;
  5768. top: 0;
  5769. pointer-events: none;
  5770. opacity: 0;
  5771. z-index: -1000; }
  5772. /* IE10 Windows Phone 8 Fixes */
  5773. .swiper-wp8-horizontal {
  5774. -ms-touch-action: pan-y;
  5775. touch-action: pan-y; }
  5776. .swiper-wp8-vertical {
  5777. -ms-touch-action: pan-x;
  5778. touch-action: pan-x; }
  5779. /* Arrows */
  5780. .swiper-button-prev,
  5781. .swiper-button-next {
  5782. position: absolute;
  5783. top: 50%;
  5784. width: 27px;
  5785. height: 44px;
  5786. margin-top: -22px;
  5787. z-index: 10;
  5788. cursor: pointer;
  5789. -moz-background-size: 27px 44px;
  5790. -webkit-background-size: 27px 44px;
  5791. background-size: 27px 44px;
  5792. background-position: center;
  5793. background-repeat: no-repeat; }
  5794. .swiper-button-prev.swiper-button-disabled,
  5795. .swiper-button-next.swiper-button-disabled {
  5796. opacity: 0.35;
  5797. cursor: auto;
  5798. pointer-events: none; }
  5799. .swiper-button-prev,
  5800. .swiper-container-rtl .swiper-button-next {
  5801. 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");
  5802. left: 10px;
  5803. right: auto; }
  5804. .swiper-button-prev.swiper-button-black,
  5805. .swiper-container-rtl .swiper-button-next.swiper-button-black {
  5806. 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"); }
  5807. .swiper-button-prev.swiper-button-white,
  5808. .swiper-container-rtl .swiper-button-next.swiper-button-white {
  5809. 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"); }
  5810. .swiper-button-next,
  5811. .swiper-container-rtl .swiper-button-prev {
  5812. 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");
  5813. right: 10px;
  5814. left: auto; }
  5815. .swiper-button-next.swiper-button-black,
  5816. .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  5817. 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"); }
  5818. .swiper-button-next.swiper-button-white,
  5819. .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  5820. 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"); }
  5821. /* Pagination Styles */
  5822. .swiper-pagination {
  5823. position: absolute;
  5824. text-align: center;
  5825. -webkit-transition: 300ms;
  5826. -moz-transition: 300ms;
  5827. -o-transition: 300ms;
  5828. transition: 300ms;
  5829. -webkit-transform: translate3d(0, 0, 0);
  5830. -ms-transform: translate3d(0, 0, 0);
  5831. -o-transform: translate3d(0, 0, 0);
  5832. transform: translate3d(0, 0, 0);
  5833. z-index: 10; }
  5834. .swiper-pagination.swiper-pagination-hidden {
  5835. opacity: 0; }
  5836. .swiper-pagination-bullet {
  5837. width: 8px;
  5838. height: 8px;
  5839. display: inline-block;
  5840. border-radius: 100%;
  5841. background: #000;
  5842. opacity: 0.2; }
  5843. button.swiper-pagination-bullet {
  5844. border: none;
  5845. margin: 0;
  5846. padding: 0;
  5847. box-shadow: none;
  5848. -moz-appearance: none;
  5849. -ms-appearance: none;
  5850. -webkit-appearance: none;
  5851. appearance: none; }
  5852. .swiper-pagination-clickable .swiper-pagination-bullet {
  5853. cursor: pointer; }
  5854. .swiper-pagination-white .swiper-pagination-bullet {
  5855. background: #fff; }
  5856. .swiper-pagination-bullet-active {
  5857. opacity: 1; }
  5858. .swiper-pagination-white .swiper-pagination-bullet-active {
  5859. background: #fff; }
  5860. .swiper-pagination-black .swiper-pagination-bullet-active {
  5861. background: #000; }
  5862. .swiper-container-vertical > .swiper-pagination {
  5863. right: 10px;
  5864. top: 50%;
  5865. -webkit-transform: translate3d(0px, -50%, 0);
  5866. -moz-transform: translate3d(0px, -50%, 0);
  5867. -o-transform: translate(0px, -50%);
  5868. -ms-transform: translate3d(0px, -50%, 0);
  5869. transform: translate3d(0px, -50%, 0); }
  5870. .swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  5871. margin: 5px 0;
  5872. display: block; }
  5873. .swiper-container-horizontal > .swiper-pagination {
  5874. bottom: 10px;
  5875. left: 0;
  5876. width: 100%; }
  5877. .swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  5878. margin: 0 5px; }
  5879. /* 3D Container */
  5880. .swiper-container-3d {
  5881. -webkit-perspective: 1200px;
  5882. -moz-perspective: 1200px;
  5883. -o-perspective: 1200px;
  5884. perspective: 1200px; }
  5885. .swiper-container-3d .swiper-wrapper,
  5886. .swiper-container-3d .swiper-slide,
  5887. .swiper-container-3d .swiper-slide-shadow-left,
  5888. .swiper-container-3d .swiper-slide-shadow-right,
  5889. .swiper-container-3d .swiper-slide-shadow-top,
  5890. .swiper-container-3d .swiper-slide-shadow-bottom,
  5891. .swiper-container-3d .swiper-cube-shadow {
  5892. -webkit-transform-style: preserve-3d;
  5893. -moz-transform-style: preserve-3d;
  5894. -ms-transform-style: preserve-3d;
  5895. transform-style: preserve-3d; }
  5896. .swiper-container-3d .swiper-slide-shadow-left,
  5897. .swiper-container-3d .swiper-slide-shadow-right,
  5898. .swiper-container-3d .swiper-slide-shadow-top,
  5899. .swiper-container-3d .swiper-slide-shadow-bottom {
  5900. position: absolute;
  5901. left: 0;
  5902. top: 0;
  5903. width: 100%;
  5904. height: 100%;
  5905. pointer-events: none;
  5906. z-index: 10; }
  5907. .swiper-container-3d .swiper-slide-shadow-left {
  5908. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5909. /* Safari 4+, Chrome */
  5910. background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5911. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5912. background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5913. /* Firefox 3.6-15 */
  5914. background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5915. /* Opera 11.10-12.00 */
  5916. background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  5917. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5918. .swiper-container-3d .swiper-slide-shadow-right {
  5919. background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5920. /* Safari 4+, Chrome */
  5921. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5922. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5923. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5924. /* Firefox 3.6-15 */
  5925. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5926. /* Opera 11.10-12.00 */
  5927. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  5928. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5929. .swiper-container-3d .swiper-slide-shadow-top {
  5930. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5931. /* Safari 4+, Chrome */
  5932. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5933. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5934. background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5935. /* Firefox 3.6-15 */
  5936. background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5937. /* Opera 11.10-12.00 */
  5938. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  5939. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5940. .swiper-container-3d .swiper-slide-shadow-bottom {
  5941. background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5942. /* Safari 4+, Chrome */
  5943. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5944. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5945. background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5946. /* Firefox 3.6-15 */
  5947. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5948. /* Opera 11.10-12.00 */
  5949. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  5950. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5951. /* Coverflow */
  5952. .swiper-container-coverflow .swiper-wrapper {
  5953. /* Windows 8 IE 10 fix */
  5954. -ms-perspective: 1200px; }
  5955. /* Fade */
  5956. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  5957. -webkit-transition-timing-function: ease-out;
  5958. -moz-transition-timing-function: ease-out;
  5959. -ms-transition-timing-function: ease-out;
  5960. -o-transition-timing-function: ease-out;
  5961. transition-timing-function: ease-out; }
  5962. .swiper-container-fade .swiper-slide {
  5963. pointer-events: none; }
  5964. .swiper-container-fade .swiper-slide .swiper-slide {
  5965. pointer-events: none; }
  5966. .swiper-container-fade .swiper-slide-active,
  5967. .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  5968. pointer-events: auto; }
  5969. /* Cube */
  5970. .swiper-container-cube {
  5971. overflow: visible; }
  5972. .swiper-container-cube .swiper-slide {
  5973. pointer-events: none;
  5974. visibility: hidden;
  5975. -webkit-transform-origin: 0 0;
  5976. -moz-transform-origin: 0 0;
  5977. -ms-transform-origin: 0 0;
  5978. transform-origin: 0 0;
  5979. -webkit-backface-visibility: hidden;
  5980. -moz-backface-visibility: hidden;
  5981. -ms-backface-visibility: hidden;
  5982. backface-visibility: hidden;
  5983. width: 100%;
  5984. height: 100%;
  5985. z-index: 1; }
  5986. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  5987. -webkit-transform-origin: 100% 0;
  5988. -moz-transform-origin: 100% 0;
  5989. -ms-transform-origin: 100% 0;
  5990. transform-origin: 100% 0; }
  5991. .swiper-container-cube .swiper-slide-active,
  5992. .swiper-container-cube .swiper-slide-next,
  5993. .swiper-container-cube .swiper-slide-prev,
  5994. .swiper-container-cube .swiper-slide-next + .swiper-slide {
  5995. pointer-events: auto;
  5996. visibility: visible; }
  5997. .swiper-container-cube .swiper-slide-shadow-top,
  5998. .swiper-container-cube .swiper-slide-shadow-bottom,
  5999. .swiper-container-cube .swiper-slide-shadow-left,
  6000. .swiper-container-cube .swiper-slide-shadow-right {
  6001. z-index: 0;
  6002. -webkit-backface-visibility: hidden;
  6003. -moz-backface-visibility: hidden;
  6004. -ms-backface-visibility: hidden;
  6005. backface-visibility: hidden; }
  6006. .swiper-container-cube .swiper-cube-shadow {
  6007. position: absolute;
  6008. left: 0;
  6009. bottom: 0px;
  6010. width: 100%;
  6011. height: 100%;
  6012. background: #000;
  6013. opacity: 0.6;
  6014. -webkit-filter: blur(50px);
  6015. filter: blur(50px);
  6016. z-index: 0; }
  6017. /* Scrollbar */
  6018. .swiper-scrollbar {
  6019. border-radius: 10px;
  6020. position: relative;
  6021. -ms-touch-action: none;
  6022. background: rgba(0, 0, 0, 0.1); }
  6023. .swiper-container-horizontal > .swiper-scrollbar {
  6024. position: absolute;
  6025. left: 1%;
  6026. bottom: 3px;
  6027. z-index: 50;
  6028. height: 5px;
  6029. width: 98%; }
  6030. .swiper-container-vertical > .swiper-scrollbar {
  6031. position: absolute;
  6032. right: 3px;
  6033. top: 1%;
  6034. z-index: 50;
  6035. width: 5px;
  6036. height: 98%; }
  6037. .swiper-scrollbar-drag {
  6038. height: 100%;
  6039. width: 100%;
  6040. position: relative;
  6041. background: rgba(0, 0, 0, 0.5);
  6042. border-radius: 10px;
  6043. left: 0;
  6044. top: 0; }
  6045. .swiper-scrollbar-cursor-drag {
  6046. cursor: move; }
  6047. /* Preloader */
  6048. .swiper-lazy-preloader {
  6049. width: 42px;
  6050. height: 42px;
  6051. position: absolute;
  6052. left: 50%;
  6053. top: 50%;
  6054. margin-left: -21px;
  6055. margin-top: -21px;
  6056. z-index: 10;
  6057. -webkit-transform-origin: 50%;
  6058. -moz-transform-origin: 50%;
  6059. transform-origin: 50%;
  6060. -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  6061. -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  6062. animation: swiper-preloader-spin 1s steps(12, end) infinite; }
  6063. .swiper-lazy-preloader:after {
  6064. display: block;
  6065. content: "";
  6066. width: 100%;
  6067. height: 100%;
  6068. 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");
  6069. background-position: 50%;
  6070. -webkit-background-size: 100%;
  6071. background-size: 100%;
  6072. background-repeat: no-repeat; }
  6073. .swiper-lazy-preloader-white:after {
  6074. 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"); }
  6075. @-webkit-keyframes swiper-preloader-spin {
  6076. 100% {
  6077. -webkit-transform: rotate(360deg); } }
  6078. @keyframes swiper-preloader-spin {
  6079. 100% {
  6080. transform: rotate(360deg); } }
  6081. ion-slides {
  6082. width: 100%;
  6083. height: 100%;
  6084. display: block; }
  6085. .slide-zoom {
  6086. display: block;
  6087. width: 100%;
  6088. text-align: center; }
  6089. .swiper-container {
  6090. width: 100%;
  6091. height: 100%;
  6092. padding: 0;
  6093. overflow: hidden; }
  6094. .swiper-wrapper {
  6095. position: absolute;
  6096. left: 0;
  6097. top: 0;
  6098. width: 100%;
  6099. height: 100%;
  6100. padding: 0; }
  6101. .swiper-slide {
  6102. width: 100%;
  6103. height: 100%;
  6104. box-sizing: border-box;
  6105. /* Center slide text vertically */ }
  6106. .swiper-slide img {
  6107. width: auto;
  6108. height: auto;
  6109. max-width: 100%;
  6110. max-height: 100%; }
  6111. .scroll-refresher {
  6112. position: absolute;
  6113. top: -60px;
  6114. right: 0;
  6115. left: 0;
  6116. overflow: hidden;
  6117. margin: auto;
  6118. height: 60px; }
  6119. .scroll-refresher .ionic-refresher-content {
  6120. position: absolute;
  6121. bottom: 15px;
  6122. left: 0;
  6123. width: 100%;
  6124. color: #666666;
  6125. text-align: center;
  6126. font-size: 30px; }
  6127. .scroll-refresher .ionic-refresher-content .text-refreshing,
  6128. .scroll-refresher .ionic-refresher-content .text-pulling {
  6129. font-size: 16px;
  6130. line-height: 16px; }
  6131. .scroll-refresher .ionic-refresher-content.ionic-refresher-with-text {
  6132. bottom: 10px; }
  6133. .scroll-refresher .icon-refreshing,
  6134. .scroll-refresher .icon-pulling {
  6135. width: 100%;
  6136. -webkit-backface-visibility: hidden;
  6137. backface-visibility: hidden;
  6138. -webkit-transform-style: preserve-3d;
  6139. transform-style: preserve-3d; }
  6140. .scroll-refresher .icon-pulling {
  6141. -webkit-animation-name: refresh-spin-back;
  6142. animation-name: refresh-spin-back;
  6143. -webkit-animation-duration: 200ms;
  6144. animation-duration: 200ms;
  6145. -webkit-animation-timing-function: linear;
  6146. animation-timing-function: linear;
  6147. -webkit-animation-fill-mode: none;
  6148. animation-fill-mode: none;
  6149. -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  6150. transform: translate3d(0, 0, 0) rotate(0deg); }
  6151. .scroll-refresher .icon-refreshing,
  6152. .scroll-refresher .text-refreshing {
  6153. display: none; }
  6154. .scroll-refresher .icon-refreshing {
  6155. -webkit-animation-duration: 1.5s;
  6156. animation-duration: 1.5s; }
  6157. .scroll-refresher.active .icon-pulling:not(.pulling-rotation-disabled) {
  6158. -webkit-animation-name: refresh-spin;
  6159. animation-name: refresh-spin;
  6160. -webkit-transform: translate3d(0, 0, 0) rotate(-180deg);
  6161. transform: translate3d(0, 0, 0) rotate(-180deg); }
  6162. .scroll-refresher.active.refreshing {
  6163. -webkit-transition: -webkit-transform 0.2s;
  6164. transition: -webkit-transform 0.2s;
  6165. -webkit-transition: transform 0.2s;
  6166. transition: transform 0.2s;
  6167. -webkit-transform: scale(1, 1);
  6168. transform: scale(1, 1); }
  6169. .scroll-refresher.active.refreshing .icon-pulling,
  6170. .scroll-refresher.active.refreshing .text-pulling {
  6171. display: none; }
  6172. .scroll-refresher.active.refreshing .icon-refreshing,
  6173. .scroll-refresher.active.refreshing .text-refreshing {
  6174. display: block; }
  6175. .scroll-refresher.active.refreshing.refreshing-tail {
  6176. -webkit-transform: scale(0, 0);
  6177. transform: scale(0, 0); }
  6178. .overflow-scroll > .scroll {
  6179. -webkit-overflow-scrolling: touch;
  6180. width: 100%; }
  6181. .overflow-scroll > .scroll.overscroll {
  6182. position: fixed;
  6183. right: 0;
  6184. left: 0; }
  6185. .overflow-scroll.padding > .scroll.overscroll {
  6186. padding: 10px; }
  6187. @-webkit-keyframes refresh-spin {
  6188. 0% {
  6189. -webkit-transform: translate3d(0, 0, 0) rotate(0); }
  6190. 100% {
  6191. -webkit-transform: translate3d(0, 0, 0) rotate(180deg); } }
  6192. @keyframes refresh-spin {
  6193. 0% {
  6194. transform: translate3d(0, 0, 0) rotate(0); }
  6195. 100% {
  6196. transform: translate3d(0, 0, 0) rotate(180deg); } }
  6197. @-webkit-keyframes refresh-spin-back {
  6198. 0% {
  6199. -webkit-transform: translate3d(0, 0, 0) rotate(180deg); }
  6200. 100% {
  6201. -webkit-transform: translate3d(0, 0, 0) rotate(0); } }
  6202. @keyframes refresh-spin-back {
  6203. 0% {
  6204. transform: translate3d(0, 0, 0) rotate(180deg); }
  6205. 100% {
  6206. transform: translate3d(0, 0, 0) rotate(0); } }
  6207. /**
  6208. * Spinners
  6209. * --------------------------------------------------
  6210. */
  6211. .spinner {
  6212. stroke: #444;
  6213. fill: #444; }
  6214. .spinner svg {
  6215. width: 28px;
  6216. height: 28px; }
  6217. .spinner.spinner-light {
  6218. stroke: #fff;
  6219. fill: #fff; }
  6220. .spinner.spinner-stable {
  6221. stroke: #f8f8f8;
  6222. fill: #f8f8f8; }
  6223. .spinner.spinner-positive {
  6224. stroke: #387ef5;
  6225. fill: #387ef5; }
  6226. .spinner.spinner-calm {
  6227. stroke: #ff4b82;
  6228. fill: #ff4b82; }
  6229. .spinner.spinner-balanced {
  6230. stroke: #33cd5f;
  6231. fill: #33cd5f; }
  6232. .spinner.spinner-assertive {
  6233. stroke: #ef473a;
  6234. fill: #ef473a; }
  6235. .spinner.spinner-energized {
  6236. stroke: #ffc900;
  6237. fill: #ffc900; }
  6238. .spinner.spinner-royal {
  6239. stroke: #886aea;
  6240. fill: #886aea; }
  6241. .spinner.spinner-dark {
  6242. stroke: #444;
  6243. fill: #444; }
  6244. .spinner-android {
  6245. stroke: #4b8bf4; }
  6246. .spinner-ios,
  6247. .spinner-ios-small {
  6248. stroke: #69717d; }
  6249. .spinner-spiral .stop1 {
  6250. stop-color: #fff;
  6251. stop-opacity: 0; }
  6252. .spinner-spiral.spinner-light .stop1 {
  6253. stop-color: #444; }
  6254. .spinner-spiral.spinner-light .stop2 {
  6255. stop-color: #fff; }
  6256. .spinner-spiral.spinner-stable .stop2 {
  6257. stop-color: #f8f8f8; }
  6258. .spinner-spiral.spinner-positive .stop2 {
  6259. stop-color: #387ef5; }
  6260. .spinner-spiral.spinner-calm .stop2 {
  6261. stop-color: #ff4b82; }
  6262. .spinner-spiral.spinner-balanced .stop2 {
  6263. stop-color: #33cd5f; }
  6264. .spinner-spiral.spinner-assertive .stop2 {
  6265. stop-color: #ef473a; }
  6266. .spinner-spiral.spinner-energized .stop2 {
  6267. stop-color: #ffc900; }
  6268. .spinner-spiral.spinner-royal .stop2 {
  6269. stop-color: #886aea; }
  6270. .spinner-spiral.spinner-dark .stop2 {
  6271. stop-color: #444; }
  6272. /**
  6273. * Forms
  6274. * --------------------------------------------------
  6275. */
  6276. form {
  6277. margin: 0 0 1.42857; }
  6278. legend {
  6279. display: block;
  6280. margin-bottom: 1.42857;
  6281. padding: 0;
  6282. width: 100%;
  6283. border: 1px solid #ddd;
  6284. color: #444;
  6285. font-size: 21px;
  6286. line-height: 2.85714; }
  6287. legend small {
  6288. color: #f8f8f8;
  6289. font-size: 1.07143; }
  6290. label,
  6291. input,
  6292. button,
  6293. select,
  6294. textarea {
  6295. font-weight: normal;
  6296. font-size: 14px;
  6297. line-height: 1.42857; }
  6298. input,
  6299. button,
  6300. select,
  6301. textarea {
  6302. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif; }
  6303. .item-input {
  6304. display: -webkit-box;
  6305. display: -webkit-flex;
  6306. display: -moz-box;
  6307. display: -moz-flex;
  6308. display: -ms-flexbox;
  6309. display: flex;
  6310. -webkit-box-align: center;
  6311. -ms-flex-align: center;
  6312. -webkit-align-items: center;
  6313. -moz-align-items: center;
  6314. align-items: center;
  6315. position: relative;
  6316. overflow: hidden;
  6317. padding: 6px 0 5px 16px; }
  6318. .item-input input {
  6319. -webkit-border-radius: 0;
  6320. border-radius: 0;
  6321. -webkit-box-flex: 1;
  6322. -webkit-flex: 1 220px;
  6323. -moz-box-flex: 1;
  6324. -moz-flex: 1 220px;
  6325. -ms-flex: 1 220px;
  6326. flex: 1 220px;
  6327. -webkit-appearance: none;
  6328. -moz-appearance: none;
  6329. appearance: none;
  6330. margin: 0;
  6331. padding-right: 24px;
  6332. background-color: transparent; }
  6333. .item-input .button .icon {
  6334. -webkit-box-flex: 0;
  6335. -webkit-flex: 0 0 24px;
  6336. -moz-box-flex: 0;
  6337. -moz-flex: 0 0 24px;
  6338. -ms-flex: 0 0 24px;
  6339. flex: 0 0 24px;
  6340. position: static;
  6341. display: inline-block;
  6342. height: auto;
  6343. text-align: center;
  6344. font-size: 16px; }
  6345. .item-input .button-bar {
  6346. -webkit-border-radius: 0;
  6347. border-radius: 0;
  6348. -webkit-box-flex: 1;
  6349. -webkit-flex: 1 0 220px;
  6350. -moz-box-flex: 1;
  6351. -moz-flex: 1 0 220px;
  6352. -ms-flex: 1 0 220px;
  6353. flex: 1 0 220px;
  6354. -webkit-appearance: none;
  6355. -moz-appearance: none;
  6356. appearance: none; }
  6357. .item-input .icon {
  6358. min-width: 14px; }
  6359. .platform-windowsphone .item-input input {
  6360. flex-shrink: 1; }
  6361. .item-input-inset {
  6362. display: -webkit-box;
  6363. display: -webkit-flex;
  6364. display: -moz-box;
  6365. display: -moz-flex;
  6366. display: -ms-flexbox;
  6367. display: flex;
  6368. -webkit-box-align: center;
  6369. -ms-flex-align: center;
  6370. -webkit-align-items: center;
  6371. -moz-align-items: center;
  6372. align-items: center;
  6373. position: relative;
  6374. overflow: hidden;
  6375. padding: 10.66667px; }
  6376. .item-input-wrapper {
  6377. display: -webkit-box;
  6378. display: -webkit-flex;
  6379. display: -moz-box;
  6380. display: -moz-flex;
  6381. display: -ms-flexbox;
  6382. display: flex;
  6383. -webkit-box-flex: 1;
  6384. -webkit-flex: 1 0;
  6385. -moz-box-flex: 1;
  6386. -moz-flex: 1 0;
  6387. -ms-flex: 1 0;
  6388. flex: 1 0;
  6389. -webkit-box-align: center;
  6390. -ms-flex-align: center;
  6391. -webkit-align-items: center;
  6392. -moz-align-items: center;
  6393. align-items: center;
  6394. -webkit-border-radius: 4px;
  6395. border-radius: 4px;
  6396. padding-right: 8px;
  6397. padding-left: 8px;
  6398. background: #eee; }
  6399. .item-input-inset .item-input-wrapper input {
  6400. padding-left: 4px;
  6401. height: 29px;
  6402. background: transparent;
  6403. line-height: 18px; }
  6404. .item-input-wrapper ~ .button {
  6405. margin-left: 10.66667px; }
  6406. .input-label {
  6407. display: table;
  6408. padding: 7px 10px 7px 0px;
  6409. max-width: 200px;
  6410. width: 35%;
  6411. color: #444;
  6412. font-size: 16px; }
  6413. .placeholder-icon {
  6414. color: #aaa; }
  6415. .placeholder-icon:first-child {
  6416. padding-right: 6px; }
  6417. .placeholder-icon:last-child {
  6418. padding-left: 6px; }
  6419. .item-stacked-label {
  6420. display: block;
  6421. background-color: transparent;
  6422. box-shadow: none; }
  6423. .item-stacked-label .input-label, .item-stacked-label .icon {
  6424. display: inline-block;
  6425. padding: 4px 0 0 0px;
  6426. vertical-align: middle; }
  6427. .item-stacked-label input,
  6428. .item-stacked-label textarea {
  6429. -webkit-border-radius: 2px;
  6430. border-radius: 2px;
  6431. padding: 4px 8px 3px 0;
  6432. border: none;
  6433. background-color: #fff; }
  6434. .item-stacked-label input {
  6435. overflow: hidden;
  6436. height: 46px; }
  6437. .item-select.item-stacked-label select {
  6438. position: relative;
  6439. padding: 0px;
  6440. max-width: 90%;
  6441. direction: ltr;
  6442. white-space: pre-wrap;
  6443. margin: -3px; }
  6444. .item-floating-label {
  6445. display: block;
  6446. background-color: transparent;
  6447. box-shadow: none; }
  6448. .item-floating-label .input-label {
  6449. position: relative;
  6450. padding: 5px 0 0 0;
  6451. opacity: 0;
  6452. top: 10px;
  6453. -webkit-transition: opacity 0.15s ease-in, top 0.2s linear;
  6454. transition: opacity 0.15s ease-in, top 0.2s linear; }
  6455. .item-floating-label .input-label.has-input {
  6456. opacity: 1;
  6457. top: 0;
  6458. -webkit-transition: opacity 0.15s ease-in, top 0.2s linear;
  6459. transition: opacity 0.15s ease-in, top 0.2s linear; }
  6460. textarea,
  6461. input[type="text"],
  6462. input[type="password"],
  6463. input[type="datetime"],
  6464. input[type="datetime-local"],
  6465. input[type="date"],
  6466. input[type="month"],
  6467. input[type="time"],
  6468. input[type="week"],
  6469. input[type="number"],
  6470. input[type="email"],
  6471. input[type="url"],
  6472. input[type="search"],
  6473. input[type="tel"],
  6474. input[type="color"] {
  6475. display: block;
  6476. padding-top: 2px;
  6477. padding-left: 0;
  6478. height: 34px;
  6479. color: #111;
  6480. vertical-align: middle;
  6481. font-size: 14px;
  6482. line-height: 16px; }
  6483. .platform-ios input[type="datetime-local"],
  6484. .platform-ios input[type="date"],
  6485. .platform-ios input[type="month"],
  6486. .platform-ios input[type="time"],
  6487. .platform-ios input[type="week"],
  6488. .platform-android input[type="datetime-local"],
  6489. .platform-android input[type="date"],
  6490. .platform-android input[type="month"],
  6491. .platform-android input[type="time"],
  6492. .platform-android input[type="week"] {
  6493. padding-top: 8px; }
  6494. .item-input input,
  6495. .item-input textarea {
  6496. width: 100%; }
  6497. textarea {
  6498. padding-left: 0; }
  6499. textarea::-moz-placeholder {
  6500. color: #aaaaaa; }
  6501. textarea:-ms-input-placeholder {
  6502. color: #aaaaaa; }
  6503. textarea::-webkit-input-placeholder {
  6504. color: #aaaaaa;
  6505. text-indent: -3px; }
  6506. textarea {
  6507. height: auto; }
  6508. textarea,
  6509. input[type="text"],
  6510. input[type="password"],
  6511. input[type="datetime"],
  6512. input[type="datetime-local"],
  6513. input[type="date"],
  6514. input[type="month"],
  6515. input[type="time"],
  6516. input[type="week"],
  6517. input[type="number"],
  6518. input[type="email"],
  6519. input[type="url"],
  6520. input[type="search"],
  6521. input[type="tel"],
  6522. input[type="color"] {
  6523. border: 0; }
  6524. input[type="radio"],
  6525. input[type="checkbox"] {
  6526. margin: 0;
  6527. line-height: normal; }
  6528. .item-input input[type="file"],
  6529. .item-input input[type="image"],
  6530. .item-input input[type="submit"],
  6531. .item-input input[type="reset"],
  6532. .item-input input[type="button"],
  6533. .item-input input[type="radio"],
  6534. .item-input input[type="checkbox"] {
  6535. width: auto; }
  6536. input[type="file"] {
  6537. line-height: 34px; }
  6538. .previous-input-focus,
  6539. .cloned-text-input + input,
  6540. .cloned-text-input + textarea {
  6541. position: absolute !important;
  6542. left: -9999px;
  6543. width: 200px; }
  6544. input::-moz-placeholder,
  6545. textarea::-moz-placeholder {
  6546. color: #aaaaaa; }
  6547. input:-ms-input-placeholder,
  6548. textarea:-ms-input-placeholder {
  6549. color: #aaaaaa; }
  6550. input::-webkit-input-placeholder,
  6551. textarea::-webkit-input-placeholder {
  6552. color: #aaaaaa;
  6553. text-indent: 0; }
  6554. input[disabled],
  6555. select[disabled],
  6556. textarea[disabled],
  6557. input[readonly]:not(.cloned-text-input),
  6558. textarea[readonly]:not(.cloned-text-input),
  6559. select[readonly] {
  6560. background-color: #f8f8f8;
  6561. cursor: not-allowed; }
  6562. input[type="radio"][disabled],
  6563. input[type="checkbox"][disabled],
  6564. input[type="radio"][readonly],
  6565. input[type="checkbox"][readonly] {
  6566. background-color: transparent; }
  6567. /**
  6568. * Checkbox
  6569. * --------------------------------------------------
  6570. */
  6571. .checkbox {
  6572. position: relative;
  6573. display: inline-block;
  6574. padding: 7px 7px;
  6575. cursor: pointer; }
  6576. .checkbox input:before,
  6577. .checkbox .checkbox-icon:before {
  6578. border-color: #ddd; }
  6579. .checkbox input:checked:before,
  6580. .checkbox input:checked + .checkbox-icon:before {
  6581. background: #387ef5;
  6582. border-color: #387ef5; }
  6583. .checkbox-light input:before,
  6584. .checkbox-light .checkbox-icon:before {
  6585. border-color: #ddd; }
  6586. .checkbox-light input:checked:before,
  6587. .checkbox-light input:checked + .checkbox-icon:before {
  6588. background: #ddd;
  6589. border-color: #ddd; }
  6590. .checkbox-stable input:before,
  6591. .checkbox-stable .checkbox-icon:before {
  6592. border-color: #b2b2b2; }
  6593. .checkbox-stable input:checked:before,
  6594. .checkbox-stable input:checked + .checkbox-icon:before {
  6595. background: #b2b2b2;
  6596. border-color: #b2b2b2; }
  6597. .checkbox-positive input:before,
  6598. .checkbox-positive .checkbox-icon:before {
  6599. border-color: #387ef5; }
  6600. .checkbox-positive input:checked:before,
  6601. .checkbox-positive input:checked + .checkbox-icon:before {
  6602. background: #387ef5;
  6603. border-color: #387ef5; }
  6604. .checkbox-calm input:before,
  6605. .checkbox-calm .checkbox-icon:before {
  6606. border-color: #ff4b82; }
  6607. .checkbox-calm input:checked:before,
  6608. .checkbox-calm input:checked + .checkbox-icon:before {
  6609. background: #ff4b82;
  6610. border-color: #ff4b82; }
  6611. .checkbox-assertive input:before,
  6612. .checkbox-assertive .checkbox-icon:before {
  6613. border-color: #ef473a; }
  6614. .checkbox-assertive input:checked:before,
  6615. .checkbox-assertive input:checked + .checkbox-icon:before {
  6616. background: #ef473a;
  6617. border-color: #ef473a; }
  6618. .checkbox-balanced input:before,
  6619. .checkbox-balanced .checkbox-icon:before {
  6620. border-color: #33cd5f; }
  6621. .checkbox-balanced input:checked:before,
  6622. .checkbox-balanced input:checked + .checkbox-icon:before {
  6623. background: #33cd5f;
  6624. border-color: #33cd5f; }
  6625. .checkbox-energized input:before,
  6626. .checkbox-energized .checkbox-icon:before {
  6627. border-color: #ffc900; }
  6628. .checkbox-energized input:checked:before,
  6629. .checkbox-energized input:checked + .checkbox-icon:before {
  6630. background: #ffc900;
  6631. border-color: #ffc900; }
  6632. .checkbox-royal input:before,
  6633. .checkbox-royal .checkbox-icon:before {
  6634. border-color: #886aea; }
  6635. .checkbox-royal input:checked:before,
  6636. .checkbox-royal input:checked + .checkbox-icon:before {
  6637. background: #886aea;
  6638. border-color: #886aea; }
  6639. .checkbox-dark input:before,
  6640. .checkbox-dark .checkbox-icon:before {
  6641. border-color: #444; }
  6642. .checkbox-dark input:checked:before,
  6643. .checkbox-dark input:checked + .checkbox-icon:before {
  6644. background: #444;
  6645. border-color: #444; }
  6646. .checkbox input:disabled:before,
  6647. .checkbox input:disabled + .checkbox-icon:before {
  6648. border-color: #ddd; }
  6649. .checkbox input:disabled:checked:before,
  6650. .checkbox input:disabled:checked + .checkbox-icon:before {
  6651. background: #ddd; }
  6652. .checkbox.checkbox-input-hidden input {
  6653. display: none !important; }
  6654. .checkbox input,
  6655. .checkbox-icon {
  6656. position: relative;
  6657. width: 28px;
  6658. height: 28px;
  6659. display: block;
  6660. border: 0;
  6661. background: transparent;
  6662. cursor: pointer;
  6663. -webkit-appearance: none; }
  6664. .checkbox input:before,
  6665. .checkbox-icon:before {
  6666. display: table;
  6667. width: 100%;
  6668. height: 100%;
  6669. border-width: 1px;
  6670. border-style: solid;
  6671. border-radius: 28px;
  6672. background: #fff;
  6673. content: ' ';
  6674. -webkit-transition: background-color 20ms ease-in-out;
  6675. transition: background-color 20ms ease-in-out; }
  6676. .checkbox input:checked:before,
  6677. input:checked + .checkbox-icon:before {
  6678. border-width: 2px; }
  6679. .checkbox input:after,
  6680. .checkbox-icon:after {
  6681. -webkit-transition: opacity 0.05s ease-in-out;
  6682. transition: opacity 0.05s ease-in-out;
  6683. -webkit-transform: rotate(-45deg);
  6684. transform: rotate(-45deg);
  6685. position: absolute;
  6686. top: 33%;
  6687. left: 25%;
  6688. display: table;
  6689. width: 14px;
  6690. height: 6px;
  6691. border: 1px solid #fff;
  6692. border-top: 0;
  6693. border-right: 0;
  6694. content: ' ';
  6695. opacity: 0; }
  6696. .platform-android .checkbox-platform input:before,
  6697. .platform-android .checkbox-platform .checkbox-icon:before,
  6698. .checkbox-square input:before,
  6699. .checkbox-square .checkbox-icon:before {
  6700. border-radius: 2px;
  6701. width: 72%;
  6702. height: 72%;
  6703. margin-top: 14%;
  6704. margin-left: 14%;
  6705. border-width: 2px; }
  6706. .platform-android .checkbox-platform input:after,
  6707. .platform-android .checkbox-platform .checkbox-icon:after,
  6708. .checkbox-square input:after,
  6709. .checkbox-square .checkbox-icon:after {
  6710. border-width: 2px;
  6711. top: 19%;
  6712. left: 25%;
  6713. width: 13px;
  6714. height: 7px; }
  6715. .platform-android .item-checkbox-right .checkbox-square .checkbox-icon::after {
  6716. top: 31%; }
  6717. .grade-c .checkbox input:after,
  6718. .grade-c .checkbox-icon:after {
  6719. -webkit-transform: rotate(0);
  6720. transform: rotate(0);
  6721. top: 3px;
  6722. left: 4px;
  6723. border: none;
  6724. color: #fff;
  6725. content: '\2713';
  6726. font-weight: bold;
  6727. font-size: 20px; }
  6728. .checkbox input:checked:after,
  6729. input:checked + .checkbox-icon:after {
  6730. opacity: 1; }
  6731. .item-checkbox {
  6732. padding-left: 60px; }
  6733. .item-checkbox.active {
  6734. box-shadow: none; }
  6735. .item-checkbox .checkbox {
  6736. position: absolute;
  6737. top: 50%;
  6738. right: 8px;
  6739. left: 8px;
  6740. z-index: 3;
  6741. margin-top: -21px; }
  6742. .item-checkbox.item-checkbox-right {
  6743. padding-right: 60px;
  6744. padding-left: 16px; }
  6745. .item-checkbox-right .checkbox input,
  6746. .item-checkbox-right .checkbox-icon {
  6747. float: right; }
  6748. /**
  6749. * Toggle
  6750. * --------------------------------------------------
  6751. */
  6752. .item-toggle {
  6753. pointer-events: none; }
  6754. .toggle {
  6755. position: relative;
  6756. display: inline-block;
  6757. pointer-events: auto;
  6758. margin: -5px;
  6759. padding: 5px; }
  6760. .toggle input:checked + .track {
  6761. border-color: #4cd964;
  6762. background-color: #4cd964; }
  6763. .toggle.dragging .handle {
  6764. background-color: #f2f2f2 !important; }
  6765. .toggle.toggle-light input:checked + .track {
  6766. border-color: #ddd;
  6767. background-color: #ddd; }
  6768. .toggle.toggle-stable input:checked + .track {
  6769. border-color: #b2b2b2;
  6770. background-color: #b2b2b2; }
  6771. .toggle.toggle-positive input:checked + .track {
  6772. border-color: #387ef5;
  6773. background-color: #387ef5; }
  6774. .toggle.toggle-calm input:checked + .track {
  6775. border-color: #ff4b82;
  6776. background-color: #ff4b82; }
  6777. .toggle.toggle-assertive input:checked + .track {
  6778. border-color: #ef473a;
  6779. background-color: #ef473a; }
  6780. .toggle.toggle-balanced input:checked + .track {
  6781. border-color: #33cd5f;
  6782. background-color: #33cd5f; }
  6783. .toggle.toggle-energized input:checked + .track {
  6784. border-color: #ffc900;
  6785. background-color: #ffc900; }
  6786. .toggle.toggle-royal input:checked + .track {
  6787. border-color: #886aea;
  6788. background-color: #886aea; }
  6789. .toggle.toggle-dark input:checked + .track {
  6790. border-color: #444;
  6791. background-color: #444; }
  6792. .toggle input {
  6793. display: none; }
  6794. /* the track appearance when the toggle is "off" */
  6795. .toggle .track {
  6796. -webkit-transition-timing-function: ease-in-out;
  6797. transition-timing-function: ease-in-out;
  6798. -webkit-transition-duration: 0.3s;
  6799. transition-duration: 0.3s;
  6800. -webkit-transition-property: background-color, border;
  6801. transition-property: background-color, border;
  6802. display: inline-block;
  6803. box-sizing: border-box;
  6804. width: 51px;
  6805. height: 31px;
  6806. border: solid 2px #e6e6e6;
  6807. border-radius: 20px;
  6808. background-color: #fff;
  6809. content: ' ';
  6810. cursor: pointer;
  6811. pointer-events: none; }
  6812. /* Fix to avoid background color bleeding */
  6813. /* (occured on (at least) Android 4.2, Asus MeMO Pad HD7 ME173X) */
  6814. .platform-android4_2 .toggle .track {
  6815. -webkit-background-clip: padding-box; }
  6816. /* the handle (circle) thats inside the toggle's track area */
  6817. /* also the handle's appearance when it is "off" */
  6818. .toggle .handle {
  6819. -webkit-transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  6820. transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  6821. -webkit-transition-property: background-color, transform;
  6822. transition-property: background-color, transform;
  6823. position: absolute;
  6824. display: block;
  6825. width: 27px;
  6826. height: 27px;
  6827. border-radius: 27px;
  6828. background-color: #fff;
  6829. top: 7px;
  6830. left: 7px;
  6831. box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.15); }
  6832. .toggle .handle:before {
  6833. position: absolute;
  6834. top: -4px;
  6835. left: -21.5px;
  6836. padding: 18.5px 34px;
  6837. content: " "; }
  6838. .toggle input:checked + .track .handle {
  6839. -webkit-transform: translate3d(20px, 0, 0);
  6840. transform: translate3d(20px, 0, 0);
  6841. background-color: #fff; }
  6842. .item-toggle.active {
  6843. box-shadow: none; }
  6844. .item-toggle,
  6845. .item-toggle.item-complex .item-content {
  6846. padding-right: 99px; }
  6847. .item-toggle.item-complex {
  6848. padding-right: 0; }
  6849. .item-toggle .toggle {
  6850. position: absolute;
  6851. top: 10px;
  6852. right: 16px;
  6853. z-index: 3; }
  6854. .toggle input:disabled + .track {
  6855. opacity: .6; }
  6856. .toggle-small .track {
  6857. border: 0;
  6858. width: 34px;
  6859. height: 15px;
  6860. background: #9e9e9e; }
  6861. .toggle-small input:checked + .track {
  6862. background: rgba(0, 150, 137, 0.5); }
  6863. .toggle-small .handle {
  6864. top: 2px;
  6865. left: 4px;
  6866. width: 21px;
  6867. height: 21px;
  6868. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); }
  6869. .toggle-small input:checked + .track .handle {
  6870. -webkit-transform: translate3d(16px, 0, 0);
  6871. transform: translate3d(16px, 0, 0);
  6872. background: #009689; }
  6873. .toggle-small.item-toggle .toggle {
  6874. top: 19px; }
  6875. .toggle-small .toggle-light input:checked + .track {
  6876. background-color: rgba(221, 221, 221, 0.5); }
  6877. .toggle-small .toggle-light input:checked + .track .handle {
  6878. background-color: #ddd; }
  6879. .toggle-small .toggle-stable input:checked + .track {
  6880. background-color: rgba(178, 178, 178, 0.5); }
  6881. .toggle-small .toggle-stable input:checked + .track .handle {
  6882. background-color: #b2b2b2; }
  6883. .toggle-small .toggle-positive input:checked + .track {
  6884. background-color: rgba(56, 126, 245, 0.5); }
  6885. .toggle-small .toggle-positive input:checked + .track .handle {
  6886. background-color: #387ef5; }
  6887. .toggle-small .toggle-calm input:checked + .track {
  6888. background-color: rgba(255, 75, 130, 0.5); }
  6889. .toggle-small .toggle-calm input:checked + .track .handle {
  6890. background-color: #ff4b82; }
  6891. .toggle-small .toggle-assertive input:checked + .track {
  6892. background-color: rgba(239, 71, 58, 0.5); }
  6893. .toggle-small .toggle-assertive input:checked + .track .handle {
  6894. background-color: #ef473a; }
  6895. .toggle-small .toggle-balanced input:checked + .track {
  6896. background-color: rgba(51, 205, 95, 0.5); }
  6897. .toggle-small .toggle-balanced input:checked + .track .handle {
  6898. background-color: #33cd5f; }
  6899. .toggle-small .toggle-energized input:checked + .track {
  6900. background-color: rgba(255, 201, 0, 0.5); }
  6901. .toggle-small .toggle-energized input:checked + .track .handle {
  6902. background-color: #ffc900; }
  6903. .toggle-small .toggle-royal input:checked + .track {
  6904. background-color: rgba(136, 106, 234, 0.5); }
  6905. .toggle-small .toggle-royal input:checked + .track .handle {
  6906. background-color: #886aea; }
  6907. .toggle-small .toggle-dark input:checked + .track {
  6908. background-color: rgba(68, 68, 68, 0.5); }
  6909. .toggle-small .toggle-dark input:checked + .track .handle {
  6910. background-color: #444; }
  6911. /**
  6912. * Radio Button Inputs
  6913. * --------------------------------------------------
  6914. */
  6915. .item-radio {
  6916. padding: 0; }
  6917. .item-radio:hover {
  6918. cursor: pointer; }
  6919. .item-radio .item-content {
  6920. /* give some room to the right for the checkmark icon */
  6921. padding-right: 64px; }
  6922. .item-radio .radio-icon {
  6923. /* checkmark icon will be hidden by default */
  6924. position: absolute;
  6925. top: 0;
  6926. right: 0;
  6927. z-index: 3;
  6928. visibility: hidden;
  6929. padding: 14px;
  6930. height: 100%;
  6931. font-size: 24px; }
  6932. .item-radio input {
  6933. /* hide any radio button inputs elements (the ugly circles) */
  6934. position: absolute;
  6935. left: -9999px; }
  6936. .item-radio input:checked + .radio-content .item-content {
  6937. /* style the item content when its checked */
  6938. background: #f7f7f7; }
  6939. .item-radio input:checked + .radio-content .radio-icon {
  6940. /* show the checkmark icon when its checked */
  6941. visibility: visible; }
  6942. /**
  6943. * Range
  6944. * --------------------------------------------------
  6945. */
  6946. .range input {
  6947. display: inline-block;
  6948. overflow: hidden;
  6949. margin-top: 5px;
  6950. margin-bottom: 5px;
  6951. padding-right: 2px;
  6952. padding-left: 1px;
  6953. width: auto;
  6954. height: 43px;
  6955. outline: none;
  6956. background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccc), color-stop(100%, #ccc));
  6957. background: linear-gradient(to right, #ccc 0%, #ccc 100%);
  6958. background-position: center;
  6959. background-size: 99% 2px;
  6960. background-repeat: no-repeat;
  6961. -webkit-appearance: none;
  6962. /*
  6963. &::-ms-track{
  6964. background: transparent;
  6965. border-color: transparent;
  6966. border-width: 11px 0 16px;
  6967. color:transparent;
  6968. margin-top:20px;
  6969. }
  6970. &::-ms-thumb {
  6971. width: $range-slider-width;
  6972. height: $range-slider-height;
  6973. border-radius: $range-slider-border-radius;
  6974. background-color: $toggle-handle-off-bg-color;
  6975. border-color:$toggle-handle-off-bg-color;
  6976. box-shadow: $range-slider-box-shadow;
  6977. margin-left:1px;
  6978. margin-right:1px;
  6979. outline:none;
  6980. }
  6981. &::-ms-fill-upper {
  6982. height: $range-track-height;
  6983. background:$range-default-track-bg;
  6984. }
  6985. */ }
  6986. .range input::-moz-focus-outer {
  6987. /* hide the focus outline in Firefox */
  6988. border: 0; }
  6989. .range input::-webkit-slider-thumb {
  6990. position: relative;
  6991. width: 28px;
  6992. height: 28px;
  6993. border-radius: 50%;
  6994. background-color: #fff;
  6995. box-shadow: 0 0 2px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2);
  6996. cursor: pointer;
  6997. -webkit-appearance: none;
  6998. border: 0; }
  6999. .range input::-webkit-slider-thumb:before {
  7000. /* what creates the colorful line on the left side of the slider */
  7001. position: absolute;
  7002. top: 13px;
  7003. left: -2001px;
  7004. width: 2000px;
  7005. height: 2px;
  7006. background: #444;
  7007. content: ' '; }
  7008. .range input::-webkit-slider-thumb:after {
  7009. /* create a larger (but hidden) hit area */
  7010. position: absolute;
  7011. top: -15px;
  7012. left: -15px;
  7013. padding: 30px;
  7014. content: ' '; }
  7015. .range input::-ms-fill-lower {
  7016. height: 2px;
  7017. background: #444; }
  7018. .range {
  7019. display: -webkit-box;
  7020. display: -webkit-flex;
  7021. display: -moz-box;
  7022. display: -moz-flex;
  7023. display: -ms-flexbox;
  7024. display: flex;
  7025. -webkit-box-align: center;
  7026. -ms-flex-align: center;
  7027. -webkit-align-items: center;
  7028. -moz-align-items: center;
  7029. align-items: center;
  7030. padding: 2px 11px; }
  7031. .range.range-light input::-webkit-slider-thumb:before {
  7032. background: #ddd; }
  7033. .range.range-light input::-ms-fill-lower {
  7034. background: #ddd; }
  7035. .range.range-stable input::-webkit-slider-thumb:before {
  7036. background: #b2b2b2; }
  7037. .range.range-stable input::-ms-fill-lower {
  7038. background: #b2b2b2; }
  7039. .range.range-positive input::-webkit-slider-thumb:before {
  7040. background: #387ef5; }
  7041. .range.range-positive input::-ms-fill-lower {
  7042. background: #387ef5; }
  7043. .range.range-calm input::-webkit-slider-thumb:before {
  7044. background: #ff4b82; }
  7045. .range.range-calm input::-ms-fill-lower {
  7046. background: #ff4b82; }
  7047. .range.range-balanced input::-webkit-slider-thumb:before {
  7048. background: #33cd5f; }
  7049. .range.range-balanced input::-ms-fill-lower {
  7050. background: #33cd5f; }
  7051. .range.range-assertive input::-webkit-slider-thumb:before {
  7052. background: #ef473a; }
  7053. .range.range-assertive input::-ms-fill-lower {
  7054. background: #ef473a; }
  7055. .range.range-energized input::-webkit-slider-thumb:before {
  7056. background: #ffc900; }
  7057. .range.range-energized input::-ms-fill-lower {
  7058. background: #ffc900; }
  7059. .range.range-royal input::-webkit-slider-thumb:before {
  7060. background: #886aea; }
  7061. .range.range-royal input::-ms-fill-lower {
  7062. background: #886aea; }
  7063. .range.range-dark input::-webkit-slider-thumb:before {
  7064. background: #444; }
  7065. .range.range-dark input::-ms-fill-lower {
  7066. background: #444; }
  7067. .range .icon {
  7068. -webkit-box-flex: 0;
  7069. -webkit-flex: 0;
  7070. -moz-box-flex: 0;
  7071. -moz-flex: 0;
  7072. -ms-flex: 0;
  7073. flex: 0;
  7074. display: block;
  7075. min-width: 24px;
  7076. text-align: center;
  7077. font-size: 24px; }
  7078. .range input {
  7079. -webkit-box-flex: 1;
  7080. -webkit-flex: 1;
  7081. -moz-box-flex: 1;
  7082. -moz-flex: 1;
  7083. -ms-flex: 1;
  7084. flex: 1;
  7085. display: block;
  7086. margin-right: 10px;
  7087. margin-left: 10px; }
  7088. .range-label {
  7089. -webkit-box-flex: 0;
  7090. -webkit-flex: 0 0 auto;
  7091. -moz-box-flex: 0;
  7092. -moz-flex: 0 0 auto;
  7093. -ms-flex: 0 0 auto;
  7094. flex: 0 0 auto;
  7095. display: block;
  7096. white-space: nowrap; }
  7097. .range-label:first-child {
  7098. padding-left: 5px; }
  7099. .range input + .range-label {
  7100. padding-right: 5px;
  7101. padding-left: 0; }
  7102. .platform-windowsphone .range input {
  7103. height: auto; }
  7104. /**
  7105. * Select
  7106. * --------------------------------------------------
  7107. */
  7108. .item-select {
  7109. position: relative; }
  7110. .item-select select {
  7111. -webkit-appearance: none;
  7112. -moz-appearance: none;
  7113. appearance: none;
  7114. position: absolute;
  7115. top: 0;
  7116. bottom: 0;
  7117. right: 0;
  7118. padding: 0 48px 0 16px;
  7119. max-width: 65%;
  7120. border: none;
  7121. background: #fff;
  7122. color: #333;
  7123. text-indent: .01px;
  7124. text-overflow: '';
  7125. white-space: nowrap;
  7126. font-size: 14px;
  7127. cursor: pointer;
  7128. direction: rtl; }
  7129. .item-select select::-ms-expand {
  7130. display: none; }
  7131. .item-select option {
  7132. direction: ltr; }
  7133. .item-select:after {
  7134. position: absolute;
  7135. top: 50%;
  7136. right: 16px;
  7137. margin-top: -3px;
  7138. width: 0;
  7139. height: 0;
  7140. border-top: 5px solid;
  7141. border-right: 5px solid transparent;
  7142. border-left: 5px solid transparent;
  7143. color: #999;
  7144. content: "";
  7145. pointer-events: none; }
  7146. .item-select.item-light select {
  7147. background: #fff;
  7148. color: #444; }
  7149. .item-select.item-stable select {
  7150. background: #f8f8f8;
  7151. color: #444; }
  7152. .item-select.item-stable:after, .item-select.item-stable .input-label {
  7153. color: #666666; }
  7154. .item-select.item-positive select {
  7155. background: #387ef5;
  7156. color: #fff; }
  7157. .item-select.item-positive:after, .item-select.item-positive .input-label {
  7158. color: #fff; }
  7159. .item-select.item-calm select {
  7160. background: #ff4b82;
  7161. color: #fff; }
  7162. .item-select.item-calm:after, .item-select.item-calm .input-label {
  7163. color: #fff; }
  7164. .item-select.item-assertive select {
  7165. background: #ef473a;
  7166. color: #fff; }
  7167. .item-select.item-assertive:after, .item-select.item-assertive .input-label {
  7168. color: #fff; }
  7169. .item-select.item-balanced select {
  7170. background: #33cd5f;
  7171. color: #fff; }
  7172. .item-select.item-balanced:after, .item-select.item-balanced .input-label {
  7173. color: #fff; }
  7174. .item-select.item-energized select {
  7175. background: #ffc900;
  7176. color: #fff; }
  7177. .item-select.item-energized:after, .item-select.item-energized .input-label {
  7178. color: #fff; }
  7179. .item-select.item-royal select {
  7180. background: #886aea;
  7181. color: #fff; }
  7182. .item-select.item-royal:after, .item-select.item-royal .input-label {
  7183. color: #fff; }
  7184. .item-select.item-dark select {
  7185. background: #444;
  7186. color: #fff; }
  7187. .item-select.item-dark:after, .item-select.item-dark .input-label {
  7188. color: #fff; }
  7189. select[multiple], select[size] {
  7190. height: auto; }
  7191. /**
  7192. * Progress
  7193. * --------------------------------------------------
  7194. */
  7195. progress {
  7196. display: block;
  7197. margin: 15px auto;
  7198. width: 100%; }
  7199. /**
  7200. * Buttons
  7201. * --------------------------------------------------
  7202. */
  7203. .button {
  7204. border-color: transparent;
  7205. background-color: #f8f8f8;
  7206. color: #444;
  7207. position: relative;
  7208. display: inline-block;
  7209. margin: 0;
  7210. padding: 0 12px;
  7211. min-width: 52px;
  7212. min-height: 47px;
  7213. border-width: 1px;
  7214. border-style: solid;
  7215. border-radius: 4px;
  7216. vertical-align: top;
  7217. text-align: center;
  7218. text-overflow: ellipsis;
  7219. font-size: 16px;
  7220. line-height: 42px;
  7221. cursor: pointer; }
  7222. .button:hover {
  7223. color: #444;
  7224. text-decoration: none; }
  7225. .button.active, .button.activated {
  7226. background-color: #e5e5e5; }
  7227. .button:after {
  7228. position: absolute;
  7229. top: -6px;
  7230. right: -6px;
  7231. bottom: -6px;
  7232. left: -6px;
  7233. content: ' '; }
  7234. .button .icon {
  7235. vertical-align: top;
  7236. pointer-events: none; }
  7237. .button .icon:before, .button.icon:before, .button.icon-left:before, .button.icon-right:before {
  7238. display: inline-block;
  7239. padding: 0 0 1px 0;
  7240. vertical-align: inherit;
  7241. font-size: 24px;
  7242. line-height: 41px;
  7243. pointer-events: none; }
  7244. .button.icon-left:before {
  7245. float: left;
  7246. padding-right: .2em;
  7247. padding-left: 0; }
  7248. .button.icon-right:before {
  7249. float: right;
  7250. padding-right: 0;
  7251. padding-left: .2em; }
  7252. .button.button-block, .button.button-full {
  7253. margin-top: 10px;
  7254. margin-bottom: 10px; }
  7255. .button.button-light {
  7256. border-color: transparent;
  7257. background-color: #fff;
  7258. color: #444; }
  7259. .button.button-light:hover {
  7260. color: #444;
  7261. text-decoration: none; }
  7262. .button.button-light.active, .button.button-light.activated {
  7263. background-color: #fafafa; }
  7264. .button.button-light.button-clear {
  7265. border-color: transparent;
  7266. background: none;
  7267. box-shadow: none;
  7268. color: #ddd; }
  7269. .button.button-light.button-icon {
  7270. border-color: transparent;
  7271. background: none; }
  7272. .button.button-light.button-outline {
  7273. border-color: #ddd;
  7274. background: transparent;
  7275. color: #ddd; }
  7276. .button.button-light.button-outline.active, .button.button-light.button-outline.activated {
  7277. background-color: #ddd;
  7278. box-shadow: none;
  7279. color: #fff; }
  7280. .button.button-stable {
  7281. border-color: transparent;
  7282. background-color: #f8f8f8;
  7283. color: #444; }
  7284. .button.button-stable:hover {
  7285. color: #444;
  7286. text-decoration: none; }
  7287. .button.button-stable.active, .button.button-stable.activated {
  7288. background-color: #e5e5e5; }
  7289. .button.button-stable.button-clear {
  7290. border-color: transparent;
  7291. background: none;
  7292. box-shadow: none;
  7293. color: #b2b2b2; }
  7294. .button.button-stable.button-icon {
  7295. border-color: transparent;
  7296. background: none; }
  7297. .button.button-stable.button-outline {
  7298. border-color: #b2b2b2;
  7299. background: transparent;
  7300. color: #b2b2b2; }
  7301. .button.button-stable.button-outline.active, .button.button-stable.button-outline.activated {
  7302. background-color: #b2b2b2;
  7303. box-shadow: none;
  7304. color: #fff; }
  7305. .button.button-positive {
  7306. border-color: transparent;
  7307. background-color: #387ef5;
  7308. color: #fff; }
  7309. .button.button-positive:hover {
  7310. color: #fff;
  7311. text-decoration: none; }
  7312. .button.button-positive.active, .button.button-positive.activated {
  7313. background-color: #0c60ee; }
  7314. .button.button-positive.button-clear {
  7315. border-color: transparent;
  7316. background: none;
  7317. box-shadow: none;
  7318. color: #387ef5; }
  7319. .button.button-positive.button-icon {
  7320. border-color: transparent;
  7321. background: none; }
  7322. .button.button-positive.button-outline {
  7323. border-color: #387ef5;
  7324. background: transparent;
  7325. color: #387ef5; }
  7326. .button.button-positive.button-outline.active, .button.button-positive.button-outline.activated {
  7327. background-color: #387ef5;
  7328. box-shadow: none;
  7329. color: #fff; }
  7330. .button.button-calm {
  7331. border-color: transparent;
  7332. background-color: #ff4b82;
  7333. color: #fff; }
  7334. .button.button-calm:hover {
  7335. color: #fff;
  7336. text-decoration: none; }
  7337. .button.button-calm.active, .button.button-calm.activated {
  7338. background-color: #ff185f; }
  7339. .button.button-calm.button-clear {
  7340. border-color: transparent;
  7341. background: none;
  7342. box-shadow: none;
  7343. color: #ff4b82; }
  7344. .button.button-calm.button-icon {
  7345. border-color: transparent;
  7346. background: none; }
  7347. .button.button-calm.button-outline {
  7348. border-color: #ff4b82;
  7349. background: transparent;
  7350. color: #ff4b82; }
  7351. .button.button-calm.button-outline.active, .button.button-calm.button-outline.activated {
  7352. background-color: #ff4b82;
  7353. box-shadow: none;
  7354. color: #fff; }
  7355. .button.button-assertive {
  7356. border-color: transparent;
  7357. background-color: #ef473a;
  7358. color: #fff; }
  7359. .button.button-assertive:hover {
  7360. color: #fff;
  7361. text-decoration: none; }
  7362. .button.button-assertive.active, .button.button-assertive.activated {
  7363. background-color: #e42112; }
  7364. .button.button-assertive.button-clear {
  7365. border-color: transparent;
  7366. background: none;
  7367. box-shadow: none;
  7368. color: #ef473a; }
  7369. .button.button-assertive.button-icon {
  7370. border-color: transparent;
  7371. background: none; }
  7372. .button.button-assertive.button-outline {
  7373. border-color: #ef473a;
  7374. background: transparent;
  7375. color: #ef473a; }
  7376. .button.button-assertive.button-outline.active, .button.button-assertive.button-outline.activated {
  7377. background-color: #ef473a;
  7378. box-shadow: none;
  7379. color: #fff; }
  7380. .button.button-balanced {
  7381. border-color: transparent;
  7382. background-color: #33cd5f;
  7383. color: #fff; }
  7384. .button.button-balanced:hover {
  7385. color: #fff;
  7386. text-decoration: none; }
  7387. .button.button-balanced.active, .button.button-balanced.activated {
  7388. background-color: #28a54c; }
  7389. .button.button-balanced.button-clear {
  7390. border-color: transparent;
  7391. background: none;
  7392. box-shadow: none;
  7393. color: #33cd5f; }
  7394. .button.button-balanced.button-icon {
  7395. border-color: transparent;
  7396. background: none; }
  7397. .button.button-balanced.button-outline {
  7398. border-color: #33cd5f;
  7399. background: transparent;
  7400. color: #33cd5f; }
  7401. .button.button-balanced.button-outline.active, .button.button-balanced.button-outline.activated {
  7402. background-color: #33cd5f;
  7403. box-shadow: none;
  7404. color: #fff; }
  7405. .button.button-energized {
  7406. border-color: transparent;
  7407. background-color: #ffc900;
  7408. color: #fff; }
  7409. .button.button-energized:hover {
  7410. color: #fff;
  7411. text-decoration: none; }
  7412. .button.button-energized.active, .button.button-energized.activated {
  7413. background-color: #e6b500; }
  7414. .button.button-energized.button-clear {
  7415. border-color: transparent;
  7416. background: none;
  7417. box-shadow: none;
  7418. color: #ffc900; }
  7419. .button.button-energized.button-icon {
  7420. border-color: transparent;
  7421. background: none; }
  7422. .button.button-energized.button-outline {
  7423. border-color: #ffc900;
  7424. background: transparent;
  7425. color: #ffc900; }
  7426. .button.button-energized.button-outline.active, .button.button-energized.button-outline.activated {
  7427. background-color: #ffc900;
  7428. box-shadow: none;
  7429. color: #fff; }
  7430. .button.button-royal {
  7431. border-color: transparent;
  7432. background-color: #886aea;
  7433. color: #fff; }
  7434. .button.button-royal:hover {
  7435. color: #fff;
  7436. text-decoration: none; }
  7437. .button.button-royal.active, .button.button-royal.activated {
  7438. background-color: #6b46e5; }
  7439. .button.button-royal.button-clear {
  7440. border-color: transparent;
  7441. background: none;
  7442. box-shadow: none;
  7443. color: #886aea; }
  7444. .button.button-royal.button-icon {
  7445. border-color: transparent;
  7446. background: none; }
  7447. .button.button-royal.button-outline {
  7448. border-color: #886aea;
  7449. background: transparent;
  7450. color: #886aea; }
  7451. .button.button-royal.button-outline.active, .button.button-royal.button-outline.activated {
  7452. background-color: #886aea;
  7453. box-shadow: none;
  7454. color: #fff; }
  7455. .button.button-dark {
  7456. border-color: transparent;
  7457. background-color: #444;
  7458. color: #fff; }
  7459. .button.button-dark:hover {
  7460. color: #fff;
  7461. text-decoration: none; }
  7462. .button.button-dark.active, .button.button-dark.activated {
  7463. background-color: #262626; }
  7464. .button.button-dark.button-clear {
  7465. border-color: transparent;
  7466. background: none;
  7467. box-shadow: none;
  7468. color: #444; }
  7469. .button.button-dark.button-icon {
  7470. border-color: transparent;
  7471. background: none; }
  7472. .button.button-dark.button-outline {
  7473. border-color: #444;
  7474. background: transparent;
  7475. color: #444; }
  7476. .button.button-dark.button-outline.active, .button.button-dark.button-outline.activated {
  7477. background-color: #444;
  7478. box-shadow: none;
  7479. color: #fff; }
  7480. .button-small {
  7481. padding: 2px 4px 1px;
  7482. min-width: 28px;
  7483. min-height: 30px;
  7484. font-size: 12px;
  7485. line-height: 26px; }
  7486. .button-small .icon:before, .button-small.icon:before, .button-small.icon-left:before, .button-small.icon-right:before {
  7487. font-size: 16px;
  7488. line-height: 19px;
  7489. margin-top: 3px; }
  7490. .button-large {
  7491. padding: 0 16px;
  7492. min-width: 68px;
  7493. min-height: 59px;
  7494. font-size: 20px;
  7495. line-height: 53px; }
  7496. .button-large .icon:before, .button-large.icon:before, .button-large.icon-left:before, .button-large.icon-right:before {
  7497. padding-bottom: 2px;
  7498. font-size: 32px;
  7499. line-height: 51px; }
  7500. .button-icon {
  7501. -webkit-transition: opacity 0.1s;
  7502. transition: opacity 0.1s;
  7503. padding: 0 6px;
  7504. min-width: initial;
  7505. border-color: transparent;
  7506. background: none; }
  7507. .button-icon.button.active, .button-icon.button.activated {
  7508. border-color: transparent;
  7509. background: none;
  7510. box-shadow: none;
  7511. opacity: 0.3; }
  7512. .button-icon .icon:before, .button-icon.icon:before {
  7513. font-size: 32px; }
  7514. .button-clear {
  7515. -webkit-transition: opacity 0.1s;
  7516. transition: opacity 0.1s;
  7517. padding: 0 6px;
  7518. max-height: 42px;
  7519. border-color: transparent;
  7520. background: none;
  7521. box-shadow: none; }
  7522. .button-clear.button-clear {
  7523. border-color: transparent;
  7524. background: none;
  7525. box-shadow: none;
  7526. color: #b2b2b2; }
  7527. .button-clear.button-icon {
  7528. border-color: transparent;
  7529. background: none; }
  7530. .button-clear.active, .button-clear.activated {
  7531. opacity: 0.3; }
  7532. .button-outline {
  7533. -webkit-transition: opacity 0.1s;
  7534. transition: opacity 0.1s;
  7535. background: none;
  7536. box-shadow: none; }
  7537. .button-outline.button-outline {
  7538. border-color: #b2b2b2;
  7539. background: transparent;
  7540. color: #b2b2b2; }
  7541. .button-outline.button-outline.active, .button-outline.button-outline.activated {
  7542. background-color: #b2b2b2;
  7543. box-shadow: none;
  7544. color: #fff; }
  7545. .padding > .button.button-block:first-child {
  7546. margin-top: 0; }
  7547. .button-block {
  7548. display: block;
  7549. clear: both; }
  7550. .button-block:after {
  7551. clear: both; }
  7552. .button-full,
  7553. .button-full > .button {
  7554. display: block;
  7555. margin-right: 0;
  7556. margin-left: 0;
  7557. border-right-width: 0;
  7558. border-left-width: 0;
  7559. border-radius: 0; }
  7560. button.button-block,
  7561. button.button-full,
  7562. .button-full > button.button,
  7563. input.button.button-block {
  7564. width: 100%; }
  7565. a.button {
  7566. text-decoration: none; }
  7567. a.button .icon:before, a.button.icon:before, a.button.icon-left:before, a.button.icon-right:before {
  7568. margin-top: 2px; }
  7569. .button.disabled,
  7570. .button[disabled] {
  7571. opacity: .4;
  7572. cursor: default !important;
  7573. pointer-events: none; }
  7574. /**
  7575. * Button Bar
  7576. * --------------------------------------------------
  7577. */
  7578. .button-bar {
  7579. display: -webkit-box;
  7580. display: -webkit-flex;
  7581. display: -moz-box;
  7582. display: -moz-flex;
  7583. display: -ms-flexbox;
  7584. display: flex;
  7585. -webkit-box-flex: 1;
  7586. -webkit-flex: 1;
  7587. -moz-box-flex: 1;
  7588. -moz-flex: 1;
  7589. -ms-flex: 1;
  7590. flex: 1;
  7591. width: 100%; }
  7592. .button-bar.button-bar-inline {
  7593. display: block;
  7594. width: auto;
  7595. *zoom: 1; }
  7596. .button-bar.button-bar-inline:before, .button-bar.button-bar-inline:after {
  7597. display: table;
  7598. content: "";
  7599. line-height: 0; }
  7600. .button-bar.button-bar-inline:after {
  7601. clear: both; }
  7602. .button-bar.button-bar-inline > .button {
  7603. width: auto;
  7604. display: inline-block;
  7605. float: left; }
  7606. .button-bar > .button {
  7607. -webkit-box-flex: 1;
  7608. -webkit-flex: 1;
  7609. -moz-box-flex: 1;
  7610. -moz-flex: 1;
  7611. -ms-flex: 1;
  7612. flex: 1;
  7613. display: block;
  7614. overflow: hidden;
  7615. padding: 0 16px;
  7616. width: 0;
  7617. border-width: 1px 0px 1px 1px;
  7618. border-radius: 0;
  7619. text-align: center;
  7620. text-overflow: ellipsis;
  7621. white-space: nowrap; }
  7622. .button-bar > .button:before,
  7623. .button-bar > .button .icon:before {
  7624. line-height: 44px; }
  7625. .button-bar > .button:first-child {
  7626. border-radius: 4px 0px 0px 4px; }
  7627. .button-bar > .button:last-child {
  7628. border-right-width: 1px;
  7629. border-radius: 0px 4px 4px 0px; }
  7630. .button-bar > .button:only-child {
  7631. border-radius: 4px; }
  7632. .button-bar > .button-small:before,
  7633. .button-bar > .button-small .icon:before {
  7634. line-height: 28px; }
  7635. /**
  7636. * Grid
  7637. * --------------------------------------------------
  7638. * Using flexbox for the grid, inspired by Philip Walton:
  7639. * http://philipwalton.github.io/solved-by-flexbox/demos/grids/
  7640. * By default each .col within a .row will evenly take up
  7641. * available width, and the height of each .col with take
  7642. * up the height of the tallest .col in the same .row.
  7643. */
  7644. .row {
  7645. display: -webkit-box;
  7646. display: -webkit-flex;
  7647. display: -moz-box;
  7648. display: -moz-flex;
  7649. display: -ms-flexbox;
  7650. display: flex;
  7651. padding: 5px;
  7652. width: 100%; }
  7653. .row-wrap {
  7654. -webkit-flex-wrap: wrap;
  7655. -moz-flex-wrap: wrap;
  7656. -ms-flex-wrap: wrap;
  7657. flex-wrap: wrap; }
  7658. .row-no-padding {
  7659. padding: 0; }
  7660. .row-no-padding > .col {
  7661. padding: 0; }
  7662. .row + .row {
  7663. margin-top: -5px;
  7664. padding-top: 0; }
  7665. .col {
  7666. -webkit-box-flex: 1;
  7667. -webkit-flex: 1;
  7668. -moz-box-flex: 1;
  7669. -moz-flex: 1;
  7670. -ms-flex: 1;
  7671. flex: 1;
  7672. display: block;
  7673. padding: 5px;
  7674. width: 100%; }
  7675. /* Vertically Align Columns */
  7676. /* .row-* vertically aligns every .col in the .row */
  7677. .row-top {
  7678. -webkit-box-align: start;
  7679. -ms-flex-align: start;
  7680. -webkit-align-items: flex-start;
  7681. -moz-align-items: flex-start;
  7682. align-items: flex-start; }
  7683. .row-bottom {
  7684. -webkit-box-align: end;
  7685. -ms-flex-align: end;
  7686. -webkit-align-items: flex-end;
  7687. -moz-align-items: flex-end;
  7688. align-items: flex-end; }
  7689. .row-center {
  7690. -webkit-box-align: center;
  7691. -ms-flex-align: center;
  7692. -webkit-align-items: center;
  7693. -moz-align-items: center;
  7694. align-items: center; }
  7695. .row-stretch {
  7696. -webkit-box-align: stretch;
  7697. -ms-flex-align: stretch;
  7698. -webkit-align-items: stretch;
  7699. -moz-align-items: stretch;
  7700. align-items: stretch; }
  7701. .row-baseline {
  7702. -webkit-box-align: baseline;
  7703. -ms-flex-align: baseline;
  7704. -webkit-align-items: baseline;
  7705. -moz-align-items: baseline;
  7706. align-items: baseline; }
  7707. /* .col-* vertically aligns an individual .col */
  7708. .col-top {
  7709. -webkit-align-self: flex-start;
  7710. -moz-align-self: flex-start;
  7711. -ms-flex-item-align: start;
  7712. align-self: flex-start; }
  7713. .col-bottom {
  7714. -webkit-align-self: flex-end;
  7715. -moz-align-self: flex-end;
  7716. -ms-flex-item-align: end;
  7717. align-self: flex-end; }
  7718. .col-center {
  7719. -webkit-align-self: center;
  7720. -moz-align-self: center;
  7721. -ms-flex-item-align: center;
  7722. align-self: center; }
  7723. /* Column Offsets */
  7724. .col-offset-10 {
  7725. margin-left: 10%; }
  7726. .col-offset-20 {
  7727. margin-left: 20%; }
  7728. .col-offset-25 {
  7729. margin-left: 25%; }
  7730. .col-offset-33, .col-offset-34 {
  7731. margin-left: 33.3333%; }
  7732. .col-offset-50 {
  7733. margin-left: 50%; }
  7734. .col-offset-66, .col-offset-67 {
  7735. margin-left: 66.6666%; }
  7736. .col-offset-75 {
  7737. margin-left: 75%; }
  7738. .col-offset-80 {
  7739. margin-left: 80%; }
  7740. .col-offset-90 {
  7741. margin-left: 90%; }
  7742. /* Explicit Column Percent Sizes */
  7743. /* By default each grid column will evenly distribute */
  7744. /* across the grid. However, you can specify individual */
  7745. /* columns to take up a certain size of the available area */
  7746. .col-10 {
  7747. -webkit-box-flex: 0;
  7748. -webkit-flex: 0 0 10%;
  7749. -moz-box-flex: 0;
  7750. -moz-flex: 0 0 10%;
  7751. -ms-flex: 0 0 10%;
  7752. flex: 0 0 10%;
  7753. max-width: 10%; }
  7754. .col-20 {
  7755. -webkit-box-flex: 0;
  7756. -webkit-flex: 0 0 20%;
  7757. -moz-box-flex: 0;
  7758. -moz-flex: 0 0 20%;
  7759. -ms-flex: 0 0 20%;
  7760. flex: 0 0 20%;
  7761. max-width: 20%; }
  7762. .col-25 {
  7763. -webkit-box-flex: 0;
  7764. -webkit-flex: 0 0 25%;
  7765. -moz-box-flex: 0;
  7766. -moz-flex: 0 0 25%;
  7767. -ms-flex: 0 0 25%;
  7768. flex: 0 0 25%;
  7769. max-width: 25%; }
  7770. .col-33, .col-34 {
  7771. -webkit-box-flex: 0;
  7772. -webkit-flex: 0 0 33.3333%;
  7773. -moz-box-flex: 0;
  7774. -moz-flex: 0 0 33.3333%;
  7775. -ms-flex: 0 0 33.3333%;
  7776. flex: 0 0 33.3333%;
  7777. max-width: 33.3333%; }
  7778. .col-40 {
  7779. -webkit-box-flex: 0;
  7780. -webkit-flex: 0 0 40%;
  7781. -moz-box-flex: 0;
  7782. -moz-flex: 0 0 40%;
  7783. -ms-flex: 0 0 40%;
  7784. flex: 0 0 40%;
  7785. max-width: 40%; }
  7786. .col-50 {
  7787. -webkit-box-flex: 0;
  7788. -webkit-flex: 0 0 50%;
  7789. -moz-box-flex: 0;
  7790. -moz-flex: 0 0 50%;
  7791. -ms-flex: 0 0 50%;
  7792. flex: 0 0 50%;
  7793. max-width: 50%; }
  7794. .col-60 {
  7795. -webkit-box-flex: 0;
  7796. -webkit-flex: 0 0 60%;
  7797. -moz-box-flex: 0;
  7798. -moz-flex: 0 0 60%;
  7799. -ms-flex: 0 0 60%;
  7800. flex: 0 0 60%;
  7801. max-width: 60%; }
  7802. .col-66, .col-67 {
  7803. -webkit-box-flex: 0;
  7804. -webkit-flex: 0 0 66.6666%;
  7805. -moz-box-flex: 0;
  7806. -moz-flex: 0 0 66.6666%;
  7807. -ms-flex: 0 0 66.6666%;
  7808. flex: 0 0 66.6666%;
  7809. max-width: 66.6666%; }
  7810. .col-75 {
  7811. -webkit-box-flex: 0;
  7812. -webkit-flex: 0 0 75%;
  7813. -moz-box-flex: 0;
  7814. -moz-flex: 0 0 75%;
  7815. -ms-flex: 0 0 75%;
  7816. flex: 0 0 75%;
  7817. max-width: 75%; }
  7818. .col-80 {
  7819. -webkit-box-flex: 0;
  7820. -webkit-flex: 0 0 80%;
  7821. -moz-box-flex: 0;
  7822. -moz-flex: 0 0 80%;
  7823. -ms-flex: 0 0 80%;
  7824. flex: 0 0 80%;
  7825. max-width: 80%; }
  7826. .col-90 {
  7827. -webkit-box-flex: 0;
  7828. -webkit-flex: 0 0 90%;
  7829. -moz-box-flex: 0;
  7830. -moz-flex: 0 0 90%;
  7831. -ms-flex: 0 0 90%;
  7832. flex: 0 0 90%;
  7833. max-width: 90%; }
  7834. /* Responsive Grid Classes */
  7835. /* Adding a class of responsive-X to a row */
  7836. /* will trigger the flex-direction to */
  7837. /* change to column and add some margin */
  7838. /* to any columns in the row for clearity */
  7839. @media (max-width: 567px) {
  7840. .responsive-sm {
  7841. -webkit-box-direction: normal;
  7842. -moz-box-direction: normal;
  7843. -webkit-box-orient: vertical;
  7844. -moz-box-orient: vertical;
  7845. -webkit-flex-direction: column;
  7846. -ms-flex-direction: column;
  7847. flex-direction: column; }
  7848. .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 {
  7849. -webkit-box-flex: 1;
  7850. -webkit-flex: 1;
  7851. -moz-box-flex: 1;
  7852. -moz-flex: 1;
  7853. -ms-flex: 1;
  7854. flex: 1;
  7855. margin-bottom: 15px;
  7856. margin-left: 0;
  7857. max-width: 100%;
  7858. width: 100%; } }
  7859. @media (max-width: 767px) {
  7860. .responsive-md {
  7861. -webkit-box-direction: normal;
  7862. -moz-box-direction: normal;
  7863. -webkit-box-orient: vertical;
  7864. -moz-box-orient: vertical;
  7865. -webkit-flex-direction: column;
  7866. -ms-flex-direction: column;
  7867. flex-direction: column; }
  7868. .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 {
  7869. -webkit-box-flex: 1;
  7870. -webkit-flex: 1;
  7871. -moz-box-flex: 1;
  7872. -moz-flex: 1;
  7873. -ms-flex: 1;
  7874. flex: 1;
  7875. margin-bottom: 15px;
  7876. margin-left: 0;
  7877. max-width: 100%;
  7878. width: 100%; } }
  7879. @media (max-width: 1023px) {
  7880. .responsive-lg {
  7881. -webkit-box-direction: normal;
  7882. -moz-box-direction: normal;
  7883. -webkit-box-orient: vertical;
  7884. -moz-box-orient: vertical;
  7885. -webkit-flex-direction: column;
  7886. -ms-flex-direction: column;
  7887. flex-direction: column; }
  7888. .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 {
  7889. -webkit-box-flex: 1;
  7890. -webkit-flex: 1;
  7891. -moz-box-flex: 1;
  7892. -moz-flex: 1;
  7893. -ms-flex: 1;
  7894. flex: 1;
  7895. margin-bottom: 15px;
  7896. margin-left: 0;
  7897. max-width: 100%;
  7898. width: 100%; } }
  7899. /**
  7900. * Utility Classes
  7901. * --------------------------------------------------
  7902. */
  7903. .hide {
  7904. display: none; }
  7905. .opacity-hide {
  7906. opacity: 0; }
  7907. .grade-b .opacity-hide,
  7908. .grade-c .opacity-hide {
  7909. opacity: 1;
  7910. display: none; }
  7911. .show {
  7912. display: block; }
  7913. .opacity-show {
  7914. opacity: 1; }
  7915. .invisible {
  7916. visibility: hidden; }
  7917. .keyboard-open .hide-on-keyboard-open {
  7918. display: none; }
  7919. .keyboard-open .tabs.hide-on-keyboard-open + .pane .has-tabs,
  7920. .keyboard-open .bar-footer.hide-on-keyboard-open + .pane .has-footer {
  7921. bottom: 0; }
  7922. .inline {
  7923. display: inline-block; }
  7924. .disable-pointer-events {
  7925. pointer-events: none; }
  7926. .enable-pointer-events {
  7927. pointer-events: auto; }
  7928. .disable-user-behavior {
  7929. -webkit-user-select: none;
  7930. -moz-user-select: none;
  7931. -ms-user-select: none;
  7932. user-select: none;
  7933. -webkit-touch-callout: none;
  7934. -webkit-tap-highlight-color: transparent;
  7935. -webkit-tap-highlight-color: transparent;
  7936. -webkit-user-drag: none;
  7937. -ms-touch-action: none;
  7938. -ms-content-zooming: none; }
  7939. .click-block {
  7940. position: absolute;
  7941. top: 0;
  7942. right: 0;
  7943. bottom: 0;
  7944. left: 0;
  7945. opacity: 0;
  7946. z-index: 99999;
  7947. -webkit-transform: translate3d(0, 0, 0);
  7948. transform: translate3d(0, 0, 0);
  7949. overflow: hidden; }
  7950. .click-block-hide {
  7951. -webkit-transform: translate3d(-9999px, 0, 0);
  7952. transform: translate3d(-9999px, 0, 0); }
  7953. .no-resize {
  7954. resize: none; }
  7955. .block {
  7956. display: block;
  7957. clear: both; }
  7958. .block:after {
  7959. display: block;
  7960. visibility: hidden;
  7961. clear: both;
  7962. height: 0;
  7963. content: "."; }
  7964. .full-image {
  7965. width: 100%; }
  7966. .clearfix {
  7967. *zoom: 1; }
  7968. .clearfix:before, .clearfix:after {
  7969. display: table;
  7970. content: "";
  7971. line-height: 0; }
  7972. .clearfix:after {
  7973. clear: both; }
  7974. /**
  7975. * Content Padding
  7976. * --------------------------------------------------
  7977. */
  7978. .padding {
  7979. padding: 10px; }
  7980. .padding-top,
  7981. .padding-vertical {
  7982. padding-top: 10px; }
  7983. .padding-right,
  7984. .padding-horizontal {
  7985. padding-right: 10px; }
  7986. .padding-bottom,
  7987. .padding-vertical {
  7988. padding-bottom: 10px; }
  7989. .padding-left,
  7990. .padding-horizontal {
  7991. padding-left: 10px; }
  7992. /**
  7993. * Scrollable iFrames
  7994. * --------------------------------------------------
  7995. */
  7996. .iframe-wrapper {
  7997. position: fixed;
  7998. -webkit-overflow-scrolling: touch;
  7999. overflow: scroll; }
  8000. .iframe-wrapper iframe {
  8001. height: 100%;
  8002. width: 100%; }
  8003. /**
  8004. * Rounded
  8005. * --------------------------------------------------
  8006. */
  8007. .rounded {
  8008. border-radius: 4px; }
  8009. /**
  8010. * Utility Colors
  8011. * --------------------------------------------------
  8012. * Utility colors are added to help set a naming convention. You'll
  8013. * notice we purposely do not use words like "red" or "blue", but
  8014. * instead have colors which represent an emotion or generic theme.
  8015. */
  8016. .light, a.light {
  8017. color: #fff; }
  8018. .light-bg {
  8019. background-color: #fff; }
  8020. .light-border {
  8021. border-color: #ddd; }
  8022. .stable, a.stable {
  8023. color: #f8f8f8; }
  8024. .stable-bg {
  8025. background-color: #f8f8f8; }
  8026. .stable-border {
  8027. border-color: #b2b2b2; }
  8028. .positive, a.positive {
  8029. color: #387ef5; }
  8030. .positive-bg {
  8031. background-color: #387ef5; }
  8032. .positive-border {
  8033. border-color: #0c60ee; }
  8034. .calm, a.calm {
  8035. color: #ff4b82; }
  8036. .calm-bg {
  8037. background-color: #ff4b82; }
  8038. .calm-border {
  8039. border-color: #ff185f; }
  8040. .assertive, a.assertive {
  8041. color: #ef473a; }
  8042. .assertive-bg {
  8043. background-color: #ef473a; }
  8044. .assertive-border {
  8045. border-color: #e42112; }
  8046. .balanced, a.balanced {
  8047. color: #33cd5f; }
  8048. .balanced-bg {
  8049. background-color: #33cd5f; }
  8050. .balanced-border {
  8051. border-color: #28a54c; }
  8052. .energized, a.energized {
  8053. color: #ffc900; }
  8054. .energized-bg {
  8055. background-color: #ffc900; }
  8056. .energized-border {
  8057. border-color: #e6b500; }
  8058. .royal, a.royal {
  8059. color: #886aea; }
  8060. .royal-bg {
  8061. background-color: #886aea; }
  8062. .royal-border {
  8063. border-color: #6b46e5; }
  8064. .dark, a.dark {
  8065. color: #444; }
  8066. .dark-bg {
  8067. background-color: #444; }
  8068. .dark-border {
  8069. border-color: #111; }
  8070. [collection-repeat] {
  8071. /* Position is set by transforms */
  8072. left: 0 !important;
  8073. top: 0 !important;
  8074. position: absolute !important;
  8075. z-index: 1; }
  8076. .collection-repeat-container {
  8077. position: relative;
  8078. z-index: 1; }
  8079. .collection-repeat-after-container {
  8080. z-index: 0;
  8081. display: block;
  8082. /* when scrolling horizontally, make sure the after container doesn't take up 100% width */ }
  8083. .collection-repeat-after-container.horizontal {
  8084. display: inline-block; }
  8085. [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak,
  8086. .x-ng-cloak, .ng-hide:not(.ng-hide-animate) {
  8087. display: none !important; }
  8088. /**
  8089. * Platform
  8090. * --------------------------------------------------
  8091. * Platform specific tweaks
  8092. */
  8093. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader) {
  8094. height: 64px; }
  8095. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader).item-input-inset .item-input-wrapper {
  8096. margin-top: 19px !important; }
  8097. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader) > * {
  8098. margin-top: 20px; }
  8099. .platform-ios.platform-cordova:not(.fullscreen) .tabs-top > .tabs,
  8100. .platform-ios.platform-cordova:not(.fullscreen) .tabs.tabs-top {
  8101. top: 64px; }
  8102. .platform-ios.platform-cordova:not(.fullscreen) .has-header,
  8103. .platform-ios.platform-cordova:not(.fullscreen) .bar-subheader {
  8104. top: 64px; }
  8105. .platform-ios.platform-cordova:not(.fullscreen) .has-subheader {
  8106. top: 108px; }
  8107. .platform-ios.platform-cordova:not(.fullscreen) .has-header.has-tabs-top {
  8108. top: 113px; }
  8109. .platform-ios.platform-cordova:not(.fullscreen) .has-header.has-subheader.has-tabs-top {
  8110. top: 157px; }
  8111. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader) {
  8112. height: 44px; }
  8113. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader).item-input-inset .item-input-wrapper {
  8114. margin-top: -1px; }
  8115. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader) > * {
  8116. margin-top: 0; }
  8117. .platform-ios.platform-cordova .popover .has-header,
  8118. .platform-ios.platform-cordova .popover .bar-subheader {
  8119. top: 44px; }
  8120. .platform-ios.platform-cordova .popover .has-subheader {
  8121. top: 88px; }
  8122. .platform-ios.platform-cordova.status-bar-hide {
  8123. margin-bottom: 20px; }
  8124. @media (orientation: landscape) {
  8125. .platform-ios.platform-browser.platform-ipad {
  8126. position: fixed; } }
  8127. .platform-c:not(.enable-transitions) * {
  8128. -webkit-transition: none !important;
  8129. transition: none !important; }
  8130. .slide-in-up {
  8131. -webkit-transform: translate3d(0, 100%, 0);
  8132. transform: translate3d(0, 100%, 0); }
  8133. .slide-in-up.ng-enter,
  8134. .slide-in-up > .ng-enter {
  8135. -webkit-transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms;
  8136. transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms; }
  8137. .slide-in-up.ng-enter-active,
  8138. .slide-in-up > .ng-enter-active {
  8139. -webkit-transform: translate3d(0, 0, 0);
  8140. transform: translate3d(0, 0, 0); }
  8141. .slide-in-up.ng-leave,
  8142. .slide-in-up > .ng-leave {
  8143. -webkit-transition: all ease-in-out 250ms;
  8144. transition: all ease-in-out 250ms; }
  8145. @-webkit-keyframes scaleOut {
  8146. from {
  8147. -webkit-transform: scale(1);
  8148. opacity: 1; }
  8149. to {
  8150. -webkit-transform: scale(0.8);
  8151. opacity: 0; } }
  8152. @keyframes scaleOut {
  8153. from {
  8154. transform: scale(1);
  8155. opacity: 1; }
  8156. to {
  8157. transform: scale(0.8);
  8158. opacity: 0; } }
  8159. @-webkit-keyframes superScaleIn {
  8160. from {
  8161. -webkit-transform: scale(1.2);
  8162. opacity: 0; }
  8163. to {
  8164. -webkit-transform: scale(1);
  8165. opacity: 1; } }
  8166. @keyframes superScaleIn {
  8167. from {
  8168. transform: scale(1.2);
  8169. opacity: 0; }
  8170. to {
  8171. transform: scale(1);
  8172. opacity: 1; } }
  8173. [nav-view-transition="ios"] [nav-view="entering"],
  8174. [nav-view-transition="ios"] [nav-view="leaving"] {
  8175. -webkit-transition-duration: 500ms;
  8176. transition-duration: 500ms;
  8177. -webkit-transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8178. transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8179. -webkit-transition-property: opacity, -webkit-transform, box-shadow;
  8180. transition-property: opacity, transform, box-shadow; }
  8181. [nav-view-transition="ios"][nav-view-direction="forward"], [nav-view-transition="ios"][nav-view-direction="back"] {
  8182. background-color: #000; }
  8183. [nav-view-transition="ios"] [nav-view="active"],
  8184. [nav-view-transition="ios"][nav-view-direction="forward"] [nav-view="entering"],
  8185. [nav-view-transition="ios"][nav-view-direction="back"] [nav-view="leaving"] {
  8186. z-index: 3; }
  8187. [nav-view-transition="ios"][nav-view-direction="back"] [nav-view="entering"],
  8188. [nav-view-transition="ios"][nav-view-direction="forward"] [nav-view="leaving"] {
  8189. z-index: 2; }
  8190. [nav-bar-transition="ios"] .title,
  8191. [nav-bar-transition="ios"] .buttons,
  8192. [nav-bar-transition="ios"] .back-text {
  8193. -webkit-transition-duration: 500ms;
  8194. transition-duration: 500ms;
  8195. -webkit-transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8196. transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8197. -webkit-transition-property: opacity, -webkit-transform;
  8198. transition-property: opacity, transform; }
  8199. [nav-bar-transition="ios"] [nav-bar="active"],
  8200. [nav-bar-transition="ios"] [nav-bar="entering"] {
  8201. z-index: 10; }
  8202. [nav-bar-transition="ios"] [nav-bar="active"] .bar,
  8203. [nav-bar-transition="ios"] [nav-bar="entering"] .bar {
  8204. background: transparent; }
  8205. [nav-bar-transition="ios"] [nav-bar="cached"] {
  8206. display: block; }
  8207. [nav-bar-transition="ios"] [nav-bar="cached"] .header-item {
  8208. display: none; }
  8209. [nav-view-transition="android"] [nav-view="entering"],
  8210. [nav-view-transition="android"] [nav-view="leaving"] {
  8211. -webkit-transition-duration: 200ms;
  8212. transition-duration: 200ms;
  8213. -webkit-transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8214. transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8215. -webkit-transition-property: -webkit-transform;
  8216. transition-property: transform; }
  8217. [nav-view-transition="android"] [nav-view="active"],
  8218. [nav-view-transition="android"][nav-view-direction="forward"] [nav-view="entering"],
  8219. [nav-view-transition="android"][nav-view-direction="back"] [nav-view="leaving"] {
  8220. z-index: 3; }
  8221. [nav-view-transition="android"][nav-view-direction="back"] [nav-view="entering"],
  8222. [nav-view-transition="android"][nav-view-direction="forward"] [nav-view="leaving"] {
  8223. z-index: 2; }
  8224. [nav-bar-transition="android"] .title,
  8225. [nav-bar-transition="android"] .buttons {
  8226. -webkit-transition-duration: 200ms;
  8227. transition-duration: 200ms;
  8228. -webkit-transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8229. transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8230. -webkit-transition-property: opacity;
  8231. transition-property: opacity; }
  8232. [nav-bar-transition="android"] [nav-bar="active"],
  8233. [nav-bar-transition="android"] [nav-bar="entering"] {
  8234. z-index: 10; }
  8235. [nav-bar-transition="android"] [nav-bar="active"] .bar,
  8236. [nav-bar-transition="android"] [nav-bar="entering"] .bar {
  8237. background: transparent; }
  8238. [nav-bar-transition="android"] [nav-bar="cached"] {
  8239. display: block; }
  8240. [nav-bar-transition="android"] [nav-bar="cached"] .header-item {
  8241. display: none; }
  8242. [nav-swipe="fast"] [nav-view],
  8243. [nav-swipe="fast"] .title,
  8244. [nav-swipe="fast"] .buttons,
  8245. [nav-swipe="fast"] .back-text {
  8246. -webkit-transition-duration: 50ms;
  8247. transition-duration: 50ms;
  8248. -webkit-transition-timing-function: linear;
  8249. transition-timing-function: linear; }
  8250. [nav-swipe="slow"] [nav-view],
  8251. [nav-swipe="slow"] .title,
  8252. [nav-swipe="slow"] .buttons,
  8253. [nav-swipe="slow"] .back-text {
  8254. -webkit-transition-duration: 160ms;
  8255. transition-duration: 160ms;
  8256. -webkit-transition-timing-function: linear;
  8257. transition-timing-function: linear; }
  8258. [nav-view="cached"],
  8259. [nav-bar="cached"] {
  8260. display: none; }
  8261. [nav-view="stage"] {
  8262. opacity: 0;
  8263. -webkit-transition-duration: 0;
  8264. transition-duration: 0; }
  8265. [nav-bar="stage"] .title,
  8266. [nav-bar="stage"] .buttons,
  8267. [nav-bar="stage"] .back-text {
  8268. position: absolute;
  8269. opacity: 0;
  8270. -webkit-transition-duration: 0s;
  8271. transition-duration: 0s; }