ionic.app.css 244 KB

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