ionic.app.css 247 KB

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