ionic.app.css 244 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742
  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. $positive: #387ef5 !default;
  8. $calm: #11c1f3 !default;
  9. $balanced: #33cd5f !default;
  10. $energized: #ffc900 !default;
  11. $assertive: #ef473a !default;
  12. $royal: #886aea !default;
  13. $dark: #444 !default;
  14. */
  15. /*!
  16. Ionicons, v2.0.1
  17. Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  18. https://twitter.com/benjsperry https://twitter.com/ionicframework
  19. MIT License: https://github.com/driftyco/ionicons
  20. Android-style icons originally built by Google’s
  21. Material Design Icons: https://github.com/google/material-design-icons
  22. used under CC BY http://creativecommons.org/licenses/by/4.0/
  23. Modified icons to fit ionicon’s grid from original.
  24. */
  25. @font-face {
  26. font-family: "Ionicons";
  27. src: url("../lib/ionic/fonts/ionicons.eot?v=2.0.1");
  28. 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");
  29. font-weight: normal;
  30. font-style: normal; }
  31. .ion, .ionicons,
  32. .ion-alert:before,
  33. .ion-alert-circled:before,
  34. .ion-android-add:before,
  35. .ion-android-add-circle:before,
  36. .ion-android-alarm-clock:before,
  37. .ion-android-alert:before,
  38. .ion-android-apps:before,
  39. .ion-android-archive:before,
  40. .ion-android-arrow-back:before,
  41. .ion-android-arrow-down:before,
  42. .ion-android-arrow-dropdown:before,
  43. .ion-android-arrow-dropdown-circle:before,
  44. .ion-android-arrow-dropleft:before,
  45. .ion-android-arrow-dropleft-circle:before,
  46. .ion-android-arrow-dropright:before,
  47. .ion-android-arrow-dropright-circle:before,
  48. .ion-android-arrow-dropup:before,
  49. .ion-android-arrow-dropup-circle:before,
  50. .ion-android-arrow-forward:before,
  51. .ion-android-arrow-up:before,
  52. .ion-android-attach:before,
  53. .ion-android-bar:before,
  54. .ion-android-bicycle:before,
  55. .ion-android-boat:before,
  56. .ion-android-bookmark:before,
  57. .ion-android-bulb:before,
  58. .ion-android-bus:before,
  59. .ion-android-calendar:before,
  60. .ion-android-call:before,
  61. .ion-android-camera:before,
  62. .ion-android-cancel:before,
  63. .ion-android-car:before,
  64. .ion-android-cart:before,
  65. .ion-android-chat:before,
  66. .ion-android-checkbox:before,
  67. .ion-android-checkbox-blank:before,
  68. .ion-android-checkbox-outline:before,
  69. .ion-android-checkbox-outline-blank:before,
  70. .ion-android-checkmark-circle:before,
  71. .ion-android-clipboard:before,
  72. .ion-android-close:before,
  73. .ion-android-cloud:before,
  74. .ion-android-cloud-circle:before,
  75. .ion-android-cloud-done:before,
  76. .ion-android-cloud-outline:before,
  77. .ion-android-color-palette:before,
  78. .ion-android-compass:before,
  79. .ion-android-contact:before,
  80. .ion-android-contacts:before,
  81. .ion-android-contract:before,
  82. .ion-android-create:before,
  83. .ion-android-delete:before,
  84. .ion-android-desktop:before,
  85. .ion-android-document:before,
  86. .ion-android-done:before,
  87. .ion-android-done-all:before,
  88. .ion-android-download:before,
  89. .ion-android-drafts:before,
  90. .ion-android-exit:before,
  91. .ion-android-expand:before,
  92. .ion-android-favorite:before,
  93. .ion-android-favorite-outline:before,
  94. .ion-android-film:before,
  95. .ion-android-folder:before,
  96. .ion-android-folder-open:before,
  97. .ion-android-funnel:before,
  98. .ion-android-globe:before,
  99. .ion-android-hand:before,
  100. .ion-android-hangout:before,
  101. .ion-android-happy:before,
  102. .ion-android-home:before,
  103. .ion-android-image:before,
  104. .ion-android-laptop:before,
  105. .ion-android-list:before,
  106. .ion-android-locate:before,
  107. .ion-android-lock:before,
  108. .ion-android-mail:before,
  109. .ion-android-map:before,
  110. .ion-android-menu:before,
  111. .ion-android-microphone:before,
  112. .ion-android-microphone-off:before,
  113. .ion-android-more-horizontal:before,
  114. .ion-android-more-vertical:before,
  115. .ion-android-navigate:before,
  116. .ion-android-notifications:before,
  117. .ion-android-notifications-none:before,
  118. .ion-android-notifications-off:before,
  119. .ion-android-open:before,
  120. .ion-android-options:before,
  121. .ion-android-people:before,
  122. .ion-android-person:before,
  123. .ion-android-person-add:before,
  124. .ion-android-phone-landscape:before,
  125. .ion-android-phone-portrait:before,
  126. .ion-android-pin:before,
  127. .ion-android-plane:before,
  128. .ion-android-playstore:before,
  129. .ion-android-print:before,
  130. .ion-android-radio-button-off:before,
  131. .ion-android-radio-button-on:before,
  132. .ion-android-refresh:before,
  133. .ion-android-remove:before,
  134. .ion-android-remove-circle:before,
  135. .ion-android-restaurant:before,
  136. .ion-android-sad:before,
  137. .ion-android-search:before,
  138. .ion-android-send:before,
  139. .ion-android-settings:before,
  140. .ion-android-share:before,
  141. .ion-android-share-alt:before,
  142. .ion-android-star:before,
  143. .ion-android-star-half:before,
  144. .ion-android-star-outline:before,
  145. .ion-android-stopwatch:before,
  146. .ion-android-subway:before,
  147. .ion-android-sunny:before,
  148. .ion-android-sync:before,
  149. .ion-android-textsms:before,
  150. .ion-android-time:before,
  151. .ion-android-train:before,
  152. .ion-android-unlock:before,
  153. .ion-android-upload:before,
  154. .ion-android-volume-down:before,
  155. .ion-android-volume-mute:before,
  156. .ion-android-volume-off:before,
  157. .ion-android-volume-up:before,
  158. .ion-android-walk:before,
  159. .ion-android-warning:before,
  160. .ion-android-watch:before,
  161. .ion-android-wifi:before,
  162. .ion-aperture:before,
  163. .ion-archive:before,
  164. .ion-arrow-down-a:before,
  165. .ion-arrow-down-b:before,
  166. .ion-arrow-down-c:before,
  167. .ion-arrow-expand:before,
  168. .ion-arrow-graph-down-left:before,
  169. .ion-arrow-graph-down-right:before,
  170. .ion-arrow-graph-up-left:before,
  171. .ion-arrow-graph-up-right:before,
  172. .ion-arrow-left-a:before,
  173. .ion-arrow-left-b:before,
  174. .ion-arrow-left-c:before,
  175. .ion-arrow-move:before,
  176. .ion-arrow-resize:before,
  177. .ion-arrow-return-left:before,
  178. .ion-arrow-return-right:before,
  179. .ion-arrow-right-a:before,
  180. .ion-arrow-right-b:before,
  181. .ion-arrow-right-c:before,
  182. .ion-arrow-shrink:before,
  183. .ion-arrow-swap:before,
  184. .ion-arrow-up-a:before,
  185. .ion-arrow-up-b:before,
  186. .ion-arrow-up-c:before,
  187. .ion-asterisk:before,
  188. .ion-at:before,
  189. .ion-backspace:before,
  190. .ion-backspace-outline:before,
  191. .ion-bag:before,
  192. .ion-battery-charging:before,
  193. .ion-battery-empty:before,
  194. .ion-battery-full:before,
  195. .ion-battery-half:before,
  196. .ion-battery-low:before,
  197. .ion-beaker:before,
  198. .ion-beer:before,
  199. .ion-bluetooth:before,
  200. .ion-bonfire:before,
  201. .ion-bookmark:before,
  202. .ion-bowtie:before,
  203. .ion-briefcase:before,
  204. .ion-bug:before,
  205. .ion-calculator:before,
  206. .ion-calendar:before,
  207. .ion-camera:before,
  208. .ion-card:before,
  209. .ion-cash:before,
  210. .ion-chatbox:before,
  211. .ion-chatbox-working:before,
  212. .ion-chatboxes:before,
  213. .ion-chatbubble:before,
  214. .ion-chatbubble-working:before,
  215. .ion-chatbubbles:before,
  216. .ion-checkmark:before,
  217. .ion-checkmark-circled:before,
  218. .ion-checkmark-round:before,
  219. .ion-chevron-down:before,
  220. .ion-chevron-left:before,
  221. .ion-chevron-right:before,
  222. .ion-chevron-up:before,
  223. .ion-clipboard:before,
  224. .ion-clock:before,
  225. .ion-close:before,
  226. .ion-close-circled:before,
  227. .ion-close-round:before,
  228. .ion-closed-captioning:before,
  229. .ion-cloud:before,
  230. .ion-code:before,
  231. .ion-code-download:before,
  232. .ion-code-working:before,
  233. .ion-coffee:before,
  234. .ion-compass:before,
  235. .ion-compose:before,
  236. .ion-connection-bars:before,
  237. .ion-contrast:before,
  238. .ion-crop:before,
  239. .ion-cube:before,
  240. .ion-disc:before,
  241. .ion-document:before,
  242. .ion-document-text:before,
  243. .ion-drag:before,
  244. .ion-earth:before,
  245. .ion-easel:before,
  246. .ion-edit:before,
  247. .ion-egg:before,
  248. .ion-eject:before,
  249. .ion-email:before,
  250. .ion-email-unread:before,
  251. .ion-erlenmeyer-flask:before,
  252. .ion-erlenmeyer-flask-bubbles:before,
  253. .ion-eye:before,
  254. .ion-eye-disabled:before,
  255. .ion-female:before,
  256. .ion-filing:before,
  257. .ion-film-marker:before,
  258. .ion-fireball:before,
  259. .ion-flag:before,
  260. .ion-flame:before,
  261. .ion-flash:before,
  262. .ion-flash-off:before,
  263. .ion-folder:before,
  264. .ion-fork:before,
  265. .ion-fork-repo:before,
  266. .ion-forward:before,
  267. .ion-funnel:before,
  268. .ion-gear-a:before,
  269. .ion-gear-b:before,
  270. .ion-grid:before,
  271. .ion-hammer:before,
  272. .ion-happy:before,
  273. .ion-happy-outline:before,
  274. .ion-headphone:before,
  275. .ion-heart:before,
  276. .ion-heart-broken:before,
  277. .ion-help:before,
  278. .ion-help-buoy:before,
  279. .ion-help-circled:before,
  280. .ion-home:before,
  281. .ion-icecream:before,
  282. .ion-image:before,
  283. .ion-images:before,
  284. .ion-information:before,
  285. .ion-information-circled:before,
  286. .ion-ionic:before,
  287. .ion-ios-alarm:before,
  288. .ion-ios-alarm-outline:before,
  289. .ion-ios-albums:before,
  290. .ion-ios-albums-outline:before,
  291. .ion-ios-americanfootball:before,
  292. .ion-ios-americanfootball-outline:before,
  293. .ion-ios-analytics:before,
  294. .ion-ios-analytics-outline:before,
  295. .ion-ios-arrow-back:before,
  296. .ion-ios-arrow-down:before,
  297. .ion-ios-arrow-forward:before,
  298. .ion-ios-arrow-left:before,
  299. .ion-ios-arrow-right:before,
  300. .ion-ios-arrow-thin-down:before,
  301. .ion-ios-arrow-thin-left:before,
  302. .ion-ios-arrow-thin-right:before,
  303. .ion-ios-arrow-thin-up:before,
  304. .ion-ios-arrow-up:before,
  305. .ion-ios-at:before,
  306. .ion-ios-at-outline:before,
  307. .ion-ios-barcode:before,
  308. .ion-ios-barcode-outline:before,
  309. .ion-ios-baseball:before,
  310. .ion-ios-baseball-outline:before,
  311. .ion-ios-basketball:before,
  312. .ion-ios-basketball-outline:before,
  313. .ion-ios-bell:before,
  314. .ion-ios-bell-outline:before,
  315. .ion-ios-body:before,
  316. .ion-ios-body-outline:before,
  317. .ion-ios-bolt:before,
  318. .ion-ios-bolt-outline:before,
  319. .ion-ios-book:before,
  320. .ion-ios-book-outline:before,
  321. .ion-ios-bookmarks:before,
  322. .ion-ios-bookmarks-outline:before,
  323. .ion-ios-box:before,
  324. .ion-ios-box-outline:before,
  325. .ion-ios-briefcase:before,
  326. .ion-ios-briefcase-outline:before,
  327. .ion-ios-browsers:before,
  328. .ion-ios-browsers-outline:before,
  329. .ion-ios-calculator:before,
  330. .ion-ios-calculator-outline:before,
  331. .ion-ios-calendar:before,
  332. .ion-ios-calendar-outline:before,
  333. .ion-ios-camera:before,
  334. .ion-ios-camera-outline:before,
  335. .ion-ios-cart:before,
  336. .ion-ios-cart-outline:before,
  337. .ion-ios-chatboxes:before,
  338. .ion-ios-chatboxes-outline:before,
  339. .ion-ios-chatbubble:before,
  340. .ion-ios-chatbubble-outline:before,
  341. .ion-ios-checkmark:before,
  342. .ion-ios-checkmark-empty:before,
  343. .ion-ios-checkmark-outline:before,
  344. .ion-ios-circle-filled:before,
  345. .ion-ios-circle-outline:before,
  346. .ion-ios-clock:before,
  347. .ion-ios-clock-outline:before,
  348. .ion-ios-close:before,
  349. .ion-ios-close-empty:before,
  350. .ion-ios-close-outline:before,
  351. .ion-ios-cloud:before,
  352. .ion-ios-cloud-download:before,
  353. .ion-ios-cloud-download-outline:before,
  354. .ion-ios-cloud-outline:before,
  355. .ion-ios-cloud-upload:before,
  356. .ion-ios-cloud-upload-outline:before,
  357. .ion-ios-cloudy:before,
  358. .ion-ios-cloudy-night:before,
  359. .ion-ios-cloudy-night-outline:before,
  360. .ion-ios-cloudy-outline:before,
  361. .ion-ios-cog:before,
  362. .ion-ios-cog-outline:before,
  363. .ion-ios-color-filter:before,
  364. .ion-ios-color-filter-outline:before,
  365. .ion-ios-color-wand:before,
  366. .ion-ios-color-wand-outline:before,
  367. .ion-ios-compose:before,
  368. .ion-ios-compose-outline:before,
  369. .ion-ios-contact:before,
  370. .ion-ios-contact-outline:before,
  371. .ion-ios-copy:before,
  372. .ion-ios-copy-outline:before,
  373. .ion-ios-crop:before,
  374. .ion-ios-crop-strong:before,
  375. .ion-ios-download:before,
  376. .ion-ios-download-outline:before,
  377. .ion-ios-drag:before,
  378. .ion-ios-email:before,
  379. .ion-ios-email-outline:before,
  380. .ion-ios-eye:before,
  381. .ion-ios-eye-outline:before,
  382. .ion-ios-fastforward:before,
  383. .ion-ios-fastforward-outline:before,
  384. .ion-ios-filing:before,
  385. .ion-ios-filing-outline:before,
  386. .ion-ios-film:before,
  387. .ion-ios-film-outline:before,
  388. .ion-ios-flag:before,
  389. .ion-ios-flag-outline:before,
  390. .ion-ios-flame:before,
  391. .ion-ios-flame-outline:before,
  392. .ion-ios-flask:before,
  393. .ion-ios-flask-outline:before,
  394. .ion-ios-flower:before,
  395. .ion-ios-flower-outline:before,
  396. .ion-ios-folder:before,
  397. .ion-ios-folder-outline:before,
  398. .ion-ios-football:before,
  399. .ion-ios-football-outline:before,
  400. .ion-ios-game-controller-a:before,
  401. .ion-ios-game-controller-a-outline:before,
  402. .ion-ios-game-controller-b:before,
  403. .ion-ios-game-controller-b-outline:before,
  404. .ion-ios-gear:before,
  405. .ion-ios-gear-outline:before,
  406. .ion-ios-glasses:before,
  407. .ion-ios-glasses-outline:before,
  408. .ion-ios-grid-view:before,
  409. .ion-ios-grid-view-outline:before,
  410. .ion-ios-heart:before,
  411. .ion-ios-heart-outline:before,
  412. .ion-ios-help:before,
  413. .ion-ios-help-empty:before,
  414. .ion-ios-help-outline:before,
  415. .ion-ios-home:before,
  416. .ion-ios-home-outline:before,
  417. .ion-ios-infinite:before,
  418. .ion-ios-infinite-outline:before,
  419. .ion-ios-information:before,
  420. .ion-ios-information-empty:before,
  421. .ion-ios-information-outline:before,
  422. .ion-ios-ionic-outline:before,
  423. .ion-ios-keypad:before,
  424. .ion-ios-keypad-outline:before,
  425. .ion-ios-lightbulb:before,
  426. .ion-ios-lightbulb-outline:before,
  427. .ion-ios-list:before,
  428. .ion-ios-list-outline:before,
  429. .ion-ios-location:before,
  430. .ion-ios-location-outline:before,
  431. .ion-ios-locked:before,
  432. .ion-ios-locked-outline:before,
  433. .ion-ios-loop:before,
  434. .ion-ios-loop-strong:before,
  435. .ion-ios-medical:before,
  436. .ion-ios-medical-outline:before,
  437. .ion-ios-medkit:before,
  438. .ion-ios-medkit-outline:before,
  439. .ion-ios-mic:before,
  440. .ion-ios-mic-off:before,
  441. .ion-ios-mic-outline:before,
  442. .ion-ios-minus:before,
  443. .ion-ios-minus-empty:before,
  444. .ion-ios-minus-outline:before,
  445. .ion-ios-monitor:before,
  446. .ion-ios-monitor-outline:before,
  447. .ion-ios-moon:before,
  448. .ion-ios-moon-outline:before,
  449. .ion-ios-more:before,
  450. .ion-ios-more-outline:before,
  451. .ion-ios-musical-note:before,
  452. .ion-ios-musical-notes:before,
  453. .ion-ios-navigate:before,
  454. .ion-ios-navigate-outline:before,
  455. .ion-ios-nutrition:before,
  456. .ion-ios-nutrition-outline:before,
  457. .ion-ios-paper:before,
  458. .ion-ios-paper-outline:before,
  459. .ion-ios-paperplane:before,
  460. .ion-ios-paperplane-outline:before,
  461. .ion-ios-partlysunny:before,
  462. .ion-ios-partlysunny-outline:before,
  463. .ion-ios-pause:before,
  464. .ion-ios-pause-outline:before,
  465. .ion-ios-paw:before,
  466. .ion-ios-paw-outline:before,
  467. .ion-ios-people:before,
  468. .ion-ios-people-outline:before,
  469. .ion-ios-person:before,
  470. .ion-ios-person-outline:before,
  471. .ion-ios-personadd:before,
  472. .ion-ios-personadd-outline:before,
  473. .ion-ios-photos:before,
  474. .ion-ios-photos-outline:before,
  475. .ion-ios-pie:before,
  476. .ion-ios-pie-outline:before,
  477. .ion-ios-pint:before,
  478. .ion-ios-pint-outline:before,
  479. .ion-ios-play:before,
  480. .ion-ios-play-outline:before,
  481. .ion-ios-plus:before,
  482. .ion-ios-plus-empty:before,
  483. .ion-ios-plus-outline:before,
  484. .ion-ios-pricetag:before,
  485. .ion-ios-pricetag-outline:before,
  486. .ion-ios-pricetags:before,
  487. .ion-ios-pricetags-outline:before,
  488. .ion-ios-printer:before,
  489. .ion-ios-printer-outline:before,
  490. .ion-ios-pulse:before,
  491. .ion-ios-pulse-strong:before,
  492. .ion-ios-rainy:before,
  493. .ion-ios-rainy-outline:before,
  494. .ion-ios-recording:before,
  495. .ion-ios-recording-outline:before,
  496. .ion-ios-redo:before,
  497. .ion-ios-redo-outline:before,
  498. .ion-ios-refresh:before,
  499. .ion-ios-refresh-empty:before,
  500. .ion-ios-refresh-outline:before,
  501. .ion-ios-reload:before,
  502. .ion-ios-reverse-camera:before,
  503. .ion-ios-reverse-camera-outline:before,
  504. .ion-ios-rewind:before,
  505. .ion-ios-rewind-outline:before,
  506. .ion-ios-rose:before,
  507. .ion-ios-rose-outline:before,
  508. .ion-ios-search:before,
  509. .ion-ios-search-strong:before,
  510. .ion-ios-settings:before,
  511. .ion-ios-settings-strong:before,
  512. .ion-ios-shuffle:before,
  513. .ion-ios-shuffle-strong:before,
  514. .ion-ios-skipbackward:before,
  515. .ion-ios-skipbackward-outline:before,
  516. .ion-ios-skipforward:before,
  517. .ion-ios-skipforward-outline:before,
  518. .ion-ios-snowy:before,
  519. .ion-ios-speedometer:before,
  520. .ion-ios-speedometer-outline:before,
  521. .ion-ios-star:before,
  522. .ion-ios-star-half:before,
  523. .ion-ios-star-outline:before,
  524. .ion-ios-stopwatch:before,
  525. .ion-ios-stopwatch-outline:before,
  526. .ion-ios-sunny:before,
  527. .ion-ios-sunny-outline:before,
  528. .ion-ios-telephone:before,
  529. .ion-ios-telephone-outline:before,
  530. .ion-ios-tennisball:before,
  531. .ion-ios-tennisball-outline:before,
  532. .ion-ios-thunderstorm:before,
  533. .ion-ios-thunderstorm-outline:before,
  534. .ion-ios-time:before,
  535. .ion-ios-time-outline:before,
  536. .ion-ios-timer:before,
  537. .ion-ios-timer-outline:before,
  538. .ion-ios-toggle:before,
  539. .ion-ios-toggle-outline:before,
  540. .ion-ios-trash:before,
  541. .ion-ios-trash-outline:before,
  542. .ion-ios-undo:before,
  543. .ion-ios-undo-outline:before,
  544. .ion-ios-unlocked:before,
  545. .ion-ios-unlocked-outline:before,
  546. .ion-ios-upload:before,
  547. .ion-ios-upload-outline:before,
  548. .ion-ios-videocam:before,
  549. .ion-ios-videocam-outline:before,
  550. .ion-ios-volume-high:before,
  551. .ion-ios-volume-low:before,
  552. .ion-ios-wineglass:before,
  553. .ion-ios-wineglass-outline:before,
  554. .ion-ios-world:before,
  555. .ion-ios-world-outline:before,
  556. .ion-ipad:before,
  557. .ion-iphone:before,
  558. .ion-ipod:before,
  559. .ion-jet:before,
  560. .ion-key:before,
  561. .ion-knife:before,
  562. .ion-laptop:before,
  563. .ion-leaf:before,
  564. .ion-levels:before,
  565. .ion-lightbulb:before,
  566. .ion-link:before,
  567. .ion-load-a:before,
  568. .ion-load-b:before,
  569. .ion-load-c:before,
  570. .ion-load-d:before,
  571. .ion-location:before,
  572. .ion-lock-combination:before,
  573. .ion-locked:before,
  574. .ion-log-in:before,
  575. .ion-log-out:before,
  576. .ion-loop:before,
  577. .ion-magnet:before,
  578. .ion-male:before,
  579. .ion-man:before,
  580. .ion-map:before,
  581. .ion-medkit:before,
  582. .ion-merge:before,
  583. .ion-mic-a:before,
  584. .ion-mic-b:before,
  585. .ion-mic-c:before,
  586. .ion-minus:before,
  587. .ion-minus-circled:before,
  588. .ion-minus-round:before,
  589. .ion-model-s:before,
  590. .ion-monitor:before,
  591. .ion-more:before,
  592. .ion-mouse:before,
  593. .ion-music-note:before,
  594. .ion-navicon:before,
  595. .ion-navicon-round:before,
  596. .ion-navigate:before,
  597. .ion-network:before,
  598. .ion-no-smoking:before,
  599. .ion-nuclear:before,
  600. .ion-outlet:before,
  601. .ion-paintbrush:before,
  602. .ion-paintbucket:before,
  603. .ion-paper-airplane:before,
  604. .ion-paperclip:before,
  605. .ion-pause:before,
  606. .ion-person:before,
  607. .ion-person-add:before,
  608. .ion-person-stalker:before,
  609. .ion-pie-graph:before,
  610. .ion-pin:before,
  611. .ion-pinpoint:before,
  612. .ion-pizza:before,
  613. .ion-plane:before,
  614. .ion-planet:before,
  615. .ion-play:before,
  616. .ion-playstation:before,
  617. .ion-plus:before,
  618. .ion-plus-circled:before,
  619. .ion-plus-round:before,
  620. .ion-podium:before,
  621. .ion-pound:before,
  622. .ion-power:before,
  623. .ion-pricetag:before,
  624. .ion-pricetags:before,
  625. .ion-printer:before,
  626. .ion-pull-request:before,
  627. .ion-qr-scanner:before,
  628. .ion-quote:before,
  629. .ion-radio-waves:before,
  630. .ion-record:before,
  631. .ion-refresh:before,
  632. .ion-reply:before,
  633. .ion-reply-all:before,
  634. .ion-ribbon-a:before,
  635. .ion-ribbon-b:before,
  636. .ion-sad:before,
  637. .ion-sad-outline:before,
  638. .ion-scissors:before,
  639. .ion-search:before,
  640. .ion-settings:before,
  641. .ion-share:before,
  642. .ion-shuffle:before,
  643. .ion-skip-backward:before,
  644. .ion-skip-forward:before,
  645. .ion-social-android:before,
  646. .ion-social-android-outline:before,
  647. .ion-social-angular:before,
  648. .ion-social-angular-outline:before,
  649. .ion-social-apple:before,
  650. .ion-social-apple-outline:before,
  651. .ion-social-bitcoin:before,
  652. .ion-social-bitcoin-outline:before,
  653. .ion-social-buffer:before,
  654. .ion-social-buffer-outline:before,
  655. .ion-social-chrome:before,
  656. .ion-social-chrome-outline:before,
  657. .ion-social-codepen:before,
  658. .ion-social-codepen-outline:before,
  659. .ion-social-css3:before,
  660. .ion-social-css3-outline:before,
  661. .ion-social-designernews:before,
  662. .ion-social-designernews-outline:before,
  663. .ion-social-dribbble:before,
  664. .ion-social-dribbble-outline:before,
  665. .ion-social-dropbox:before,
  666. .ion-social-dropbox-outline:before,
  667. .ion-social-euro:before,
  668. .ion-social-euro-outline:before,
  669. .ion-social-facebook:before,
  670. .ion-social-facebook-outline:before,
  671. .ion-social-foursquare:before,
  672. .ion-social-foursquare-outline:before,
  673. .ion-social-freebsd-devil:before,
  674. .ion-social-github:before,
  675. .ion-social-github-outline:before,
  676. .ion-social-google:before,
  677. .ion-social-google-outline:before,
  678. .ion-social-googleplus:before,
  679. .ion-social-googleplus-outline:before,
  680. .ion-social-hackernews:before,
  681. .ion-social-hackernews-outline:before,
  682. .ion-social-html5:before,
  683. .ion-social-html5-outline:before,
  684. .ion-social-instagram:before,
  685. .ion-social-instagram-outline:before,
  686. .ion-social-javascript:before,
  687. .ion-social-javascript-outline:before,
  688. .ion-social-linkedin:before,
  689. .ion-social-linkedin-outline:before,
  690. .ion-social-markdown:before,
  691. .ion-social-nodejs:before,
  692. .ion-social-octocat:before,
  693. .ion-social-pinterest:before,
  694. .ion-social-pinterest-outline:before,
  695. .ion-social-python:before,
  696. .ion-social-reddit:before,
  697. .ion-social-reddit-outline:before,
  698. .ion-social-rss:before,
  699. .ion-social-rss-outline:before,
  700. .ion-social-sass:before,
  701. .ion-social-skype:before,
  702. .ion-social-skype-outline:before,
  703. .ion-social-snapchat:before,
  704. .ion-social-snapchat-outline:before,
  705. .ion-social-tumblr:before,
  706. .ion-social-tumblr-outline:before,
  707. .ion-social-tux:before,
  708. .ion-social-twitch:before,
  709. .ion-social-twitch-outline:before,
  710. .ion-social-twitter:before,
  711. .ion-social-twitter-outline:before,
  712. .ion-social-usd:before,
  713. .ion-social-usd-outline:before,
  714. .ion-social-vimeo:before,
  715. .ion-social-vimeo-outline:before,
  716. .ion-social-whatsapp:before,
  717. .ion-social-whatsapp-outline:before,
  718. .ion-social-windows:before,
  719. .ion-social-windows-outline:before,
  720. .ion-social-wordpress:before,
  721. .ion-social-wordpress-outline:before,
  722. .ion-social-yahoo:before,
  723. .ion-social-yahoo-outline:before,
  724. .ion-social-yen:before,
  725. .ion-social-yen-outline:before,
  726. .ion-social-youtube:before,
  727. .ion-social-youtube-outline:before,
  728. .ion-soup-can:before,
  729. .ion-soup-can-outline:before,
  730. .ion-speakerphone:before,
  731. .ion-speedometer:before,
  732. .ion-spoon:before,
  733. .ion-star:before,
  734. .ion-stats-bars:before,
  735. .ion-steam:before,
  736. .ion-stop:before,
  737. .ion-thermometer:before,
  738. .ion-thumbsdown:before,
  739. .ion-thumbsup:before,
  740. .ion-toggle:before,
  741. .ion-toggle-filled:before,
  742. .ion-transgender:before,
  743. .ion-trash-a:before,
  744. .ion-trash-b:before,
  745. .ion-trophy:before,
  746. .ion-tshirt:before,
  747. .ion-tshirt-outline:before,
  748. .ion-umbrella:before,
  749. .ion-university:before,
  750. .ion-unlocked:before,
  751. .ion-upload:before,
  752. .ion-usb:before,
  753. .ion-videocamera:before,
  754. .ion-volume-high:before,
  755. .ion-volume-low:before,
  756. .ion-volume-medium:before,
  757. .ion-volume-mute:before,
  758. .ion-wand:before,
  759. .ion-waterdrop:before,
  760. .ion-wifi:before,
  761. .ion-wineglass:before,
  762. .ion-woman:before,
  763. .ion-wrench:before,
  764. .ion-xbox:before {
  765. display: inline-block;
  766. font-family: "Ionicons";
  767. speak: none;
  768. font-style: normal;
  769. font-weight: normal;
  770. font-variant: normal;
  771. text-transform: none;
  772. text-rendering: auto;
  773. line-height: 1;
  774. -webkit-font-smoothing: antialiased;
  775. -moz-osx-font-smoothing: grayscale; }
  776. .ion-alert:before {
  777. content: ""; }
  778. .ion-alert-circled:before {
  779. content: ""; }
  780. .ion-android-add:before {
  781. content: ""; }
  782. .ion-android-add-circle:before {
  783. content: ""; }
  784. .ion-android-alarm-clock:before {
  785. content: ""; }
  786. .ion-android-alert:before {
  787. content: ""; }
  788. .ion-android-apps:before {
  789. content: ""; }
  790. .ion-android-archive:before {
  791. content: ""; }
  792. .ion-android-arrow-back:before {
  793. content: ""; }
  794. .ion-android-arrow-down:before {
  795. content: ""; }
  796. .ion-android-arrow-dropdown:before {
  797. content: ""; }
  798. .ion-android-arrow-dropdown-circle:before {
  799. content: ""; }
  800. .ion-android-arrow-dropleft:before {
  801. content: ""; }
  802. .ion-android-arrow-dropleft-circle:before {
  803. content: ""; }
  804. .ion-android-arrow-dropright:before {
  805. content: ""; }
  806. .ion-android-arrow-dropright-circle:before {
  807. content: ""; }
  808. .ion-android-arrow-dropup:before {
  809. content: ""; }
  810. .ion-android-arrow-dropup-circle:before {
  811. content: ""; }
  812. .ion-android-arrow-forward:before {
  813. content: ""; }
  814. .ion-android-arrow-up:before {
  815. content: ""; }
  816. .ion-android-attach:before {
  817. content: ""; }
  818. .ion-android-bar:before {
  819. content: ""; }
  820. .ion-android-bicycle:before {
  821. content: ""; }
  822. .ion-android-boat:before {
  823. content: ""; }
  824. .ion-android-bookmark:before {
  825. content: ""; }
  826. .ion-android-bulb:before {
  827. content: ""; }
  828. .ion-android-bus:before {
  829. content: ""; }
  830. .ion-android-calendar:before {
  831. content: ""; }
  832. .ion-android-call:before {
  833. content: ""; }
  834. .ion-android-camera:before {
  835. content: ""; }
  836. .ion-android-cancel:before {
  837. content: ""; }
  838. .ion-android-car:before {
  839. content: ""; }
  840. .ion-android-cart:before {
  841. content: ""; }
  842. .ion-android-chat:before {
  843. content: ""; }
  844. .ion-android-checkbox:before {
  845. content: ""; }
  846. .ion-android-checkbox-blank:before {
  847. content: ""; }
  848. .ion-android-checkbox-outline:before {
  849. content: ""; }
  850. .ion-android-checkbox-outline-blank:before {
  851. content: ""; }
  852. .ion-android-checkmark-circle:before {
  853. content: ""; }
  854. .ion-android-clipboard:before {
  855. content: ""; }
  856. .ion-android-close:before {
  857. content: ""; }
  858. .ion-android-cloud:before {
  859. content: ""; }
  860. .ion-android-cloud-circle:before {
  861. content: ""; }
  862. .ion-android-cloud-done:before {
  863. content: ""; }
  864. .ion-android-cloud-outline:before {
  865. content: ""; }
  866. .ion-android-color-palette:before {
  867. content: ""; }
  868. .ion-android-compass:before {
  869. content: ""; }
  870. .ion-android-contact:before {
  871. content: ""; }
  872. .ion-android-contacts:before {
  873. content: ""; }
  874. .ion-android-contract:before {
  875. content: ""; }
  876. .ion-android-create:before {
  877. content: ""; }
  878. .ion-android-delete:before {
  879. content: ""; }
  880. .ion-android-desktop:before {
  881. content: ""; }
  882. .ion-android-document:before {
  883. content: ""; }
  884. .ion-android-done:before {
  885. content: ""; }
  886. .ion-android-done-all:before {
  887. content: ""; }
  888. .ion-android-download:before {
  889. content: ""; }
  890. .ion-android-drafts:before {
  891. content: ""; }
  892. .ion-android-exit:before {
  893. content: ""; }
  894. .ion-android-expand:before {
  895. content: ""; }
  896. .ion-android-favorite:before {
  897. content: ""; }
  898. .ion-android-favorite-outline:before {
  899. content: ""; }
  900. .ion-android-film:before {
  901. content: ""; }
  902. .ion-android-folder:before {
  903. content: ""; }
  904. .ion-android-folder-open:before {
  905. content: ""; }
  906. .ion-android-funnel:before {
  907. content: ""; }
  908. .ion-android-globe:before {
  909. content: ""; }
  910. .ion-android-hand:before {
  911. content: ""; }
  912. .ion-android-hangout:before {
  913. content: ""; }
  914. .ion-android-happy:before {
  915. content: ""; }
  916. .ion-android-home:before {
  917. content: ""; }
  918. .ion-android-image:before {
  919. content: ""; }
  920. .ion-android-laptop:before {
  921. content: ""; }
  922. .ion-android-list:before {
  923. content: ""; }
  924. .ion-android-locate:before {
  925. content: ""; }
  926. .ion-android-lock:before {
  927. content: ""; }
  928. .ion-android-mail:before {
  929. content: ""; }
  930. .ion-android-map:before {
  931. content: ""; }
  932. .ion-android-menu:before {
  933. content: ""; }
  934. .ion-android-microphone:before {
  935. content: ""; }
  936. .ion-android-microphone-off:before {
  937. content: ""; }
  938. .ion-android-more-horizontal:before {
  939. content: ""; }
  940. .ion-android-more-vertical:before {
  941. content: ""; }
  942. .ion-android-navigate:before {
  943. content: ""; }
  944. .ion-android-notifications:before {
  945. content: ""; }
  946. .ion-android-notifications-none:before {
  947. content: ""; }
  948. .ion-android-notifications-off:before {
  949. content: ""; }
  950. .ion-android-open:before {
  951. content: ""; }
  952. .ion-android-options:before {
  953. content: ""; }
  954. .ion-android-people:before {
  955. content: ""; }
  956. .ion-android-person:before {
  957. content: ""; }
  958. .ion-android-person-add:before {
  959. content: ""; }
  960. .ion-android-phone-landscape:before {
  961. content: ""; }
  962. .ion-android-phone-portrait:before {
  963. content: ""; }
  964. .ion-android-pin:before {
  965. content: ""; }
  966. .ion-android-plane:before {
  967. content: ""; }
  968. .ion-android-playstore:before {
  969. content: ""; }
  970. .ion-android-print:before {
  971. content: ""; }
  972. .ion-android-radio-button-off:before {
  973. content: ""; }
  974. .ion-android-radio-button-on:before {
  975. content: ""; }
  976. .ion-android-refresh:before {
  977. content: ""; }
  978. .ion-android-remove:before {
  979. content: ""; }
  980. .ion-android-remove-circle:before {
  981. content: ""; }
  982. .ion-android-restaurant:before {
  983. content: ""; }
  984. .ion-android-sad:before {
  985. content: ""; }
  986. .ion-android-search:before {
  987. content: ""; }
  988. .ion-android-send:before {
  989. content: ""; }
  990. .ion-android-settings:before {
  991. content: ""; }
  992. .ion-android-share:before {
  993. content: ""; }
  994. .ion-android-share-alt:before {
  995. content: ""; }
  996. .ion-android-star:before {
  997. content: ""; }
  998. .ion-android-star-half:before {
  999. content: ""; }
  1000. .ion-android-star-outline:before {
  1001. content: ""; }
  1002. .ion-android-stopwatch:before {
  1003. content: ""; }
  1004. .ion-android-subway:before {
  1005. content: ""; }
  1006. .ion-android-sunny:before {
  1007. content: ""; }
  1008. .ion-android-sync:before {
  1009. content: ""; }
  1010. .ion-android-textsms:before {
  1011. content: ""; }
  1012. .ion-android-time:before {
  1013. content: ""; }
  1014. .ion-android-train:before {
  1015. content: ""; }
  1016. .ion-android-unlock:before {
  1017. content: ""; }
  1018. .ion-android-upload:before {
  1019. content: ""; }
  1020. .ion-android-volume-down:before {
  1021. content: ""; }
  1022. .ion-android-volume-mute:before {
  1023. content: ""; }
  1024. .ion-android-volume-off:before {
  1025. content: ""; }
  1026. .ion-android-volume-up:before {
  1027. content: ""; }
  1028. .ion-android-walk:before {
  1029. content: ""; }
  1030. .ion-android-warning:before {
  1031. content: ""; }
  1032. .ion-android-watch:before {
  1033. content: ""; }
  1034. .ion-android-wifi:before {
  1035. content: ""; }
  1036. .ion-aperture:before {
  1037. content: ""; }
  1038. .ion-archive:before {
  1039. content: ""; }
  1040. .ion-arrow-down-a:before {
  1041. content: ""; }
  1042. .ion-arrow-down-b:before {
  1043. content: ""; }
  1044. .ion-arrow-down-c:before {
  1045. content: ""; }
  1046. .ion-arrow-expand:before {
  1047. content: ""; }
  1048. .ion-arrow-graph-down-left:before {
  1049. content: ""; }
  1050. .ion-arrow-graph-down-right:before {
  1051. content: ""; }
  1052. .ion-arrow-graph-up-left:before {
  1053. content: ""; }
  1054. .ion-arrow-graph-up-right:before {
  1055. content: ""; }
  1056. .ion-arrow-left-a:before {
  1057. content: ""; }
  1058. .ion-arrow-left-b:before {
  1059. content: ""; }
  1060. .ion-arrow-left-c:before {
  1061. content: ""; }
  1062. .ion-arrow-move:before {
  1063. content: ""; }
  1064. .ion-arrow-resize:before {
  1065. content: ""; }
  1066. .ion-arrow-return-left:before {
  1067. content: ""; }
  1068. .ion-arrow-return-right:before {
  1069. content: ""; }
  1070. .ion-arrow-right-a:before {
  1071. content: ""; }
  1072. .ion-arrow-right-b:before {
  1073. content: ""; }
  1074. .ion-arrow-right-c:before {
  1075. content: ""; }
  1076. .ion-arrow-shrink:before {
  1077. content: ""; }
  1078. .ion-arrow-swap:before {
  1079. content: ""; }
  1080. .ion-arrow-up-a:before {
  1081. content: ""; }
  1082. .ion-arrow-up-b:before {
  1083. content: ""; }
  1084. .ion-arrow-up-c:before {
  1085. content: ""; }
  1086. .ion-asterisk:before {
  1087. content: ""; }
  1088. .ion-at:before {
  1089. content: ""; }
  1090. .ion-backspace:before {
  1091. content: ""; }
  1092. .ion-backspace-outline:before {
  1093. content: ""; }
  1094. .ion-bag:before {
  1095. content: ""; }
  1096. .ion-battery-charging:before {
  1097. content: ""; }
  1098. .ion-battery-empty:before {
  1099. content: ""; }
  1100. .ion-battery-full:before {
  1101. content: ""; }
  1102. .ion-battery-half:before {
  1103. content: ""; }
  1104. .ion-battery-low:before {
  1105. content: ""; }
  1106. .ion-beaker:before {
  1107. content: ""; }
  1108. .ion-beer:before {
  1109. content: ""; }
  1110. .ion-bluetooth:before {
  1111. content: ""; }
  1112. .ion-bonfire:before {
  1113. content: ""; }
  1114. .ion-bookmark:before {
  1115. content: ""; }
  1116. .ion-bowtie:before {
  1117. content: ""; }
  1118. .ion-briefcase:before {
  1119. content: ""; }
  1120. .ion-bug:before {
  1121. content: ""; }
  1122. .ion-calculator:before {
  1123. content: ""; }
  1124. .ion-calendar:before {
  1125. content: ""; }
  1126. .ion-camera:before {
  1127. content: ""; }
  1128. .ion-card:before {
  1129. content: ""; }
  1130. .ion-cash:before {
  1131. content: ""; }
  1132. .ion-chatbox:before {
  1133. content: ""; }
  1134. .ion-chatbox-working:before {
  1135. content: ""; }
  1136. .ion-chatboxes:before {
  1137. content: ""; }
  1138. .ion-chatbubble:before {
  1139. content: ""; }
  1140. .ion-chatbubble-working:before {
  1141. content: ""; }
  1142. .ion-chatbubbles:before {
  1143. content: ""; }
  1144. .ion-checkmark:before {
  1145. content: "";
  1146. }
  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: 15px; }
  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: #fff;
  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: #00C3DA;
  3102. background-color: #00C3DA;
  3103. background-image: linear-gradient(0deg, #00C3DA, #00C3DA 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, #00C3DA, #00C3DA 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: #00C3DA;
  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: #00C3DA; }
  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: 1px solid #ECF2F7;
  3495. border-bottom: none;
  3496. background-position: top;
  3497. background-size: 100% 1px;
  3498. background: #fff;
  3499. background-repeat: no-repeat; } }
  3500. /* Allow parent element of tabs to define color, or just the tab itself */
  3501. .tabs-light > .tabs,
  3502. .tabs.tabs-light {
  3503. border-color: #ddd;
  3504. background-color: #fff;
  3505. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3506. color: #444; }
  3507. .tabs-light > .tabs .tab-item .badge,
  3508. .tabs.tabs-light .tab-item .badge {
  3509. background-color: #444;
  3510. color: #fff; }
  3511. .tabs-stable > .tabs,
  3512. .tabs.tabs-stable {
  3513. border-color: #b2b2b2;
  3514. background-color: #f8f8f8;
  3515. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3516. color: #444; }
  3517. .tabs-stable > .tabs .tab-item .badge,
  3518. .tabs.tabs-stable .tab-item .badge {
  3519. background-color: #444;
  3520. color: #f8f8f8; }
  3521. .tabs-positive > .tabs,
  3522. .tabs.tabs-positive {
  3523. border-color: #0c60ee;
  3524. background-color: #387ef5;
  3525. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3526. color: #fff; }
  3527. .tabs-positive > .tabs .tab-item .badge,
  3528. .tabs.tabs-positive .tab-item .badge {
  3529. background-color: #fff;
  3530. color: #387ef5; }
  3531. .tabs-calm > .tabs,
  3532. .tabs.tabs-calm {
  3533. border-color: #00C3DA;
  3534. background-color: #00C3DA;
  3535. background-image: linear-gradient(0deg, #00C3DA, #00C3DA 50%, transparent 50%);
  3536. color: #fff; }
  3537. .tabs-calm > .tabs .tab-item .badge,
  3538. .tabs.tabs-calm .tab-item .badge {
  3539. background-color: #fff;
  3540. color: #00C3DA; }
  3541. .tabs-assertive > .tabs,
  3542. .tabs.tabs-assertive {
  3543. border-color: #e42112;
  3544. background-color: #ef473a;
  3545. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3546. color: #fff; }
  3547. .tabs-assertive > .tabs .tab-item .badge,
  3548. .tabs.tabs-assertive .tab-item .badge {
  3549. background-color: #fff;
  3550. color: #ef473a; }
  3551. .tabs-balanced > .tabs,
  3552. .tabs.tabs-balanced {
  3553. border-color: #28a54c;
  3554. background-color: #33cd5f;
  3555. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3556. color: #fff; }
  3557. .tabs-balanced > .tabs .tab-item .badge,
  3558. .tabs.tabs-balanced .tab-item .badge {
  3559. background-color: #fff;
  3560. color: #33cd5f; }
  3561. .tabs-energized > .tabs,
  3562. .tabs.tabs-energized {
  3563. border-color: #e6b500;
  3564. background-color: #ffc900;
  3565. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3566. color: #fff; }
  3567. .tabs-energized > .tabs .tab-item .badge,
  3568. .tabs.tabs-energized .tab-item .badge {
  3569. background-color: #fff;
  3570. color: #ffc900; }
  3571. .tabs-royal > .tabs,
  3572. .tabs.tabs-royal {
  3573. border-color: #6b46e5;
  3574. background-color: #886aea;
  3575. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3576. color: #fff; }
  3577. .tabs-royal > .tabs .tab-item .badge,
  3578. .tabs.tabs-royal .tab-item .badge {
  3579. background-color: #fff;
  3580. color: #886aea; }
  3581. .tabs-dark > .tabs,
  3582. .tabs.tabs-dark {
  3583. border-color: #111;
  3584. background-color: #444;
  3585. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3586. color: #fff; }
  3587. .tabs-dark > .tabs .tab-item .badge,
  3588. .tabs.tabs-dark .tab-item .badge {
  3589. background-color: #fff;
  3590. color: #444; }
  3591. .tabs-striped .tabs {
  3592. background-color: white;
  3593. background-image: none;
  3594. border: none;
  3595. border-bottom: 1px solid #ddd;
  3596. padding-top: 2px; }
  3597. .tabs-striped .tab-item.tab-item-active, .tabs-striped .tab-item.active, .tabs-striped .tab-item.activated {
  3598. margin-top: -2px;
  3599. border-style: solid;
  3600. border-width: 2px 0 0 0;
  3601. /*border-color: #444; */
  3602. }
  3603. .tabs-striped .tab-item.tab-item-active .badge, .tabs-striped .tab-item.active .badge, .tabs-striped .tab-item.activated .badge {
  3604. top: 2px;
  3605. opacity: 1; }
  3606. .tabs-striped.tabs-light .tabs {
  3607. background-color: #fff; }
  3608. .tabs-striped.tabs-light .tab-item {
  3609. color: rgba(68, 68, 68, 0.4);
  3610. opacity: 1; }
  3611. .tabs-striped.tabs-light .tab-item .badge {
  3612. opacity: 0.4; }
  3613. .tabs-striped.tabs-light .tab-item.tab-item-active, .tabs-striped.tabs-light .tab-item.active, .tabs-striped.tabs-light .tab-item.activated {
  3614. margin-top: -2px;
  3615. color: #444;
  3616. border-style: solid;
  3617. border-width: 2px 0 0 0;
  3618. border-color: #444; }
  3619. .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 {
  3620. top: 4%; }
  3621. .tabs-striped.tabs-stable .tabs {
  3622. background-color: #f8f8f8; }
  3623. .tabs-striped.tabs-stable .tab-item {
  3624. color: rgba(68, 68, 68, 0.4);
  3625. opacity: 1; }
  3626. .tabs-striped.tabs-stable .tab-item .badge {
  3627. opacity: 0.4; }
  3628. .tabs-striped.tabs-stable .tab-item.tab-item-active, .tabs-striped.tabs-stable .tab-item.active, .tabs-striped.tabs-stable .tab-item.activated {
  3629. margin-top: -2px;
  3630. color: #444;
  3631. border-style: solid;
  3632. border-width: 2px 0 0 0;
  3633. border-color: #444; }
  3634. .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 {
  3635. top: 4%; }
  3636. .tabs-striped.tabs-positive .tabs {
  3637. background-color: #387ef5; }
  3638. .tabs-striped.tabs-positive .tab-item {
  3639. color: rgba(255, 255, 255, 0.4);
  3640. opacity: 1; }
  3641. .tabs-striped.tabs-positive .tab-item .badge {
  3642. opacity: 0.4; }
  3643. .tabs-striped.tabs-positive .tab-item.tab-item-active, .tabs-striped.tabs-positive .tab-item.active, .tabs-striped.tabs-positive .tab-item.activated {
  3644. margin-top: -2px;
  3645. color: #fff;
  3646. border-style: solid;
  3647. border-width: 2px 0 0 0;
  3648. border-color: #fff; }
  3649. .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 {
  3650. top: 4%; }
  3651. .tabs-striped.tabs-calm .tabs {
  3652. background-color: #00C3DA; }
  3653. .tabs-striped.tabs-calm .tab-item {
  3654. color: rgba(255, 255, 255, 0.4);
  3655. opacity: 1; }
  3656. .tabs-striped.tabs-calm .tab-item .badge {
  3657. opacity: 0.4; }
  3658. .tabs-striped.tabs-calm .tab-item.tab-item-active, .tabs-striped.tabs-calm .tab-item.active, .tabs-striped.tabs-calm .tab-item.activated {
  3659. margin-top: -2px;
  3660. color: #fff;
  3661. border-style: solid;
  3662. border-width: 2px 0 0 0;
  3663. border-color: #fff; }
  3664. .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 {
  3665. top: 4%; }
  3666. .tabs-striped.tabs-assertive .tabs {
  3667. background-color: #ef473a; }
  3668. .tabs-striped.tabs-assertive .tab-item {
  3669. color: rgba(255, 255, 255, 0.4);
  3670. opacity: 1; }
  3671. .tabs-striped.tabs-assertive .tab-item .badge {
  3672. opacity: 0.4; }
  3673. .tabs-striped.tabs-assertive .tab-item.tab-item-active, .tabs-striped.tabs-assertive .tab-item.active, .tabs-striped.tabs-assertive .tab-item.activated {
  3674. margin-top: -2px;
  3675. color: #fff;
  3676. border-style: solid;
  3677. border-width: 2px 0 0 0;
  3678. border-color: #fff; }
  3679. .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 {
  3680. top: 4%; }
  3681. .tabs-striped.tabs-balanced .tabs {
  3682. background-color: #33cd5f; }
  3683. .tabs-striped.tabs-balanced .tab-item {
  3684. color: rgba(255, 255, 255, 0.4);
  3685. opacity: 1; }
  3686. .tabs-striped.tabs-balanced .tab-item .badge {
  3687. opacity: 0.4; }
  3688. .tabs-striped.tabs-balanced .tab-item.tab-item-active, .tabs-striped.tabs-balanced .tab-item.active, .tabs-striped.tabs-balanced .tab-item.activated {
  3689. margin-top: -2px;
  3690. color: #fff;
  3691. border-style: solid;
  3692. border-width: 2px 0 0 0;
  3693. border-color: #fff; }
  3694. .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 {
  3695. top: 4%; }
  3696. .tabs-striped.tabs-energized .tabs {
  3697. background-color: #ffc900; }
  3698. .tabs-striped.tabs-energized .tab-item {
  3699. color: rgba(255, 255, 255, 0.4);
  3700. opacity: 1; }
  3701. .tabs-striped.tabs-energized .tab-item .badge {
  3702. opacity: 0.4; }
  3703. .tabs-striped.tabs-energized .tab-item.tab-item-active, .tabs-striped.tabs-energized .tab-item.active, .tabs-striped.tabs-energized .tab-item.activated {
  3704. margin-top: -2px;
  3705. color: #fff;
  3706. border-style: solid;
  3707. border-width: 2px 0 0 0;
  3708. border-color: #fff; }
  3709. .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 {
  3710. top: 4%; }
  3711. .tabs-striped.tabs-royal .tabs {
  3712. background-color: #886aea; }
  3713. .tabs-striped.tabs-royal .tab-item {
  3714. color: rgba(255, 255, 255, 0.4);
  3715. opacity: 1; }
  3716. .tabs-striped.tabs-royal .tab-item .badge {
  3717. opacity: 0.4; }
  3718. .tabs-striped.tabs-royal .tab-item.tab-item-active, .tabs-striped.tabs-royal .tab-item.active, .tabs-striped.tabs-royal .tab-item.activated {
  3719. margin-top: -2px;
  3720. color: #fff;
  3721. border-style: solid;
  3722. border-width: 2px 0 0 0;
  3723. border-color: #fff; }
  3724. .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 {
  3725. top: 4%; }
  3726. .tabs-striped.tabs-dark .tabs {
  3727. background-color: #444; }
  3728. .tabs-striped.tabs-dark .tab-item {
  3729. color: rgba(255, 255, 255, 0.4);
  3730. opacity: 1; }
  3731. .tabs-striped.tabs-dark .tab-item .badge {
  3732. opacity: 0.4; }
  3733. .tabs-striped.tabs-dark .tab-item.tab-item-active, .tabs-striped.tabs-dark .tab-item.active, .tabs-striped.tabs-dark .tab-item.activated {
  3734. margin-top: -2px;
  3735. color: #fff;
  3736. border-style: solid;
  3737. border-width: 2px 0 0 0;
  3738. border-color: #fff; }
  3739. .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 {
  3740. top: 4%; }
  3741. .tabs-striped.tabs-background-light .tabs {
  3742. background-color: #fff;
  3743. background-image: none; }
  3744. .tabs-striped.tabs-background-stable .tabs {
  3745. background-color: #f8f8f8;
  3746. background-image: none; }
  3747. .tabs-striped.tabs-background-positive .tabs {
  3748. background-color: #387ef5;
  3749. background-image: none; }
  3750. .tabs-striped.tabs-background-calm .tabs {
  3751. background-color: #00C3DA;
  3752. background-image: none; }
  3753. .tabs-striped.tabs-background-assertive .tabs {
  3754. background-color: #ef473a;
  3755. background-image: none; }
  3756. .tabs-striped.tabs-background-balanced .tabs {
  3757. background-color: #33cd5f;
  3758. background-image: none; }
  3759. .tabs-striped.tabs-background-energized .tabs {
  3760. background-color: #ffc900;
  3761. background-image: none; }
  3762. .tabs-striped.tabs-background-royal .tabs {
  3763. background-color: #886aea;
  3764. background-image: none; }
  3765. .tabs-striped.tabs-background-dark .tabs {
  3766. background-color: #444;
  3767. background-image: none; }
  3768. .tabs-striped.tabs-color-light .tab-item {
  3769. color: rgba(255, 255, 255, 0.4);
  3770. opacity: 1; }
  3771. .tabs-striped.tabs-color-light .tab-item .badge {
  3772. opacity: 0.4; }
  3773. .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 {
  3774. margin-top: -2px;
  3775. color: #fff;
  3776. border: 0 solid #fff;
  3777. border-top-width: 2px; }
  3778. .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 {
  3779. top: 2px;
  3780. opacity: 1; }
  3781. .tabs-striped.tabs-color-stable .tab-item {
  3782. color: rgba(248, 248, 248, 0.4);
  3783. opacity: 1; }
  3784. .tabs-striped.tabs-color-stable .tab-item .badge {
  3785. opacity: 0.4; }
  3786. .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 {
  3787. margin-top: -2px;
  3788. color: #f8f8f8;
  3789. border: 0 solid #f8f8f8;
  3790. border-top-width: 2px; }
  3791. .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 {
  3792. top: 2px;
  3793. opacity: 1; }
  3794. .tabs-striped.tabs-color-positive .tab-item {
  3795. color: rgba(56, 126, 245, 0.4);
  3796. opacity: 1; }
  3797. .tabs-striped.tabs-color-positive .tab-item .badge {
  3798. opacity: 0.4; }
  3799. .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 {
  3800. margin-top: -2px;
  3801. color: #387ef5;
  3802. border: 0 solid #387ef5;
  3803. border-top-width: 2px; }
  3804. .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 {
  3805. top: 2px;
  3806. opacity: 1; }
  3807. .tabs-striped.tabs-color-calm .tab-item {
  3808. color: rgba(255, 75, 130, 0.4);
  3809. opacity: 1; }
  3810. .tabs-striped.tabs-color-calm .tab-item .badge {
  3811. opacity: 0.4; }
  3812. .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 {
  3813. margin-top: -2px;
  3814. color: #00C3DA;
  3815. border: 0 solid #00C3DA;
  3816. border-top-width: 2px; }
  3817. .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 {
  3818. top: 2px;
  3819. opacity: 1; }
  3820. .tabs-striped.tabs-color-assertive .tab-item {
  3821. color: rgba(239, 71, 58, 0.4);
  3822. opacity: 1; }
  3823. .tabs-striped.tabs-color-assertive .tab-item .badge {
  3824. opacity: 0.4; }
  3825. .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 {
  3826. margin-top: -2px;
  3827. color: #ef473a;
  3828. border: 0 solid #ef473a;
  3829. border-top-width: 2px; }
  3830. .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 {
  3831. top: 2px;
  3832. opacity: 1; }
  3833. .tabs-striped.tabs-color-balanced .tab-item {
  3834. color: rgba(51, 205, 95, 0.4);
  3835. opacity: 1; }
  3836. .tabs-striped.tabs-color-balanced .tab-item .badge {
  3837. opacity: 0.4; }
  3838. .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 {
  3839. margin-top: -2px;
  3840. color: #33cd5f;
  3841. border: 0 solid #33cd5f;
  3842. border-top-width: 2px; }
  3843. .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 {
  3844. top: 2px;
  3845. opacity: 1; }
  3846. .tabs-striped.tabs-color-energized .tab-item {
  3847. color: rgba(255, 201, 0, 0.4);
  3848. opacity: 1; }
  3849. .tabs-striped.tabs-color-energized .tab-item .badge {
  3850. opacity: 0.4; }
  3851. .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 {
  3852. margin-top: -2px;
  3853. color: #ffc900;
  3854. border: 0 solid #ffc900;
  3855. border-top-width: 2px; }
  3856. .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 {
  3857. top: 2px;
  3858. opacity: 1; }
  3859. .tabs-striped.tabs-color-royal .tab-item {
  3860. color: rgba(136, 106, 234, 0.4);
  3861. opacity: 1; }
  3862. .tabs-striped.tabs-color-royal .tab-item .badge {
  3863. opacity: 0.4; }
  3864. .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 {
  3865. margin-top: -2px;
  3866. color: #886aea;
  3867. border: 0 solid #886aea;
  3868. border-top-width: 2px; }
  3869. .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 {
  3870. top: 2px;
  3871. opacity: 1; }
  3872. .tabs-striped.tabs-color-dark .tab-item {
  3873. color: rgba(68, 68, 68, 0.4);
  3874. opacity: 1; }
  3875. .tabs-striped.tabs-color-dark .tab-item .badge {
  3876. opacity: 0.4; }
  3877. .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 {
  3878. margin-top: -2px;
  3879. color: #444;
  3880. border: 0 solid #444;
  3881. border-top-width: 2px; }
  3882. .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 {
  3883. top: 2px;
  3884. opacity: 1; }
  3885. .tabs-background-light .tabs,
  3886. .tabs-background-light > .tabs {
  3887. background-color: #fff;
  3888. background-image: linear-gradient(0deg, #ddd, #ddd 50%, transparent 50%);
  3889. border-color: #ddd; }
  3890. .tabs-background-stable .tabs,
  3891. .tabs-background-stable > .tabs {
  3892. background-color: #f8f8f8;
  3893. background-image: linear-gradient(0deg, #b2b2b2, #b2b2b2 50%, transparent 50%);
  3894. border-color: #b2b2b2; }
  3895. .tabs-background-positive .tabs,
  3896. .tabs-background-positive > .tabs {
  3897. background-color: #387ef5;
  3898. background-image: linear-gradient(0deg, #0c60ee, #0c60ee 50%, transparent 50%);
  3899. border-color: #0c60ee; }
  3900. .tabs-background-calm .tabs,
  3901. .tabs-background-calm > .tabs {
  3902. background-color: #00C3DA;
  3903. background-image: linear-gradient(0deg, #00C3DA, #00C3DA 50%, transparent 50%);
  3904. border-color: #00C3DA; }
  3905. .tabs-background-assertive .tabs,
  3906. .tabs-background-assertive > .tabs {
  3907. background-color: #ef473a;
  3908. background-image: linear-gradient(0deg, #e42112, #e42112 50%, transparent 50%);
  3909. border-color: #e42112; }
  3910. .tabs-background-balanced .tabs,
  3911. .tabs-background-balanced > .tabs {
  3912. background-color: #33cd5f;
  3913. background-image: linear-gradient(0deg, #28a54c, #28a54c 50%, transparent 50%);
  3914. border-color: #28a54c; }
  3915. .tabs-background-energized .tabs,
  3916. .tabs-background-energized > .tabs {
  3917. background-color: #ffc900;
  3918. background-image: linear-gradient(0deg, #e6b500, #e6b500 50%, transparent 50%);
  3919. border-color: #e6b500; }
  3920. .tabs-background-royal .tabs,
  3921. .tabs-background-royal > .tabs {
  3922. background-color: #886aea;
  3923. background-image: linear-gradient(0deg, #6b46e5, #6b46e5 50%, transparent 50%);
  3924. border-color: #6b46e5; }
  3925. .tabs-background-dark .tabs,
  3926. .tabs-background-dark > .tabs {
  3927. background-color: #444;
  3928. background-image: linear-gradient(0deg, #111, #111 50%, transparent 50%);
  3929. border-color: #111; }
  3930. .tabs-color-light .tab-item {
  3931. color: rgba(255, 255, 255, 0.4);
  3932. opacity: 1; }
  3933. .tabs-color-light .tab-item .badge {
  3934. opacity: 0.4; }
  3935. .tabs-color-light .tab-item.tab-item-active, .tabs-color-light .tab-item.active, .tabs-color-light .tab-item.activated {
  3936. color: #fff;
  3937. border: 0 solid #fff; }
  3938. .tabs-color-light .tab-item.tab-item-active .badge, .tabs-color-light .tab-item.active .badge, .tabs-color-light .tab-item.activated .badge {
  3939. opacity: 1; }
  3940. .tabs-color-stable .tab-item {
  3941. color: rgba(248, 248, 248, 0.4);
  3942. opacity: 1; }
  3943. .tabs-color-stable .tab-item .badge {
  3944. opacity: 0.4; }
  3945. .tabs-color-stable .tab-item.tab-item-active, .tabs-color-stable .tab-item.active, .tabs-color-stable .tab-item.activated {
  3946. color: #f8f8f8;
  3947. border: 0 solid #f8f8f8; }
  3948. .tabs-color-stable .tab-item.tab-item-active .badge, .tabs-color-stable .tab-item.active .badge, .tabs-color-stable .tab-item.activated .badge {
  3949. opacity: 1; }
  3950. .tabs-color-positive .tab-item {
  3951. color: rgba(56, 126, 245, 0.4);
  3952. opacity: 1; }
  3953. .tabs-color-positive .tab-item .badge {
  3954. opacity: 0.4; }
  3955. .tabs-color-positive .tab-item.tab-item-active, .tabs-color-positive .tab-item.active, .tabs-color-positive .tab-item.activated {
  3956. color: #387ef5;
  3957. border: 0 solid #387ef5; }
  3958. .tabs-color-positive .tab-item.tab-item-active .badge, .tabs-color-positive .tab-item.active .badge, .tabs-color-positive .tab-item.activated .badge {
  3959. opacity: 1; }
  3960. .tabs-color-calm .tab-item {
  3961. color: rgba(255, 75, 130, 0.4);
  3962. opacity: 1; }
  3963. .tabs-color-calm .tab-item .badge {
  3964. opacity: 0.4; }
  3965. .tabs-color-calm .tab-item.tab-item-active, .tabs-color-calm .tab-item.active, .tabs-color-calm .tab-item.activated {
  3966. color: #00C3DA;
  3967. border: 0 solid #00C3DA; }
  3968. .tabs-color-calm .tab-item.tab-item-active .badge, .tabs-color-calm .tab-item.active .badge, .tabs-color-calm .tab-item.activated .badge {
  3969. opacity: 1; }
  3970. .tabs-color-assertive .tab-item {
  3971. color: rgba(239, 71, 58, 0.4);
  3972. opacity: 1; }
  3973. .tabs-color-assertive .tab-item .badge {
  3974. opacity: 0.4; }
  3975. .tabs-color-assertive .tab-item.tab-item-active, .tabs-color-assertive .tab-item.active, .tabs-color-assertive .tab-item.activated {
  3976. color: #ef473a;
  3977. border: 0 solid #ef473a; }
  3978. .tabs-color-assertive .tab-item.tab-item-active .badge, .tabs-color-assertive .tab-item.active .badge, .tabs-color-assertive .tab-item.activated .badge {
  3979. opacity: 1; }
  3980. .tabs-color-balanced .tab-item {
  3981. color: rgba(51, 205, 95, 0.4);
  3982. opacity: 1; }
  3983. .tabs-color-balanced .tab-item .badge {
  3984. opacity: 0.4; }
  3985. .tabs-color-balanced .tab-item.tab-item-active, .tabs-color-balanced .tab-item.active, .tabs-color-balanced .tab-item.activated {
  3986. color: #33cd5f;
  3987. border: 0 solid #33cd5f; }
  3988. .tabs-color-balanced .tab-item.tab-item-active .badge, .tabs-color-balanced .tab-item.active .badge, .tabs-color-balanced .tab-item.activated .badge {
  3989. opacity: 1; }
  3990. .tabs-color-energized .tab-item {
  3991. color: rgba(255, 201, 0, 0.4);
  3992. opacity: 1; }
  3993. .tabs-color-energized .tab-item .badge {
  3994. opacity: 0.4; }
  3995. .tabs-color-energized .tab-item.tab-item-active, .tabs-color-energized .tab-item.active, .tabs-color-energized .tab-item.activated {
  3996. color: #ffc900;
  3997. border: 0 solid #ffc900; }
  3998. .tabs-color-energized .tab-item.tab-item-active .badge, .tabs-color-energized .tab-item.active .badge, .tabs-color-energized .tab-item.activated .badge {
  3999. opacity: 1; }
  4000. .tabs-color-royal .tab-item {
  4001. color: rgba(136, 106, 234, 0.4);
  4002. opacity: 1; }
  4003. .tabs-color-royal .tab-item .badge {
  4004. opacity: 0.4; }
  4005. .tabs-color-royal .tab-item.tab-item-active, .tabs-color-royal .tab-item.active, .tabs-color-royal .tab-item.activated {
  4006. color: #886aea;
  4007. border: 0 solid #886aea; }
  4008. .tabs-color-royal .tab-item.tab-item-active .badge, .tabs-color-royal .tab-item.active .badge, .tabs-color-royal .tab-item.activated .badge {
  4009. opacity: 1; }
  4010. .tabs-color-dark .tab-item {
  4011. color: rgba(68, 68, 68, 0.4);
  4012. opacity: 1; }
  4013. .tabs-color-dark .tab-item .badge {
  4014. opacity: 0.4; }
  4015. .tabs-color-dark .tab-item.tab-item-active, .tabs-color-dark .tab-item.active, .tabs-color-dark .tab-item.activated {
  4016. color: #444;
  4017. border: 0 solid #444; }
  4018. .tabs-color-dark .tab-item.tab-item-active .badge, .tabs-color-dark .tab-item.active .badge, .tabs-color-dark .tab-item.activated .badge {
  4019. opacity: 1; }
  4020. ion-tabs.tabs-color-active-light .tab-item {
  4021. color: #444; }
  4022. 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 {
  4023. color: #fff; }
  4024. ion-tabs.tabs-color-active-stable .tab-item {
  4025. color: #444; }
  4026. 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 {
  4027. color: #f8f8f8; }
  4028. ion-tabs.tabs-color-active-positive .tab-item {
  4029. color: #444; }
  4030. 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 {
  4031. color: #387ef5; }
  4032. ion-tabs.tabs-color-active-calm .tab-item {
  4033. color: #444; }
  4034. 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 {
  4035. color: #00C3DA; }
  4036. ion-tabs.tabs-color-active-assertive .tab-item {
  4037. color: #444; }
  4038. 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 {
  4039. color: #ef473a; }
  4040. ion-tabs.tabs-color-active-balanced .tab-item {
  4041. color: #444; }
  4042. 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 {
  4043. color: #33cd5f; }
  4044. ion-tabs.tabs-color-active-energized .tab-item {
  4045. color: #444; }
  4046. 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 {
  4047. color: #ffc900; }
  4048. ion-tabs.tabs-color-active-royal .tab-item {
  4049. color: #444; }
  4050. 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 {
  4051. color: #886aea; }
  4052. ion-tabs.tabs-color-active-dark .tab-item {
  4053. color: #fff; }
  4054. 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 {
  4055. color: #444; }
  4056. .tabs-top.tabs-striped {
  4057. padding-bottom: 0; }
  4058. .tabs-top.tabs-striped .tab-item {
  4059. background: transparent;
  4060. -webkit-transition: color .1s ease;
  4061. -moz-transition: color .1s ease;
  4062. -ms-transition: color .1s ease;
  4063. -o-transition: color .1s ease;
  4064. transition: color .1s ease; }
  4065. .tabs-top.tabs-striped .tab-item.tab-item-active, .tabs-top.tabs-striped .tab-item.active, .tabs-top.tabs-striped .tab-item.activated {
  4066. margin-top: 1px;
  4067. border-width: 0px 0px 2px 0px !important;
  4068. border-style: solid; }
  4069. .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 {
  4070. margin-top: -1px; }
  4071. .tabs-top.tabs-striped .tab-item .badge {
  4072. -webkit-transition: color .2s ease;
  4073. -moz-transition: color .2s ease;
  4074. -ms-transition: color .2s ease;
  4075. -o-transition: color .2s ease;
  4076. transition: color .2s ease; }
  4077. .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 {
  4078. display: block;
  4079. margin-top: -1px; }
  4080. .tabs-top.tabs-striped.tabs-icon-left .tab-item {
  4081. margin-top: 1px; }
  4082. .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 {
  4083. margin-top: -0.1em; }
  4084. /* Allow parent element to have tabs-top */
  4085. /* If you change this, change platform.scss as well */
  4086. .tabs-top > .tabs,
  4087. .tabs.tabs-top {
  4088. top: 44px;
  4089. padding-top: 0;
  4090. background-position: bottom;
  4091. border-top-width: 0;
  4092. border-bottom-width: 1px; }
  4093. .tabs-top > .tabs .tab-item.tab-item-active .badge, .tabs-top > .tabs .tab-item.active .badge, .tabs-top > .tabs .tab-item.activated .badge,
  4094. .tabs.tabs-top .tab-item.tab-item-active .badge,
  4095. .tabs.tabs-top .tab-item.active .badge,
  4096. .tabs.tabs-top .tab-item.activated .badge {
  4097. top: 4%; }
  4098. .tabs-top ~ .bar-header {
  4099. border-bottom-width: 0; }
  4100. .tab-item {
  4101. -webkit-box-flex: 1;
  4102. -webkit-flex: 1;
  4103. -moz-box-flex: 1;
  4104. -moz-flex: 1;
  4105. -ms-flex: 1;
  4106. flex: 1;
  4107. display: block;
  4108. overflow: hidden;
  4109. max-width: 150px;
  4110. height: 100%;
  4111. color: inherit;
  4112. text-align: center;
  4113. text-decoration: none;
  4114. text-overflow: ellipsis;
  4115. white-space: nowrap;
  4116. font-weight: 400;
  4117. font-size: 14px;
  4118. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
  4119. opacity: 0.7; }
  4120. .tab-item:hover {
  4121. cursor: pointer; }
  4122. .tab-item.tab-hidden {
  4123. display: none; }
  4124. .tabs-item-hide > .tabs,
  4125. .tabs.tabs-item-hide {
  4126. display: none; }
  4127. .tabs-icon-top > .tabs .tab-item,
  4128. .tabs-icon-top.tabs .tab-item,
  4129. .tabs-icon-bottom > .tabs .tab-item,
  4130. .tabs-icon-bottom.tabs .tab-item {
  4131. font-size: 10px;
  4132. line-height: 14px; }
  4133. .tab-item .icon {
  4134. display: block;
  4135. margin: 0 auto;
  4136. height: 32px;
  4137. padding-top:3px;
  4138. font-size: 26px; }
  4139. .tabs-icon-left.tabs .tab-item,
  4140. .tabs-icon-left > .tabs .tab-item,
  4141. .tabs-icon-right.tabs .tab-item,
  4142. .tabs-icon-right > .tabs .tab-item {
  4143. font-size: 10px; }
  4144. .tabs-icon-left.tabs .tab-item .icon, .tabs-icon-left.tabs .tab-item .tab-title,
  4145. .tabs-icon-left > .tabs .tab-item .icon,
  4146. .tabs-icon-left > .tabs .tab-item .tab-title,
  4147. .tabs-icon-right.tabs .tab-item .icon,
  4148. .tabs-icon-right.tabs .tab-item .tab-title,
  4149. .tabs-icon-right > .tabs .tab-item .icon,
  4150. .tabs-icon-right > .tabs .tab-item .tab-title {
  4151. display: inline-block;
  4152. vertical-align: top;
  4153. margin-top: -.1em; }
  4154. .tabs-icon-left.tabs .tab-item .icon:before, .tabs-icon-left.tabs .tab-item .tab-title:before,
  4155. .tabs-icon-left > .tabs .tab-item .icon:before,
  4156. .tabs-icon-left > .tabs .tab-item .tab-title:before,
  4157. .tabs-icon-right.tabs .tab-item .icon:before,
  4158. .tabs-icon-right.tabs .tab-item .tab-title:before,
  4159. .tabs-icon-right > .tabs .tab-item .icon:before,
  4160. .tabs-icon-right > .tabs .tab-item .tab-title:before {
  4161. font-size: 24px;
  4162. line-height: 49px; }
  4163. .tabs-icon-left > .tabs .tab-item .icon,
  4164. .tabs-icon-left.tabs .tab-item .icon {
  4165. padding-right: 3px; }
  4166. .tabs-icon-right > .tabs .tab-item .icon,
  4167. .tabs-icon-right.tabs .tab-item .icon {
  4168. padding-left: 3px; }
  4169. .tabs-icon-only > .tabs .icon,
  4170. .tabs-icon-only.tabs .icon {
  4171. line-height: inherit; }
  4172. .tab-item.has-badge {
  4173. position: relative; }
  4174. .tab-item .badge {
  4175. position: absolute;
  4176. top: 4%;
  4177. right: 33%;
  4178. right: calc(50% - 26px);
  4179. padding: 1px 6px;
  4180. height: auto;
  4181. font-size: 12px;
  4182. line-height: 16px; }
  4183. /* Navigational tab */
  4184. /* Active state for tab */
  4185. .tab-item.tab-item-active,
  4186. .tab-item.active,
  4187. .tab-item.activated {
  4188. opacity: 1; }
  4189. .tab-item.tab-item-active.tab-item-light,
  4190. .tab-item.active.tab-item-light,
  4191. .tab-item.activated.tab-item-light {
  4192. color: #fff; }
  4193. .tab-item.tab-item-active.tab-item-stable,
  4194. .tab-item.active.tab-item-stable,
  4195. .tab-item.activated.tab-item-stable {
  4196. color: #f8f8f8; }
  4197. .tab-item.tab-item-active.tab-item-positive,
  4198. .tab-item.active.tab-item-positive,
  4199. .tab-item.activated.tab-item-positive {
  4200. color: #387ef5; }
  4201. .tab-item.tab-item-active.tab-item-calm,
  4202. .tab-item.active.tab-item-calm,
  4203. .tab-item.activated.tab-item-calm {
  4204. color: #00C3DA; }
  4205. .tab-item.tab-item-active.tab-item-assertive,
  4206. .tab-item.active.tab-item-assertive,
  4207. .tab-item.activated.tab-item-assertive {
  4208. color: #ef473a; }
  4209. .tab-item.tab-item-active.tab-item-balanced,
  4210. .tab-item.active.tab-item-balanced,
  4211. .tab-item.activated.tab-item-balanced {
  4212. color: #33cd5f; }
  4213. .tab-item.tab-item-active.tab-item-energized,
  4214. .tab-item.active.tab-item-energized,
  4215. .tab-item.activated.tab-item-energized {
  4216. color: #ffc900; }
  4217. .tab-item.tab-item-active.tab-item-royal,
  4218. .tab-item.active.tab-item-royal,
  4219. .tab-item.activated.tab-item-royal {
  4220. color: #886aea; }
  4221. .tab-item.tab-item-active.tab-item-dark,
  4222. .tab-item.active.tab-item-dark,
  4223. .tab-item.activated.tab-item-dark {
  4224. color: #444; }
  4225. .item.tabs {
  4226. display: -webkit-box;
  4227. display: -webkit-flex;
  4228. display: -moz-box;
  4229. display: -moz-flex;
  4230. display: -ms-flexbox;
  4231. display: flex;
  4232. padding: 0; }
  4233. .item.tabs .icon:before {
  4234. position: relative; }
  4235. .tab-item.disabled,
  4236. .tab-item[disabled] {
  4237. opacity: .4;
  4238. cursor: default;
  4239. pointer-events: none; }
  4240. .nav-bar-tabs-top.hide ~ .view-container .tabs-top .tabs {
  4241. top: 0; }
  4242. .pane[hide-nav-bar="true"] .has-tabs-top {
  4243. top: 49px; }
  4244. /**
  4245. * Menus
  4246. * --------------------------------------------------
  4247. * Side panel structure
  4248. */
  4249. .menu {
  4250. position: absolute;
  4251. top: 0;
  4252. bottom: 0;
  4253. z-index: 0;
  4254. overflow: hidden;
  4255. min-height: 100%;
  4256. max-height: 100%;
  4257. width: 275px;
  4258. background-color: #fff; }
  4259. .menu .scroll-content {
  4260. z-index: 10; }
  4261. .menu .bar-header {
  4262. z-index: 11; }
  4263. .menu-content {
  4264. -webkit-transform: none;
  4265. transform: none;
  4266. box-shadow: -1px 0px 2px rgba(0, 0, 0, 0.2), 1px 0px 2px rgba(0, 0, 0, 0.2); }
  4267. .menu-open .menu-content .pane,
  4268. .menu-open .menu-content .scroll-content {
  4269. pointer-events: none; }
  4270. .menu-open .menu-content .scroll-content .scroll {
  4271. pointer-events: none; }
  4272. .menu-open .menu-content .scroll-content:not(.overflow-scroll) {
  4273. overflow: hidden; }
  4274. .grade-b .menu-content,
  4275. .grade-c .menu-content {
  4276. -webkit-box-sizing: content-box;
  4277. -moz-box-sizing: content-box;
  4278. box-sizing: content-box;
  4279. right: -1px;
  4280. left: -1px;
  4281. border-right: 1px solid #ccc;
  4282. border-left: 1px solid #ccc;
  4283. box-shadow: none; }
  4284. .menu-left {
  4285. left: 0; }
  4286. .menu-right {
  4287. right: 0; }
  4288. .aside-open.aside-resizing .menu-right {
  4289. display: none; }
  4290. .menu-animated {
  4291. -webkit-transition: -webkit-transform 200ms ease;
  4292. transition: transform 200ms ease; }
  4293. /**
  4294. * Modals
  4295. * --------------------------------------------------
  4296. * Modals are independent windows that slide in from off-screen.
  4297. */
  4298. .modal-backdrop,
  4299. .modal-backdrop-bg {
  4300. position: fixed;
  4301. top: 0;
  4302. left: 0;
  4303. z-index: 10;
  4304. width: 100%;
  4305. height: 100%; }
  4306. .modal-backdrop-bg {
  4307. pointer-events: none; }
  4308. .modal {
  4309. display: block;
  4310. position: absolute;
  4311. top: 0;
  4312. z-index: 10;
  4313. overflow: hidden;
  4314. min-height: 100%;
  4315. width: 100%;
  4316. background-color: #fff; }
  4317. @media (min-width: 680px) {
  4318. .modal {
  4319. top: 20%;
  4320. right: 20%;
  4321. bottom: 20%;
  4322. left: 20%;
  4323. min-height: 240px;
  4324. width: 60%; }
  4325. .modal.ng-leave-active {
  4326. bottom: 0; }
  4327. .platform-ios.platform-cordova .modal-wrapper .modal .bar-header:not(.bar-subheader) {
  4328. height: 44px; }
  4329. .platform-ios.platform-cordova .modal-wrapper .modal .bar-header:not(.bar-subheader) > * {
  4330. margin-top: 0; }
  4331. .platform-ios.platform-cordova .modal-wrapper .modal .tabs-top > .tabs,
  4332. .platform-ios.platform-cordova .modal-wrapper .modal .tabs.tabs-top {
  4333. top: 44px; }
  4334. .platform-ios.platform-cordova .modal-wrapper .modal .has-header,
  4335. .platform-ios.platform-cordova .modal-wrapper .modal .bar-subheader {
  4336. top: 44px; }
  4337. .platform-ios.platform-cordova .modal-wrapper .modal .has-subheader {
  4338. top: 88px; }
  4339. .platform-ios.platform-cordova .modal-wrapper .modal .has-header.has-tabs-top {
  4340. top: 93px; }
  4341. .platform-ios.platform-cordova .modal-wrapper .modal .has-header.has-subheader.has-tabs-top {
  4342. top: 137px; }
  4343. .modal-backdrop-bg {
  4344. -webkit-transition: opacity 300ms ease-in-out;
  4345. transition: opacity 300ms ease-in-out;
  4346. background-color: #000;
  4347. opacity: 0; }
  4348. .active .modal-backdrop-bg {
  4349. opacity: 0.5; } }
  4350. .modal-open {
  4351. pointer-events: none; }
  4352. .modal-open .modal,
  4353. .modal-open .modal-backdrop {
  4354. pointer-events: auto; }
  4355. .modal-open.loading-active .modal,
  4356. .modal-open.loading-active .modal-backdrop {
  4357. pointer-events: none; }
  4358. /**
  4359. * Popovers
  4360. * --------------------------------------------------
  4361. * Popovers are independent views which float over content
  4362. */
  4363. .popover-backdrop {
  4364. position: fixed;
  4365. top: 0;
  4366. left: 0;
  4367. z-index: 10;
  4368. width: 100%;
  4369. height: 100%;
  4370. background-color: transparent; }
  4371. .popover-backdrop.active {
  4372. background-color: rgba(0, 0, 0, 0.1); }
  4373. .popover {
  4374. position: absolute;
  4375. top: 25%;
  4376. left: 50%;
  4377. z-index: 10;
  4378. display: block;
  4379. margin-top: 12px;
  4380. margin-left: -110px;
  4381. height: 280px;
  4382. width: 220px;
  4383. background-color: #fff;
  4384. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  4385. opacity: 0; }
  4386. .popover .item:first-child {
  4387. border-top: 0; }
  4388. .popover .item:last-child {
  4389. border-bottom: 0; }
  4390. .popover.popover-bottom {
  4391. margin-top: -12px; }
  4392. .popover,
  4393. .popover .bar-header {
  4394. border-radius: 2px; }
  4395. .popover .scroll-content {
  4396. z-index: 1;
  4397. margin: 2px 0; }
  4398. .popover .bar-header {
  4399. border-bottom-right-radius: 0;
  4400. border-bottom-left-radius: 0; }
  4401. .popover .has-header {
  4402. border-top-right-radius: 0;
  4403. border-top-left-radius: 0; }
  4404. .popover-arrow {
  4405. display: none; }
  4406. .platform-ios .popover {
  4407. box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  4408. border-radius: 10px; }
  4409. .platform-ios .popover .bar-header {
  4410. -webkit-border-top-right-radius: 10px;
  4411. border-top-right-radius: 10px;
  4412. -webkit-border-top-left-radius: 10px;
  4413. border-top-left-radius: 10px; }
  4414. .platform-ios .popover .scroll-content {
  4415. margin: 8px 0;
  4416. border-radius: 10px; }
  4417. .platform-ios .popover .scroll-content.has-header {
  4418. margin-top: 0; }
  4419. .platform-ios .popover-arrow {
  4420. position: absolute;
  4421. display: block;
  4422. top: -17px;
  4423. width: 30px;
  4424. height: 19px;
  4425. overflow: hidden; }
  4426. .platform-ios .popover-arrow:after {
  4427. position: absolute;
  4428. top: 12px;
  4429. left: 5px;
  4430. width: 20px;
  4431. height: 20px;
  4432. background-color: #fff;
  4433. border-radius: 3px;
  4434. content: '';
  4435. -webkit-transform: rotate(-45deg);
  4436. transform: rotate(-45deg); }
  4437. .platform-ios .popover-bottom .popover-arrow {
  4438. top: auto;
  4439. bottom: -10px; }
  4440. .platform-ios .popover-bottom .popover-arrow:after {
  4441. top: -6px; }
  4442. .platform-android .popover {
  4443. margin-top: -32px;
  4444. background-color: #fafafa;
  4445. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35); }
  4446. .platform-android .popover .item {
  4447. border-color: #fafafa;
  4448. background-color: #fafafa;
  4449. color: #4d4d4d; }
  4450. .platform-android .popover.popover-bottom {
  4451. margin-top: 32px; }
  4452. .platform-android .popover-backdrop,
  4453. .platform-android .popover-backdrop.active {
  4454. background-color: transparent; }
  4455. .popover-open {
  4456. pointer-events: none; }
  4457. .popover-open .popover,
  4458. .popover-open .popover-backdrop {
  4459. pointer-events: auto; }
  4460. .popover-open.loading-active .popover,
  4461. .popover-open.loading-active .popover-backdrop {
  4462. pointer-events: none; }
  4463. @media (min-width: 680px) {
  4464. .popover {
  4465. width: 360px;
  4466. margin-left: -180px; } }
  4467. /**
  4468. * Popups
  4469. * --------------------------------------------------
  4470. */
  4471. .popup-container {
  4472. position: absolute;
  4473. top: 0;
  4474. left: 0;
  4475. bottom: 0;
  4476. right: 0;
  4477. background: transparent;
  4478. display: -webkit-box;
  4479. display: -webkit-flex;
  4480. display: -moz-box;
  4481. display: -moz-flex;
  4482. display: -ms-flexbox;
  4483. display: flex;
  4484. -webkit-box-pack: center;
  4485. -ms-flex-pack: center;
  4486. -webkit-justify-content: center;
  4487. -moz-justify-content: center;
  4488. justify-content: center;
  4489. -webkit-box-align: center;
  4490. -ms-flex-align: center;
  4491. -webkit-align-items: center;
  4492. -moz-align-items: center;
  4493. align-items: center;
  4494. z-index: 12;
  4495. visibility: hidden; }
  4496. .popup-container.popup-showing {
  4497. visibility: visible; }
  4498. .popup-container.popup-hidden .popup {
  4499. -webkit-animation-name: scaleOut;
  4500. animation-name: scaleOut;
  4501. -webkit-animation-duration: 0.1s;
  4502. animation-duration: 0.1s;
  4503. -webkit-animation-timing-function: ease-in-out;
  4504. animation-timing-function: ease-in-out;
  4505. -webkit-animation-fill-mode: both;
  4506. animation-fill-mode: both; }
  4507. .popup-container.active .popup {
  4508. -webkit-animation-name: superScaleIn;
  4509. animation-name: superScaleIn;
  4510. -webkit-animation-duration: 0.2s;
  4511. animation-duration: 0.2s;
  4512. -webkit-animation-timing-function: ease-in-out;
  4513. animation-timing-function: ease-in-out;
  4514. -webkit-animation-fill-mode: both;
  4515. animation-fill-mode: both; }
  4516. .popup-container .popup {
  4517. width: 250px;
  4518. max-width: 100%;
  4519. max-height: 90%;
  4520. border-radius: 0px;
  4521. background-color: rgba(255, 255, 255, 0.9);
  4522. display: -webkit-box;
  4523. display: -webkit-flex;
  4524. display: -moz-box;
  4525. display: -moz-flex;
  4526. display: -ms-flexbox;
  4527. display: flex;
  4528. -webkit-box-direction: normal;
  4529. -webkit-box-orient: vertical;
  4530. -webkit-flex-direction: column;
  4531. -moz-flex-direction: column;
  4532. -ms-flex-direction: column;
  4533. flex-direction: column; }
  4534. .popup-container input,
  4535. .popup-container textarea {
  4536. width: 100%; }
  4537. .popup-head {
  4538. padding: 15px 10px;
  4539. border-bottom: 1px solid #eee;
  4540. text-align: center; }
  4541. .popup-title {
  4542. margin: 0;
  4543. padding: 0;
  4544. font-size: 15px; }
  4545. .popup-sub-title {
  4546. margin: 5px 0 0 0;
  4547. padding: 0;
  4548. font-weight: normal;
  4549. font-size: 11px; }
  4550. .popup-body {
  4551. padding: 10px;
  4552. overflow: auto; }
  4553. .popup-buttons {
  4554. display: -webkit-box;
  4555. display: -webkit-flex;
  4556. display: -moz-box;
  4557. display: -moz-flex;
  4558. display: -ms-flexbox;
  4559. display: flex;
  4560. -webkit-box-direction: normal;
  4561. -webkit-box-orient: horizontal;
  4562. -webkit-flex-direction: row;
  4563. -moz-flex-direction: row;
  4564. -ms-flex-direction: row;
  4565. flex-direction: row;
  4566. padding: 10px;
  4567. min-height: 65px; }
  4568. .popup-buttons .button {
  4569. -webkit-box-flex: 1;
  4570. -webkit-flex: 1;
  4571. -moz-box-flex: 1;
  4572. -moz-flex: 1;
  4573. -ms-flex: 1;
  4574. flex: 1;
  4575. display: block;
  4576. min-height: 45px;
  4577. border-radius: 2px;
  4578. line-height: 20px;
  4579. margin-right: 5px; }
  4580. .popup-buttons .button:last-child {
  4581. margin-right: 0px; }
  4582. .popup-open {
  4583. pointer-events: none; }
  4584. .popup-open.modal-open .modal {
  4585. pointer-events: none; }
  4586. .popup-open .popup-backdrop, .popup-open .popup {
  4587. pointer-events: auto; }
  4588. /**
  4589. * Loading
  4590. * --------------------------------------------------
  4591. */
  4592. .loading-container {
  4593. position: absolute;
  4594. left: 0;
  4595. top: 0;
  4596. right: 0;
  4597. bottom: 0;
  4598. z-index: 13;
  4599. display: -webkit-box;
  4600. display: -webkit-flex;
  4601. display: -moz-box;
  4602. display: -moz-flex;
  4603. display: -ms-flexbox;
  4604. display: flex;
  4605. -webkit-box-pack: center;
  4606. -ms-flex-pack: center;
  4607. -webkit-justify-content: center;
  4608. -moz-justify-content: center;
  4609. justify-content: center;
  4610. -webkit-box-align: center;
  4611. -ms-flex-align: center;
  4612. -webkit-align-items: center;
  4613. -moz-align-items: center;
  4614. align-items: center;
  4615. -webkit-transition: 0.2s opacity linear;
  4616. transition: 0.2s opacity linear;
  4617. visibility: hidden;
  4618. opacity: 0; }
  4619. .loading-container:not(.visible) .icon,
  4620. .loading-container:not(.visible) .spinner {
  4621. display: none; }
  4622. .loading-container.visible {
  4623. visibility: visible; }
  4624. .loading-container.active {
  4625. opacity: 1; }
  4626. .loading-container .loading {
  4627. padding: 20px;
  4628. border-radius: 5px;
  4629. background-color: rgba(0, 0, 0, 0.7);
  4630. color: #fff;
  4631. text-align: center;
  4632. text-overflow: ellipsis;
  4633. font-size: 15px; }
  4634. .loading-container .loading h1, .loading-container .loading h2, .loading-container .loading h3, .loading-container .loading h4, .loading-container .loading h5, .loading-container .loading h6 {
  4635. color: #fff; }
  4636. /**
  4637. * Items
  4638. * --------------------------------------------------
  4639. */
  4640. .item {
  4641. border: 0px solid #ddd;
  4642. background-color: #fff;
  4643. color: #444;
  4644. position: relative;
  4645. z-index: 2;
  4646. display: block;
  4647. margin: -1px;
  4648. padding: 16px;
  4649. font-size: 16px; }
  4650. .item h2 {
  4651. margin: 0 0 2px 0;
  4652. font-size: 16px;
  4653. font-weight: normal; }
  4654. .item h3 {
  4655. margin: 0 0 4px 0;
  4656. font-size: 14px; }
  4657. .item h4 {
  4658. margin: 0 0 4px 0;
  4659. font-size: 12px; }
  4660. .item h5, .item h6 {
  4661. margin: 0 0 3px 0;
  4662. font-size: 10px; }
  4663. .item p {
  4664. color: #666;
  4665. font-size: 14px;
  4666. margin-bottom: 2px; }
  4667. .item h1:last-child,
  4668. .item h2:last-child,
  4669. .item h3:last-child,
  4670. .item h4:last-child,
  4671. .item h5:last-child,
  4672. .item h6:last-child,
  4673. .item p:last-child {
  4674. margin-bottom: 0; }
  4675. .item .badge {
  4676. display: -webkit-box;
  4677. display: -webkit-flex;
  4678. display: -moz-box;
  4679. display: -moz-flex;
  4680. display: -ms-flexbox;
  4681. display: flex;
  4682. /*position: absolute;*/
  4683. top: 16px;
  4684. right: 32px; }
  4685. .item.item-button-right .badge {
  4686. right: 67px; }
  4687. .item.item-divider .badge {
  4688. top: 8px; }
  4689. .item .badge + .badge {
  4690. margin-right: 5px; }
  4691. .item.item-light {
  4692. border-color: #ddd;
  4693. background-color: #fff;
  4694. color: #444; }
  4695. .item.item-stable {
  4696. border-color: #b2b2b2;
  4697. background-color: #f8f8f8;
  4698. color: #444; }
  4699. .item.item-positive {
  4700. border-color: #0c60ee;
  4701. background-color: #387ef5;
  4702. color: #fff; }
  4703. .item.item-calm {
  4704. border-color: #00C3DA;
  4705. background-color: #00C3DA;
  4706. color: #fff; }
  4707. .item.item-assertive {
  4708. border-color: #e42112;
  4709. background-color: #ef473a;
  4710. color: #fff; }
  4711. .item.item-balanced {
  4712. border-color: #28a54c;
  4713. background-color: #33cd5f;
  4714. color: #fff; }
  4715. .item.item-energized {
  4716. border-color: #e6b500;
  4717. background-color: #ffc900;
  4718. color: #fff; }
  4719. .item.item-royal {
  4720. border-color: #6b46e5;
  4721. background-color: #886aea;
  4722. color: #fff; }
  4723. .item.item-dark {
  4724. border-color: #111;
  4725. background-color: #444;
  4726. color: #fff; }
  4727. .item[ng-click]:hover {
  4728. cursor: pointer; }
  4729. .list-borderless .item,
  4730. .item-borderless {
  4731. border-width: 0; }
  4732. .item.active,
  4733. .item.activated,
  4734. .item-complex.active .item-content,
  4735. .item-complex.activated .item-content,
  4736. .item .item-content.active,
  4737. .item .item-content.activated {
  4738. border-color: #ccc;
  4739. background-color: #D9D9D9; }
  4740. .item.active.item-complex > .item-content,
  4741. .item.activated.item-complex > .item-content,
  4742. .item-complex.active .item-content.item-complex > .item-content,
  4743. .item-complex.activated .item-content.item-complex > .item-content,
  4744. .item .item-content.active.item-complex > .item-content,
  4745. .item .item-content.activated.item-complex > .item-content {
  4746. border-color: #ccc;
  4747. background-color: #D9D9D9; }
  4748. .item.active.item-light,
  4749. .item.activated.item-light,
  4750. .item-complex.active .item-content.item-light,
  4751. .item-complex.activated .item-content.item-light,
  4752. .item .item-content.active.item-light,
  4753. .item .item-content.activated.item-light {
  4754. border-color: #ccc;
  4755. background-color: #fafafa; }
  4756. .item.active.item-light.item-complex > .item-content,
  4757. .item.activated.item-light.item-complex > .item-content,
  4758. .item-complex.active .item-content.item-light.item-complex > .item-content,
  4759. .item-complex.activated .item-content.item-light.item-complex > .item-content,
  4760. .item .item-content.active.item-light.item-complex > .item-content,
  4761. .item .item-content.activated.item-light.item-complex > .item-content {
  4762. border-color: #ccc;
  4763. background-color: #fafafa; }
  4764. .item.active.item-stable,
  4765. .item.activated.item-stable,
  4766. .item-complex.active .item-content.item-stable,
  4767. .item-complex.activated .item-content.item-stable,
  4768. .item .item-content.active.item-stable,
  4769. .item .item-content.activated.item-stable {
  4770. border-color: #a2a2a2;
  4771. background-color: #e5e5e5; }
  4772. .item.active.item-stable.item-complex > .item-content,
  4773. .item.activated.item-stable.item-complex > .item-content,
  4774. .item-complex.active .item-content.item-stable.item-complex > .item-content,
  4775. .item-complex.activated .item-content.item-stable.item-complex > .item-content,
  4776. .item .item-content.active.item-stable.item-complex > .item-content,
  4777. .item .item-content.activated.item-stable.item-complex > .item-content {
  4778. border-color: #a2a2a2;
  4779. background-color: #e5e5e5; }
  4780. .item.active.item-positive,
  4781. .item.activated.item-positive,
  4782. .item-complex.active .item-content.item-positive,
  4783. .item-complex.activated .item-content.item-positive,
  4784. .item .item-content.active.item-positive,
  4785. .item .item-content.activated.item-positive {
  4786. border-color: #0c60ee;
  4787. background-color: #0c60ee; }
  4788. .item.active.item-positive.item-complex > .item-content,
  4789. .item.activated.item-positive.item-complex > .item-content,
  4790. .item-complex.active .item-content.item-positive.item-complex > .item-content,
  4791. .item-complex.activated .item-content.item-positive.item-complex > .item-content,
  4792. .item .item-content.active.item-positive.item-complex > .item-content,
  4793. .item .item-content.activated.item-positive.item-complex > .item-content {
  4794. border-color: #0c60ee;
  4795. background-color: #0c60ee; }
  4796. .item.active.item-calm,
  4797. .item.activated.item-calm,
  4798. .item-complex.active .item-content.item-calm,
  4799. .item-complex.activated .item-content.item-calm,
  4800. .item .item-content.active.item-calm,
  4801. .item .item-content.activated.item-calm {
  4802. border-color: #00C3DA;
  4803. background-color: #00C3DA; }
  4804. .item.active.item-calm.item-complex > .item-content,
  4805. .item.activated.item-calm.item-complex > .item-content,
  4806. .item-complex.active .item-content.item-calm.item-complex > .item-content,
  4807. .item-complex.activated .item-content.item-calm.item-complex > .item-content,
  4808. .item .item-content.active.item-calm.item-complex > .item-content,
  4809. .item .item-content.activated.item-calm.item-complex > .item-content {
  4810. border-color: #00C3DA;
  4811. background-color: #00C3DA; }
  4812. .item.active.item-assertive,
  4813. .item.activated.item-assertive,
  4814. .item-complex.active .item-content.item-assertive,
  4815. .item-complex.activated .item-content.item-assertive,
  4816. .item .item-content.active.item-assertive,
  4817. .item .item-content.activated.item-assertive {
  4818. border-color: #e42112;
  4819. background-color: #e42112; }
  4820. .item.active.item-assertive.item-complex > .item-content,
  4821. .item.activated.item-assertive.item-complex > .item-content,
  4822. .item-complex.active .item-content.item-assertive.item-complex > .item-content,
  4823. .item-complex.activated .item-content.item-assertive.item-complex > .item-content,
  4824. .item .item-content.active.item-assertive.item-complex > .item-content,
  4825. .item .item-content.activated.item-assertive.item-complex > .item-content {
  4826. border-color: #e42112;
  4827. background-color: #e42112; }
  4828. .item.active.item-balanced,
  4829. .item.activated.item-balanced,
  4830. .item-complex.active .item-content.item-balanced,
  4831. .item-complex.activated .item-content.item-balanced,
  4832. .item .item-content.active.item-balanced,
  4833. .item .item-content.activated.item-balanced {
  4834. border-color: #28a54c;
  4835. background-color: #28a54c; }
  4836. .item.active.item-balanced.item-complex > .item-content,
  4837. .item.activated.item-balanced.item-complex > .item-content,
  4838. .item-complex.active .item-content.item-balanced.item-complex > .item-content,
  4839. .item-complex.activated .item-content.item-balanced.item-complex > .item-content,
  4840. .item .item-content.active.item-balanced.item-complex > .item-content,
  4841. .item .item-content.activated.item-balanced.item-complex > .item-content {
  4842. border-color: #28a54c;
  4843. background-color: #28a54c; }
  4844. .item.active.item-energized,
  4845. .item.activated.item-energized,
  4846. .item-complex.active .item-content.item-energized,
  4847. .item-complex.activated .item-content.item-energized,
  4848. .item .item-content.active.item-energized,
  4849. .item .item-content.activated.item-energized {
  4850. border-color: #e6b500;
  4851. background-color: #e6b500; }
  4852. .item.active.item-energized.item-complex > .item-content,
  4853. .item.activated.item-energized.item-complex > .item-content,
  4854. .item-complex.active .item-content.item-energized.item-complex > .item-content,
  4855. .item-complex.activated .item-content.item-energized.item-complex > .item-content,
  4856. .item .item-content.active.item-energized.item-complex > .item-content,
  4857. .item .item-content.activated.item-energized.item-complex > .item-content {
  4858. border-color: #e6b500;
  4859. background-color: #e6b500; }
  4860. .item.active.item-royal,
  4861. .item.activated.item-royal,
  4862. .item-complex.active .item-content.item-royal,
  4863. .item-complex.activated .item-content.item-royal,
  4864. .item .item-content.active.item-royal,
  4865. .item .item-content.activated.item-royal {
  4866. border-color: #6b46e5;
  4867. background-color: #6b46e5; }
  4868. .item.active.item-royal.item-complex > .item-content,
  4869. .item.activated.item-royal.item-complex > .item-content,
  4870. .item-complex.active .item-content.item-royal.item-complex > .item-content,
  4871. .item-complex.activated .item-content.item-royal.item-complex > .item-content,
  4872. .item .item-content.active.item-royal.item-complex > .item-content,
  4873. .item .item-content.activated.item-royal.item-complex > .item-content {
  4874. border-color: #6b46e5;
  4875. background-color: #6b46e5; }
  4876. .item.active.item-dark,
  4877. .item.activated.item-dark,
  4878. .item-complex.active .item-content.item-dark,
  4879. .item-complex.activated .item-content.item-dark,
  4880. .item .item-content.active.item-dark,
  4881. .item .item-content.activated.item-dark {
  4882. border-color: #000;
  4883. background-color: #262626; }
  4884. .item.active.item-dark.item-complex > .item-content,
  4885. .item.activated.item-dark.item-complex > .item-content,
  4886. .item-complex.active .item-content.item-dark.item-complex > .item-content,
  4887. .item-complex.activated .item-content.item-dark.item-complex > .item-content,
  4888. .item .item-content.active.item-dark.item-complex > .item-content,
  4889. .item .item-content.activated.item-dark.item-complex > .item-content {
  4890. border-color: #000;
  4891. background-color: #262626; }
  4892. .item,
  4893. .item h1,
  4894. .item h2,
  4895. .item h3,
  4896. .item h4,
  4897. .item h5,
  4898. .item h6,
  4899. .item p,
  4900. .item-content,
  4901. .item-content h1,
  4902. .item-content h2,
  4903. .item-content h3,
  4904. .item-content h4,
  4905. .item-content h5,
  4906. .item-content h6,
  4907. .item-content p {
  4908. overflow: hidden;
  4909. text-overflow: ellipsis;
  4910. white-space: nowrap;
  4911. }
  4912. a.item {
  4913. color: inherit;
  4914. text-decoration: none; }
  4915. a.item:hover, a.item:focus {
  4916. text-decoration: none; }
  4917. /**
  4918. * Complex Items
  4919. * --------------------------------------------------
  4920. * Adding .item-complex allows the .item to be slidable and
  4921. * have options underneath the button, but also requires an
  4922. * additional .item-content element inside .item.
  4923. * Basically .item-complex removes any default settings which
  4924. * .item added, so that .item-content looks them as just .item.
  4925. */
  4926. .item-complex,
  4927. a.item.item-complex,
  4928. button.item.item-complex {
  4929. padding: 0; }
  4930. .item-complex .item-content,
  4931. .item-radio .item-content {
  4932. position: relative;
  4933. z-index: 2;
  4934. padding: 16px 49px 16px 16px;
  4935. border: none;
  4936. background-color: #fff; }
  4937. a.item-content {
  4938. display: block;
  4939. color: inherit;
  4940. text-decoration: none; }
  4941. .item-text-wrap .item,
  4942. .item-text-wrap .item-content,
  4943. .item-text-wrap,
  4944. .item-text-wrap h1,
  4945. .item-text-wrap h2,
  4946. .item-text-wrap h3,
  4947. .item-text-wrap h4,
  4948. .item-text-wrap h5,
  4949. .item-text-wrap h6,
  4950. .item-text-wrap p,
  4951. .item-complex.item-text-wrap .item-content,
  4952. .item-body h1,
  4953. .item-body h2,
  4954. .item-body h3,
  4955. .item-body h4,
  4956. .item-body h5,
  4957. .item-body h6,
  4958. .item-body p {
  4959. overflow: visible;
  4960. white-space: normal; }
  4961. .item-complex.item-text-wrap,
  4962. .item-complex.item-text-wrap h1,
  4963. .item-complex.item-text-wrap h2,
  4964. .item-complex.item-text-wrap h3,
  4965. .item-complex.item-text-wrap h4,
  4966. .item-complex.item-text-wrap h5,
  4967. .item-complex.item-text-wrap h6,
  4968. .item-complex.item-text-wrap p {
  4969. overflow: visible;
  4970. white-space: normal; }
  4971. .item-complex.item-light > .item-content {
  4972. border-color: #ddd;
  4973. background-color: #fff;
  4974. color: #444; }
  4975. .item-complex.item-light > .item-content.active, .item-complex.item-light > .item-content:active {
  4976. border-color: #ccc;
  4977. background-color: #fafafa; }
  4978. .item-complex.item-light > .item-content.active.item-complex > .item-content, .item-complex.item-light > .item-content:active.item-complex > .item-content {
  4979. border-color: #ccc;
  4980. background-color: #fafafa; }
  4981. .item-complex.item-stable > .item-content {
  4982. border-color: #b2b2b2;
  4983. background-color: #f8f8f8;
  4984. color: #444; }
  4985. .item-complex.item-stable > .item-content.active, .item-complex.item-stable > .item-content:active {
  4986. border-color: #a2a2a2;
  4987. background-color: #e5e5e5; }
  4988. .item-complex.item-stable > .item-content.active.item-complex > .item-content, .item-complex.item-stable > .item-content:active.item-complex > .item-content {
  4989. border-color: #a2a2a2;
  4990. background-color: #e5e5e5; }
  4991. .item-complex.item-positive > .item-content {
  4992. border-color: #0c60ee;
  4993. background-color: #387ef5;
  4994. color: #fff; }
  4995. .item-complex.item-positive > .item-content.active, .item-complex.item-positive > .item-content:active {
  4996. border-color: #0c60ee;
  4997. background-color: #0c60ee; }
  4998. .item-complex.item-positive > .item-content.active.item-complex > .item-content, .item-complex.item-positive > .item-content:active.item-complex > .item-content {
  4999. border-color: #0c60ee;
  5000. background-color: #0c60ee; }
  5001. .item-complex.item-calm > .item-content {
  5002. border-color: #00C3DA;
  5003. background-color: #00C3DA;
  5004. color: #fff; }
  5005. .item-complex.item-calm > .item-content.active, .item-complex.item-calm > .item-content:active {
  5006. border-color: #00C3DA;
  5007. background-color: #00C3DA; }
  5008. .item-complex.item-calm > .item-content.active.item-complex > .item-content, .item-complex.item-calm > .item-content:active.item-complex > .item-content {
  5009. border-color: #00C3DA;
  5010. background-color: #00C3DA; }
  5011. .item-complex.item-assertive > .item-content {
  5012. border-color: #e42112;
  5013. background-color: #ef473a;
  5014. color: #fff; }
  5015. .item-complex.item-assertive > .item-content.active, .item-complex.item-assertive > .item-content:active {
  5016. border-color: #e42112;
  5017. background-color: #e42112; }
  5018. .item-complex.item-assertive > .item-content.active.item-complex > .item-content, .item-complex.item-assertive > .item-content:active.item-complex > .item-content {
  5019. border-color: #e42112;
  5020. background-color: #e42112; }
  5021. .item-complex.item-balanced > .item-content {
  5022. border-color: #28a54c;
  5023. background-color: #33cd5f;
  5024. color: #fff; }
  5025. .item-complex.item-balanced > .item-content.active, .item-complex.item-balanced > .item-content:active {
  5026. border-color: #28a54c;
  5027. background-color: #28a54c; }
  5028. .item-complex.item-balanced > .item-content.active.item-complex > .item-content, .item-complex.item-balanced > .item-content:active.item-complex > .item-content {
  5029. border-color: #28a54c;
  5030. background-color: #28a54c; }
  5031. .item-complex.item-energized > .item-content {
  5032. border-color: #e6b500;
  5033. background-color: #ffc900;
  5034. color: #fff; }
  5035. .item-complex.item-energized > .item-content.active, .item-complex.item-energized > .item-content:active {
  5036. border-color: #e6b500;
  5037. background-color: #e6b500; }
  5038. .item-complex.item-energized > .item-content.active.item-complex > .item-content, .item-complex.item-energized > .item-content:active.item-complex > .item-content {
  5039. border-color: #e6b500;
  5040. background-color: #e6b500; }
  5041. .item-complex.item-royal > .item-content {
  5042. border-color: #6b46e5;
  5043. background-color: #886aea;
  5044. color: #fff; }
  5045. .item-complex.item-royal > .item-content.active, .item-complex.item-royal > .item-content:active {
  5046. border-color: #6b46e5;
  5047. background-color: #6b46e5; }
  5048. .item-complex.item-royal > .item-content.active.item-complex > .item-content, .item-complex.item-royal > .item-content:active.item-complex > .item-content {
  5049. border-color: #6b46e5;
  5050. background-color: #6b46e5; }
  5051. .item-complex.item-dark > .item-content {
  5052. border-color: #111;
  5053. background-color: #444;
  5054. color: #fff; }
  5055. .item-complex.item-dark > .item-content.active, .item-complex.item-dark > .item-content:active {
  5056. border-color: #000;
  5057. background-color: #262626; }
  5058. .item-complex.item-dark > .item-content.active.item-complex > .item-content, .item-complex.item-dark > .item-content:active.item-complex > .item-content {
  5059. border-color: #000;
  5060. background-color: #262626; }
  5061. /**
  5062. * Item Icons
  5063. * --------------------------------------------------
  5064. */
  5065. .item-icon-left .icon,
  5066. .item-icon-right .icon {
  5067. display: -webkit-box;
  5068. display: -webkit-flex;
  5069. display: -moz-box;
  5070. display: -moz-flex;
  5071. display: -ms-flexbox;
  5072. display: flex;
  5073. -webkit-box-align: center;
  5074. -ms-flex-align: center;
  5075. -webkit-align-items: center;
  5076. -moz-align-items: center;
  5077. align-items: center;
  5078. position: absolute;
  5079. top: 0;
  5080. height: 100%;
  5081. font-size: 32px; }
  5082. .item-icon-left .icon:before,
  5083. .item-icon-right .icon:before {
  5084. display: block;
  5085. width: 32px;
  5086. text-align: center; }
  5087. .item .fill-icon {
  5088. min-width: 30px;
  5089. min-height: 30px;
  5090. font-size: 28px; }
  5091. .item-icon-left {
  5092. padding-left: 54px; }
  5093. .item-icon-left .icon {
  5094. left: 11px; }
  5095. .item-complex.item-icon-left {
  5096. padding-left: 0; }
  5097. .item-complex.item-icon-left .item-content {
  5098. padding-left: 54px; }
  5099. .item-icon-right {
  5100. padding-right: 54px; }
  5101. .item-icon-right .icon {
  5102. right: 11px; }
  5103. .item-complex.item-icon-right {
  5104. padding-right: 0; }
  5105. .item-complex.item-icon-right .item-content {
  5106. padding-right: 54px; }
  5107. .item-icon-left.item-icon-right .icon:first-child {
  5108. right: auto; }
  5109. .item-icon-left.item-icon-right .icon:last-child,
  5110. .item-icon-left .item-delete .icon {
  5111. left: auto; }
  5112. .item-icon-left .icon-accessory,
  5113. .item-icon-right .icon-accessory {
  5114. color: #ccc;
  5115. font-size: 16px; }
  5116. .item-icon-left .icon-accessory {
  5117. left: 3px; }
  5118. .item-icon-right .icon-accessory {
  5119. right: 3px; }
  5120. /**
  5121. * Item Button
  5122. * --------------------------------------------------
  5123. * An item button is a child button inside an .item (not the entire .item)
  5124. */
  5125. .item-button-left {
  5126. padding-left: 72px; }
  5127. .item-button-left > .button,
  5128. .item-button-left .item-content > .button {
  5129. display: -webkit-box;
  5130. display: -webkit-flex;
  5131. display: -moz-box;
  5132. display: -moz-flex;
  5133. display: -ms-flexbox;
  5134. display: flex;
  5135. -webkit-box-align: center;
  5136. -ms-flex-align: center;
  5137. -webkit-align-items: center;
  5138. -moz-align-items: center;
  5139. align-items: center;
  5140. position: absolute;
  5141. top: 8px;
  5142. left: 11px;
  5143. min-width: 34px;
  5144. min-height: 34px;
  5145. font-size: 18px;
  5146. line-height: 32px; }
  5147. .item-button-left > .button .icon:before,
  5148. .item-button-left .item-content > .button .icon:before {
  5149. position: relative;
  5150. left: auto;
  5151. width: auto;
  5152. line-height: 31px; }
  5153. .item-button-left > .button > .button,
  5154. .item-button-left .item-content > .button > .button {
  5155. margin: 0px 2px;
  5156. min-height: 34px;
  5157. font-size: 18px;
  5158. line-height: 32px; }
  5159. .item-button-right,
  5160. a.item.item-button-right,
  5161. button.item.item-button-right {
  5162. padding-right: 80px; }
  5163. .item-button-right > .button,
  5164. .item-button-right .item-content > .button,
  5165. .item-button-right > .buttons,
  5166. .item-button-right .item-content > .buttons {
  5167. display: -webkit-box;
  5168. display: -webkit-flex;
  5169. display: -moz-box;
  5170. display: -moz-flex;
  5171. display: -ms-flexbox;
  5172. display: flex;
  5173. -webkit-box-align: center;
  5174. -ms-flex-align: center;
  5175. -webkit-align-items: center;
  5176. -moz-align-items: center;
  5177. align-items: center;
  5178. position: absolute;
  5179. top: 8px;
  5180. right: 16px;
  5181. min-width: 34px;
  5182. min-height: 34px;
  5183. font-size: 18px;
  5184. line-height: 32px; }
  5185. .item-button-right > .button .icon:before,
  5186. .item-button-right .item-content > .button .icon:before,
  5187. .item-button-right > .buttons .icon:before,
  5188. .item-button-right .item-content > .buttons .icon:before {
  5189. position: relative;
  5190. left: auto;
  5191. width: auto;
  5192. line-height: 31px; }
  5193. .item-button-right > .button > .button,
  5194. .item-button-right .item-content > .button > .button,
  5195. .item-button-right > .buttons > .button,
  5196. .item-button-right .item-content > .buttons > .button {
  5197. margin: 0px 2px;
  5198. min-width: 34px;
  5199. min-height: 34px;
  5200. font-size: 18px;
  5201. line-height: 32px; }
  5202. .item-avatar,
  5203. .item-avatar .item-content,
  5204. .item-avatar-left,
  5205. .item-avatar-left .item-content {
  5206. padding-left: 72px;
  5207. min-height: 72px; }
  5208. .item-avatar > img:first-child,
  5209. .item-avatar .item-image,
  5210. .item-avatar .item-content > img:first-child,
  5211. .item-avatar .item-content .item-image,
  5212. .item-avatar-left > img:first-child,
  5213. .item-avatar-left .item-image,
  5214. .item-avatar-left .item-content > img:first-child,
  5215. .item-avatar-left .item-content .item-image {
  5216. position: absolute;
  5217. top: 16px;
  5218. left: 16px;
  5219. max-width: 40px;
  5220. max-height: 40px;
  5221. width: 100%;
  5222. height: 100%;
  5223. border-radius: 50%; }
  5224. .item-avatar-right,
  5225. .item-avatar-right .item-content {
  5226. padding-right: 72px;
  5227. min-height: 72px; }
  5228. .item-avatar-right > img:first-child,
  5229. .item-avatar-right .item-image,
  5230. .item-avatar-right .item-content > img:first-child,
  5231. .item-avatar-right .item-content .item-image {
  5232. position: absolute;
  5233. top: 16px;
  5234. right: 16px;
  5235. max-width: 40px;
  5236. max-height: 40px;
  5237. width: 100%;
  5238. height: 100%;
  5239. border-radius: 50%; }
  5240. .item-thumbnail-left,
  5241. .item-thumbnail-left .item-content {
  5242. padding-top: 8px;
  5243. padding-left: 106px;
  5244. /*min-height: 100px; */
  5245. }
  5246. .item-thumbnail-left > img:first-child,
  5247. .item-thumbnail-left .item-image,
  5248. .item-thumbnail-left .item-content > img:first-child,
  5249. .item-thumbnail-left .item-content .item-image {
  5250. position: absolute;
  5251. top: 10px;
  5252. left: 10px;
  5253. max-width: 70px;
  5254. max-height: 70px;
  5255. width: 100%;
  5256. height: 100%; }
  5257. .item-avatar.item-complex,
  5258. .item-avatar-left.item-complex,
  5259. .item-thumbnail-left.item-complex {
  5260. padding-top: 0;
  5261. padding-left: 0; }
  5262. .item-thumbnail-right,
  5263. .item-thumbnail-right .item-content {
  5264. padding-top: 8px;
  5265. padding-right: 106px;
  5266. min-height: 100px; }
  5267. .item-thumbnail-right > img:first-child,
  5268. .item-thumbnail-right .item-image,
  5269. .item-thumbnail-right .item-content > img:first-child,
  5270. .item-thumbnail-right .item-content .item-image {
  5271. position: absolute;
  5272. top: 10px;
  5273. right: 10px;
  5274. max-width: 80px;
  5275. max-height: 80px;
  5276. width: 100%;
  5277. height: 100%; }
  5278. .item-avatar-right.item-complex,
  5279. .item-thumbnail-right.item-complex {
  5280. padding-top: 0;
  5281. padding-right: 0; }
  5282. .item-image {
  5283. padding: 0;
  5284. text-align: center; }
  5285. .item-image img:first-child, .item-image .list-img {
  5286. width: 100%;
  5287. vertical-align: middle; }
  5288. .item-body {
  5289. overflow: auto;
  5290. padding: 16px;
  5291. text-overflow: inherit;
  5292. white-space: normal; }
  5293. .item-body h1, .item-body h2, .item-body h3, .item-body h4, .item-body h5, .item-body h6, .item-body p {
  5294. margin-top: 16px;
  5295. margin-bottom: 16px; }
  5296. .item-divider {
  5297. padding-top: 8px;
  5298. padding-bottom: 8px;
  5299. min-height: 30px;
  5300. background-color: #f5f5f5;
  5301. color: #222;
  5302. font-weight: 500; }
  5303. .platform-ios .item-divider-platform,
  5304. .item-divider-ios {
  5305. padding-top: 26px;
  5306. text-transform: uppercase;
  5307. font-weight: 300;
  5308. font-size: 13px;
  5309. background-color: #efeff4;
  5310. color: #555; }
  5311. .platform-android .item-divider-platform,
  5312. .item-divider-android {
  5313. font-weight: 300;
  5314. font-size: 13px; }
  5315. .item-note {
  5316. float: right;
  5317. color: #aaa;
  5318. font-size: 14px; }
  5319. .item-left-editable .item-content,
  5320. .item-right-editable .item-content {
  5321. -webkit-transition-duration: 250ms;
  5322. transition-duration: 250ms;
  5323. -webkit-transition-timing-function: ease-in-out;
  5324. transition-timing-function: ease-in-out;
  5325. -webkit-transition-property: -webkit-transform;
  5326. -moz-transition-property: -moz-transform;
  5327. transition-property: transform; }
  5328. .list-left-editing .item-left-editable .item-content,
  5329. .item-left-editing.item-left-editable .item-content {
  5330. -webkit-transform: translate3d(50px, 0, 0);
  5331. transform: translate3d(50px, 0, 0); }
  5332. .item-remove-animate.ng-leave {
  5333. -webkit-transition-duration: 300ms;
  5334. transition-duration: 300ms; }
  5335. .item-remove-animate.ng-leave .item-content, .item-remove-animate.ng-leave:last-of-type {
  5336. -webkit-transition-duration: 300ms;
  5337. transition-duration: 300ms;
  5338. -webkit-transition-timing-function: ease-in;
  5339. transition-timing-function: ease-in;
  5340. -webkit-transition-property: all;
  5341. transition-property: all; }
  5342. .item-remove-animate.ng-leave.ng-leave-active .item-content {
  5343. opacity: 0;
  5344. -webkit-transform: translate3d(-100%, 0, 0) !important;
  5345. transform: translate3d(-100%, 0, 0) !important; }
  5346. .item-remove-animate.ng-leave.ng-leave-active:last-of-type {
  5347. opacity: 0; }
  5348. .item-remove-animate.ng-leave.ng-leave-active ~ ion-item:not(.ng-leave) {
  5349. -webkit-transform: translate3d(0, -webkit-calc(-100% + 1px), 0);
  5350. transform: translate3d(0, calc(-100% + 1px), 0);
  5351. -webkit-transition-duration: 300ms;
  5352. transition-duration: 300ms;
  5353. -webkit-transition-timing-function: cubic-bezier(0.25, 0.81, 0.24, 1);
  5354. transition-timing-function: cubic-bezier(0.25, 0.81, 0.24, 1);
  5355. -webkit-transition-property: all;
  5356. transition-property: all; }
  5357. .item-left-edit {
  5358. -webkit-transition: all ease-in-out 125ms;
  5359. transition: all ease-in-out 125ms;
  5360. position: absolute;
  5361. top: 0;
  5362. left: 0;
  5363. z-index: 0;
  5364. width: 50px;
  5365. height: 100%;
  5366. line-height: 100%;
  5367. display: none;
  5368. opacity: 0;
  5369. -webkit-transform: translate3d(-21px, 0, 0);
  5370. transform: translate3d(-21px, 0, 0); }
  5371. .item-left-edit .button {
  5372. height: 100%; }
  5373. .item-left-edit .button.icon {
  5374. display: -webkit-box;
  5375. display: -webkit-flex;
  5376. display: -moz-box;
  5377. display: -moz-flex;
  5378. display: -ms-flexbox;
  5379. display: flex;
  5380. -webkit-box-align: center;
  5381. -ms-flex-align: center;
  5382. -webkit-align-items: center;
  5383. -moz-align-items: center;
  5384. align-items: center;
  5385. position: absolute;
  5386. top: 0;
  5387. height: 100%; }
  5388. .item-left-edit.visible {
  5389. display: block; }
  5390. .item-left-edit.visible.active {
  5391. opacity: 1;
  5392. -webkit-transform: translate3d(8px, 0, 0);
  5393. transform: translate3d(8px, 0, 0); }
  5394. .list-left-editing .item-left-edit {
  5395. -webkit-transition-delay: 125ms;
  5396. transition-delay: 125ms; }
  5397. .item-delete .button.icon {
  5398. color: #ef473a;
  5399. font-size: 24px; }
  5400. .item-delete .button.icon:hover {
  5401. opacity: .7; }
  5402. .item-right-edit {
  5403. -webkit-transition: all ease-in-out 250ms;
  5404. transition: all ease-in-out 250ms;
  5405. position: absolute;
  5406. top: 0;
  5407. right: 0;
  5408. z-index: 3;
  5409. width: 75px;
  5410. height: 100%;
  5411. background: inherit;
  5412. padding-left: 20px;
  5413. display: block;
  5414. opacity: 0;
  5415. -webkit-transform: translate3d(75px, 0, 0);
  5416. transform: translate3d(75px, 0, 0); }
  5417. .item-right-edit .button {
  5418. min-width: 50px;
  5419. height: 100%; }
  5420. .item-right-edit .button.icon {
  5421. display: -webkit-box;
  5422. display: -webkit-flex;
  5423. display: -moz-box;
  5424. display: -moz-flex;
  5425. display: -ms-flexbox;
  5426. display: flex;
  5427. -webkit-box-align: center;
  5428. -ms-flex-align: center;
  5429. -webkit-align-items: center;
  5430. -moz-align-items: center;
  5431. align-items: center;
  5432. position: absolute;
  5433. top: 0;
  5434. height: 100%;
  5435. font-size: 32px; }
  5436. .item-right-edit.visible {
  5437. display: block; }
  5438. .item-right-edit.visible.active {
  5439. opacity: 1;
  5440. -webkit-transform: translate3d(0, 0, 0);
  5441. transform: translate3d(0, 0, 0); }
  5442. .item-reorder .button.icon {
  5443. color: #444;
  5444. font-size: 32px; }
  5445. .item-reordering {
  5446. position: absolute;
  5447. left: 0;
  5448. top: 0;
  5449. z-index: 9;
  5450. width: 100%;
  5451. box-shadow: 0px 0px 10px 0px #aaa; }
  5452. .item-reordering .item-reorder {
  5453. z-index: 9; }
  5454. .item-placeholder {
  5455. opacity: 0.7; }
  5456. /**
  5457. * The hidden right-side buttons that can be exposed under a list item
  5458. * with dragging.
  5459. */
  5460. .item-options {
  5461. position: absolute;
  5462. top: 0;
  5463. right: 0;
  5464. z-index: 1;
  5465. height: 100%; }
  5466. .item-options .button {
  5467. height: 100%;
  5468. border: none;
  5469. border-radius: 0;
  5470. display: -webkit-inline-box;
  5471. display: -webkit-inline-flex;
  5472. display: -moz-inline-flex;
  5473. display: -ms-inline-flexbox;
  5474. display: inline-flex;
  5475. -webkit-box-align: center;
  5476. -ms-flex-align: center;
  5477. -webkit-align-items: center;
  5478. -moz-align-items: center;
  5479. align-items: center; }
  5480. .item-options .button:before {
  5481. margin: 0 auto; }
  5482. /**
  5483. * Lists
  5484. * --------------------------------------------------
  5485. */
  5486. .list {
  5487. position: relative;
  5488. padding-top: 1px;
  5489. padding-bottom: 1px;
  5490. padding-left: 0;
  5491. color: #000;
  5492. margin-bottom: 20px; }
  5493. .list:last-child {
  5494. margin-bottom: 0px; }
  5495. .list:last-child.card {
  5496. margin-bottom: 40px; }
  5497. /**
  5498. * List Header
  5499. * --------------------------------------------------
  5500. */
  5501. .list-header {
  5502. margin-top: 20px;
  5503. padding: 5px 15px;
  5504. background-color: transparent;
  5505. color: #222;
  5506. font-weight: bold; }
  5507. .card.list .list-item {
  5508. padding-right: 1px;
  5509. padding-left: 1px; }
  5510. /**
  5511. * Cards and Inset Lists
  5512. * --------------------------------------------------
  5513. * A card and list-inset are close to the same thing, except a card as a box shadow.
  5514. */
  5515. .card,
  5516. .list-inset {
  5517. overflow: hidden;
  5518. margin: 20px 10px;
  5519. border-radius: 2px;
  5520. background-color: #fff; }
  5521. .card {
  5522. padding-top: 1px;
  5523. padding-bottom: 1px;
  5524. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
  5525. .card .item {
  5526. border-left: 0;
  5527. border-right: 0; }
  5528. .card .item:first-child {
  5529. border-top: 0; }
  5530. .card .item:last-child {
  5531. border-bottom: 0; }
  5532. .padding .card, .padding .list-inset {
  5533. margin-left: 0;
  5534. margin-right: 0; }
  5535. .card .item:first-child,
  5536. .list-inset .item:first-child,
  5537. .padding > .list .item:first-child {
  5538. border-radius: 2px;}
  5539. .card .item:first-child .item-content,
  5540. .list-inset .item:first-child .item-content,
  5541. .padding > .list .item:first-child .item-content {
  5542. border-top-left-radius: 2px;
  5543. border-top-right-radius: 2px; }
  5544. .card .item:last-child,
  5545. .list-inset .item:last-child,
  5546. .padding > .list .item:last-child {
  5547. border-bottom-right-radius: 2px;
  5548. border-bottom-left-radius: 2px; }
  5549. .card .item:last-child .item-content,
  5550. .list-inset .item:last-child .item-content,
  5551. .padding > .list .item:last-child .item-content {
  5552. border-bottom-right-radius: 2px;
  5553. border-bottom-left-radius: 2px; }
  5554. .card .item:last-child,
  5555. .list-inset .item:last-child {
  5556. margin-bottom: -1px; }
  5557. .card .item,
  5558. .list-inset .item,
  5559. .padding > .list .item,
  5560. .padding-horizontal > .list .item {
  5561. margin-right: 0;
  5562. margin-left: 0; }
  5563. .card .item.item-input input,
  5564. .list-inset .item.item-input input,
  5565. .padding > .list .item.item-input input,
  5566. .padding-horizontal > .list .item.item-input input {
  5567. padding-right: 44px; }
  5568. .padding-left > .list .item {
  5569. margin-left: 0; }
  5570. .padding-right > .list .item {
  5571. margin-right: 0; }
  5572. /**
  5573. * Badges
  5574. * --------------------------------------------------
  5575. */
  5576. .badge {
  5577. background-color: transparent;
  5578. color: #AAAAAA;
  5579. z-index: 1;
  5580. display: inline-block;
  5581. padding: 3px 8px;
  5582. min-width: 10px;
  5583. border-radius: 10px;
  5584. vertical-align: baseline;
  5585. text-align: center;
  5586. white-space: nowrap;
  5587. font-weight: bold;
  5588. font-size: 14px;
  5589. line-height: 16px; }
  5590. .badge:empty {
  5591. display: none; }
  5592. .tabs .tab-item .badge.badge-light,
  5593. .badge.badge-light {
  5594. background-color: #fff;
  5595. color: #444; }
  5596. .tabs .tab-item .badge.badge-stable,
  5597. .badge.badge-stable {
  5598. background-color: #f8f8f8;
  5599. color: #444; }
  5600. .tabs .tab-item .badge.badge-positive,
  5601. .badge.badge-positive {
  5602. background-color: #387ef5;
  5603. color: #fff; }
  5604. .tabs .tab-item .badge.badge-calm,
  5605. .badge.badge-calm {
  5606. background-color: #00C3DA;
  5607. color: #fff; }
  5608. .tabs .tab-item .badge.badge-assertive,
  5609. .badge.badge-assertive {
  5610. background-color: #ef473a;
  5611. color: #fff; }
  5612. .tabs .tab-item .badge.badge-balanced,
  5613. .badge.badge-balanced {
  5614. background-color: #33cd5f;
  5615. color: #fff; }
  5616. .tabs .tab-item .badge.badge-energized,
  5617. .badge.badge-energized {
  5618. background-color: #ffc900;
  5619. color: #fff; }
  5620. .tabs .tab-item .badge.badge-royal,
  5621. .badge.badge-royal {
  5622. background-color: #886aea;
  5623. color: #fff; }
  5624. .tabs .tab-item .badge.badge-dark,
  5625. .badge.badge-dark {
  5626. background-color: #444;
  5627. color: #fff; }
  5628. .button .badge {
  5629. position: relative;
  5630. top: -1px; }
  5631. /**
  5632. * Slide Box
  5633. * --------------------------------------------------
  5634. */
  5635. .slider {
  5636. position: relative;
  5637. visibility: hidden;
  5638. overflow: hidden; }
  5639. .slider-slides {
  5640. position: relative;
  5641. height: 100%; }
  5642. .slider-slide {
  5643. position: relative;
  5644. display: block;
  5645. float: left;
  5646. width: 100%;
  5647. height: 100%;
  5648. vertical-align: top; }
  5649. .slider-slide-image > img {
  5650. width: 100%; }
  5651. .slider-pager {
  5652. position: absolute;
  5653. bottom: 20px;
  5654. z-index: 1;
  5655. width: 100%;
  5656. height: 15px;
  5657. text-align: center; }
  5658. .slider-pager .slider-pager-page {
  5659. display: inline-block;
  5660. margin: 0px 3px;
  5661. width: 15px;
  5662. color: #000;
  5663. text-decoration: none;
  5664. opacity: 0.3; }
  5665. .slider-pager .slider-pager-page.active {
  5666. -webkit-transition: opacity 0.4s ease-in;
  5667. transition: opacity 0.4s ease-in;
  5668. opacity: 1; }
  5669. .slider-slide.ng-enter, .slider-slide.ng-leave, .slider-slide.ng-animate,
  5670. .slider-pager-page.ng-enter,
  5671. .slider-pager-page.ng-leave,
  5672. .slider-pager-page.ng-animate {
  5673. -webkit-transition: none !important;
  5674. transition: none !important; }
  5675. .slider-slide.ng-animate,
  5676. .slider-pager-page.ng-animate {
  5677. -webkit-animation: none 0s;
  5678. animation: none 0s; }
  5679. /**
  5680. * Swiper 3.2.7
  5681. * Most modern mobile touch slider and framework with hardware accelerated transitions
  5682. *
  5683. * http://www.idangero.us/swiper/
  5684. *
  5685. * Copyright 2015, Vladimir Kharlampidi
  5686. * The iDangero.us
  5687. * http://www.idangero.us/
  5688. *
  5689. * Licensed under MIT
  5690. *
  5691. * Released on: December 7, 2015
  5692. */
  5693. .swiper-container {
  5694. margin: 0 auto;
  5695. position: relative;
  5696. overflow: hidden;
  5697. /* Fix of Webkit flickering */
  5698. z-index: 1; }
  5699. .swiper-container-no-flexbox .swiper-slide {
  5700. float: left; }
  5701. .swiper-container-vertical > .swiper-wrapper {
  5702. -webkit-box-orient: vertical;
  5703. -moz-box-orient: vertical;
  5704. -ms-flex-direction: column;
  5705. -webkit-flex-direction: column;
  5706. flex-direction: column; }
  5707. .swiper-wrapper {
  5708. position: relative;
  5709. width: 100%;
  5710. /*height: 100%;*/
  5711. z-index: 1;
  5712. display: -webkit-box;
  5713. display: -moz-box;
  5714. display: -ms-flexbox;
  5715. display: -webkit-flex;
  5716. display: flex;
  5717. -webkit-transition-property: -webkit-transform;
  5718. -moz-transition-property: -moz-transform;
  5719. -o-transition-property: -o-transform;
  5720. -ms-transition-property: -ms-transform;
  5721. transition-property: transform;
  5722. -webkit-box-sizing: content-box;
  5723. -moz-box-sizing: content-box;
  5724. box-sizing: content-box; }
  5725. .swiper-container-android .swiper-slide,
  5726. .swiper-wrapper {
  5727. -webkit-transform: translate3d(0px, 0, 0);
  5728. -moz-transform: translate3d(0px, 0, 0);
  5729. -o-transform: translate(0px, 0px);
  5730. -ms-transform: translate3d(0px, 0, 0);
  5731. transform: translate3d(0px, 0, 0); }
  5732. .swiper-container-multirow > .swiper-wrapper {
  5733. -webkit-box-lines: multiple;
  5734. -moz-box-lines: multiple;
  5735. -ms-flex-wrap: wrap;
  5736. -webkit-flex-wrap: wrap;
  5737. flex-wrap: wrap; }
  5738. .swiper-container-free-mode > .swiper-wrapper {
  5739. -webkit-transition-timing-function: ease-out;
  5740. -moz-transition-timing-function: ease-out;
  5741. -ms-transition-timing-function: ease-out;
  5742. -o-transition-timing-function: ease-out;
  5743. transition-timing-function: ease-out;
  5744. margin: 0 auto; }
  5745. .swiper-slide {
  5746. display: block;
  5747. -webkit-flex-shrink: 0;
  5748. -ms-flex: 0 0 auto;
  5749. flex-shrink: 0;
  5750. width: 100%;
  5751. height: 100%;
  5752. position: relative; }
  5753. /* Auto Height */
  5754. .swiper-container-autoheight,
  5755. .swiper-container-autoheight .swiper-slide {
  5756. height: auto; }
  5757. .swiper-container-autoheight .swiper-wrapper {
  5758. -webkit-box-align: start;
  5759. -ms-flex-align: start;
  5760. -webkit-align-items: flex-start;
  5761. align-items: flex-start;
  5762. -webkit-transition-property: -webkit-transform, height;
  5763. -moz-transition-property: -moz-transform;
  5764. -o-transition-property: -o-transform;
  5765. -ms-transition-property: -ms-transform;
  5766. transition-property: transform, height; }
  5767. /* a11y */
  5768. .swiper-container .swiper-notification {
  5769. position: absolute;
  5770. left: 0;
  5771. top: 0;
  5772. pointer-events: none;
  5773. opacity: 0;
  5774. z-index: -1000; }
  5775. /* IE10 Windows Phone 8 Fixes */
  5776. .swiper-wp8-horizontal {
  5777. -ms-touch-action: pan-y;
  5778. touch-action: pan-y; }
  5779. .swiper-wp8-vertical {
  5780. -ms-touch-action: pan-x;
  5781. touch-action: pan-x; }
  5782. /* Arrows */
  5783. .swiper-button-prev,
  5784. .swiper-button-next {
  5785. position: absolute;
  5786. top: 50%;
  5787. width: 27px;
  5788. height: 44px;
  5789. margin-top: -22px;
  5790. z-index: 10;
  5791. cursor: pointer;
  5792. -moz-background-size: 27px 44px;
  5793. -webkit-background-size: 27px 44px;
  5794. background-size: 27px 44px;
  5795. background-position: center;
  5796. background-repeat: no-repeat; }
  5797. .swiper-button-prev.swiper-button-disabled,
  5798. .swiper-button-next.swiper-button-disabled {
  5799. opacity: 0.35;
  5800. cursor: auto;
  5801. pointer-events: none; }
  5802. .swiper-button-prev,
  5803. .swiper-container-rtl .swiper-button-next {
  5804. 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");
  5805. left: 10px;
  5806. right: auto; }
  5807. .swiper-button-prev.swiper-button-black,
  5808. .swiper-container-rtl .swiper-button-next.swiper-button-black {
  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'%23000000'%2F%3E%3C%2Fsvg%3E"); }
  5810. .swiper-button-prev.swiper-button-white,
  5811. .swiper-container-rtl .swiper-button-next.swiper-button-white {
  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'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }
  5813. .swiper-button-next,
  5814. .swiper-container-rtl .swiper-button-prev {
  5815. 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");
  5816. right: 10px;
  5817. left: auto; }
  5818. .swiper-button-next.swiper-button-black,
  5819. .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  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'%23000000'%2F%3E%3C%2Fsvg%3E"); }
  5821. .swiper-button-next.swiper-button-white,
  5822. .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  5823. 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"); }
  5824. /* Pagination Styles */
  5825. .swiper-pagination {
  5826. position: absolute;
  5827. text-align: center;
  5828. -webkit-transition: 300ms;
  5829. -moz-transition: 300ms;
  5830. -o-transition: 300ms;
  5831. transition: 300ms;
  5832. -webkit-transform: translate3d(0, 0, 0);
  5833. -ms-transform: translate3d(0, 0, 0);
  5834. -o-transform: translate3d(0, 0, 0);
  5835. transform: translate3d(0, 0, 0);
  5836. z-index: 10; }
  5837. .swiper-pagination.swiper-pagination-hidden {
  5838. opacity: 0; }
  5839. .swiper-pagination-bullet {
  5840. width: 8px;
  5841. height: 8px;
  5842. display: inline-block;
  5843. border-radius: 100%;
  5844. background: #fff;
  5845. opacity: 0.2; }
  5846. button.swiper-pagination-bullet {
  5847. border: none;
  5848. margin: 0;
  5849. padding: 0;
  5850. box-shadow: none;
  5851. -moz-appearance: none;
  5852. -ms-appearance: none;
  5853. -webkit-appearance: none;
  5854. appearance: none; }
  5855. .swiper-pagination-clickable .swiper-pagination-bullet {
  5856. cursor: pointer; }
  5857. .swiper-pagination-white .swiper-pagination-bullet {
  5858. background: #fff; }
  5859. .swiper-pagination-bullet-active {
  5860. opacity: 1; }
  5861. .swiper-pagination-white .swiper-pagination-bullet-active {
  5862. background: #fff; }
  5863. .swiper-pagination-black .swiper-pagination-bullet-active {
  5864. background: #000; }
  5865. .swiper-container-vertical > .swiper-pagination {
  5866. right: 10px;
  5867. top: 50%;
  5868. -webkit-transform: translate3d(0px, -50%, 0);
  5869. -moz-transform: translate3d(0px, -50%, 0);
  5870. -o-transform: translate(0px, -50%);
  5871. -ms-transform: translate3d(0px, -50%, 0);
  5872. transform: translate3d(0px, -50%, 0); }
  5873. .swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  5874. margin: 5px 0;
  5875. display: block; }
  5876. .swiper-container-horizontal > .swiper-pagination {
  5877. bottom: 10px;
  5878. left: 0;
  5879. width: 100%; }
  5880. .swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  5881. margin: 0 5px; }
  5882. /* 3D Container */
  5883. .swiper-container-3d {
  5884. -webkit-perspective: 1200px;
  5885. -moz-perspective: 1200px;
  5886. -o-perspective: 1200px;
  5887. perspective: 1200px; }
  5888. .swiper-container-3d .swiper-wrapper,
  5889. .swiper-container-3d .swiper-slide,
  5890. .swiper-container-3d .swiper-slide-shadow-left,
  5891. .swiper-container-3d .swiper-slide-shadow-right,
  5892. .swiper-container-3d .swiper-slide-shadow-top,
  5893. .swiper-container-3d .swiper-slide-shadow-bottom,
  5894. .swiper-container-3d .swiper-cube-shadow {
  5895. -webkit-transform-style: preserve-3d;
  5896. -moz-transform-style: preserve-3d;
  5897. -ms-transform-style: preserve-3d;
  5898. transform-style: preserve-3d; }
  5899. .swiper-container-3d .swiper-slide-shadow-left,
  5900. .swiper-container-3d .swiper-slide-shadow-right,
  5901. .swiper-container-3d .swiper-slide-shadow-top,
  5902. .swiper-container-3d .swiper-slide-shadow-bottom {
  5903. position: absolute;
  5904. left: 0;
  5905. top: 0;
  5906. width: 100%;
  5907. height: 100%;
  5908. pointer-events: none;
  5909. z-index: 10; }
  5910. .swiper-container-3d .swiper-slide-shadow-left {
  5911. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5912. /* Safari 4+, Chrome */
  5913. background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5914. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5915. background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5916. /* Firefox 3.6-15 */
  5917. background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  5918. /* Opera 11.10-12.00 */
  5919. background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
  5920. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5921. .swiper-container-3d .swiper-slide-shadow-right {
  5922. background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5923. /* Safari 4+, Chrome */
  5924. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5925. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5926. background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5927. /* Firefox 3.6-15 */
  5928. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  5929. /* Opera 11.10-12.00 */
  5930. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
  5931. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5932. .swiper-container-3d .swiper-slide-shadow-top {
  5933. background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5934. /* Safari 4+, Chrome */
  5935. background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5936. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5937. background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5938. /* Firefox 3.6-15 */
  5939. background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  5940. /* Opera 11.10-12.00 */
  5941. background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  5942. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5943. .swiper-container-3d .swiper-slide-shadow-bottom {
  5944. background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  5945. /* Safari 4+, Chrome */
  5946. background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5947. /* Chrome 10+, Safari 5.1+, iOS 5+ */
  5948. background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5949. /* Firefox 3.6-15 */
  5950. background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  5951. /* Opera 11.10-12.00 */
  5952. background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  5953. /* Firefox 16+, IE10, Opera 12.50+ */ }
  5954. /* Coverflow */
  5955. .swiper-container-coverflow .swiper-wrapper {
  5956. /* Windows 8 IE 10 fix */
  5957. -ms-perspective: 1200px; }
  5958. /* Fade */
  5959. .swiper-container-fade.swiper-container-free-mode .swiper-slide {
  5960. -webkit-transition-timing-function: ease-out;
  5961. -moz-transition-timing-function: ease-out;
  5962. -ms-transition-timing-function: ease-out;
  5963. -o-transition-timing-function: ease-out;
  5964. transition-timing-function: ease-out; }
  5965. .swiper-container-fade .swiper-slide {
  5966. pointer-events: none; }
  5967. .swiper-container-fade .swiper-slide .swiper-slide {
  5968. pointer-events: none; }
  5969. .swiper-container-fade .swiper-slide-active,
  5970. .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  5971. pointer-events: auto; }
  5972. /* Cube */
  5973. .swiper-container-cube {
  5974. overflow: visible; }
  5975. .swiper-container-cube .swiper-slide {
  5976. pointer-events: none;
  5977. visibility: hidden;
  5978. -webkit-transform-origin: 0 0;
  5979. -moz-transform-origin: 0 0;
  5980. -ms-transform-origin: 0 0;
  5981. transform-origin: 0 0;
  5982. -webkit-backface-visibility: hidden;
  5983. -moz-backface-visibility: hidden;
  5984. -ms-backface-visibility: hidden;
  5985. backface-visibility: hidden;
  5986. width: 100%;
  5987. height: 100%;
  5988. z-index: 1; }
  5989. .swiper-container-cube.swiper-container-rtl .swiper-slide {
  5990. -webkit-transform-origin: 100% 0;
  5991. -moz-transform-origin: 100% 0;
  5992. -ms-transform-origin: 100% 0;
  5993. transform-origin: 100% 0; }
  5994. .swiper-container-cube .swiper-slide-active,
  5995. .swiper-container-cube .swiper-slide-next,
  5996. .swiper-container-cube .swiper-slide-prev,
  5997. .swiper-container-cube .swiper-slide-next + .swiper-slide {
  5998. pointer-events: auto;
  5999. visibility: visible; }
  6000. .swiper-container-cube .swiper-slide-shadow-top,
  6001. .swiper-container-cube .swiper-slide-shadow-bottom,
  6002. .swiper-container-cube .swiper-slide-shadow-left,
  6003. .swiper-container-cube .swiper-slide-shadow-right {
  6004. z-index: 0;
  6005. -webkit-backface-visibility: hidden;
  6006. -moz-backface-visibility: hidden;
  6007. -ms-backface-visibility: hidden;
  6008. backface-visibility: hidden; }
  6009. .swiper-container-cube .swiper-cube-shadow {
  6010. position: absolute;
  6011. left: 0;
  6012. bottom: 0px;
  6013. width: 100%;
  6014. height: 100%;
  6015. background: #000;
  6016. opacity: 0.6;
  6017. -webkit-filter: blur(50px);
  6018. filter: blur(50px);
  6019. z-index: 0; }
  6020. /* Scrollbar */
  6021. .swiper-scrollbar {
  6022. border-radius: 10px;
  6023. position: relative;
  6024. -ms-touch-action: none;
  6025. background: rgba(0, 0, 0, 0.1); }
  6026. .swiper-container-horizontal > .swiper-scrollbar {
  6027. position: absolute;
  6028. left: 1%;
  6029. bottom: 3px;
  6030. z-index: 50;
  6031. height: 5px;
  6032. width: 98%; }
  6033. .swiper-container-vertical > .swiper-scrollbar {
  6034. position: absolute;
  6035. right: 3px;
  6036. top: 1%;
  6037. z-index: 50;
  6038. width: 5px;
  6039. height: 98%; }
  6040. .swiper-scrollbar-drag {
  6041. height: 100%;
  6042. width: 100%;
  6043. position: relative;
  6044. background: rgba(0, 0, 0, 0.5);
  6045. border-radius: 10px;
  6046. left: 0;
  6047. top: 0; }
  6048. .swiper-scrollbar-cursor-drag {
  6049. cursor: move; }
  6050. /* Preloader */
  6051. .swiper-lazy-preloader {
  6052. width: 42px;
  6053. height: 42px;
  6054. position: absolute;
  6055. left: 50%;
  6056. top: 50%;
  6057. margin-left: -21px;
  6058. margin-top: -21px;
  6059. z-index: 10;
  6060. -webkit-transform-origin: 50%;
  6061. -moz-transform-origin: 50%;
  6062. transform-origin: 50%;
  6063. -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  6064. -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  6065. animation: swiper-preloader-spin 1s steps(12, end) infinite; }
  6066. .swiper-lazy-preloader:after {
  6067. display: block;
  6068. content: "";
  6069. width: 100%;
  6070. height: 100%;
  6071. 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");
  6072. background-position: 50%;
  6073. -webkit-background-size: 100%;
  6074. background-size: 100%;
  6075. background-repeat: no-repeat; }
  6076. .swiper-lazy-preloader-white:after {
  6077. 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"); }
  6078. @-webkit-keyframes swiper-preloader-spin {
  6079. 100% {
  6080. -webkit-transform: rotate(360deg); } }
  6081. @keyframes swiper-preloader-spin {
  6082. 100% {
  6083. transform: rotate(360deg); } }
  6084. ion-slides {
  6085. width: 100%;
  6086. height: 100%;
  6087. display: block;
  6088. }
  6089. .slide-zoom {
  6090. display: block;
  6091. width: 100%;
  6092. text-align: center; }
  6093. .swiper-container {
  6094. width: 100%;
  6095. height: 100%;
  6096. padding: 0;
  6097. overflow: hidden; }
  6098. .swiper-wrapper {
  6099. position: absolute;
  6100. left: 0;
  6101. top: 0;
  6102. width: 100%;
  6103. height: 100%;
  6104. padding: 0; }
  6105. .swiper-slide {
  6106. width: 100%;
  6107. height: 100%;
  6108. box-sizing: border-box;
  6109. /* Center slide text vertically */ }
  6110. .swiper-slide img {
  6111. width: auto;
  6112. height: auto;
  6113. max-width: 100%;
  6114. max-height: 100%;
  6115. }
  6116. .scroll-refresher {
  6117. position: absolute;
  6118. top: -60px;
  6119. right: 0;
  6120. left: 0;
  6121. overflow: hidden;
  6122. margin: auto;
  6123. height: 60px; }
  6124. .scroll-refresher .ionic-refresher-content {
  6125. position: absolute;
  6126. bottom: 15px;
  6127. left: 0;
  6128. width: 100%;
  6129. color: #666666;
  6130. text-align: center;
  6131. font-size: 30px; }
  6132. .scroll-refresher .ionic-refresher-content .text-refreshing,
  6133. .scroll-refresher .ionic-refresher-content .text-pulling {
  6134. font-size: 16px;
  6135. line-height: 16px; }
  6136. .scroll-refresher .ionic-refresher-content.ionic-refresher-with-text {
  6137. bottom: 10px; }
  6138. .scroll-refresher .icon-refreshing,
  6139. .scroll-refresher .icon-pulling {
  6140. width: 100%;
  6141. -webkit-backface-visibility: hidden;
  6142. backface-visibility: hidden;
  6143. -webkit-transform-style: preserve-3d;
  6144. transform-style: preserve-3d; }
  6145. .scroll-refresher .icon-pulling {
  6146. -webkit-animation-name: refresh-spin-back;
  6147. animation-name: refresh-spin-back;
  6148. -webkit-animation-duration: 200ms;
  6149. animation-duration: 200ms;
  6150. -webkit-animation-timing-function: linear;
  6151. animation-timing-function: linear;
  6152. -webkit-animation-fill-mode: none;
  6153. animation-fill-mode: none;
  6154. -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
  6155. transform: translate3d(0, 0, 0) rotate(0deg); }
  6156. .scroll-refresher .icon-refreshing,
  6157. .scroll-refresher .text-refreshing {
  6158. display: none; }
  6159. .scroll-refresher .icon-refreshing {
  6160. -webkit-animation-duration: 1.5s;
  6161. animation-duration: 1.5s; }
  6162. .scroll-refresher.active .icon-pulling:not(.pulling-rotation-disabled) {
  6163. -webkit-animation-name: refresh-spin;
  6164. animation-name: refresh-spin;
  6165. -webkit-transform: translate3d(0, 0, 0) rotate(-180deg);
  6166. transform: translate3d(0, 0, 0) rotate(-180deg); }
  6167. .scroll-refresher.active.refreshing {
  6168. -webkit-transition: -webkit-transform 0.2s;
  6169. transition: -webkit-transform 0.2s;
  6170. -webkit-transition: transform 0.2s;
  6171. transition: transform 0.2s;
  6172. -webkit-transform: scale(1, 1);
  6173. transform: scale(1, 1); }
  6174. .scroll-refresher.active.refreshing .icon-pulling,
  6175. .scroll-refresher.active.refreshing .text-pulling {
  6176. display: none; }
  6177. .scroll-refresher.active.refreshing .icon-refreshing,
  6178. .scroll-refresher.active.refreshing .text-refreshing {
  6179. display: block; }
  6180. .scroll-refresher.active.refreshing.refreshing-tail {
  6181. -webkit-transform: scale(0, 0);
  6182. transform: scale(0, 0); }
  6183. .overflow-scroll > .scroll {
  6184. -webkit-overflow-scrolling: touch;
  6185. width: 100%; }
  6186. .overflow-scroll > .scroll.overscroll {
  6187. position: fixed;
  6188. right: 0;
  6189. left: 0; }
  6190. .overflow-scroll.padding > .scroll.overscroll {
  6191. padding: 10px; }
  6192. @-webkit-keyframes refresh-spin {
  6193. 0% {
  6194. -webkit-transform: translate3d(0, 0, 0) rotate(0); }
  6195. 100% {
  6196. -webkit-transform: translate3d(0, 0, 0) rotate(180deg); } }
  6197. @keyframes refresh-spin {
  6198. 0% {
  6199. transform: translate3d(0, 0, 0) rotate(0); }
  6200. 100% {
  6201. transform: translate3d(0, 0, 0) rotate(180deg); } }
  6202. @-webkit-keyframes refresh-spin-back {
  6203. 0% {
  6204. -webkit-transform: translate3d(0, 0, 0) rotate(180deg); }
  6205. 100% {
  6206. -webkit-transform: translate3d(0, 0, 0) rotate(0); } }
  6207. @keyframes refresh-spin-back {
  6208. 0% {
  6209. transform: translate3d(0, 0, 0) rotate(180deg); }
  6210. 100% {
  6211. transform: translate3d(0, 0, 0) rotate(0); } }
  6212. /**
  6213. * Spinners
  6214. * --------------------------------------------------
  6215. */
  6216. .spinner {
  6217. stroke: #444;
  6218. fill: #444; }
  6219. .spinner svg {
  6220. width: 28px;
  6221. height: 28px; }
  6222. .spinner.spinner-light {
  6223. stroke: #fff;
  6224. fill: #fff; }
  6225. .spinner.spinner-stable {
  6226. stroke: #f8f8f8;
  6227. fill: #f8f8f8; }
  6228. .spinner.spinner-positive {
  6229. stroke: #387ef5;
  6230. fill: #387ef5; }
  6231. .spinner.spinner-calm {
  6232. stroke: #00C3DA;
  6233. fill: #00C3DA; }
  6234. .spinner.spinner-balanced {
  6235. stroke: #33cd5f;
  6236. fill: #33cd5f; }
  6237. .spinner.spinner-assertive {
  6238. stroke: #ef473a;
  6239. fill: #ef473a; }
  6240. .spinner.spinner-energized {
  6241. stroke: #ffc900;
  6242. fill: #ffc900; }
  6243. .spinner.spinner-royal {
  6244. stroke: #886aea;
  6245. fill: #886aea; }
  6246. .spinner.spinner-dark {
  6247. stroke: #444;
  6248. fill: #444; }
  6249. .spinner-android {
  6250. stroke: #4b8bf4; }
  6251. .spinner-ios,
  6252. .spinner-ios-small {
  6253. stroke: #69717d; }
  6254. .spinner-spiral .stop1 {
  6255. stop-color: #fff;
  6256. stop-opacity: 0; }
  6257. .spinner-spiral.spinner-light .stop1 {
  6258. stop-color: #444; }
  6259. .spinner-spiral.spinner-light .stop2 {
  6260. stop-color: #fff; }
  6261. .spinner-spiral.spinner-stable .stop2 {
  6262. stop-color: #f8f8f8; }
  6263. .spinner-spiral.spinner-positive .stop2 {
  6264. stop-color: #387ef5; }
  6265. .spinner-spiral.spinner-calm .stop2 {
  6266. stop-color: #00C3DA; }
  6267. .spinner-spiral.spinner-balanced .stop2 {
  6268. stop-color: #33cd5f; }
  6269. .spinner-spiral.spinner-assertive .stop2 {
  6270. stop-color: #ef473a; }
  6271. .spinner-spiral.spinner-energized .stop2 {
  6272. stop-color: #ffc900; }
  6273. .spinner-spiral.spinner-royal .stop2 {
  6274. stop-color: #886aea; }
  6275. .spinner-spiral.spinner-dark .stop2 {
  6276. stop-color: #444; }
  6277. /**
  6278. * Forms
  6279. * --------------------------------------------------
  6280. */
  6281. form {
  6282. margin: 0 0 1.42857; }
  6283. legend {
  6284. display: block;
  6285. margin-bottom: 1.42857;
  6286. padding: 0;
  6287. width: 100%;
  6288. border: 1px solid #ddd;
  6289. color: #444;
  6290. font-size: 21px;
  6291. line-height: 2.85714; }
  6292. legend small {
  6293. color: #f8f8f8;
  6294. font-size: 1.07143; }
  6295. label,
  6296. input,
  6297. button,
  6298. select,
  6299. textarea {
  6300. font-weight: normal;
  6301. font-size: 14px;
  6302. line-height: 1.42857; }
  6303. input,
  6304. button,
  6305. select,
  6306. textarea {
  6307. font-family: "-apple-system", "Helvetica Neue", "Roboto", "Segoe UI", sans-serif; }
  6308. .item-input {
  6309. display: -webkit-box;
  6310. display: -webkit-flex;
  6311. display: -moz-box;
  6312. display: -moz-flex;
  6313. display: -ms-flexbox;
  6314. display: flex;
  6315. -webkit-box-align: center;
  6316. -ms-flex-align: center;
  6317. -webkit-align-items: center;
  6318. -moz-align-items: center;
  6319. align-items: center;
  6320. position: relative;
  6321. overflow: hidden;
  6322. padding: 6px 0 5px 16px; }
  6323. .item-input input {
  6324. -webkit-border-radius: 0;
  6325. border-radius: 0;
  6326. -webkit-box-flex: 1;
  6327. -webkit-flex: 1 220px;
  6328. -moz-box-flex: 1;
  6329. -moz-flex: 1 220px;
  6330. -ms-flex: 1 220px;
  6331. flex: 1 220px;
  6332. -webkit-appearance: none;
  6333. -moz-appearance: none;
  6334. appearance: none;
  6335. margin: 0;
  6336. padding-right: 24px;
  6337. background-color: transparent; }
  6338. .item-input .button .icon {
  6339. -webkit-box-flex: 0;
  6340. -webkit-flex: 0 0 24px;
  6341. -moz-box-flex: 0;
  6342. -moz-flex: 0 0 24px;
  6343. -ms-flex: 0 0 24px;
  6344. flex: 0 0 24px;
  6345. position: static;
  6346. display: inline-block;
  6347. height: auto;
  6348. text-align: center;
  6349. font-size: 16px; }
  6350. .item-input .button-bar {
  6351. -webkit-border-radius: 0;
  6352. border-radius: 0;
  6353. -webkit-box-flex: 1;
  6354. -webkit-flex: 1 0 220px;
  6355. -moz-box-flex: 1;
  6356. -moz-flex: 1 0 220px;
  6357. -ms-flex: 1 0 220px;
  6358. flex: 1 0 220px;
  6359. -webkit-appearance: none;
  6360. -moz-appearance: none;
  6361. appearance: none; }
  6362. .item-input .icon {
  6363. min-width: 14px; }
  6364. .platform-windowsphone .item-input input {
  6365. flex-shrink: 1; }
  6366. .item-input-inset {
  6367. display: -webkit-box;
  6368. display: -webkit-flex;
  6369. display: -moz-box;
  6370. display: -moz-flex;
  6371. display: -ms-flexbox;
  6372. display: flex;
  6373. -webkit-box-align: center;
  6374. -ms-flex-align: center;
  6375. -webkit-align-items: center;
  6376. -moz-align-items: center;
  6377. align-items: center;
  6378. position: relative;
  6379. overflow: hidden;
  6380. padding: 10.66667px; }
  6381. .item-input-wrapper {
  6382. display: -webkit-box;
  6383. display: -webkit-flex;
  6384. display: -moz-box;
  6385. display: -moz-flex;
  6386. display: -ms-flexbox;
  6387. display: flex;
  6388. -webkit-box-flex: 1;
  6389. -webkit-flex: 1 0;
  6390. -moz-box-flex: 1;
  6391. -moz-flex: 1 0;
  6392. -ms-flex: 1 0;
  6393. flex: 1 0;
  6394. -webkit-box-align: center;
  6395. -ms-flex-align: center;
  6396. -webkit-align-items: center;
  6397. -moz-align-items: center;
  6398. align-items: center;
  6399. -webkit-border-radius: 4px;
  6400. border-radius: 4px;
  6401. padding-right: 8px;
  6402. padding-left: 8px;
  6403. background: #eee; }
  6404. .item-input-inset .item-input-wrapper input {
  6405. padding-left: 4px;
  6406. height: 29px;
  6407. background: transparent;
  6408. line-height: 18px; }
  6409. .item-input-wrapper ~ .button {
  6410. margin-left: 10.66667px; }
  6411. .input-label {
  6412. display: table;
  6413. padding: 7px 10px 7px 0px;
  6414. max-width: 200px;
  6415. width: 35%;
  6416. color: #444;
  6417. font-size: 16px; }
  6418. .placeholder-icon {
  6419. color: #aaa; }
  6420. .placeholder-icon:first-child {
  6421. padding-right: 6px; }
  6422. .placeholder-icon:last-child {
  6423. padding-left: 6px; }
  6424. .item-stacked-label {
  6425. display: block;
  6426. background-color: transparent;
  6427. box-shadow: none; }
  6428. .item-stacked-label .input-label, .item-stacked-label .icon {
  6429. display: inline-block;
  6430. padding: 4px 0 0 0px;
  6431. vertical-align: middle; }
  6432. .item-stacked-label input,
  6433. .item-stacked-label textarea {
  6434. -webkit-border-radius: 2px;
  6435. border-radius: 2px;
  6436. padding: 4px 8px 3px 0;
  6437. border: none;
  6438. background-color: #fff; }
  6439. .item-stacked-label input {
  6440. overflow: hidden;
  6441. height: 46px; }
  6442. .item-select.item-stacked-label select {
  6443. position: relative;
  6444. padding: 0px;
  6445. max-width: 90%;
  6446. direction: ltr;
  6447. white-space: pre-wrap;
  6448. margin: -3px; }
  6449. .item-floating-label {
  6450. display: block;
  6451. background-color: transparent;
  6452. box-shadow: none; }
  6453. .item-floating-label .input-label {
  6454. position: relative;
  6455. padding: 5px 0 0 0;
  6456. opacity: 0;
  6457. top: 10px;
  6458. -webkit-transition: opacity 0.15s ease-in, top 0.2s linear;
  6459. transition: opacity 0.15s ease-in, top 0.2s linear; }
  6460. .item-floating-label .input-label.has-input {
  6461. opacity: 1;
  6462. top: 0;
  6463. -webkit-transition: opacity 0.15s ease-in, top 0.2s linear;
  6464. transition: opacity 0.15s ease-in, top 0.2s linear; }
  6465. textarea,
  6466. input[type="text"],
  6467. input[type="password"],
  6468. input[type="datetime"],
  6469. input[type="datetime-local"],
  6470. input[type="date"],
  6471. input[type="month"],
  6472. input[type="time"],
  6473. input[type="week"],
  6474. input[type="number"],
  6475. input[type="email"],
  6476. input[type="url"],
  6477. input[type="search"],
  6478. input[type="tel"],
  6479. input[type="color"] {
  6480. display: block;
  6481. padding-top: 2px;
  6482. padding-left: 0;
  6483. height: 34px;
  6484. color: #111;
  6485. vertical-align: middle;
  6486. font-size: 14px;
  6487. line-height: 16px; }
  6488. .platform-ios input[type="datetime-local"],
  6489. .platform-ios input[type="date"],
  6490. .platform-ios input[type="month"],
  6491. .platform-ios input[type="time"],
  6492. .platform-ios input[type="week"],
  6493. .platform-android input[type="datetime-local"],
  6494. .platform-android input[type="date"],
  6495. .platform-android input[type="month"],
  6496. .platform-android input[type="time"],
  6497. .platform-android input[type="week"] {
  6498. padding-top: 8px; }
  6499. .item-input input,
  6500. .item-input textarea {
  6501. width: 100%; }
  6502. textarea {
  6503. padding-left: 0; }
  6504. textarea::-moz-placeholder {
  6505. color: #aaaaaa; }
  6506. textarea:-ms-input-placeholder {
  6507. color: #aaaaaa; }
  6508. textarea::-webkit-input-placeholder {
  6509. color: #aaaaaa;
  6510. text-indent: -3px; }
  6511. textarea {
  6512. height: auto; }
  6513. textarea,
  6514. input[type="text"],
  6515. input[type="password"],
  6516. input[type="datetime"],
  6517. input[type="datetime-local"],
  6518. input[type="date"],
  6519. input[type="month"],
  6520. input[type="time"],
  6521. input[type="week"],
  6522. input[type="number"],
  6523. input[type="email"],
  6524. input[type="url"],
  6525. input[type="search"],
  6526. input[type="tel"],
  6527. input[type="color"] {
  6528. border: 0; }
  6529. input[type="radio"],
  6530. input[type="checkbox"] {
  6531. margin: 0;
  6532. line-height: normal; }
  6533. .item-input input[type="file"],
  6534. .item-input input[type="image"],
  6535. .item-input input[type="submit"],
  6536. .item-input input[type="reset"],
  6537. .item-input input[type="button"],
  6538. .item-input input[type="radio"],
  6539. .item-input input[type="checkbox"] {
  6540. width: auto; }
  6541. input[type="file"] {
  6542. line-height: 34px; }
  6543. .previous-input-focus,
  6544. .cloned-text-input + input,
  6545. .cloned-text-input + textarea {
  6546. position: absolute !important;
  6547. left: -9999px;
  6548. width: 200px; }
  6549. input::-moz-placeholder,
  6550. textarea::-moz-placeholder {
  6551. color: #aaaaaa; }
  6552. input:-ms-input-placeholder,
  6553. textarea:-ms-input-placeholder {
  6554. color: #aaaaaa; }
  6555. input::-webkit-input-placeholder,
  6556. textarea::-webkit-input-placeholder {
  6557. color: #aaaaaa;
  6558. text-indent: 0; }
  6559. input[disabled],
  6560. select[disabled],
  6561. textarea[disabled],
  6562. input[readonly]:not(.cloned-text-input),
  6563. textarea[readonly]:not(.cloned-text-input),
  6564. select[readonly] {
  6565. background-color: #f8f8f8;
  6566. cursor: not-allowed; }
  6567. input[type="radio"][disabled],
  6568. input[type="checkbox"][disabled],
  6569. input[type="radio"][readonly],
  6570. input[type="checkbox"][readonly] {
  6571. background-color: transparent; }
  6572. /**
  6573. * Checkbox
  6574. * --------------------------------------------------
  6575. */
  6576. .checkbox {
  6577. position: relative;
  6578. display: inline-block;
  6579. padding: 7px 7px;
  6580. cursor: pointer; }
  6581. .checkbox input:before,
  6582. .checkbox .checkbox-icon:before {
  6583. border-color: #ddd; }
  6584. .checkbox input:checked:before,
  6585. .checkbox input:checked + .checkbox-icon:before {
  6586. background: #387ef5;
  6587. border-color: #387ef5; }
  6588. .checkbox-light input:before,
  6589. .checkbox-light .checkbox-icon:before {
  6590. border-color: #ddd; }
  6591. .checkbox-light input:checked:before,
  6592. .checkbox-light input:checked + .checkbox-icon:before {
  6593. background: #ddd;
  6594. border-color: #ddd; }
  6595. .checkbox-stable input:before,
  6596. .checkbox-stable .checkbox-icon:before {
  6597. border-color: #b2b2b2; }
  6598. .checkbox-stable input:checked:before,
  6599. .checkbox-stable input:checked + .checkbox-icon:before {
  6600. background: #b2b2b2;
  6601. border-color: #b2b2b2; }
  6602. .checkbox-positive input:before,
  6603. .checkbox-positive .checkbox-icon:before {
  6604. border-color: #387ef5; }
  6605. .checkbox-positive input:checked:before,
  6606. .checkbox-positive input:checked + .checkbox-icon:before {
  6607. background: #387ef5;
  6608. border-color: #387ef5; }
  6609. .checkbox-calm input:before,
  6610. .checkbox-calm .checkbox-icon:before {
  6611. border-color: #00C3DA; }
  6612. .checkbox-calm input:checked:before,
  6613. .checkbox-calm input:checked + .checkbox-icon:before {
  6614. background: #00C3DA;
  6615. border-color: #00C3DA; }
  6616. .checkbox-assertive input:before,
  6617. .checkbox-assertive .checkbox-icon:before {
  6618. border-color: #ef473a; }
  6619. .checkbox-assertive input:checked:before,
  6620. .checkbox-assertive input:checked + .checkbox-icon:before {
  6621. background: #ef473a;
  6622. border-color: #ef473a; }
  6623. .checkbox-balanced input:before,
  6624. .checkbox-balanced .checkbox-icon:before {
  6625. border-color: #33cd5f; }
  6626. .checkbox-balanced input:checked:before,
  6627. .checkbox-balanced input:checked + .checkbox-icon:before {
  6628. background: #33cd5f;
  6629. border-color: #33cd5f; }
  6630. .checkbox-energized input:before,
  6631. .checkbox-energized .checkbox-icon:before {
  6632. border-color: #ffc900; }
  6633. .checkbox-energized input:checked:before,
  6634. .checkbox-energized input:checked + .checkbox-icon:before {
  6635. background: #ffc900;
  6636. border-color: #ffc900; }
  6637. .checkbox-royal input:before,
  6638. .checkbox-royal .checkbox-icon:before {
  6639. border-color: #886aea; }
  6640. .checkbox-royal input:checked:before,
  6641. .checkbox-royal input:checked + .checkbox-icon:before {
  6642. background: #886aea;
  6643. border-color: #886aea; }
  6644. .checkbox-dark input:before,
  6645. .checkbox-dark .checkbox-icon:before {
  6646. border-color: #444; }
  6647. .checkbox-dark input:checked:before,
  6648. .checkbox-dark input:checked + .checkbox-icon:before {
  6649. background: #444;
  6650. border-color: #444; }
  6651. .checkbox input:disabled:before,
  6652. .checkbox input:disabled + .checkbox-icon:before {
  6653. border-color: #ddd; }
  6654. .checkbox input:disabled:checked:before,
  6655. .checkbox input:disabled:checked + .checkbox-icon:before {
  6656. background: #ddd; }
  6657. .checkbox.checkbox-input-hidden input {
  6658. display: none !important; }
  6659. .checkbox input,
  6660. .checkbox-icon {
  6661. position: relative;
  6662. width: 28px;
  6663. height: 28px;
  6664. display: block;
  6665. border: 0;
  6666. background: transparent;
  6667. cursor: pointer;
  6668. -webkit-appearance: none; }
  6669. .checkbox input:before,
  6670. .checkbox-icon:before {
  6671. display: table;
  6672. width: 100%;
  6673. height: 100%;
  6674. border-width: 1px;
  6675. border-style: solid;
  6676. border-radius: 28px;
  6677. background: #fff;
  6678. content: ' ';
  6679. -webkit-transition: background-color 20ms ease-in-out;
  6680. transition: background-color 20ms ease-in-out; }
  6681. .checkbox input:checked:before,
  6682. input:checked + .checkbox-icon:before {
  6683. border-width: 2px; }
  6684. .checkbox input:after,
  6685. .checkbox-icon:after {
  6686. -webkit-transition: opacity 0.05s ease-in-out;
  6687. transition: opacity 0.05s ease-in-out;
  6688. -webkit-transform: rotate(-45deg);
  6689. transform: rotate(-45deg);
  6690. position: absolute;
  6691. top: 33%;
  6692. left: 25%;
  6693. display: table;
  6694. width: 14px;
  6695. height: 6px;
  6696. border: 1px solid #fff;
  6697. border-top: 0;
  6698. border-right: 0;
  6699. content: ' ';
  6700. opacity: 0; }
  6701. .platform-android .checkbox-platform input:before,
  6702. .platform-android .checkbox-platform .checkbox-icon:before,
  6703. .checkbox-square input:before,
  6704. .checkbox-square .checkbox-icon:before {
  6705. border-radius: 2px;
  6706. width: 72%;
  6707. height: 72%;
  6708. margin-top: 14%;
  6709. margin-left: 14%;
  6710. border-width: 2px; }
  6711. .platform-android .checkbox-platform input:after,
  6712. .platform-android .checkbox-platform .checkbox-icon:after,
  6713. .checkbox-square input:after,
  6714. .checkbox-square .checkbox-icon:after {
  6715. border-width: 2px;
  6716. top: 19%;
  6717. left: 25%;
  6718. width: 13px;
  6719. height: 7px; }
  6720. .platform-android .item-checkbox-right .checkbox-square .checkbox-icon::after {
  6721. top: 31%; }
  6722. .grade-c .checkbox input:after,
  6723. .grade-c .checkbox-icon:after {
  6724. -webkit-transform: rotate(0);
  6725. transform: rotate(0);
  6726. top: 3px;
  6727. left: 4px;
  6728. border: none;
  6729. color: #fff;
  6730. content: '\2713';
  6731. font-weight: bold;
  6732. font-size: 20px; }
  6733. .checkbox input:checked:after,
  6734. input:checked + .checkbox-icon:after {
  6735. opacity: 1; }
  6736. .item-checkbox {
  6737. padding-left: 60px; }
  6738. .item-checkbox.active {
  6739. box-shadow: none; }
  6740. .item-checkbox .checkbox {
  6741. position: absolute;
  6742. top: 50%;
  6743. right: 8px;
  6744. left: 8px;
  6745. z-index: 3;
  6746. margin-top: -21px; }
  6747. .item-checkbox.item-checkbox-right {
  6748. padding-right: 60px;
  6749. padding-left: 16px; }
  6750. .item-checkbox-right .checkbox input,
  6751. .item-checkbox-right .checkbox-icon {
  6752. float: right; }
  6753. /**
  6754. * Toggle
  6755. * --------------------------------------------------
  6756. */
  6757. .item-toggle {
  6758. pointer-events: none; }
  6759. .toggle {
  6760. position: relative;
  6761. display: inline-block;
  6762. pointer-events: auto;
  6763. margin: -5px;
  6764. padding: 5px; }
  6765. .toggle input:checked + .track {
  6766. border-color: #4cd964;
  6767. background-color: #4cd964; }
  6768. .toggle.dragging .handle {
  6769. background-color: #f2f2f2 !important; }
  6770. .toggle.toggle-light input:checked + .track {
  6771. border-color: #ddd;
  6772. background-color: #ddd; }
  6773. .toggle.toggle-stable input:checked + .track {
  6774. border-color: #b2b2b2;
  6775. background-color: #b2b2b2; }
  6776. .toggle.toggle-positive input:checked + .track {
  6777. border-color: #387ef5;
  6778. background-color: #387ef5; }
  6779. .toggle.toggle-calm input:checked + .track {
  6780. border-color: #00C3DA;
  6781. background-color: #00C3DA; }
  6782. .toggle.toggle-assertive input:checked + .track {
  6783. border-color: #ef473a;
  6784. background-color: #ef473a; }
  6785. .toggle.toggle-balanced input:checked + .track {
  6786. border-color: #33cd5f;
  6787. background-color: #33cd5f; }
  6788. .toggle.toggle-energized input:checked + .track {
  6789. border-color: #ffc900;
  6790. background-color: #ffc900; }
  6791. .toggle.toggle-royal input:checked + .track {
  6792. border-color: #886aea;
  6793. background-color: #886aea; }
  6794. .toggle.toggle-dark input:checked + .track {
  6795. border-color: #444;
  6796. background-color: #444; }
  6797. .toggle input {
  6798. display: none; }
  6799. /* the track appearance when the toggle is "off" */
  6800. .toggle .track {
  6801. -webkit-transition-timing-function: ease-in-out;
  6802. transition-timing-function: ease-in-out;
  6803. -webkit-transition-duration: 0.3s;
  6804. transition-duration: 0.3s;
  6805. -webkit-transition-property: background-color, border;
  6806. transition-property: background-color, border;
  6807. display: inline-block;
  6808. box-sizing: border-box;
  6809. width: 51px;
  6810. height: 31px;
  6811. border: solid 2px #e6e6e6;
  6812. border-radius: 20px;
  6813. background-color: #fff;
  6814. content: ' ';
  6815. cursor: pointer;
  6816. pointer-events: none; }
  6817. /* Fix to avoid background color bleeding */
  6818. /* (occured on (at least) Android 4.2, Asus MeMO Pad HD7 ME173X) */
  6819. .platform-android4_2 .toggle .track {
  6820. -webkit-background-clip: padding-box; }
  6821. /* the handle (circle) thats inside the toggle's track area */
  6822. /* also the handle's appearance when it is "off" */
  6823. .toggle .handle {
  6824. -webkit-transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  6825. transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  6826. -webkit-transition-property: background-color, transform;
  6827. transition-property: background-color, transform;
  6828. position: absolute;
  6829. display: block;
  6830. width: 27px;
  6831. height: 27px;
  6832. border-radius: 27px;
  6833. background-color: #fff;
  6834. top: 7px;
  6835. left: 7px;
  6836. box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35), 0 1px 1px rgba(0, 0, 0, 0.15); }
  6837. .toggle .handle:before {
  6838. position: absolute;
  6839. top: -4px;
  6840. left: -21.5px;
  6841. padding: 18.5px 34px;
  6842. content: " "; }
  6843. .toggle input:checked + .track .handle {
  6844. -webkit-transform: translate3d(20px, 0, 0);
  6845. transform: translate3d(20px, 0, 0);
  6846. background-color: #fff; }
  6847. .item-toggle.active {
  6848. box-shadow: none; }
  6849. .item-toggle,
  6850. .item-toggle.item-complex .item-content {
  6851. padding-right: 99px; }
  6852. .item-toggle.item-complex {
  6853. padding-right: 0; }
  6854. .item-toggle .toggle {
  6855. position: absolute;
  6856. top: 10px;
  6857. right: 16px;
  6858. z-index: 3; }
  6859. .toggle input:disabled + .track {
  6860. opacity: .6; }
  6861. .toggle-small .track {
  6862. border: 0;
  6863. width: 34px;
  6864. height: 15px;
  6865. background: #9e9e9e; }
  6866. .toggle-small input:checked + .track {
  6867. background: rgba(0, 150, 137, 0.5); }
  6868. .toggle-small .handle {
  6869. top: 2px;
  6870. left: 4px;
  6871. width: 21px;
  6872. height: 21px;
  6873. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25); }
  6874. .toggle-small input:checked + .track .handle {
  6875. -webkit-transform: translate3d(16px, 0, 0);
  6876. transform: translate3d(16px, 0, 0);
  6877. background: #009689; }
  6878. .toggle-small.item-toggle .toggle {
  6879. top: 19px; }
  6880. .toggle-small .toggle-light input:checked + .track {
  6881. background-color: rgba(221, 221, 221, 0.5); }
  6882. .toggle-small .toggle-light input:checked + .track .handle {
  6883. background-color: #ddd; }
  6884. .toggle-small .toggle-stable input:checked + .track {
  6885. background-color: rgba(178, 178, 178, 0.5); }
  6886. .toggle-small .toggle-stable input:checked + .track .handle {
  6887. background-color: #b2b2b2; }
  6888. .toggle-small .toggle-positive input:checked + .track {
  6889. background-color: rgba(56, 126, 245, 0.5); }
  6890. .toggle-small .toggle-positive input:checked + .track .handle {
  6891. background-color: #387ef5; }
  6892. .toggle-small .toggle-calm input:checked + .track {
  6893. background-color: rgba(255, 75, 130, 0.5); }
  6894. .toggle-small .toggle-calm input:checked + .track .handle {
  6895. background-color: #00C3DA; }
  6896. .toggle-small .toggle-assertive input:checked + .track {
  6897. background-color: rgba(239, 71, 58, 0.5); }
  6898. .toggle-small .toggle-assertive input:checked + .track .handle {
  6899. background-color: #ef473a; }
  6900. .toggle-small .toggle-balanced input:checked + .track {
  6901. background-color: rgba(51, 205, 95, 0.5); }
  6902. .toggle-small .toggle-balanced input:checked + .track .handle {
  6903. background-color: #33cd5f; }
  6904. .toggle-small .toggle-energized input:checked + .track {
  6905. background-color: rgba(255, 201, 0, 0.5); }
  6906. .toggle-small .toggle-energized input:checked + .track .handle {
  6907. background-color: #ffc900; }
  6908. .toggle-small .toggle-royal input:checked + .track {
  6909. background-color: rgba(136, 106, 234, 0.5); }
  6910. .toggle-small .toggle-royal input:checked + .track .handle {
  6911. background-color: #886aea; }
  6912. .toggle-small .toggle-dark input:checked + .track {
  6913. background-color: rgba(68, 68, 68, 0.5); }
  6914. .toggle-small .toggle-dark input:checked + .track .handle {
  6915. background-color: #444; }
  6916. /**
  6917. * Radio Button Inputs
  6918. * --------------------------------------------------
  6919. */
  6920. .item-radio {
  6921. padding: 0; }
  6922. .item-radio:hover {
  6923. cursor: pointer; }
  6924. .item-radio .item-content {
  6925. /* give some room to the right for the checkmark icon */
  6926. padding-right: 64px;
  6927. }
  6928. .item-radio .radio-icon {
  6929. /* checkmark icon will be hidden by default */
  6930. position: absolute;
  6931. top: 0;
  6932. right: 0;
  6933. z-index: 3;
  6934. visibility: hidden;
  6935. padding: 14px;
  6936. height: 100%;
  6937. font-size: 24px; }
  6938. .item-radio input {
  6939. /* hide any radio button inputs elements (the ugly circles) */
  6940. position: absolute;
  6941. left: -9999px; }
  6942. .item-radio input:checked + .radio-content .item-content {
  6943. /* style the item content when its checked */
  6944. background: #f7f7f7;
  6945. }
  6946. .item-radio input:checked + .radio-content .radio-icon {
  6947. /* show the checkmark icon when its checked */
  6948. visibility: hidden;
  6949. }
  6950. /**
  6951. * Range
  6952. * --------------------------------------------------
  6953. */
  6954. .range input {
  6955. display: inline-block;
  6956. overflow: hidden;
  6957. margin-top: 5px;
  6958. margin-bottom: 5px;
  6959. padding-right: 2px;
  6960. padding-left: 1px;
  6961. width: auto;
  6962. height: 43px;
  6963. outline: none;
  6964. background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ccc), color-stop(100%, #ccc));
  6965. background: linear-gradient(to right, #ccc 0%, #ccc 100%);
  6966. background-position: center;
  6967. background-size: 99% 2px;
  6968. background-repeat: no-repeat;
  6969. -webkit-appearance: none;
  6970. /*
  6971. &::-ms-track{
  6972. background: transparent;
  6973. border-color: transparent;
  6974. border-width: 11px 0 16px;
  6975. color:transparent;
  6976. margin-top:20px;
  6977. }
  6978. &::-ms-thumb {
  6979. width: $range-slider-width;
  6980. height: $range-slider-height;
  6981. border-radius: $range-slider-border-radius;
  6982. background-color: $toggle-handle-off-bg-color;
  6983. border-color:$toggle-handle-off-bg-color;
  6984. box-shadow: $range-slider-box-shadow;
  6985. margin-left:1px;
  6986. margin-right:1px;
  6987. outline:none;
  6988. }
  6989. &::-ms-fill-upper {
  6990. height: $range-track-height;
  6991. background:$range-default-track-bg;
  6992. }
  6993. */ }
  6994. .range input::-moz-focus-outer {
  6995. /* hide the focus outline in Firefox */
  6996. border: 0; }
  6997. .range input::-webkit-slider-thumb {
  6998. position: relative;
  6999. width: 28px;
  7000. height: 28px;
  7001. border-radius: 50%;
  7002. background-color: #fff;
  7003. box-shadow: 0 0 2px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2);
  7004. cursor: pointer;
  7005. -webkit-appearance: none;
  7006. border: 0; }
  7007. .range input::-webkit-slider-thumb:before {
  7008. /* what creates the colorful line on the left side of the slider */
  7009. position: absolute;
  7010. top: 13px;
  7011. left: -2001px;
  7012. width: 2000px;
  7013. height: 2px;
  7014. background: #444;
  7015. content: ' '; }
  7016. .range input::-webkit-slider-thumb:after {
  7017. /* create a larger (but hidden) hit area */
  7018. position: absolute;
  7019. top: -15px;
  7020. left: -15px;
  7021. padding: 30px;
  7022. content: ' '; }
  7023. .range input::-ms-fill-lower {
  7024. height: 2px;
  7025. background: #444; }
  7026. .range {
  7027. display: -webkit-box;
  7028. display: -webkit-flex;
  7029. display: -moz-box;
  7030. display: -moz-flex;
  7031. display: -ms-flexbox;
  7032. display: flex;
  7033. -webkit-box-align: center;
  7034. -ms-flex-align: center;
  7035. -webkit-align-items: center;
  7036. -moz-align-items: center;
  7037. align-items: center;
  7038. padding: 2px 11px; }
  7039. .range.range-light input::-webkit-slider-thumb:before {
  7040. background: #ddd; }
  7041. .range.range-light input::-ms-fill-lower {
  7042. background: #ddd; }
  7043. .range.range-stable input::-webkit-slider-thumb:before {
  7044. background: #b2b2b2; }
  7045. .range.range-stable input::-ms-fill-lower {
  7046. background: #b2b2b2; }
  7047. .range.range-positive input::-webkit-slider-thumb:before {
  7048. background: #387ef5; }
  7049. .range.range-positive input::-ms-fill-lower {
  7050. background: #387ef5; }
  7051. .range.range-calm input::-webkit-slider-thumb:before {
  7052. background: #00C3DA; }
  7053. .range.range-calm input::-ms-fill-lower {
  7054. background: #00C3DA; }
  7055. .range.range-balanced input::-webkit-slider-thumb:before {
  7056. background: #33cd5f; }
  7057. .range.range-balanced input::-ms-fill-lower {
  7058. background: #33cd5f; }
  7059. .range.range-assertive input::-webkit-slider-thumb:before {
  7060. background: #ef473a; }
  7061. .range.range-assertive input::-ms-fill-lower {
  7062. background: #ef473a; }
  7063. .range.range-energized input::-webkit-slider-thumb:before {
  7064. background: #ffc900; }
  7065. .range.range-energized input::-ms-fill-lower {
  7066. background: #ffc900; }
  7067. .range.range-royal input::-webkit-slider-thumb:before {
  7068. background: #886aea; }
  7069. .range.range-royal input::-ms-fill-lower {
  7070. background: #886aea; }
  7071. .range.range-dark input::-webkit-slider-thumb:before {
  7072. background: #444; }
  7073. .range.range-dark input::-ms-fill-lower {
  7074. background: #444; }
  7075. .range .icon {
  7076. -webkit-box-flex: 0;
  7077. -webkit-flex: 0;
  7078. -moz-box-flex: 0;
  7079. -moz-flex: 0;
  7080. -ms-flex: 0;
  7081. flex: 0;
  7082. display: block;
  7083. min-width: 24px;
  7084. text-align: center;
  7085. font-size: 24px; }
  7086. .range input {
  7087. -webkit-box-flex: 1;
  7088. -webkit-flex: 1;
  7089. -moz-box-flex: 1;
  7090. -moz-flex: 1;
  7091. -ms-flex: 1;
  7092. flex: 1;
  7093. display: block;
  7094. margin-right: 10px;
  7095. margin-left: 10px; }
  7096. .range-label {
  7097. -webkit-box-flex: 0;
  7098. -webkit-flex: 0 0 auto;
  7099. -moz-box-flex: 0;
  7100. -moz-flex: 0 0 auto;
  7101. -ms-flex: 0 0 auto;
  7102. flex: 0 0 auto;
  7103. display: block;
  7104. white-space: nowrap; }
  7105. .range-label:first-child {
  7106. padding-left: 5px; }
  7107. .range input + .range-label {
  7108. padding-right: 5px;
  7109. padding-left: 0; }
  7110. .platform-windowsphone .range input {
  7111. height: auto; }
  7112. /**
  7113. * Select
  7114. * --------------------------------------------------
  7115. */
  7116. .item-select {
  7117. position: relative; }
  7118. .item-select select {
  7119. -webkit-appearance: none;
  7120. -moz-appearance: none;
  7121. appearance: none;
  7122. position: absolute;
  7123. top: 0;
  7124. bottom: 0;
  7125. right: 0;
  7126. padding: 0 48px 0 16px;
  7127. max-width: 65%;
  7128. border: none;
  7129. background: #fff;
  7130. color: #333;
  7131. text-indent: .01px;
  7132. text-overflow: '';
  7133. white-space: nowrap;
  7134. font-size: 14px;
  7135. cursor: pointer;
  7136. direction: rtl; }
  7137. .item-select select::-ms-expand {
  7138. display: none; }
  7139. .item-select option {
  7140. direction: ltr; }
  7141. .item-select:after {
  7142. position: absolute;
  7143. top: 50%;
  7144. right: 16px;
  7145. margin-top: -3px;
  7146. width: 0;
  7147. height: 0;
  7148. border-top: 5px solid;
  7149. border-right: 5px solid transparent;
  7150. border-left: 5px solid transparent;
  7151. color: #999;
  7152. content: "";
  7153. pointer-events: none; }
  7154. .item-select.item-light select {
  7155. background: #fff;
  7156. color: #444; }
  7157. .item-select.item-stable select {
  7158. background: #f8f8f8;
  7159. color: #444; }
  7160. .item-select.item-stable:after, .item-select.item-stable .input-label {
  7161. color: #666666; }
  7162. .item-select.item-positive select {
  7163. background: #387ef5;
  7164. color: #fff; }
  7165. .item-select.item-positive:after, .item-select.item-positive .input-label {
  7166. color: #fff; }
  7167. .item-select.item-calm select {
  7168. background: #00C3DA;
  7169. color: #fff; }
  7170. .item-select.item-calm:after, .item-select.item-calm .input-label {
  7171. color: #fff; }
  7172. .item-select.item-assertive select {
  7173. background: #ef473a;
  7174. color: #fff; }
  7175. .item-select.item-assertive:after, .item-select.item-assertive .input-label {
  7176. color: #fff; }
  7177. .item-select.item-balanced select {
  7178. background: #33cd5f;
  7179. color: #fff; }
  7180. .item-select.item-balanced:after, .item-select.item-balanced .input-label {
  7181. color: #fff; }
  7182. .item-select.item-energized select {
  7183. background: #ffc900;
  7184. color: #fff; }
  7185. .item-select.item-energized:after, .item-select.item-energized .input-label {
  7186. color: #fff; }
  7187. .item-select.item-royal select {
  7188. background: #886aea;
  7189. color: #fff; }
  7190. .item-select.item-royal:after, .item-select.item-royal .input-label {
  7191. color: #fff; }
  7192. .item-select.item-dark select {
  7193. background: #444;
  7194. color: #fff; }
  7195. .item-select.item-dark:after, .item-select.item-dark .input-label {
  7196. color: #fff; }
  7197. select[multiple], select[size] {
  7198. height: auto; }
  7199. /**
  7200. * Progress
  7201. * --------------------------------------------------
  7202. */
  7203. progress {
  7204. display: block;
  7205. margin: 15px auto;
  7206. width: 100%; }
  7207. /**
  7208. * Buttons
  7209. * --------------------------------------------------
  7210. */
  7211. .button {
  7212. border-color: transparent;
  7213. background-color: #f8f8f8;
  7214. color: #444;
  7215. position: relative;
  7216. display: inline-block;
  7217. margin: 0;
  7218. padding: 0 12px;
  7219. min-width: 52px;
  7220. min-height: 47px;
  7221. border-width: 1px;
  7222. border-style: solid;
  7223. border-radius: 4px;
  7224. vertical-align: top;
  7225. text-align: center;
  7226. text-overflow: ellipsis;
  7227. font-size: 16px;
  7228. line-height: 42px;
  7229. cursor: pointer; }
  7230. .button:hover {
  7231. color: #444;
  7232. text-decoration: none; }
  7233. .button.active, .button.activated {
  7234. background-color: #e5e5e5; }
  7235. .button:after {
  7236. position: absolute;
  7237. top: -6px;
  7238. right: -6px;
  7239. bottom: -6px;
  7240. left: -6px;
  7241. content: ' '; }
  7242. .button .icon {
  7243. vertical-align: top;
  7244. pointer-events: none; }
  7245. .button .icon:before, .button.icon:before, .button.icon-left:before, .button.icon-right:before {
  7246. display: inline-block;
  7247. padding: 0 0 1px 0;
  7248. vertical-align: inherit;
  7249. font-size: 24px;
  7250. line-height: 41px;
  7251. pointer-events: none; }
  7252. .button.icon-left:before {
  7253. float: left;
  7254. padding-right: .2em;
  7255. padding-left: 0; }
  7256. .button.icon-right:before {
  7257. float: right;
  7258. padding-right: 0;
  7259. padding-left: .2em; }
  7260. .button.button-block, .button.button-full {
  7261. margin-top: 10px;
  7262. margin-bottom: 10px; }
  7263. .button.button-light {
  7264. border-color: transparent;
  7265. background-color: #fff;
  7266. color: #444; }
  7267. .button.button-light:hover {
  7268. color: #444;
  7269. text-decoration: none; }
  7270. .button.button-light.active, .button.button-light.activated {
  7271. background-color: #fafafa; }
  7272. .button.button-light.button-clear {
  7273. border-color: transparent;
  7274. background: none;
  7275. box-shadow: none;
  7276. color: #ddd; }
  7277. .button.button-light.button-icon {
  7278. border-color: transparent;
  7279. background: none; }
  7280. .button.button-light.button-outline {
  7281. border-color: #ddd;
  7282. background: transparent;
  7283. color: #ddd; }
  7284. .button.button-light.button-outline.active, .button.button-light.button-outline.activated {
  7285. background-color: #ddd;
  7286. box-shadow: none;
  7287. color: #fff; }
  7288. .button.button-stable {
  7289. border-color: transparent;
  7290. background-color: #f8f8f8;
  7291. color: #444; }
  7292. .button.button-stable:hover {
  7293. color: #444;
  7294. text-decoration: none; }
  7295. .button.button-stable.active, .button.button-stable.activated {
  7296. background-color: #e5e5e5; }
  7297. .button.button-stable.button-clear {
  7298. border-color: transparent;
  7299. background: none;
  7300. box-shadow: none;
  7301. color: #b2b2b2; }
  7302. .button.button-stable.button-icon {
  7303. border-color: transparent;
  7304. background: none; }
  7305. .button.button-stable.button-outline {
  7306. border-color: #b2b2b2;
  7307. background: transparent;
  7308. color: #b2b2b2; }
  7309. .button.button-stable.button-outline.active, .button.button-stable.button-outline.activated {
  7310. background-color: #b2b2b2;
  7311. box-shadow: none;
  7312. color: #fff; }
  7313. .button.button-positive {
  7314. border-color: transparent;
  7315. background-color: #387ef5;
  7316. color: #fff; }
  7317. .button.button-positive:hover {
  7318. color: #fff;
  7319. text-decoration: none; }
  7320. .button.button-positive.active, .button.button-positive.activated {
  7321. background-color: #0c60ee; }
  7322. .button.button-positive.button-clear {
  7323. border-color: transparent;
  7324. background: none;
  7325. box-shadow: none;
  7326. color: #387ef5; }
  7327. .button.button-positive.button-icon {
  7328. border-color: transparent;
  7329. background: none; }
  7330. .button.button-positive.button-outline {
  7331. border-color: #387ef5;
  7332. background: transparent;
  7333. color: #387ef5; }
  7334. .button.button-positive.button-outline.active, .button.button-positive.button-outline.activated {
  7335. background-color: #387ef5;
  7336. box-shadow: none;
  7337. color: #fff; }
  7338. .button.button-calm {
  7339. border-color: transparent;
  7340. background-color: #00C3DA;
  7341. color: #fff; }
  7342. .button.button-calm:hover {
  7343. color: #fff;
  7344. text-decoration: none; }
  7345. .button.button-calm.active, .button.button-calm.activated {
  7346. background-color: #00C3DA; }
  7347. /* .button.button-calm.active, .button.button-calm.activated {
  7348. background-color: #00C3DA; }*/
  7349. .button.button-calm.button-clear {
  7350. border-color: transparent;
  7351. background: none;
  7352. box-shadow: none;
  7353. color: #00C3DA; }
  7354. .button.button-calm.button-icon {
  7355. border-color: transparent;
  7356. background: none; }
  7357. .button.button-calm.button-outline {
  7358. border-color: #00C3DA;
  7359. background: transparent;
  7360. color: #00C3DA; }
  7361. .button.button-calm.button-outline.active, .button.button-calm.button-outline.activated {
  7362. background-color: #00C3DA;
  7363. box-shadow: none;
  7364. color: #fff; }
  7365. .button.button-assertive {
  7366. border-color: transparent;
  7367. background-color: #ef473a;
  7368. color: #fff; }
  7369. .button.button-assertive:hover {
  7370. color: #fff;
  7371. text-decoration: none; }
  7372. .button.button-assertive.active, .button.button-assertive.activated {
  7373. background-color: #e42112; }
  7374. .button.button-assertive.button-clear {
  7375. border-color: transparent;
  7376. background: none;
  7377. box-shadow: none;
  7378. color: #ef473a; }
  7379. .button.button-assertive.button-icon {
  7380. border-color: transparent;
  7381. background: none; }
  7382. .button.button-assertive.button-outline {
  7383. border-color: #ef473a;
  7384. background: transparent;
  7385. color: #ef473a; }
  7386. .button.button-assertive.button-outline.active, .button.button-assertive.button-outline.activated {
  7387. background-color: #ef473a;
  7388. box-shadow: none;
  7389. color: #fff; }
  7390. .button.button-balanced {
  7391. border-color: transparent;
  7392. background-color: #33cd5f;
  7393. color: #fff; }
  7394. .button.button-balanced:hover {
  7395. color: #fff;
  7396. text-decoration: none; }
  7397. .button.button-balanced.active, .button.button-balanced.activated {
  7398. background-color: #28a54c; }
  7399. .button.button-balanced.button-clear {
  7400. border-color: transparent;
  7401. background: none;
  7402. box-shadow: none;
  7403. color: #33cd5f; }
  7404. .button.button-balanced.button-icon {
  7405. border-color: transparent;
  7406. background: none; }
  7407. .button.button-balanced.button-outline {
  7408. border-color: #33cd5f;
  7409. background: transparent;
  7410. color: #33cd5f; }
  7411. .button.button-balanced.button-outline.active, .button.button-balanced.button-outline.activated {
  7412. background-color: #33cd5f;
  7413. box-shadow: none;
  7414. color: #fff; }
  7415. .button.button-energized {
  7416. border-color: transparent;
  7417. background-color: #ffc900;
  7418. color: #fff; }
  7419. .button.button-energized:hover {
  7420. color: #fff;
  7421. text-decoration: none; }
  7422. .button.button-energized.active, .button.button-energized.activated {
  7423. background-color: #e6b500; }
  7424. .button.button-energized.button-clear {
  7425. border-color: transparent;
  7426. background: none;
  7427. box-shadow: none;
  7428. color: #ffc900; }
  7429. .button.button-energized.button-icon {
  7430. border-color: transparent;
  7431. background: none; }
  7432. .button.button-energized.button-outline {
  7433. border-color: #ffc900;
  7434. background: transparent;
  7435. color: #ffc900; }
  7436. .button.button-energized.button-outline.active, .button.button-energized.button-outline.activated {
  7437. background-color: #ffc900;
  7438. box-shadow: none;
  7439. color: #fff; }
  7440. .button.button-royal {
  7441. border-color: transparent;
  7442. background-color: #886aea;
  7443. color: #fff; }
  7444. .button.button-royal:hover {
  7445. color: #fff;
  7446. text-decoration: none; }
  7447. .button.button-royal.active, .button.button-royal.activated {
  7448. background-color: #6b46e5; }
  7449. .button.button-royal.button-clear {
  7450. border-color: transparent;
  7451. background: none;
  7452. box-shadow: none;
  7453. color: #886aea; }
  7454. .button.button-royal.button-icon {
  7455. border-color: transparent;
  7456. background: none; }
  7457. .button.button-royal.button-outline {
  7458. border-color: #886aea;
  7459. background: transparent;
  7460. color: #886aea; }
  7461. .button.button-royal.button-outline.active, .button.button-royal.button-outline.activated {
  7462. background-color: #886aea;
  7463. box-shadow: none;
  7464. color: #fff; }
  7465. .button.button-dark {
  7466. border-color: transparent;
  7467. background-color: #444;
  7468. color: #fff; }
  7469. .button.button-dark:hover {
  7470. color: #fff;
  7471. text-decoration: none; }
  7472. .button.button-dark.active, .button.button-dark.activated {
  7473. background-color: #262626; }
  7474. .button.button-dark.button-clear {
  7475. border-color: transparent;
  7476. background: none;
  7477. box-shadow: none;
  7478. color: #444; }
  7479. .button.button-dark.button-icon {
  7480. border-color: transparent;
  7481. background: none; }
  7482. .button.button-dark.button-outline {
  7483. border-color: #444;
  7484. background: transparent;
  7485. color: #444; }
  7486. .button.button-dark.button-outline.active, .button.button-dark.button-outline.activated {
  7487. background-color: #444;
  7488. box-shadow: none;
  7489. color: #fff; }
  7490. .button-small {
  7491. padding: 2px 4px 1px;
  7492. min-width: 28px;
  7493. min-height: 30px;
  7494. font-size: 12px;
  7495. line-height: 26px; }
  7496. .button-small .icon:before, .button-small.icon:before, .button-small.icon-left:before, .button-small.icon-right:before {
  7497. font-size: 16px;
  7498. line-height: 19px;
  7499. margin-top: 3px; }
  7500. .button-large {
  7501. padding: 0 16px;
  7502. min-width: 68px;
  7503. min-height: 59px;
  7504. font-size: 20px;
  7505. line-height: 53px; }
  7506. .button-large .icon:before, .button-large.icon:before, .button-large.icon-left:before, .button-large.icon-right:before {
  7507. padding-bottom: 2px;
  7508. font-size: 32px;
  7509. line-height: 51px; }
  7510. .button-icon {
  7511. -webkit-transition: opacity 0.1s;
  7512. transition: opacity 0.1s;
  7513. padding: 0 6px;
  7514. min-width: initial;
  7515. border-color: transparent;
  7516. background: none; }
  7517. .button-icon.button.active, .button-icon.button.activated {
  7518. border-color: transparent;
  7519. background: none;
  7520. box-shadow: none;
  7521. opacity: 0.3; }
  7522. .button-icon .icon:before, .button-icon.icon:before {
  7523. font-size: 32px; }
  7524. .button-clear {
  7525. -webkit-transition: opacity 0.1s;
  7526. transition: opacity 0.1s;
  7527. padding: 0 6px;
  7528. max-height: 42px;
  7529. border-color: transparent;
  7530. background: none;
  7531. box-shadow: none; }
  7532. .button-clear.button-clear {
  7533. border-color: transparent;
  7534. background: none;
  7535. box-shadow: none;
  7536. color: #fff; }
  7537. .button-clear.button-icon {
  7538. border-color: transparent;
  7539. background: none; }
  7540. .button-clear.active, .button-clear.activated {
  7541. opacity: 0.3; }
  7542. .button-outline {
  7543. -webkit-transition: opacity 0.1s;
  7544. transition: opacity 0.1s;
  7545. background: none;
  7546. box-shadow: none; }
  7547. .button-outline.button-outline {
  7548. border-color: #b2b2b2;
  7549. background: transparent;
  7550. color: #b2b2b2; }
  7551. .button-outline.button-outline.active, .button-outline.button-outline.activated {
  7552. background-color: #b2b2b2;
  7553. box-shadow: none;
  7554. color: #fff; }
  7555. .padding > .button.button-block:first-child {
  7556. margin-top: 0; }
  7557. .button-block {
  7558. display: block;
  7559. clear: both; }
  7560. .button-block:after {
  7561. clear: both; }
  7562. .button-full,
  7563. .button-full > .button {
  7564. display: block;
  7565. margin-right: 0;
  7566. margin-left: 0;
  7567. border-right-width: 0;
  7568. border-left-width: 0;
  7569. border-radius: 0; }
  7570. button.button-block,
  7571. button.button-full,
  7572. .button-full > button.button,
  7573. input.button.button-block {
  7574. width: 100%; }
  7575. a.button {
  7576. text-decoration: none; }
  7577. a.button .icon:before, a.button.icon:before, a.button.icon-left:before, a.button.icon-right:before {
  7578. margin-top: 2px; }
  7579. .button.disabled,
  7580. .button[disabled] {
  7581. opacity: .4;
  7582. cursor: default !important;
  7583. pointer-events: none; }
  7584. /**
  7585. * Button Bar
  7586. * --------------------------------------------------
  7587. */
  7588. .button-bar {
  7589. display: -webkit-box;
  7590. display: -webkit-flex;
  7591. display: -moz-box;
  7592. display: -moz-flex;
  7593. display: -ms-flexbox;
  7594. display: flex;
  7595. -webkit-box-flex: 1;
  7596. -webkit-flex: 1;
  7597. -moz-box-flex: 1;
  7598. -moz-flex: 1;
  7599. -ms-flex: 1;
  7600. flex: 1;
  7601. width: 100%; }
  7602. .button-bar.button-bar-inline {
  7603. display: block;
  7604. width: auto;
  7605. *zoom: 1; }
  7606. .button-bar.button-bar-inline:before, .button-bar.button-bar-inline:after {
  7607. display: table;
  7608. content: "";
  7609. line-height: 0; }
  7610. .button-bar.button-bar-inline:after {
  7611. clear: both; }
  7612. .button-bar.button-bar-inline > .button {
  7613. width: auto;
  7614. display: inline-block;
  7615. float: left; }
  7616. .button-bar > .button {
  7617. -webkit-box-flex: 1;
  7618. -webkit-flex: 1;
  7619. -moz-box-flex: 1;
  7620. -moz-flex: 1;
  7621. -ms-flex: 1;
  7622. flex: 1;
  7623. display: block;
  7624. overflow: hidden;
  7625. padding: 0 16px;
  7626. width: 0;
  7627. border-width: 1px 0px 1px 1px;
  7628. border-radius: 0;
  7629. text-align: center;
  7630. text-overflow: ellipsis;
  7631. white-space: nowrap; }
  7632. .button-bar > .button:before,
  7633. .button-bar > .button .icon:before {
  7634. line-height: 44px; }
  7635. .button-bar > .button:first-child {
  7636. border-radius: 4px 0px 0px 4px; }
  7637. .button-bar > .button:last-child {
  7638. border-right-width: 1px;
  7639. border-radius: 0px 4px 4px 0px; }
  7640. .button-bar > .button:only-child {
  7641. border-radius: 4px; }
  7642. .button-bar > .button-small:before,
  7643. .button-bar > .button-small .icon:before {
  7644. line-height: 28px; }
  7645. /**
  7646. * Grid
  7647. * --------------------------------------------------
  7648. * Using flexbox for the grid, inspired by Philip Walton:
  7649. * http://philipwalton.github.io/solved-by-flexbox/demos/grids/
  7650. * By default each .col within a .row will evenly take up
  7651. * available width, and the height of each .col with take
  7652. * up the height of the tallest .col in the same .row.
  7653. */
  7654. .row {
  7655. display: -webkit-box;
  7656. display: -webkit-flex;
  7657. display: -moz-box;
  7658. display: -moz-flex;
  7659. display: -ms-flexbox;
  7660. display: flex;
  7661. padding: 5px;
  7662. width: 100%; }
  7663. .row-wrap {
  7664. -webkit-flex-wrap: wrap;
  7665. -moz-flex-wrap: wrap;
  7666. -ms-flex-wrap: wrap;
  7667. flex-wrap: wrap; }
  7668. .row-no-padding {
  7669. padding: 0; }
  7670. .row-no-padding > .col {
  7671. padding: 0; }
  7672. .row + .row {
  7673. margin-top: -5px;
  7674. padding-top: 0; }
  7675. .col {
  7676. -webkit-box-flex: 1;
  7677. -webkit-flex: 1;
  7678. -moz-box-flex: 1;
  7679. -moz-flex: 1;
  7680. -ms-flex: 1;
  7681. flex: 1;
  7682. display: block;
  7683. padding: 5px;
  7684. width: 100%; }
  7685. /* Vertically Align Columns */
  7686. /* .row-* vertically aligns every .col in the .row */
  7687. .row-top {
  7688. -webkit-box-align: start;
  7689. -ms-flex-align: start;
  7690. -webkit-align-items: flex-start;
  7691. -moz-align-items: flex-start;
  7692. align-items: flex-start; }
  7693. .row-bottom {
  7694. -webkit-box-align: end;
  7695. -ms-flex-align: end;
  7696. -webkit-align-items: flex-end;
  7697. -moz-align-items: flex-end;
  7698. align-items: flex-end; }
  7699. .row-center {
  7700. -webkit-box-align: center;
  7701. -ms-flex-align: center;
  7702. -webkit-align-items: center;
  7703. -moz-align-items: center;
  7704. align-items: center; }
  7705. .row-stretch {
  7706. -webkit-box-align: stretch;
  7707. -ms-flex-align: stretch;
  7708. -webkit-align-items: stretch;
  7709. -moz-align-items: stretch;
  7710. align-items: stretch; }
  7711. .row-baseline {
  7712. -webkit-box-align: baseline;
  7713. -ms-flex-align: baseline;
  7714. -webkit-align-items: baseline;
  7715. -moz-align-items: baseline;
  7716. align-items: baseline; }
  7717. /* .col-* vertically aligns an individual .col */
  7718. .col-top {
  7719. -webkit-align-self: flex-start;
  7720. -moz-align-self: flex-start;
  7721. -ms-flex-item-align: start;
  7722. align-self: flex-start; }
  7723. .col-bottom {
  7724. -webkit-align-self: flex-end;
  7725. -moz-align-self: flex-end;
  7726. -ms-flex-item-align: end;
  7727. align-self: flex-end; }
  7728. .col-center {
  7729. -webkit-align-self: center;
  7730. -moz-align-self: center;
  7731. -ms-flex-item-align: center;
  7732. align-self: center; }
  7733. /* Column Offsets */
  7734. .col-offset-10 {
  7735. margin-left: 10%; }
  7736. .col-offset-20 {
  7737. margin-left: 20%; }
  7738. .col-offset-25 {
  7739. margin-left: 25%; }
  7740. .col-offset-33, .col-offset-34 {
  7741. margin-left: 33.3333%; }
  7742. .col-offset-50 {
  7743. margin-left: 50%; }
  7744. .col-offset-66, .col-offset-67 {
  7745. margin-left: 66.6666%; }
  7746. .col-offset-75 {
  7747. margin-left: 75%; }
  7748. .col-offset-80 {
  7749. margin-left: 80%; }
  7750. .col-offset-90 {
  7751. margin-left: 90%; }
  7752. /* Explicit Column Percent Sizes */
  7753. /* By default each grid column will evenly distribute */
  7754. /* across the grid. However, you can specify individual */
  7755. /* columns to take up a certain size of the available area */
  7756. .col-10 {
  7757. -webkit-box-flex: 0;
  7758. -webkit-flex: 0 0 10%;
  7759. -moz-box-flex: 0;
  7760. -moz-flex: 0 0 10%;
  7761. -ms-flex: 0 0 10%;
  7762. flex: 0 0 10%;
  7763. max-width: 10%; }
  7764. .col-20 {
  7765. -webkit-box-flex: 0;
  7766. -webkit-flex: 0 0 20%;
  7767. -moz-box-flex: 0;
  7768. -moz-flex: 0 0 20%;
  7769. -ms-flex: 0 0 20%;
  7770. flex: 0 0 20%;
  7771. max-width: 20%; }
  7772. .col-25 {
  7773. -webkit-box-flex: 0;
  7774. -webkit-flex: 0 0 25%;
  7775. -moz-box-flex: 0;
  7776. -moz-flex: 0 0 25%;
  7777. -ms-flex: 0 0 25%;
  7778. flex: 0 0 25%;
  7779. max-width: 25%; }
  7780. .col-33, .col-34 {
  7781. -webkit-box-flex: 0;
  7782. -webkit-flex: 0 0 33.3333%;
  7783. -moz-box-flex: 0;
  7784. -moz-flex: 0 0 33.3333%;
  7785. -ms-flex: 0 0 33.3333%;
  7786. flex: 0 0 33.3333%;
  7787. max-width: 33.3333%; }
  7788. .col-40 {
  7789. -webkit-box-flex: 0;
  7790. -webkit-flex: 0 0 40%;
  7791. -moz-box-flex: 0;
  7792. -moz-flex: 0 0 40%;
  7793. -ms-flex: 0 0 40%;
  7794. flex: 0 0 40%;
  7795. max-width: 40%; }
  7796. .col-50 {
  7797. -webkit-box-flex: 0;
  7798. -webkit-flex: 0 0 50%;
  7799. -moz-box-flex: 0;
  7800. -moz-flex: 0 0 50%;
  7801. -ms-flex: 0 0 50%;
  7802. flex: 0 0 50%;
  7803. max-width: 50%; }
  7804. .col-60 {
  7805. -webkit-box-flex: 0;
  7806. -webkit-flex: 0 0 60%;
  7807. -moz-box-flex: 0;
  7808. -moz-flex: 0 0 60%;
  7809. -ms-flex: 0 0 60%;
  7810. flex: 0 0 60%;
  7811. max-width: 60%; }
  7812. .col-66, .col-67 {
  7813. -webkit-box-flex: 0;
  7814. -webkit-flex: 0 0 66.6666%;
  7815. -moz-box-flex: 0;
  7816. -moz-flex: 0 0 66.6666%;
  7817. -ms-flex: 0 0 66.6666%;
  7818. flex: 0 0 66.6666%;
  7819. max-width: 66.6666%; }
  7820. .col-75 {
  7821. -webkit-box-flex: 0;
  7822. -webkit-flex: 0 0 75%;
  7823. -moz-box-flex: 0;
  7824. -moz-flex: 0 0 75%;
  7825. -ms-flex: 0 0 75%;
  7826. flex: 0 0 75%;
  7827. max-width: 75%; }
  7828. .col-80 {
  7829. -webkit-box-flex: 0;
  7830. -webkit-flex: 0 0 80%;
  7831. -moz-box-flex: 0;
  7832. -moz-flex: 0 0 80%;
  7833. -ms-flex: 0 0 80%;
  7834. flex: 0 0 80%;
  7835. max-width: 80%; }
  7836. .col-90 {
  7837. -webkit-box-flex: 0;
  7838. -webkit-flex: 0 0 90%;
  7839. -moz-box-flex: 0;
  7840. -moz-flex: 0 0 90%;
  7841. -ms-flex: 0 0 90%;
  7842. flex: 0 0 90%;
  7843. max-width: 90%; }
  7844. /* Responsive Grid Classes */
  7845. /* Adding a class of responsive-X to a row */
  7846. /* will trigger the flex-direction to */
  7847. /* change to column and add some margin */
  7848. /* to any columns in the row for clearity */
  7849. @media (max-width: 567px) {
  7850. .responsive-sm {
  7851. -webkit-box-direction: normal;
  7852. -moz-box-direction: normal;
  7853. -webkit-box-orient: vertical;
  7854. -moz-box-orient: vertical;
  7855. -webkit-flex-direction: column;
  7856. -ms-flex-direction: column;
  7857. flex-direction: column; }
  7858. .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 {
  7859. -webkit-box-flex: 1;
  7860. -webkit-flex: 1;
  7861. -moz-box-flex: 1;
  7862. -moz-flex: 1;
  7863. -ms-flex: 1;
  7864. flex: 1;
  7865. margin-bottom: 15px;
  7866. margin-left: 0;
  7867. max-width: 100%;
  7868. width: 100%; } }
  7869. @media (max-width: 767px) {
  7870. .responsive-md {
  7871. -webkit-box-direction: normal;
  7872. -moz-box-direction: normal;
  7873. -webkit-box-orient: vertical;
  7874. -moz-box-orient: vertical;
  7875. -webkit-flex-direction: column;
  7876. -ms-flex-direction: column;
  7877. flex-direction: column; }
  7878. .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 {
  7879. -webkit-box-flex: 1;
  7880. -webkit-flex: 1;
  7881. -moz-box-flex: 1;
  7882. -moz-flex: 1;
  7883. -ms-flex: 1;
  7884. flex: 1;
  7885. margin-bottom: 15px;
  7886. margin-left: 0;
  7887. max-width: 100%;
  7888. width: 100%; } }
  7889. @media (max-width: 1023px) {
  7890. .responsive-lg {
  7891. -webkit-box-direction: normal;
  7892. -moz-box-direction: normal;
  7893. -webkit-box-orient: vertical;
  7894. -moz-box-orient: vertical;
  7895. -webkit-flex-direction: column;
  7896. -ms-flex-direction: column;
  7897. flex-direction: column; }
  7898. .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 {
  7899. -webkit-box-flex: 1;
  7900. -webkit-flex: 1;
  7901. -moz-box-flex: 1;
  7902. -moz-flex: 1;
  7903. -ms-flex: 1;
  7904. flex: 1;
  7905. margin-bottom: 15px;
  7906. margin-left: 0;
  7907. max-width: 100%;
  7908. width: 100%; } }
  7909. /**
  7910. * Utility Classes
  7911. * --------------------------------------------------
  7912. */
  7913. .hide {
  7914. display: none; }
  7915. .opacity-hide {
  7916. opacity: 0; }
  7917. .grade-b .opacity-hide,
  7918. .grade-c .opacity-hide {
  7919. opacity: 1;
  7920. display: none; }
  7921. .show {
  7922. display: block; }
  7923. .opacity-show {
  7924. opacity: 1; }
  7925. .invisible {
  7926. visibility: hidden; }
  7927. .keyboard-open .hide-on-keyboard-open {
  7928. display: none; }
  7929. .keyboard-open .tabs.hide-on-keyboard-open + .pane .has-tabs,
  7930. .keyboard-open .bar-footer.hide-on-keyboard-open + .pane .has-footer {
  7931. bottom: 0; }
  7932. .inline {
  7933. display: inline-block; }
  7934. .disable-pointer-events {
  7935. pointer-events: none; }
  7936. .enable-pointer-events {
  7937. pointer-events: auto; }
  7938. .disable-user-behavior {
  7939. -webkit-user-select: none;
  7940. -moz-user-select: none;
  7941. -ms-user-select: none;
  7942. user-select: none;
  7943. -webkit-touch-callout: none;
  7944. -webkit-tap-highlight-color: transparent;
  7945. -webkit-tap-highlight-color: transparent;
  7946. -webkit-user-drag: none;
  7947. -ms-touch-action: none;
  7948. -ms-content-zooming: none; }
  7949. .click-block {
  7950. position: absolute;
  7951. top: 0;
  7952. right: 0;
  7953. bottom: 0;
  7954. left: 0;
  7955. opacity: 0;
  7956. z-index: 99999;
  7957. -webkit-transform: translate3d(0, 0, 0);
  7958. transform: translate3d(0, 0, 0);
  7959. overflow: hidden; }
  7960. .click-block-hide {
  7961. -webkit-transform: translate3d(-9999px, 0, 0);
  7962. transform: translate3d(-9999px, 0, 0); }
  7963. .no-resize {
  7964. resize: none; }
  7965. .block {
  7966. display: block;
  7967. clear: both; }
  7968. .block:after {
  7969. display: block;
  7970. visibility: hidden;
  7971. clear: both;
  7972. height: 0;
  7973. content: "."; }
  7974. .full-image {
  7975. width: 100%; }
  7976. .clearfix {
  7977. *zoom: 1; }
  7978. .clearfix:before, .clearfix:after {
  7979. display: table;
  7980. content: "";
  7981. line-height: 0; }
  7982. .clearfix:after {
  7983. clear: both; }
  7984. /**
  7985. * Content Padding
  7986. * --------------------------------------------------
  7987. */
  7988. .padding {
  7989. padding: 10px; }
  7990. .padding-top,
  7991. .padding-vertical {
  7992. padding-top: 10px; }
  7993. .padding-right,
  7994. .padding-horizontal {
  7995. padding-right: 10px; }
  7996. .padding-bottom,
  7997. .padding-vertical {
  7998. padding-bottom: 10px; }
  7999. .padding-left,
  8000. .padding-horizontal {
  8001. padding-left: 10px; }
  8002. /**
  8003. * Scrollable iFrames
  8004. * --------------------------------------------------
  8005. */
  8006. .iframe-wrapper {
  8007. position: fixed;
  8008. -webkit-overflow-scrolling: touch;
  8009. overflow: scroll; }
  8010. .iframe-wrapper iframe {
  8011. height: 100%;
  8012. width: 100%; }
  8013. /**
  8014. * Rounded
  8015. * --------------------------------------------------
  8016. */
  8017. .rounded {
  8018. border-radius: 4px; }
  8019. /**
  8020. * Utility Colors
  8021. * --------------------------------------------------
  8022. * Utility colors are added to help set a naming convention. You'll
  8023. * notice we purposely do not use words like "red" or "blue", but
  8024. * instead have colors which represent an emotion or generic theme.
  8025. */
  8026. .light, a.light {
  8027. color: #fff; }
  8028. .light-bg {
  8029. background-color: #fff; }
  8030. .light-border {
  8031. border-color: #ddd; }
  8032. .stable, a.stable {
  8033. color: #f8f8f8; }
  8034. .stable-bg {
  8035. background-color: #f8f8f8; }
  8036. .stable-border {
  8037. border-color: #b2b2b2; }
  8038. .positive, a.positive {
  8039. color: #387ef5; }
  8040. .positive-bg {
  8041. background-color: #387ef5; }
  8042. .positive-border {
  8043. border-color: #0c60ee; }
  8044. .calm, a.calm {
  8045. color: #00C3DA; }
  8046. .calm-bg {
  8047. background-color: #00C3DA; }
  8048. .calm-border {
  8049. border-color: #00C3DA; }
  8050. .assertive, a.assertive {
  8051. color: #ef473a; }
  8052. .assertive-bg {
  8053. background-color: #ef473a; }
  8054. .assertive-border {
  8055. border-color: #e42112; }
  8056. .balanced, a.balanced {
  8057. color: #33cd5f; }
  8058. .balanced-bg {
  8059. background-color: #33cd5f; }
  8060. .balanced-border {
  8061. border-color: #28a54c; }
  8062. .energized, a.energized {
  8063. color: #ffc900; }
  8064. .energized-bg {
  8065. background-color: #ffc900; }
  8066. .energized-border {
  8067. border-color: #e6b500; }
  8068. .royal, a.royal {
  8069. color: #886aea; }
  8070. .royal-bg {
  8071. background-color: #886aea; }
  8072. .royal-border {
  8073. border-color: #6b46e5; }
  8074. .dark, a.dark {
  8075. color: #444; }
  8076. .dark-bg {
  8077. background-color: #444; }
  8078. .dark-border {
  8079. border-color: #111; }
  8080. [collection-repeat] {
  8081. /* Position is set by transforms */
  8082. left: 0 !important;
  8083. top: 0 !important;
  8084. position: absolute !important;
  8085. z-index: 1; }
  8086. .collection-repeat-container {
  8087. position: relative;
  8088. z-index: 1; }
  8089. .collection-repeat-after-container {
  8090. z-index: 0;
  8091. display: block;
  8092. /* when scrolling horizontally, make sure the after container doesn't take up 100% width */ }
  8093. .collection-repeat-after-container.horizontal {
  8094. display: inline-block; }
  8095. [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak,
  8096. .x-ng-cloak, .ng-hide:not(.ng-hide-animate) {
  8097. display: none !important; }
  8098. /**
  8099. * Platform
  8100. * --------------------------------------------------
  8101. * Platform specific tweaks
  8102. */
  8103. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader) {
  8104. height: 64px; }
  8105. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader).item-input-inset .item-input-wrapper {
  8106. margin-top: 19px !important; }
  8107. .platform-ios.platform-cordova:not(.fullscreen) .bar-header:not(.bar-subheader) > * {
  8108. margin-top: 20px; }
  8109. .platform-ios.platform-cordova:not(.fullscreen) .tabs-top > .tabs,
  8110. .platform-ios.platform-cordova:not(.fullscreen) .tabs.tabs-top {
  8111. top: 64px; }
  8112. .platform-ios.platform-cordova:not(.fullscreen) .has-header,
  8113. .platform-ios.platform-cordova:not(.fullscreen) .bar-subheader {
  8114. top: 64px; }
  8115. .platform-ios.platform-cordova:not(.fullscreen) .has-subheader {
  8116. top: 108px; }
  8117. .platform-ios.platform-cordova:not(.fullscreen) .has-header.has-tabs-top {
  8118. top: 113px; }
  8119. .platform-ios.platform-cordova:not(.fullscreen) .has-header.has-subheader.has-tabs-top {
  8120. top: 157px; }
  8121. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader) {
  8122. height: 44px; }
  8123. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader).item-input-inset .item-input-wrapper {
  8124. margin-top: -1px; }
  8125. .platform-ios.platform-cordova .popover .bar-header:not(.bar-subheader) > * {
  8126. margin-top: 0; }
  8127. .platform-ios.platform-cordova .popover .has-header,
  8128. .platform-ios.platform-cordova .popover .bar-subheader {
  8129. top: 44px; }
  8130. .platform-ios.platform-cordova .popover .has-subheader {
  8131. top: 88px; }
  8132. .platform-ios.platform-cordova.status-bar-hide {
  8133. margin-bottom: 20px; }
  8134. @media (orientation: landscape) {
  8135. .platform-ios.platform-browser.platform-ipad {
  8136. position: fixed; } }
  8137. .platform-c:not(.enable-transitions) * {
  8138. -webkit-transition: none !important;
  8139. transition: none !important; }
  8140. .slide-in-up {
  8141. -webkit-transform: translate3d(0, 100%, 0);
  8142. transform: translate3d(0, 100%, 0); }
  8143. .slide-in-up.ng-enter,
  8144. .slide-in-up > .ng-enter {
  8145. -webkit-transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms;
  8146. transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms; }
  8147. .slide-in-up.ng-enter-active,
  8148. .slide-in-up > .ng-enter-active {
  8149. -webkit-transform: translate3d(0, 0, 0);
  8150. transform: translate3d(0, 0, 0); }
  8151. .slide-in-up.ng-leave,
  8152. .slide-in-up > .ng-leave {
  8153. -webkit-transition: all ease-in-out 250ms;
  8154. transition: all ease-in-out 250ms; }
  8155. @-webkit-keyframes scaleOut {
  8156. from {
  8157. -webkit-transform: scale(1);
  8158. opacity: 1; }
  8159. to {
  8160. -webkit-transform: scale(0.8);
  8161. opacity: 0; } }
  8162. @keyframes scaleOut {
  8163. from {
  8164. transform: scale(1);
  8165. opacity: 1; }
  8166. to {
  8167. transform: scale(0.8);
  8168. opacity: 0; } }
  8169. @-webkit-keyframes superScaleIn {
  8170. from {
  8171. -webkit-transform: scale(1.2);
  8172. opacity: 0; }
  8173. to {
  8174. -webkit-transform: scale(1);
  8175. opacity: 1; } }
  8176. @keyframes superScaleIn {
  8177. from {
  8178. transform: scale(1.2);
  8179. opacity: 0; }
  8180. to {
  8181. transform: scale(1);
  8182. opacity: 1; } }
  8183. [nav-view-transition="ios"] [nav-view="entering"],
  8184. [nav-view-transition="ios"] [nav-view="leaving"] {
  8185. -webkit-transition-duration: 500ms;
  8186. transition-duration: 500ms;
  8187. -webkit-transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8188. transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8189. -webkit-transition-property: opacity, -webkit-transform, box-shadow;
  8190. transition-property: opacity, transform, box-shadow; }
  8191. [nav-view-transition="ios"][nav-view-direction="forward"], [nav-view-transition="ios"][nav-view-direction="back"] {
  8192. background-color: #000; }
  8193. [nav-view-transition="ios"] [nav-view="active"],
  8194. [nav-view-transition="ios"][nav-view-direction="forward"] [nav-view="entering"],
  8195. [nav-view-transition="ios"][nav-view-direction="back"] [nav-view="leaving"] {
  8196. z-index: 3; }
  8197. [nav-view-transition="ios"][nav-view-direction="back"] [nav-view="entering"],
  8198. [nav-view-transition="ios"][nav-view-direction="forward"] [nav-view="leaving"] {
  8199. z-index: 2; }
  8200. [nav-bar-transition="ios"] .title,
  8201. [nav-bar-transition="ios"] .buttons,
  8202. [nav-bar-transition="ios"] .back-text {
  8203. -webkit-transition-duration: 500ms;
  8204. transition-duration: 500ms;
  8205. -webkit-transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8206. transition-timing-function: cubic-bezier(0.36, 0.66, 0.04, 1);
  8207. -webkit-transition-property: opacity, -webkit-transform;
  8208. transition-property: opacity, transform; }
  8209. [nav-bar-transition="ios"] [nav-bar="active"],
  8210. [nav-bar-transition="ios"] [nav-bar="entering"] {
  8211. z-index: 10; }
  8212. [nav-bar-transition="ios"] [nav-bar="active"] .bar,
  8213. [nav-bar-transition="ios"] [nav-bar="entering"] .bar {
  8214. background: transparent; }
  8215. [nav-bar-transition="ios"] [nav-bar="cached"] {
  8216. display: block; }
  8217. [nav-bar-transition="ios"] [nav-bar="cached"] .header-item {
  8218. display: none; }
  8219. [nav-view-transition="android"] [nav-view="entering"],
  8220. [nav-view-transition="android"] [nav-view="leaving"] {
  8221. -webkit-transition-duration: 200ms;
  8222. transition-duration: 200ms;
  8223. -webkit-transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8224. transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8225. -webkit-transition-property: -webkit-transform;
  8226. transition-property: transform; }
  8227. [nav-view-transition="android"] [nav-view="active"],
  8228. [nav-view-transition="android"][nav-view-direction="forward"] [nav-view="entering"],
  8229. [nav-view-transition="android"][nav-view-direction="back"] [nav-view="leaving"] {
  8230. z-index: 3; }
  8231. [nav-view-transition="android"][nav-view-direction="back"] [nav-view="entering"],
  8232. [nav-view-transition="android"][nav-view-direction="forward"] [nav-view="leaving"] {
  8233. z-index: 2; }
  8234. [nav-bar-transition="android"] .title,
  8235. [nav-bar-transition="android"] .buttons {
  8236. -webkit-transition-duration: 200ms;
  8237. transition-duration: 200ms;
  8238. -webkit-transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8239. transition-timing-function: cubic-bezier(0.4, 0.6, 0.2, 1);
  8240. -webkit-transition-property: opacity;
  8241. transition-property: opacity; }
  8242. [nav-bar-transition="android"] [nav-bar="active"],
  8243. [nav-bar-transition="android"] [nav-bar="entering"] {
  8244. z-index: 10; }
  8245. [nav-bar-transition="android"] [nav-bar="active"] .bar,
  8246. [nav-bar-transition="android"] [nav-bar="entering"] .bar {
  8247. background: transparent; }
  8248. [nav-bar-transition="android"] [nav-bar="cached"] {
  8249. display: block; }
  8250. [nav-bar-transition="android"] [nav-bar="cached"] .header-item {
  8251. display: none; }
  8252. [nav-swipe="fast"] [nav-view],
  8253. [nav-swipe="fast"] .title,
  8254. [nav-swipe="fast"] .buttons,
  8255. [nav-swipe="fast"] .back-text {
  8256. -webkit-transition-duration: 50ms;
  8257. transition-duration: 50ms;
  8258. -webkit-transition-timing-function: linear;
  8259. transition-timing-function: linear; }
  8260. [nav-swipe="slow"] [nav-view],
  8261. [nav-swipe="slow"] .title,
  8262. [nav-swipe="slow"] .buttons,
  8263. [nav-swipe="slow"] .back-text {
  8264. -webkit-transition-duration: 160ms;
  8265. transition-duration: 160ms;
  8266. -webkit-transition-timing-function: linear;
  8267. transition-timing-function: linear; }
  8268. [nav-view="cached"],
  8269. [nav-bar="cached"] {
  8270. display: none; }
  8271. [nav-view="stage"] {
  8272. opacity: 0;
  8273. -webkit-transition-duration: 0;
  8274. transition-duration: 0; }
  8275. [nav-bar="stage"] .title,
  8276. [nav-bar="stage"] .buttons,
  8277. [nav-bar="stage"] .back-text {
  8278. position: absolute;
  8279. opacity: 0;
  8280. -webkit-transition-duration: 0s;
  8281. transition-duration: 0s; }