Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

ionicons.css 52KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513
  1. @charset "UTF-8";
  2. /*!
  3. Ionicons, v4.5.5
  4. Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  5. https://twitter.com/benjsperry https://twitter.com/ionicframework
  6. MIT License: https://github.com/driftyco/ionicons
  7. Android-style icons originally built by Google’s
  8. Material Design Icons: https://github.com/google/material-design-icons
  9. used under CC BY http://creativecommons.org/licenses/by/4.0/
  10. Modified icons to fit ionicon’s grid from original.
  11. */
  12. @font-face {
  13. font-family: "Ionicons";
  14. src: url("../fonts/ionicons.eot?v=4.5.5");
  15. src: url("../fonts/ionicons.eot?v=4.5.5#iefix") format("embedded-opentype"), url("../fonts/ionicons.woff2?v=4.5.5") format("woff2"), url("../fonts/ionicons.woff?v=4.5.5") format("woff"), url("../fonts/ionicons.ttf?v=4.5.5") format("truetype"), url("../fonts/ionicons.svg?v=4.5.5#Ionicons") format("svg");
  16. font-weight: normal;
  17. font-style: normal;
  18. }
  19. .ion, .ionicons,
  20. .ion-ios-add:before,
  21. .ion-ios-add-circle:before,
  22. .ion-ios-add-circle-outline:before,
  23. .ion-ios-airplane:before,
  24. .ion-ios-alarm:before,
  25. .ion-ios-albums:before,
  26. .ion-ios-alert:before,
  27. .ion-ios-american-football:before,
  28. .ion-ios-analytics:before,
  29. .ion-ios-aperture:before,
  30. .ion-ios-apps:before,
  31. .ion-ios-appstore:before,
  32. .ion-ios-archive:before,
  33. .ion-ios-arrow-back:before,
  34. .ion-ios-arrow-down:before,
  35. .ion-ios-arrow-dropdown:before,
  36. .ion-ios-arrow-dropdown-circle:before,
  37. .ion-ios-arrow-dropleft:before,
  38. .ion-ios-arrow-dropleft-circle:before,
  39. .ion-ios-arrow-dropright:before,
  40. .ion-ios-arrow-dropright-circle:before,
  41. .ion-ios-arrow-dropup:before,
  42. .ion-ios-arrow-dropup-circle:before,
  43. .ion-ios-arrow-forward:before,
  44. .ion-ios-arrow-round-back:before,
  45. .ion-ios-arrow-round-down:before,
  46. .ion-ios-arrow-round-forward:before,
  47. .ion-ios-arrow-round-up:before,
  48. .ion-ios-arrow-up:before,
  49. .ion-ios-at:before,
  50. .ion-ios-attach:before,
  51. .ion-ios-backspace:before,
  52. .ion-ios-barcode:before,
  53. .ion-ios-baseball:before,
  54. .ion-ios-basket:before,
  55. .ion-ios-basketball:before,
  56. .ion-ios-battery-charging:before,
  57. .ion-ios-battery-dead:before,
  58. .ion-ios-battery-full:before,
  59. .ion-ios-beaker:before,
  60. .ion-ios-bed:before,
  61. .ion-ios-beer:before,
  62. .ion-ios-bicycle:before,
  63. .ion-ios-bluetooth:before,
  64. .ion-ios-boat:before,
  65. .ion-ios-body:before,
  66. .ion-ios-bonfire:before,
  67. .ion-ios-book:before,
  68. .ion-ios-bookmark:before,
  69. .ion-ios-bookmarks:before,
  70. .ion-ios-bowtie:before,
  71. .ion-ios-briefcase:before,
  72. .ion-ios-browsers:before,
  73. .ion-ios-brush:before,
  74. .ion-ios-bug:before,
  75. .ion-ios-build:before,
  76. .ion-ios-bulb:before,
  77. .ion-ios-bus:before,
  78. .ion-ios-business:before,
  79. .ion-ios-cafe:before,
  80. .ion-ios-calculator:before,
  81. .ion-ios-calendar:before,
  82. .ion-ios-call:before,
  83. .ion-ios-camera:before,
  84. .ion-ios-car:before,
  85. .ion-ios-card:before,
  86. .ion-ios-cart:before,
  87. .ion-ios-cash:before,
  88. .ion-ios-cellular:before,
  89. .ion-ios-chatboxes:before,
  90. .ion-ios-chatbubbles:before,
  91. .ion-ios-checkbox:before,
  92. .ion-ios-checkbox-outline:before,
  93. .ion-ios-checkmark:before,
  94. .ion-ios-checkmark-circle:before,
  95. .ion-ios-checkmark-circle-outline:before,
  96. .ion-ios-clipboard:before,
  97. .ion-ios-clock:before,
  98. .ion-ios-close:before,
  99. .ion-ios-close-circle:before,
  100. .ion-ios-close-circle-outline:before,
  101. .ion-ios-cloud:before,
  102. .ion-ios-cloud-circle:before,
  103. .ion-ios-cloud-done:before,
  104. .ion-ios-cloud-download:before,
  105. .ion-ios-cloud-outline:before,
  106. .ion-ios-cloud-upload:before,
  107. .ion-ios-cloudy:before,
  108. .ion-ios-cloudy-night:before,
  109. .ion-ios-code:before,
  110. .ion-ios-code-download:before,
  111. .ion-ios-code-working:before,
  112. .ion-ios-cog:before,
  113. .ion-ios-color-fill:before,
  114. .ion-ios-color-filter:before,
  115. .ion-ios-color-palette:before,
  116. .ion-ios-color-wand:before,
  117. .ion-ios-compass:before,
  118. .ion-ios-construct:before,
  119. .ion-ios-contact:before,
  120. .ion-ios-contacts:before,
  121. .ion-ios-contract:before,
  122. .ion-ios-contrast:before,
  123. .ion-ios-copy:before,
  124. .ion-ios-create:before,
  125. .ion-ios-crop:before,
  126. .ion-ios-cube:before,
  127. .ion-ios-cut:before,
  128. .ion-ios-desktop:before,
  129. .ion-ios-disc:before,
  130. .ion-ios-document:before,
  131. .ion-ios-done-all:before,
  132. .ion-ios-download:before,
  133. .ion-ios-easel:before,
  134. .ion-ios-egg:before,
  135. .ion-ios-exit:before,
  136. .ion-ios-expand:before,
  137. .ion-ios-eye:before,
  138. .ion-ios-eye-off:before,
  139. .ion-ios-fastforward:before,
  140. .ion-ios-female:before,
  141. .ion-ios-filing:before,
  142. .ion-ios-film:before,
  143. .ion-ios-finger-print:before,
  144. .ion-ios-fitness:before,
  145. .ion-ios-flag:before,
  146. .ion-ios-flame:before,
  147. .ion-ios-flash:before,
  148. .ion-ios-flash-off:before,
  149. .ion-ios-flashlight:before,
  150. .ion-ios-flask:before,
  151. .ion-ios-flower:before,
  152. .ion-ios-folder:before,
  153. .ion-ios-folder-open:before,
  154. .ion-ios-football:before,
  155. .ion-ios-funnel:before,
  156. .ion-ios-gift:before,
  157. .ion-ios-git-branch:before,
  158. .ion-ios-git-commit:before,
  159. .ion-ios-git-compare:before,
  160. .ion-ios-git-merge:before,
  161. .ion-ios-git-network:before,
  162. .ion-ios-git-pull-request:before,
  163. .ion-ios-glasses:before,
  164. .ion-ios-globe:before,
  165. .ion-ios-grid:before,
  166. .ion-ios-hammer:before,
  167. .ion-ios-hand:before,
  168. .ion-ios-happy:before,
  169. .ion-ios-headset:before,
  170. .ion-ios-heart:before,
  171. .ion-ios-heart-dislike:before,
  172. .ion-ios-heart-empty:before,
  173. .ion-ios-heart-half:before,
  174. .ion-ios-help:before,
  175. .ion-ios-help-buoy:before,
  176. .ion-ios-help-circle:before,
  177. .ion-ios-help-circle-outline:before,
  178. .ion-ios-home:before,
  179. .ion-ios-hourglass:before,
  180. .ion-ios-ice-cream:before,
  181. .ion-ios-image:before,
  182. .ion-ios-images:before,
  183. .ion-ios-infinite:before,
  184. .ion-ios-information:before,
  185. .ion-ios-information-circle:before,
  186. .ion-ios-information-circle-outline:before,
  187. .ion-ios-jet:before,
  188. .ion-ios-journal:before,
  189. .ion-ios-key:before,
  190. .ion-ios-keypad:before,
  191. .ion-ios-laptop:before,
  192. .ion-ios-leaf:before,
  193. .ion-ios-link:before,
  194. .ion-ios-list:before,
  195. .ion-ios-list-box:before,
  196. .ion-ios-locate:before,
  197. .ion-ios-lock:before,
  198. .ion-ios-log-in:before,
  199. .ion-ios-log-out:before,
  200. .ion-ios-magnet:before,
  201. .ion-ios-mail:before,
  202. .ion-ios-mail-open:before,
  203. .ion-ios-mail-unread:before,
  204. .ion-ios-male:before,
  205. .ion-ios-man:before,
  206. .ion-ios-map:before,
  207. .ion-ios-medal:before,
  208. .ion-ios-medical:before,
  209. .ion-ios-medkit:before,
  210. .ion-ios-megaphone:before,
  211. .ion-ios-menu:before,
  212. .ion-ios-mic:before,
  213. .ion-ios-mic-off:before,
  214. .ion-ios-microphone:before,
  215. .ion-ios-moon:before,
  216. .ion-ios-more:before,
  217. .ion-ios-move:before,
  218. .ion-ios-musical-note:before,
  219. .ion-ios-musical-notes:before,
  220. .ion-ios-navigate:before,
  221. .ion-ios-notifications:before,
  222. .ion-ios-notifications-off:before,
  223. .ion-ios-notifications-outline:before,
  224. .ion-ios-nuclear:before,
  225. .ion-ios-nutrition:before,
  226. .ion-ios-open:before,
  227. .ion-ios-options:before,
  228. .ion-ios-outlet:before,
  229. .ion-ios-paper:before,
  230. .ion-ios-paper-plane:before,
  231. .ion-ios-partly-sunny:before,
  232. .ion-ios-pause:before,
  233. .ion-ios-paw:before,
  234. .ion-ios-people:before,
  235. .ion-ios-person:before,
  236. .ion-ios-person-add:before,
  237. .ion-ios-phone-landscape:before,
  238. .ion-ios-phone-portrait:before,
  239. .ion-ios-photos:before,
  240. .ion-ios-pie:before,
  241. .ion-ios-pin:before,
  242. .ion-ios-pint:before,
  243. .ion-ios-pizza:before,
  244. .ion-ios-planet:before,
  245. .ion-ios-play:before,
  246. .ion-ios-play-circle:before,
  247. .ion-ios-podium:before,
  248. .ion-ios-power:before,
  249. .ion-ios-pricetag:before,
  250. .ion-ios-pricetags:before,
  251. .ion-ios-print:before,
  252. .ion-ios-pulse:before,
  253. .ion-ios-qr-scanner:before,
  254. .ion-ios-quote:before,
  255. .ion-ios-radio:before,
  256. .ion-ios-radio-button-off:before,
  257. .ion-ios-radio-button-on:before,
  258. .ion-ios-rainy:before,
  259. .ion-ios-recording:before,
  260. .ion-ios-redo:before,
  261. .ion-ios-refresh:before,
  262. .ion-ios-refresh-circle:before,
  263. .ion-ios-remove:before,
  264. .ion-ios-remove-circle:before,
  265. .ion-ios-remove-circle-outline:before,
  266. .ion-ios-reorder:before,
  267. .ion-ios-repeat:before,
  268. .ion-ios-resize:before,
  269. .ion-ios-restaurant:before,
  270. .ion-ios-return-left:before,
  271. .ion-ios-return-right:before,
  272. .ion-ios-reverse-camera:before,
  273. .ion-ios-rewind:before,
  274. .ion-ios-ribbon:before,
  275. .ion-ios-rocket:before,
  276. .ion-ios-rose:before,
  277. .ion-ios-sad:before,
  278. .ion-ios-save:before,
  279. .ion-ios-school:before,
  280. .ion-ios-search:before,
  281. .ion-ios-send:before,
  282. .ion-ios-settings:before,
  283. .ion-ios-share:before,
  284. .ion-ios-share-alt:before,
  285. .ion-ios-shirt:before,
  286. .ion-ios-shuffle:before,
  287. .ion-ios-skip-backward:before,
  288. .ion-ios-skip-forward:before,
  289. .ion-ios-snow:before,
  290. .ion-ios-speedometer:before,
  291. .ion-ios-square:before,
  292. .ion-ios-square-outline:before,
  293. .ion-ios-star:before,
  294. .ion-ios-star-half:before,
  295. .ion-ios-star-outline:before,
  296. .ion-ios-stats:before,
  297. .ion-ios-stopwatch:before,
  298. .ion-ios-subway:before,
  299. .ion-ios-sunny:before,
  300. .ion-ios-swap:before,
  301. .ion-ios-switch:before,
  302. .ion-ios-sync:before,
  303. .ion-ios-tablet-landscape:before,
  304. .ion-ios-tablet-portrait:before,
  305. .ion-ios-tennisball:before,
  306. .ion-ios-text:before,
  307. .ion-ios-thermometer:before,
  308. .ion-ios-thumbs-down:before,
  309. .ion-ios-thumbs-up:before,
  310. .ion-ios-thunderstorm:before,
  311. .ion-ios-time:before,
  312. .ion-ios-timer:before,
  313. .ion-ios-today:before,
  314. .ion-ios-train:before,
  315. .ion-ios-transgender:before,
  316. .ion-ios-trash:before,
  317. .ion-ios-trending-down:before,
  318. .ion-ios-trending-up:before,
  319. .ion-ios-trophy:before,
  320. .ion-ios-tv:before,
  321. .ion-ios-umbrella:before,
  322. .ion-ios-undo:before,
  323. .ion-ios-unlock:before,
  324. .ion-ios-videocam:before,
  325. .ion-ios-volume-high:before,
  326. .ion-ios-volume-low:before,
  327. .ion-ios-volume-mute:before,
  328. .ion-ios-volume-off:before,
  329. .ion-ios-walk:before,
  330. .ion-ios-wallet:before,
  331. .ion-ios-warning:before,
  332. .ion-ios-watch:before,
  333. .ion-ios-water:before,
  334. .ion-ios-wifi:before,
  335. .ion-ios-wine:before,
  336. .ion-ios-woman:before,
  337. .ion-logo-android:before,
  338. .ion-logo-angular:before,
  339. .ion-logo-apple:before,
  340. .ion-logo-bitbucket:before,
  341. .ion-logo-bitcoin:before,
  342. .ion-logo-buffer:before,
  343. .ion-logo-chrome:before,
  344. .ion-logo-closed-captioning:before,
  345. .ion-logo-codepen:before,
  346. .ion-logo-css3:before,
  347. .ion-logo-designernews:before,
  348. .ion-logo-dribbble:before,
  349. .ion-logo-dropbox:before,
  350. .ion-logo-euro:before,
  351. .ion-logo-facebook:before,
  352. .ion-logo-flickr:before,
  353. .ion-logo-foursquare:before,
  354. .ion-logo-freebsd-devil:before,
  355. .ion-logo-game-controller-a:before,
  356. .ion-logo-game-controller-b:before,
  357. .ion-logo-github:before,
  358. .ion-logo-google:before,
  359. .ion-logo-googleplus:before,
  360. .ion-logo-hackernews:before,
  361. .ion-logo-html5:before,
  362. .ion-logo-instagram:before,
  363. .ion-logo-ionic:before,
  364. .ion-logo-ionitron:before,
  365. .ion-logo-javascript:before,
  366. .ion-logo-linkedin:before,
  367. .ion-logo-markdown:before,
  368. .ion-logo-model-s:before,
  369. .ion-logo-no-smoking:before,
  370. .ion-logo-nodejs:before,
  371. .ion-logo-npm:before,
  372. .ion-logo-octocat:before,
  373. .ion-logo-pinterest:before,
  374. .ion-logo-playstation:before,
  375. .ion-logo-polymer:before,
  376. .ion-logo-python:before,
  377. .ion-logo-reddit:before,
  378. .ion-logo-rss:before,
  379. .ion-logo-sass:before,
  380. .ion-logo-skype:before,
  381. .ion-logo-slack:before,
  382. .ion-logo-snapchat:before,
  383. .ion-logo-steam:before,
  384. .ion-logo-tumblr:before,
  385. .ion-logo-tux:before,
  386. .ion-logo-twitch:before,
  387. .ion-logo-twitter:before,
  388. .ion-logo-usd:before,
  389. .ion-logo-vimeo:before,
  390. .ion-logo-vk:before,
  391. .ion-logo-whatsapp:before,
  392. .ion-logo-windows:before,
  393. .ion-logo-wordpress:before,
  394. .ion-logo-xbox:before,
  395. .ion-logo-xing:before,
  396. .ion-logo-yahoo:before,
  397. .ion-logo-yen:before,
  398. .ion-logo-youtube:before,
  399. .ion-md-add:before,
  400. .ion-md-add-circle:before,
  401. .ion-md-add-circle-outline:before,
  402. .ion-md-airplane:before,
  403. .ion-md-alarm:before,
  404. .ion-md-albums:before,
  405. .ion-md-alert:before,
  406. .ion-md-american-football:before,
  407. .ion-md-analytics:before,
  408. .ion-md-aperture:before,
  409. .ion-md-apps:before,
  410. .ion-md-appstore:before,
  411. .ion-md-archive:before,
  412. .ion-md-arrow-back:before,
  413. .ion-md-arrow-down:before,
  414. .ion-md-arrow-dropdown:before,
  415. .ion-md-arrow-dropdown-circle:before,
  416. .ion-md-arrow-dropleft:before,
  417. .ion-md-arrow-dropleft-circle:before,
  418. .ion-md-arrow-dropright:before,
  419. .ion-md-arrow-dropright-circle:before,
  420. .ion-md-arrow-dropup:before,
  421. .ion-md-arrow-dropup-circle:before,
  422. .ion-md-arrow-forward:before,
  423. .ion-md-arrow-round-back:before,
  424. .ion-md-arrow-round-down:before,
  425. .ion-md-arrow-round-forward:before,
  426. .ion-md-arrow-round-up:before,
  427. .ion-md-arrow-up:before,
  428. .ion-md-at:before,
  429. .ion-md-attach:before,
  430. .ion-md-backspace:before,
  431. .ion-md-barcode:before,
  432. .ion-md-baseball:before,
  433. .ion-md-basket:before,
  434. .ion-md-basketball:before,
  435. .ion-md-battery-charging:before,
  436. .ion-md-battery-dead:before,
  437. .ion-md-battery-full:before,
  438. .ion-md-beaker:before,
  439. .ion-md-bed:before,
  440. .ion-md-beer:before,
  441. .ion-md-bicycle:before,
  442. .ion-md-bluetooth:before,
  443. .ion-md-boat:before,
  444. .ion-md-body:before,
  445. .ion-md-bonfire:before,
  446. .ion-md-book:before,
  447. .ion-md-bookmark:before,
  448. .ion-md-bookmarks:before,
  449. .ion-md-bowtie:before,
  450. .ion-md-briefcase:before,
  451. .ion-md-browsers:before,
  452. .ion-md-brush:before,
  453. .ion-md-bug:before,
  454. .ion-md-build:before,
  455. .ion-md-bulb:before,
  456. .ion-md-bus:before,
  457. .ion-md-business:before,
  458. .ion-md-cafe:before,
  459. .ion-md-calculator:before,
  460. .ion-md-calendar:before,
  461. .ion-md-call:before,
  462. .ion-md-camera:before,
  463. .ion-md-car:before,
  464. .ion-md-card:before,
  465. .ion-md-cart:before,
  466. .ion-md-cash:before,
  467. .ion-md-cellular:before,
  468. .ion-md-chatboxes:before,
  469. .ion-md-chatbubbles:before,
  470. .ion-md-checkbox:before,
  471. .ion-md-checkbox-outline:before,
  472. .ion-md-checkmark:before,
  473. .ion-md-checkmark-circle:before,
  474. .ion-md-checkmark-circle-outline:before,
  475. .ion-md-clipboard:before,
  476. .ion-md-clock:before,
  477. .ion-md-close:before,
  478. .ion-md-close-circle:before,
  479. .ion-md-close-circle-outline:before,
  480. .ion-md-cloud:before,
  481. .ion-md-cloud-circle:before,
  482. .ion-md-cloud-done:before,
  483. .ion-md-cloud-download:before,
  484. .ion-md-cloud-outline:before,
  485. .ion-md-cloud-upload:before,
  486. .ion-md-cloudy:before,
  487. .ion-md-cloudy-night:before,
  488. .ion-md-code:before,
  489. .ion-md-code-download:before,
  490. .ion-md-code-working:before,
  491. .ion-md-cog:before,
  492. .ion-md-color-fill:before,
  493. .ion-md-color-filter:before,
  494. .ion-md-color-palette:before,
  495. .ion-md-color-wand:before,
  496. .ion-md-compass:before,
  497. .ion-md-construct:before,
  498. .ion-md-contact:before,
  499. .ion-md-contacts:before,
  500. .ion-md-contract:before,
  501. .ion-md-contrast:before,
  502. .ion-md-copy:before,
  503. .ion-md-create:before,
  504. .ion-md-crop:before,
  505. .ion-md-cube:before,
  506. .ion-md-cut:before,
  507. .ion-md-desktop:before,
  508. .ion-md-disc:before,
  509. .ion-md-document:before,
  510. .ion-md-done-all:before,
  511. .ion-md-download:before,
  512. .ion-md-easel:before,
  513. .ion-md-egg:before,
  514. .ion-md-exit:before,
  515. .ion-md-expand:before,
  516. .ion-md-eye:before,
  517. .ion-md-eye-off:before,
  518. .ion-md-fastforward:before,
  519. .ion-md-female:before,
  520. .ion-md-filing:before,
  521. .ion-md-film:before,
  522. .ion-md-finger-print:before,
  523. .ion-md-fitness:before,
  524. .ion-md-flag:before,
  525. .ion-md-flame:before,
  526. .ion-md-flash:before,
  527. .ion-md-flash-off:before,
  528. .ion-md-flashlight:before,
  529. .ion-md-flask:before,
  530. .ion-md-flower:before,
  531. .ion-md-folder:before,
  532. .ion-md-folder-open:before,
  533. .ion-md-football:before,
  534. .ion-md-funnel:before,
  535. .ion-md-gift:before,
  536. .ion-md-git-branch:before,
  537. .ion-md-git-commit:before,
  538. .ion-md-git-compare:before,
  539. .ion-md-git-merge:before,
  540. .ion-md-git-network:before,
  541. .ion-md-git-pull-request:before,
  542. .ion-md-glasses:before,
  543. .ion-md-globe:before,
  544. .ion-md-grid:before,
  545. .ion-md-hammer:before,
  546. .ion-md-hand:before,
  547. .ion-md-happy:before,
  548. .ion-md-headset:before,
  549. .ion-md-heart:before,
  550. .ion-md-heart-dislike:before,
  551. .ion-md-heart-empty:before,
  552. .ion-md-heart-half:before,
  553. .ion-md-help:before,
  554. .ion-md-help-buoy:before,
  555. .ion-md-help-circle:before,
  556. .ion-md-help-circle-outline:before,
  557. .ion-md-home:before,
  558. .ion-md-hourglass:before,
  559. .ion-md-ice-cream:before,
  560. .ion-md-image:before,
  561. .ion-md-images:before,
  562. .ion-md-infinite:before,
  563. .ion-md-information:before,
  564. .ion-md-information-circle:before,
  565. .ion-md-information-circle-outline:before,
  566. .ion-md-jet:before,
  567. .ion-md-journal:before,
  568. .ion-md-key:before,
  569. .ion-md-keypad:before,
  570. .ion-md-laptop:before,
  571. .ion-md-leaf:before,
  572. .ion-md-link:before,
  573. .ion-md-list:before,
  574. .ion-md-list-box:before,
  575. .ion-md-locate:before,
  576. .ion-md-lock:before,
  577. .ion-md-log-in:before,
  578. .ion-md-log-out:before,
  579. .ion-md-magnet:before,
  580. .ion-md-mail:before,
  581. .ion-md-mail-open:before,
  582. .ion-md-mail-unread:before,
  583. .ion-md-male:before,
  584. .ion-md-man:before,
  585. .ion-md-map:before,
  586. .ion-md-medal:before,
  587. .ion-md-medical:before,
  588. .ion-md-medkit:before,
  589. .ion-md-megaphone:before,
  590. .ion-md-menu:before,
  591. .ion-md-mic:before,
  592. .ion-md-mic-off:before,
  593. .ion-md-microphone:before,
  594. .ion-md-moon:before,
  595. .ion-md-more:before,
  596. .ion-md-move:before,
  597. .ion-md-musical-note:before,
  598. .ion-md-musical-notes:before,
  599. .ion-md-navigate:before,
  600. .ion-md-notifications:before,
  601. .ion-md-notifications-off:before,
  602. .ion-md-notifications-outline:before,
  603. .ion-md-nuclear:before,
  604. .ion-md-nutrition:before,
  605. .ion-md-open:before,
  606. .ion-md-options:before,
  607. .ion-md-outlet:before,
  608. .ion-md-paper:before,
  609. .ion-md-paper-plane:before,
  610. .ion-md-partly-sunny:before,
  611. .ion-md-pause:before,
  612. .ion-md-paw:before,
  613. .ion-md-people:before,
  614. .ion-md-person:before,
  615. .ion-md-person-add:before,
  616. .ion-md-phone-landscape:before,
  617. .ion-md-phone-portrait:before,
  618. .ion-md-photos:before,
  619. .ion-md-pie:before,
  620. .ion-md-pin:before,
  621. .ion-md-pint:before,
  622. .ion-md-pizza:before,
  623. .ion-md-planet:before,
  624. .ion-md-play:before,
  625. .ion-md-play-circle:before,
  626. .ion-md-podium:before,
  627. .ion-md-power:before,
  628. .ion-md-pricetag:before,
  629. .ion-md-pricetags:before,
  630. .ion-md-print:before,
  631. .ion-md-pulse:before,
  632. .ion-md-qr-scanner:before,
  633. .ion-md-quote:before,
  634. .ion-md-radio:before,
  635. .ion-md-radio-button-off:before,
  636. .ion-md-radio-button-on:before,
  637. .ion-md-rainy:before,
  638. .ion-md-recording:before,
  639. .ion-md-redo:before,
  640. .ion-md-refresh:before,
  641. .ion-md-refresh-circle:before,
  642. .ion-md-remove:before,
  643. .ion-md-remove-circle:before,
  644. .ion-md-remove-circle-outline:before,
  645. .ion-md-reorder:before,
  646. .ion-md-repeat:before,
  647. .ion-md-resize:before,
  648. .ion-md-restaurant:before,
  649. .ion-md-return-left:before,
  650. .ion-md-return-right:before,
  651. .ion-md-reverse-camera:before,
  652. .ion-md-rewind:before,
  653. .ion-md-ribbon:before,
  654. .ion-md-rocket:before,
  655. .ion-md-rose:before,
  656. .ion-md-sad:before,
  657. .ion-md-save:before,
  658. .ion-md-school:before,
  659. .ion-md-search:before,
  660. .ion-md-send:before,
  661. .ion-md-settings:before,
  662. .ion-md-share:before,
  663. .ion-md-share-alt:before,
  664. .ion-md-shirt:before,
  665. .ion-md-shuffle:before,
  666. .ion-md-skip-backward:before,
  667. .ion-md-skip-forward:before,
  668. .ion-md-snow:before,
  669. .ion-md-speedometer:before,
  670. .ion-md-square:before,
  671. .ion-md-square-outline:before,
  672. .ion-md-star:before,
  673. .ion-md-star-half:before,
  674. .ion-md-star-outline:before,
  675. .ion-md-stats:before,
  676. .ion-md-stopwatch:before,
  677. .ion-md-subway:before,
  678. .ion-md-sunny:before,
  679. .ion-md-swap:before,
  680. .ion-md-switch:before,
  681. .ion-md-sync:before,
  682. .ion-md-tablet-landscape:before,
  683. .ion-md-tablet-portrait:before,
  684. .ion-md-tennisball:before,
  685. .ion-md-text:before,
  686. .ion-md-thermometer:before,
  687. .ion-md-thumbs-down:before,
  688. .ion-md-thumbs-up:before,
  689. .ion-md-thunderstorm:before,
  690. .ion-md-time:before,
  691. .ion-md-timer:before,
  692. .ion-md-today:before,
  693. .ion-md-train:before,
  694. .ion-md-transgender:before,
  695. .ion-md-trash:before,
  696. .ion-md-trending-down:before,
  697. .ion-md-trending-up:before,
  698. .ion-md-trophy:before,
  699. .ion-md-tv:before,
  700. .ion-md-umbrella:before,
  701. .ion-md-undo:before,
  702. .ion-md-unlock:before,
  703. .ion-md-videocam:before,
  704. .ion-md-volume-high:before,
  705. .ion-md-volume-low:before,
  706. .ion-md-volume-mute:before,
  707. .ion-md-volume-off:before,
  708. .ion-md-walk:before,
  709. .ion-md-wallet:before,
  710. .ion-md-warning:before,
  711. .ion-md-watch:before,
  712. .ion-md-water:before,
  713. .ion-md-wifi:before,
  714. .ion-md-wine:before,
  715. .ion-md-woman:before {
  716. display: inline-block;
  717. font-family: "Ionicons";
  718. speak: none;
  719. font-style: normal;
  720. font-weight: normal;
  721. font-variant: normal;
  722. text-transform: none;
  723. text-rendering: auto;
  724. line-height: 1;
  725. -webkit-font-smoothing: antialiased;
  726. -moz-osx-font-smoothing: grayscale;
  727. }
  728. .ion-ios-add:before {
  729. content: "\f102";
  730. }
  731. .ion-ios-add-circle:before {
  732. content: "\f101";
  733. }
  734. .ion-ios-add-circle-outline:before {
  735. content: "\f100";
  736. }
  737. .ion-ios-airplane:before {
  738. content: "\f137";
  739. }
  740. .ion-ios-alarm:before {
  741. content: "\f3c8";
  742. }
  743. .ion-ios-albums:before {
  744. content: "\f3ca";
  745. }
  746. .ion-ios-alert:before {
  747. content: "\f104";
  748. }
  749. .ion-ios-american-football:before {
  750. content: "\f106";
  751. }
  752. .ion-ios-analytics:before {
  753. content: "\f3ce";
  754. }
  755. .ion-ios-aperture:before {
  756. content: "\f108";
  757. }
  758. .ion-ios-apps:before {
  759. content: "\f10a";
  760. }
  761. .ion-ios-appstore:before {
  762. content: "\f10c";
  763. }
  764. .ion-ios-archive:before {
  765. content: "\f10e";
  766. }
  767. .ion-ios-arrow-back:before {
  768. content: "\f3cf";
  769. }
  770. .ion-ios-arrow-down:before {
  771. content: "\f3d0";
  772. }
  773. .ion-ios-arrow-dropdown:before {
  774. content: "\f110";
  775. }
  776. .ion-ios-arrow-dropdown-circle:before {
  777. content: "\f125";
  778. }
  779. .ion-ios-arrow-dropleft:before {
  780. content: "\f112";
  781. }
  782. .ion-ios-arrow-dropleft-circle:before {
  783. content: "\f129";
  784. }
  785. .ion-ios-arrow-dropright:before {
  786. content: "\f114";
  787. }
  788. .ion-ios-arrow-dropright-circle:before {
  789. content: "\f12b";
  790. }
  791. .ion-ios-arrow-dropup:before {
  792. content: "\f116";
  793. }
  794. .ion-ios-arrow-dropup-circle:before {
  795. content: "\f12d";
  796. }
  797. .ion-ios-arrow-forward:before {
  798. content: "\f3d1";
  799. }
  800. .ion-ios-arrow-round-back:before {
  801. content: "\f117";
  802. }
  803. .ion-ios-arrow-round-down:before {
  804. content: "\f118";
  805. }
  806. .ion-ios-arrow-round-forward:before {
  807. content: "\f119";
  808. }
  809. .ion-ios-arrow-round-up:before {
  810. content: "\f11a";
  811. }
  812. .ion-ios-arrow-up:before {
  813. content: "\f3d8";
  814. }
  815. .ion-ios-at:before {
  816. content: "\f3da";
  817. }
  818. .ion-ios-attach:before {
  819. content: "\f11b";
  820. }
  821. .ion-ios-backspace:before {
  822. content: "\f11d";
  823. }
  824. .ion-ios-barcode:before {
  825. content: "\f3dc";
  826. }
  827. .ion-ios-baseball:before {
  828. content: "\f3de";
  829. }
  830. .ion-ios-basket:before {
  831. content: "\f11f";
  832. }
  833. .ion-ios-basketball:before {
  834. content: "\f3e0";
  835. }
  836. .ion-ios-battery-charging:before {
  837. content: "\f120";
  838. }
  839. .ion-ios-battery-dead:before {
  840. content: "\f121";
  841. }
  842. .ion-ios-battery-full:before {
  843. content: "\f122";
  844. }
  845. .ion-ios-beaker:before {
  846. content: "\f124";
  847. }
  848. .ion-ios-bed:before {
  849. content: "\f139";
  850. }
  851. .ion-ios-beer:before {
  852. content: "\f126";
  853. }
  854. .ion-ios-bicycle:before {
  855. content: "\f127";
  856. }
  857. .ion-ios-bluetooth:before {
  858. content: "\f128";
  859. }
  860. .ion-ios-boat:before {
  861. content: "\f12a";
  862. }
  863. .ion-ios-body:before {
  864. content: "\f3e4";
  865. }
  866. .ion-ios-bonfire:before {
  867. content: "\f12c";
  868. }
  869. .ion-ios-book:before {
  870. content: "\f3e8";
  871. }
  872. .ion-ios-bookmark:before {
  873. content: "\f12e";
  874. }
  875. .ion-ios-bookmarks:before {
  876. content: "\f3ea";
  877. }
  878. .ion-ios-bowtie:before {
  879. content: "\f130";
  880. }
  881. .ion-ios-briefcase:before {
  882. content: "\f3ee";
  883. }
  884. .ion-ios-browsers:before {
  885. content: "\f3f0";
  886. }
  887. .ion-ios-brush:before {
  888. content: "\f132";
  889. }
  890. .ion-ios-bug:before {
  891. content: "\f134";
  892. }
  893. .ion-ios-build:before {
  894. content: "\f136";
  895. }
  896. .ion-ios-bulb:before {
  897. content: "\f138";
  898. }
  899. .ion-ios-bus:before {
  900. content: "\f13a";
  901. }
  902. .ion-ios-business:before {
  903. content: "\f1a3";
  904. }
  905. .ion-ios-cafe:before {
  906. content: "\f13c";
  907. }
  908. .ion-ios-calculator:before {
  909. content: "\f3f2";
  910. }
  911. .ion-ios-calendar:before {
  912. content: "\f3f4";
  913. }
  914. .ion-ios-call:before {
  915. content: "\f13e";
  916. }
  917. .ion-ios-camera:before {
  918. content: "\f3f6";
  919. }
  920. .ion-ios-car:before {
  921. content: "\f140";
  922. }
  923. .ion-ios-card:before {
  924. content: "\f142";
  925. }
  926. .ion-ios-cart:before {
  927. content: "\f3f8";
  928. }
  929. .ion-ios-cash:before {
  930. content: "\f144";
  931. }
  932. .ion-ios-cellular:before {
  933. content: "\f13d";
  934. }
  935. .ion-ios-chatboxes:before {
  936. content: "\f3fa";
  937. }
  938. .ion-ios-chatbubbles:before {
  939. content: "\f146";
  940. }
  941. .ion-ios-checkbox:before {
  942. content: "\f148";
  943. }
  944. .ion-ios-checkbox-outline:before {
  945. content: "\f147";
  946. }
  947. .ion-ios-checkmark:before {
  948. content: "\f3ff";
  949. }
  950. .ion-ios-checkmark-circle:before {
  951. content: "\f14a";
  952. }
  953. .ion-ios-checkmark-circle-outline:before {
  954. content: "\f149";
  955. }
  956. .ion-ios-clipboard:before {
  957. content: "\f14c";
  958. }
  959. .ion-ios-clock:before {
  960. content: "\f403";
  961. }
  962. .ion-ios-close:before {
  963. content: "\f406";
  964. }
  965. .ion-ios-close-circle:before {
  966. content: "\f14e";
  967. }
  968. .ion-ios-close-circle-outline:before {
  969. content: "\f14d";
  970. }
  971. .ion-ios-cloud:before {
  972. content: "\f40c";
  973. }
  974. .ion-ios-cloud-circle:before {
  975. content: "\f152";
  976. }
  977. .ion-ios-cloud-done:before {
  978. content: "\f154";
  979. }
  980. .ion-ios-cloud-download:before {
  981. content: "\f408";
  982. }
  983. .ion-ios-cloud-outline:before {
  984. content: "\f409";
  985. }
  986. .ion-ios-cloud-upload:before {
  987. content: "\f40b";
  988. }
  989. .ion-ios-cloudy:before {
  990. content: "\f410";
  991. }
  992. .ion-ios-cloudy-night:before {
  993. content: "\f40e";
  994. }
  995. .ion-ios-code:before {
  996. content: "\f157";
  997. }
  998. .ion-ios-code-download:before {
  999. content: "\f155";
  1000. }
  1001. .ion-ios-code-working:before {
  1002. content: "\f156";
  1003. }
  1004. .ion-ios-cog:before {
  1005. content: "\f412";
  1006. }
  1007. .ion-ios-color-fill:before {
  1008. content: "\f159";
  1009. }
  1010. .ion-ios-color-filter:before {
  1011. content: "\f414";
  1012. }
  1013. .ion-ios-color-palette:before {
  1014. content: "\f15b";
  1015. }
  1016. .ion-ios-color-wand:before {
  1017. content: "\f416";
  1018. }
  1019. .ion-ios-compass:before {
  1020. content: "\f15d";
  1021. }
  1022. .ion-ios-construct:before {
  1023. content: "\f15f";
  1024. }
  1025. .ion-ios-contact:before {
  1026. content: "\f41a";
  1027. }
  1028. .ion-ios-contacts:before {
  1029. content: "\f161";
  1030. }
  1031. .ion-ios-contract:before {
  1032. content: "\f162";
  1033. }
  1034. .ion-ios-contrast:before {
  1035. content: "\f163";
  1036. }
  1037. .ion-ios-copy:before {
  1038. content: "\f41c";
  1039. }
  1040. .ion-ios-create:before {
  1041. content: "\f165";
  1042. }
  1043. .ion-ios-crop:before {
  1044. content: "\f41e";
  1045. }
  1046. .ion-ios-cube:before {
  1047. content: "\f168";
  1048. }
  1049. .ion-ios-cut:before {
  1050. content: "\f16a";
  1051. }
  1052. .ion-ios-desktop:before {
  1053. content: "\f16c";
  1054. }
  1055. .ion-ios-disc:before {
  1056. content: "\f16e";
  1057. }
  1058. .ion-ios-document:before {
  1059. content: "\f170";
  1060. }
  1061. .ion-ios-done-all:before {
  1062. content: "\f171";
  1063. }
  1064. .ion-ios-download:before {
  1065. content: "\f420";
  1066. }
  1067. .ion-ios-easel:before {
  1068. content: "\f173";
  1069. }
  1070. .ion-ios-egg:before {
  1071. content: "\f175";
  1072. }
  1073. .ion-ios-exit:before {
  1074. content: "\f177";
  1075. }
  1076. .ion-ios-expand:before {
  1077. content: "\f178";
  1078. }
  1079. .ion-ios-eye:before {
  1080. content: "\f425";
  1081. }
  1082. .ion-ios-eye-off:before {
  1083. content: "\f17a";
  1084. }
  1085. .ion-ios-fastforward:before {
  1086. content: "\f427";
  1087. }
  1088. .ion-ios-female:before {
  1089. content: "\f17b";
  1090. }
  1091. .ion-ios-filing:before {
  1092. content: "\f429";
  1093. }
  1094. .ion-ios-film:before {
  1095. content: "\f42b";
  1096. }
  1097. .ion-ios-finger-print:before {
  1098. content: "\f17c";
  1099. }
  1100. .ion-ios-fitness:before {
  1101. content: "\f1ab";
  1102. }
  1103. .ion-ios-flag:before {
  1104. content: "\f42d";
  1105. }
  1106. .ion-ios-flame:before {
  1107. content: "\f42f";
  1108. }
  1109. .ion-ios-flash:before {
  1110. content: "\f17e";
  1111. }
  1112. .ion-ios-flash-off:before {
  1113. content: "\f12f";
  1114. }
  1115. .ion-ios-flashlight:before {
  1116. content: "\f141";
  1117. }
  1118. .ion-ios-flask:before {
  1119. content: "\f431";
  1120. }
  1121. .ion-ios-flower:before {
  1122. content: "\f433";
  1123. }
  1124. .ion-ios-folder:before {
  1125. content: "\f435";
  1126. }
  1127. .ion-ios-folder-open:before {
  1128. content: "\f180";
  1129. }
  1130. .ion-ios-football:before {
  1131. content: "\f437";
  1132. }
  1133. .ion-ios-funnel:before {
  1134. content: "\f182";
  1135. }
  1136. .ion-ios-gift:before {
  1137. content: "\f191";
  1138. }
  1139. .ion-ios-git-branch:before {
  1140. content: "\f183";
  1141. }
  1142. .ion-ios-git-commit:before {
  1143. content: "\f184";
  1144. }
  1145. .ion-ios-git-compare:before {
  1146. content: "\f185";
  1147. }
  1148. .ion-ios-git-merge:before {
  1149. content: "\f186";
  1150. }
  1151. .ion-ios-git-network:before {
  1152. content: "\f187";
  1153. }
  1154. .ion-ios-git-pull-request:before {
  1155. content: "\f188";
  1156. }
  1157. .ion-ios-glasses:before {
  1158. content: "\f43f";
  1159. }
  1160. .ion-ios-globe:before {
  1161. content: "\f18a";
  1162. }
  1163. .ion-ios-grid:before {
  1164. content: "\f18c";
  1165. }
  1166. .ion-ios-hammer:before {
  1167. content: "\f18e";
  1168. }
  1169. .ion-ios-hand:before {
  1170. content: "\f190";
  1171. }
  1172. .ion-ios-happy:before {
  1173. content: "\f192";
  1174. }
  1175. .ion-ios-headset:before {
  1176. content: "\f194";
  1177. }
  1178. .ion-ios-heart:before {
  1179. content: "\f443";
  1180. }
  1181. .ion-ios-heart-dislike:before {
  1182. content: "\f13f";
  1183. }
  1184. .ion-ios-heart-empty:before {
  1185. content: "\f19b";
  1186. }
  1187. .ion-ios-heart-half:before {
  1188. content: "\f19d";
  1189. }
  1190. .ion-ios-help:before {
  1191. content: "\f446";
  1192. }
  1193. .ion-ios-help-buoy:before {
  1194. content: "\f196";
  1195. }
  1196. .ion-ios-help-circle:before {
  1197. content: "\f198";
  1198. }
  1199. .ion-ios-help-circle-outline:before {
  1200. content: "\f197";
  1201. }
  1202. .ion-ios-home:before {
  1203. content: "\f448";
  1204. }
  1205. .ion-ios-hourglass:before {
  1206. content: "\f103";
  1207. }
  1208. .ion-ios-ice-cream:before {
  1209. content: "\f19a";
  1210. }
  1211. .ion-ios-image:before {
  1212. content: "\f19c";
  1213. }
  1214. .ion-ios-images:before {
  1215. content: "\f19e";
  1216. }
  1217. .ion-ios-infinite:before {
  1218. content: "\f44a";
  1219. }
  1220. .ion-ios-information:before {
  1221. content: "\f44d";
  1222. }
  1223. .ion-ios-information-circle:before {
  1224. content: "\f1a0";
  1225. }
  1226. .ion-ios-information-circle-outline:before {
  1227. content: "\f19f";
  1228. }
  1229. .ion-ios-jet:before {
  1230. content: "\f1a5";
  1231. }
  1232. .ion-ios-journal:before {
  1233. content: "\f189";
  1234. }
  1235. .ion-ios-key:before {
  1236. content: "\f1a7";
  1237. }
  1238. .ion-ios-keypad:before {
  1239. content: "\f450";
  1240. }
  1241. .ion-ios-laptop:before {
  1242. content: "\f1a8";
  1243. }
  1244. .ion-ios-leaf:before {
  1245. content: "\f1aa";
  1246. }
  1247. .ion-ios-link:before {
  1248. content: "\f22a";
  1249. }
  1250. .ion-ios-list:before {
  1251. content: "\f454";
  1252. }
  1253. .ion-ios-list-box:before {
  1254. content: "\f143";
  1255. }
  1256. .ion-ios-locate:before {
  1257. content: "\f1ae";
  1258. }
  1259. .ion-ios-lock:before {
  1260. content: "\f1b0";
  1261. }
  1262. .ion-ios-log-in:before {
  1263. content: "\f1b1";
  1264. }
  1265. .ion-ios-log-out:before {
  1266. content: "\f1b2";
  1267. }
  1268. .ion-ios-magnet:before {
  1269. content: "\f1b4";
  1270. }
  1271. .ion-ios-mail:before {
  1272. content: "\f1b8";
  1273. }
  1274. .ion-ios-mail-open:before {
  1275. content: "\f1b6";
  1276. }
  1277. .ion-ios-mail-unread:before {
  1278. content: "\f145";
  1279. }
  1280. .ion-ios-male:before {
  1281. content: "\f1b9";
  1282. }
  1283. .ion-ios-man:before {
  1284. content: "\f1bb";
  1285. }
  1286. .ion-ios-map:before {
  1287. content: "\f1bd";
  1288. }
  1289. .ion-ios-medal:before {
  1290. content: "\f1bf";
  1291. }
  1292. .ion-ios-medical:before {
  1293. content: "\f45c";
  1294. }
  1295. .ion-ios-medkit:before {
  1296. content: "\f45e";
  1297. }
  1298. .ion-ios-megaphone:before {
  1299. content: "\f1c1";
  1300. }
  1301. .ion-ios-menu:before {
  1302. content: "\f1c3";
  1303. }
  1304. .ion-ios-mic:before {
  1305. content: "\f461";
  1306. }
  1307. .ion-ios-mic-off:before {
  1308. content: "\f45f";
  1309. }
  1310. .ion-ios-microphone:before {
  1311. content: "\f1c6";
  1312. }
  1313. .ion-ios-moon:before {
  1314. content: "\f468";
  1315. }
  1316. .ion-ios-more:before {
  1317. content: "\f1c8";
  1318. }
  1319. .ion-ios-move:before {
  1320. content: "\f1cb";
  1321. }
  1322. .ion-ios-musical-note:before {
  1323. content: "\f46b";
  1324. }
  1325. .ion-ios-musical-notes:before {
  1326. content: "\f46c";
  1327. }
  1328. .ion-ios-navigate:before {
  1329. content: "\f46e";
  1330. }
  1331. .ion-ios-notifications:before {
  1332. content: "\f1d3";
  1333. }
  1334. .ion-ios-notifications-off:before {
  1335. content: "\f1d1";
  1336. }
  1337. .ion-ios-notifications-outline:before {
  1338. content: "\f133";
  1339. }
  1340. .ion-ios-nuclear:before {
  1341. content: "\f1d5";
  1342. }
  1343. .ion-ios-nutrition:before {
  1344. content: "\f470";
  1345. }
  1346. .ion-ios-open:before {
  1347. content: "\f1d7";
  1348. }
  1349. .ion-ios-options:before {
  1350. content: "\f1d9";
  1351. }
  1352. .ion-ios-outlet:before {
  1353. content: "\f1db";
  1354. }
  1355. .ion-ios-paper:before {
  1356. content: "\f472";
  1357. }
  1358. .ion-ios-paper-plane:before {
  1359. content: "\f1dd";
  1360. }
  1361. .ion-ios-partly-sunny:before {
  1362. content: "\f1df";
  1363. }
  1364. .ion-ios-pause:before {
  1365. content: "\f478";
  1366. }
  1367. .ion-ios-paw:before {
  1368. content: "\f47a";
  1369. }
  1370. .ion-ios-people:before {
  1371. content: "\f47c";
  1372. }
  1373. .ion-ios-person:before {
  1374. content: "\f47e";
  1375. }
  1376. .ion-ios-person-add:before {
  1377. content: "\f1e1";
  1378. }
  1379. .ion-ios-phone-landscape:before {
  1380. content: "\f1e2";
  1381. }
  1382. .ion-ios-phone-portrait:before {
  1383. content: "\f1e3";
  1384. }
  1385. .ion-ios-photos:before {
  1386. content: "\f482";
  1387. }
  1388. .ion-ios-pie:before {
  1389. content: "\f484";
  1390. }
  1391. .ion-ios-pin:before {
  1392. content: "\f1e5";
  1393. }
  1394. .ion-ios-pint:before {
  1395. content: "\f486";
  1396. }
  1397. .ion-ios-pizza:before {
  1398. content: "\f1e7";
  1399. }
  1400. .ion-ios-planet:before {
  1401. content: "\f1eb";
  1402. }
  1403. .ion-ios-play:before {
  1404. content: "\f488";
  1405. }
  1406. .ion-ios-play-circle:before {
  1407. content: "\f113";
  1408. }
  1409. .ion-ios-podium:before {
  1410. content: "\f1ed";
  1411. }
  1412. .ion-ios-power:before {
  1413. content: "\f1ef";
  1414. }
  1415. .ion-ios-pricetag:before {
  1416. content: "\f48d";
  1417. }
  1418. .ion-ios-pricetags:before {
  1419. content: "\f48f";
  1420. }
  1421. .ion-ios-print:before {
  1422. content: "\f1f1";
  1423. }
  1424. .ion-ios-pulse:before {
  1425. content: "\f493";
  1426. }
  1427. .ion-ios-qr-scanner:before {
  1428. content: "\f1f3";
  1429. }
  1430. .ion-ios-quote:before {
  1431. content: "\f1f5";
  1432. }
  1433. .ion-ios-radio:before {
  1434. content: "\f1f9";
  1435. }
  1436. .ion-ios-radio-button-off:before {
  1437. content: "\f1f6";
  1438. }
  1439. .ion-ios-radio-button-on:before {
  1440. content: "\f1f7";
  1441. }
  1442. .ion-ios-rainy:before {
  1443. content: "\f495";
  1444. }
  1445. .ion-ios-recording:before {
  1446. content: "\f497";
  1447. }
  1448. .ion-ios-redo:before {
  1449. content: "\f499";
  1450. }
  1451. .ion-ios-refresh:before {
  1452. content: "\f49c";
  1453. }
  1454. .ion-ios-refresh-circle:before {
  1455. content: "\f135";
  1456. }
  1457. .ion-ios-remove:before {
  1458. content: "\f1fc";
  1459. }
  1460. .ion-ios-remove-circle:before {
  1461. content: "\f1fb";
  1462. }
  1463. .ion-ios-remove-circle-outline:before {
  1464. content: "\f1fa";
  1465. }
  1466. .ion-ios-reorder:before {
  1467. content: "\f1fd";
  1468. }
  1469. .ion-ios-repeat:before {
  1470. content: "\f1fe";
  1471. }
  1472. .ion-ios-resize:before {
  1473. content: "\f1ff";
  1474. }
  1475. .ion-ios-restaurant:before {
  1476. content: "\f201";
  1477. }
  1478. .ion-ios-return-left:before {
  1479. content: "\f202";
  1480. }
  1481. .ion-ios-return-right:before {
  1482. content: "\f203";
  1483. }
  1484. .ion-ios-reverse-camera:before {
  1485. content: "\f49f";
  1486. }
  1487. .ion-ios-rewind:before {
  1488. content: "\f4a1";
  1489. }
  1490. .ion-ios-ribbon:before {
  1491. content: "\f205";
  1492. }
  1493. .ion-ios-rocket:before {
  1494. content: "\f14b";
  1495. }
  1496. .ion-ios-rose:before {
  1497. content: "\f4a3";
  1498. }
  1499. .ion-ios-sad:before {
  1500. content: "\f207";
  1501. }
  1502. .ion-ios-save:before {
  1503. content: "\f1a6";
  1504. }
  1505. .ion-ios-school:before {
  1506. content: "\f209";
  1507. }
  1508. .ion-ios-search:before {
  1509. content: "\f4a5";
  1510. }
  1511. .ion-ios-send:before {
  1512. content: "\f20c";
  1513. }
  1514. .ion-ios-settings:before {
  1515. content: "\f4a7";
  1516. }
  1517. .ion-ios-share:before {
  1518. content: "\f211";
  1519. }
  1520. .ion-ios-share-alt:before {
  1521. content: "\f20f";
  1522. }
  1523. .ion-ios-shirt:before {
  1524. content: "\f213";
  1525. }
  1526. .ion-ios-shuffle:before {
  1527. content: "\f4a9";
  1528. }
  1529. .ion-ios-skip-backward:before {
  1530. content: "\f215";
  1531. }
  1532. .ion-ios-skip-forward:before {
  1533. content: "\f217";
  1534. }
  1535. .ion-ios-snow:before {
  1536. content: "\f218";
  1537. }
  1538. .ion-ios-speedometer:before {
  1539. content: "\f4b0";
  1540. }
  1541. .ion-ios-square:before {
  1542. content: "\f21a";
  1543. }
  1544. .ion-ios-square-outline:before {
  1545. content: "\f15c";
  1546. }
  1547. .ion-ios-star:before {
  1548. content: "\f4b3";
  1549. }
  1550. .ion-ios-star-half:before {
  1551. content: "\f4b1";
  1552. }
  1553. .ion-ios-star-outline:before {
  1554. content: "\f4b2";
  1555. }
  1556. .ion-ios-stats:before {
  1557. content: "\f21c";
  1558. }
  1559. .ion-ios-stopwatch:before {
  1560. content: "\f4b5";
  1561. }
  1562. .ion-ios-subway:before {
  1563. content: "\f21e";
  1564. }
  1565. .ion-ios-sunny:before {
  1566. content: "\f4b7";
  1567. }
  1568. .ion-ios-swap:before {
  1569. content: "\f21f";
  1570. }
  1571. .ion-ios-switch:before {
  1572. content: "\f221";
  1573. }
  1574. .ion-ios-sync:before {
  1575. content: "\f222";
  1576. }
  1577. .ion-ios-tablet-landscape:before {
  1578. content: "\f223";
  1579. }
  1580. .ion-ios-tablet-portrait:before {
  1581. content: "\f24e";
  1582. }
  1583. .ion-ios-tennisball:before {
  1584. content: "\f4bb";
  1585. }
  1586. .ion-ios-text:before {
  1587. content: "\f250";
  1588. }
  1589. .ion-ios-thermometer:before {
  1590. content: "\f252";
  1591. }
  1592. .ion-ios-thumbs-down:before {
  1593. content: "\f254";
  1594. }
  1595. .ion-ios-thumbs-up:before {
  1596. content: "\f256";
  1597. }
  1598. .ion-ios-thunderstorm:before {
  1599. content: "\f4bd";
  1600. }
  1601. .ion-ios-time:before {
  1602. content: "\f4bf";
  1603. }
  1604. .ion-ios-timer:before {
  1605. content: "\f4c1";
  1606. }
  1607. .ion-ios-today:before {
  1608. content: "\f14f";
  1609. }
  1610. .ion-ios-train:before {
  1611. content: "\f258";
  1612. }
  1613. .ion-ios-transgender:before {
  1614. content: "\f259";
  1615. }
  1616. .ion-ios-trash:before {
  1617. content: "\f4c5";
  1618. }
  1619. .ion-ios-trending-down:before {
  1620. content: "\f25a";
  1621. }
  1622. .ion-ios-trending-up:before {
  1623. content: "\f25b";
  1624. }
  1625. .ion-ios-trophy:before {
  1626. content: "\f25d";
  1627. }
  1628. .ion-ios-tv:before {
  1629. content: "\f115";
  1630. }
  1631. .ion-ios-umbrella:before {
  1632. content: "\f25f";
  1633. }
  1634. .ion-ios-undo:before {
  1635. content: "\f4c7";
  1636. }
  1637. .ion-ios-unlock:before {
  1638. content: "\f261";
  1639. }
  1640. .ion-ios-videocam:before {
  1641. content: "\f4cd";
  1642. }
  1643. .ion-ios-volume-high:before {
  1644. content: "\f11c";
  1645. }
  1646. .ion-ios-volume-low:before {
  1647. content: "\f11e";
  1648. }
  1649. .ion-ios-volume-mute:before {
  1650. content: "\f263";
  1651. }
  1652. .ion-ios-volume-off:before {
  1653. content: "\f264";
  1654. }
  1655. .ion-ios-walk:before {
  1656. content: "\f266";
  1657. }
  1658. .ion-ios-wallet:before {
  1659. content: "\f18b";
  1660. }
  1661. .ion-ios-warning:before {
  1662. content: "\f268";
  1663. }
  1664. .ion-ios-watch:before {
  1665. content: "\f269";
  1666. }
  1667. .ion-ios-water:before {
  1668. content: "\f26b";
  1669. }
  1670. .ion-ios-wifi:before {
  1671. content: "\f26d";
  1672. }
  1673. .ion-ios-wine:before {
  1674. content: "\f26f";
  1675. }
  1676. .ion-ios-woman:before {
  1677. content: "\f271";
  1678. }
  1679. .ion-logo-android:before {
  1680. content: "\f225";
  1681. }
  1682. .ion-logo-angular:before {
  1683. content: "\f227";
  1684. }
  1685. .ion-logo-apple:before {
  1686. content: "\f229";
  1687. }
  1688. .ion-logo-bitbucket:before {
  1689. content: "\f193";
  1690. }
  1691. .ion-logo-bitcoin:before {
  1692. content: "\f22b";
  1693. }
  1694. .ion-logo-buffer:before {
  1695. content: "\f22d";
  1696. }
  1697. .ion-logo-chrome:before {
  1698. content: "\f22f";
  1699. }
  1700. .ion-logo-closed-captioning:before {
  1701. content: "\f105";
  1702. }
  1703. .ion-logo-codepen:before {
  1704. content: "\f230";
  1705. }
  1706. .ion-logo-css3:before {
  1707. content: "\f231";
  1708. }
  1709. .ion-logo-designernews:before {
  1710. content: "\f232";
  1711. }
  1712. .ion-logo-dribbble:before {
  1713. content: "\f233";
  1714. }
  1715. .ion-logo-dropbox:before {
  1716. content: "\f234";
  1717. }
  1718. .ion-logo-euro:before {
  1719. content: "\f235";
  1720. }
  1721. .ion-logo-facebook:before {
  1722. content: "\f236";
  1723. }
  1724. .ion-logo-flickr:before {
  1725. content: "\f107";
  1726. }
  1727. .ion-logo-foursquare:before {
  1728. content: "\f237";
  1729. }
  1730. .ion-logo-freebsd-devil:before {
  1731. content: "\f238";
  1732. }
  1733. .ion-logo-game-controller-a:before {
  1734. content: "\f13b";
  1735. }
  1736. .ion-logo-game-controller-b:before {
  1737. content: "\f181";
  1738. }
  1739. .ion-logo-github:before {
  1740. content: "\f239";
  1741. }
  1742. .ion-logo-google:before {
  1743. content: "\f23a";
  1744. }
  1745. .ion-logo-googleplus:before {
  1746. content: "\f23b";
  1747. }
  1748. .ion-logo-hackernews:before {
  1749. content: "\f23c";
  1750. }
  1751. .ion-logo-html5:before {
  1752. content: "\f23d";
  1753. }
  1754. .ion-logo-instagram:before {
  1755. content: "\f23e";
  1756. }
  1757. .ion-logo-ionic:before {
  1758. content: "\f150";
  1759. }
  1760. .ion-logo-ionitron:before {
  1761. content: "\f151";
  1762. }
  1763. .ion-logo-javascript:before {
  1764. content: "\f23f";
  1765. }
  1766. .ion-logo-linkedin:before {
  1767. content: "\f240";
  1768. }
  1769. .ion-logo-markdown:before {
  1770. content: "\f241";
  1771. }
  1772. .ion-logo-model-s:before {
  1773. content: "\f153";
  1774. }
  1775. .ion-logo-no-smoking:before {
  1776. content: "\f109";
  1777. }
  1778. .ion-logo-nodejs:before {
  1779. content: "\f242";
  1780. }
  1781. .ion-logo-npm:before {
  1782. content: "\f195";
  1783. }
  1784. .ion-logo-octocat:before {
  1785. content: "\f243";
  1786. }
  1787. .ion-logo-pinterest:before {
  1788. content: "\f244";
  1789. }
  1790. .ion-logo-playstation:before {
  1791. content: "\f245";
  1792. }
  1793. .ion-logo-polymer:before {
  1794. content: "\f15e";
  1795. }
  1796. .ion-logo-python:before {
  1797. content: "\f246";
  1798. }
  1799. .ion-logo-reddit:before {
  1800. content: "\f247";
  1801. }
  1802. .ion-logo-rss:before {
  1803. content: "\f248";
  1804. }
  1805. .ion-logo-sass:before {
  1806. content: "\f249";
  1807. }
  1808. .ion-logo-skype:before {
  1809. content: "\f24a";
  1810. }
  1811. .ion-logo-slack:before {
  1812. content: "\f10b";
  1813. }
  1814. .ion-logo-snapchat:before {
  1815. content: "\f24b";
  1816. }
  1817. .ion-logo-steam:before {
  1818. content: "\f24c";
  1819. }
  1820. .ion-logo-tumblr:before {
  1821. content: "\f24d";
  1822. }
  1823. .ion-logo-tux:before {
  1824. content: "\f2ae";
  1825. }
  1826. .ion-logo-twitch:before {
  1827. content: "\f2af";
  1828. }
  1829. .ion-logo-twitter:before {
  1830. content: "\f2b0";
  1831. }
  1832. .ion-logo-usd:before {
  1833. content: "\f2b1";
  1834. }
  1835. .ion-logo-vimeo:before {
  1836. content: "\f2c4";
  1837. }
  1838. .ion-logo-vk:before {
  1839. content: "\f10d";
  1840. }
  1841. .ion-logo-whatsapp:before {
  1842. content: "\f2c5";
  1843. }
  1844. .ion-logo-windows:before {
  1845. content: "\f32f";
  1846. }
  1847. .ion-logo-wordpress:before {
  1848. content: "\f330";
  1849. }
  1850. .ion-logo-xbox:before {
  1851. content: "\f34c";
  1852. }
  1853. .ion-logo-xing:before {
  1854. content: "\f10f";
  1855. }
  1856. .ion-logo-yahoo:before {
  1857. content: "\f34d";
  1858. }
  1859. .ion-logo-yen:before {
  1860. content: "\f34e";
  1861. }
  1862. .ion-logo-youtube:before {
  1863. content: "\f34f";
  1864. }
  1865. .ion-md-add:before {
  1866. content: "\f273";
  1867. }
  1868. .ion-md-add-circle:before {
  1869. content: "\f272";
  1870. }
  1871. .ion-md-add-circle-outline:before {
  1872. content: "\f158";
  1873. }
  1874. .ion-md-airplane:before {
  1875. content: "\f15a";
  1876. }
  1877. .ion-md-alarm:before {
  1878. content: "\f274";
  1879. }
  1880. .ion-md-albums:before {
  1881. content: "\f275";
  1882. }
  1883. .ion-md-alert:before {
  1884. content: "\f276";
  1885. }
  1886. .ion-md-american-football:before {
  1887. content: "\f277";
  1888. }
  1889. .ion-md-analytics:before {
  1890. content: "\f278";
  1891. }
  1892. .ion-md-aperture:before {
  1893. content: "\f279";
  1894. }
  1895. .ion-md-apps:before {
  1896. content: "\f27a";
  1897. }
  1898. .ion-md-appstore:before {
  1899. content: "\f27b";
  1900. }
  1901. .ion-md-archive:before {
  1902. content: "\f27c";
  1903. }
  1904. .ion-md-arrow-back:before {
  1905. content: "\f27d";
  1906. }
  1907. .ion-md-arrow-down:before {
  1908. content: "\f27e";
  1909. }
  1910. .ion-md-arrow-dropdown:before {
  1911. content: "\f280";
  1912. }
  1913. .ion-md-arrow-dropdown-circle:before {
  1914. content: "\f27f";
  1915. }
  1916. .ion-md-arrow-dropleft:before {
  1917. content: "\f282";
  1918. }
  1919. .ion-md-arrow-dropleft-circle:before {
  1920. content: "\f281";
  1921. }
  1922. .ion-md-arrow-dropright:before {
  1923. content: "\f284";
  1924. }
  1925. .ion-md-arrow-dropright-circle:before {
  1926. content: "\f283";
  1927. }
  1928. .ion-md-arrow-dropup:before {
  1929. content: "\f286";
  1930. }
  1931. .ion-md-arrow-dropup-circle:before {
  1932. content: "\f285";
  1933. }
  1934. .ion-md-arrow-forward:before {
  1935. content: "\f287";
  1936. }
  1937. .ion-md-arrow-round-back:before {
  1938. content: "\f288";
  1939. }
  1940. .ion-md-arrow-round-down:before {
  1941. content: "\f289";
  1942. }
  1943. .ion-md-arrow-round-forward:before {
  1944. content: "\f28a";
  1945. }
  1946. .ion-md-arrow-round-up:before {
  1947. content: "\f28b";
  1948. }
  1949. .ion-md-arrow-up:before {
  1950. content: "\f28c";
  1951. }
  1952. .ion-md-at:before {
  1953. content: "\f28d";
  1954. }
  1955. .ion-md-attach:before {
  1956. content: "\f28e";
  1957. }
  1958. .ion-md-backspace:before {
  1959. content: "\f28f";
  1960. }
  1961. .ion-md-barcode:before {
  1962. content: "\f290";
  1963. }
  1964. .ion-md-baseball:before {
  1965. content: "\f291";
  1966. }
  1967. .ion-md-basket:before {
  1968. content: "\f292";
  1969. }
  1970. .ion-md-basketball:before {
  1971. content: "\f293";
  1972. }
  1973. .ion-md-battery-charging:before {
  1974. content: "\f294";
  1975. }
  1976. .ion-md-battery-dead:before {
  1977. content: "\f295";
  1978. }
  1979. .ion-md-battery-full:before {
  1980. content: "\f296";
  1981. }
  1982. .ion-md-beaker:before {
  1983. content: "\f297";
  1984. }
  1985. .ion-md-bed:before {
  1986. content: "\f160";
  1987. }
  1988. .ion-md-beer:before {
  1989. content: "\f298";
  1990. }
  1991. .ion-md-bicycle:before {
  1992. content: "\f299";
  1993. }
  1994. .ion-md-bluetooth:before {
  1995. content: "\f29a";
  1996. }
  1997. .ion-md-boat:before {
  1998. content: "\f29b";
  1999. }
  2000. .ion-md-body:before {
  2001. content: "\f29c";
  2002. }
  2003. .ion-md-bonfire:before {
  2004. content: "\f29d";
  2005. }
  2006. .ion-md-book:before {
  2007. content: "\f29e";
  2008. }
  2009. .ion-md-bookmark:before {
  2010. content: "\f29f";
  2011. }
  2012. .ion-md-bookmarks:before {
  2013. content: "\f2a0";
  2014. }
  2015. .ion-md-bowtie:before {
  2016. content: "\f2a1";
  2017. }
  2018. .ion-md-briefcase:before {
  2019. content: "\f2a2";
  2020. }
  2021. .ion-md-browsers:before {
  2022. content: "\f2a3";
  2023. }
  2024. .ion-md-brush:before {
  2025. content: "\f2a4";
  2026. }
  2027. .ion-md-bug:before {
  2028. content: "\f2a5";
  2029. }
  2030. .ion-md-build:before {
  2031. content: "\f2a6";
  2032. }
  2033. .ion-md-bulb:before {
  2034. content: "\f2a7";
  2035. }
  2036. .ion-md-bus:before {
  2037. content: "\f2a8";
  2038. }
  2039. .ion-md-business:before {
  2040. content: "\f1a4";
  2041. }
  2042. .ion-md-cafe:before {
  2043. content: "\f2a9";
  2044. }
  2045. .ion-md-calculator:before {
  2046. content: "\f2aa";
  2047. }
  2048. .ion-md-calendar:before {
  2049. content: "\f2ab";
  2050. }
  2051. .ion-md-call:before {
  2052. content: "\f2ac";
  2053. }
  2054. .ion-md-camera:before {
  2055. content: "\f2ad";
  2056. }
  2057. .ion-md-car:before {
  2058. content: "\f2b2";
  2059. }
  2060. .ion-md-card:before {
  2061. content: "\f2b3";
  2062. }
  2063. .ion-md-cart:before {
  2064. content: "\f2b4";
  2065. }
  2066. .ion-md-cash:before {
  2067. content: "\f2b5";
  2068. }
  2069. .ion-md-cellular:before {
  2070. content: "\f164";
  2071. }
  2072. .ion-md-chatboxes:before {
  2073. content: "\f2b6";
  2074. }
  2075. .ion-md-chatbubbles:before {
  2076. content: "\f2b7";
  2077. }
  2078. .ion-md-checkbox:before {
  2079. content: "\f2b9";
  2080. }
  2081. .ion-md-checkbox-outline:before {
  2082. content: "\f2b8";
  2083. }
  2084. .ion-md-checkmark:before {
  2085. content: "\f2bc";
  2086. }
  2087. .ion-md-checkmark-circle:before {
  2088. content: "\f2bb";
  2089. }
  2090. .ion-md-checkmark-circle-outline:before {
  2091. content: "\f2ba";
  2092. }
  2093. .ion-md-clipboard:before {
  2094. content: "\f2bd";
  2095. }
  2096. .ion-md-clock:before {
  2097. content: "\f2be";
  2098. }
  2099. .ion-md-close:before {
  2100. content: "\f2c0";
  2101. }
  2102. .ion-md-close-circle:before {
  2103. content: "\f2bf";
  2104. }
  2105. .ion-md-close-circle-outline:before {
  2106. content: "\f166";
  2107. }
  2108. .ion-md-cloud:before {
  2109. content: "\f2c9";
  2110. }
  2111. .ion-md-cloud-circle:before {
  2112. content: "\f2c2";
  2113. }
  2114. .ion-md-cloud-done:before {
  2115. content: "\f2c3";
  2116. }
  2117. .ion-md-cloud-download:before {
  2118. content: "\f2c6";
  2119. }
  2120. .ion-md-cloud-outline:before {
  2121. content: "\f2c7";
  2122. }
  2123. .ion-md-cloud-upload:before {
  2124. content: "\f2c8";
  2125. }
  2126. .ion-md-cloudy:before {
  2127. content: "\f2cb";
  2128. }
  2129. .ion-md-cloudy-night:before {
  2130. content: "\f2ca";
  2131. }
  2132. .ion-md-code:before {
  2133. content: "\f2ce";
  2134. }
  2135. .ion-md-code-download:before {
  2136. content: "\f2cc";
  2137. }
  2138. .ion-md-code-working:before {
  2139. content: "\f2cd";
  2140. }
  2141. .ion-md-cog:before {
  2142. content: "\f2cf";
  2143. }
  2144. .ion-md-color-fill:before {
  2145. content: "\f2d0";
  2146. }
  2147. .ion-md-color-filter:before {
  2148. content: "\f2d1";
  2149. }
  2150. .ion-md-color-palette:before {
  2151. content: "\f2d2";
  2152. }
  2153. .ion-md-color-wand:before {
  2154. content: "\f2d3";
  2155. }
  2156. .ion-md-compass:before {
  2157. content: "\f2d4";
  2158. }
  2159. .ion-md-construct:before {
  2160. content: "\f2d5";
  2161. }
  2162. .ion-md-contact:before {
  2163. content: "\f2d6";
  2164. }
  2165. .ion-md-contacts:before {
  2166. content: "\f2d7";
  2167. }
  2168. .ion-md-contract:before {
  2169. content: "\f2d8";
  2170. }
  2171. .ion-md-contrast:before {
  2172. content: "\f2d9";
  2173. }
  2174. .ion-md-copy:before {
  2175. content: "\f2da";
  2176. }
  2177. .ion-md-create:before {
  2178. content: "\f2db";
  2179. }
  2180. .ion-md-crop:before {
  2181. content: "\f2dc";
  2182. }
  2183. .ion-md-cube:before {
  2184. content: "\f2dd";
  2185. }
  2186. .ion-md-cut:before {
  2187. content: "\f2de";
  2188. }
  2189. .ion-md-desktop:before {
  2190. content: "\f2df";
  2191. }
  2192. .ion-md-disc:before {
  2193. content: "\f2e0";
  2194. }
  2195. .ion-md-document:before {
  2196. content: "\f2e1";
  2197. }
  2198. .ion-md-done-all:before {
  2199. content: "\f2e2";
  2200. }
  2201. .ion-md-download:before {
  2202. content: "\f2e3";
  2203. }
  2204. .ion-md-easel:before {
  2205. content: "\f2e4";
  2206. }
  2207. .ion-md-egg:before {
  2208. content: "\f2e5";
  2209. }
  2210. .ion-md-exit:before {
  2211. content: "\f2e6";
  2212. }
  2213. .ion-md-expand:before {
  2214. content: "\f2e7";
  2215. }
  2216. .ion-md-eye:before {
  2217. content: "\f2e9";
  2218. }
  2219. .ion-md-eye-off:before {
  2220. content: "\f2e8";
  2221. }
  2222. .ion-md-fastforward:before {
  2223. content: "\f2ea";
  2224. }
  2225. .ion-md-female:before {
  2226. content: "\f2eb";
  2227. }
  2228. .ion-md-filing:before {
  2229. content: "\f2ec";
  2230. }
  2231. .ion-md-film:before {
  2232. content: "\f2ed";
  2233. }
  2234. .ion-md-finger-print:before {
  2235. content: "\f2ee";
  2236. }
  2237. .ion-md-fitness:before {
  2238. content: "\f1ac";
  2239. }
  2240. .ion-md-flag:before {
  2241. content: "\f2ef";
  2242. }
  2243. .ion-md-flame:before {
  2244. content: "\f2f0";
  2245. }
  2246. .ion-md-flash:before {
  2247. content: "\f2f1";
  2248. }
  2249. .ion-md-flash-off:before {
  2250. content: "\f169";
  2251. }
  2252. .ion-md-flashlight:before {
  2253. content: "\f16b";
  2254. }
  2255. .ion-md-flask:before {
  2256. content: "\f2f2";
  2257. }
  2258. .ion-md-flower:before {
  2259. content: "\f2f3";
  2260. }
  2261. .ion-md-folder:before {
  2262. content: "\f2f5";
  2263. }
  2264. .ion-md-folder-open:before {
  2265. content: "\f2f4";
  2266. }
  2267. .ion-md-football:before {
  2268. content: "\f2f6";
  2269. }
  2270. .ion-md-funnel:before {
  2271. content: "\f2f7";
  2272. }
  2273. .ion-md-gift:before {
  2274. content: "\f199";
  2275. }
  2276. .ion-md-git-branch:before {
  2277. content: "\f2fa";
  2278. }
  2279. .ion-md-git-commit:before {
  2280. content: "\f2fb";
  2281. }
  2282. .ion-md-git-compare:before {
  2283. content: "\f2fc";
  2284. }
  2285. .ion-md-git-merge:before {
  2286. content: "\f2fd";
  2287. }
  2288. .ion-md-git-network:before {
  2289. content: "\f2fe";
  2290. }
  2291. .ion-md-git-pull-request:before {
  2292. content: "\f2ff";
  2293. }
  2294. .ion-md-glasses:before {
  2295. content: "\f300";
  2296. }
  2297. .ion-md-globe:before {
  2298. content: "\f301";
  2299. }
  2300. .ion-md-grid:before {
  2301. content: "\f302";
  2302. }
  2303. .ion-md-hammer:before {
  2304. content: "\f303";
  2305. }
  2306. .ion-md-hand:before {
  2307. content: "\f304";
  2308. }
  2309. .ion-md-happy:before {
  2310. content: "\f305";
  2311. }
  2312. .ion-md-headset:before {
  2313. content: "\f306";
  2314. }
  2315. .ion-md-heart:before {
  2316. content: "\f308";
  2317. }
  2318. .ion-md-heart-dislike:before {
  2319. content: "\f167";
  2320. }
  2321. .ion-md-heart-empty:before {
  2322. content: "\f1a1";
  2323. }
  2324. .ion-md-heart-half:before {
  2325. content: "\f1a2";
  2326. }
  2327. .ion-md-help:before {
  2328. content: "\f30b";
  2329. }
  2330. .ion-md-help-buoy:before {
  2331. content: "\f309";
  2332. }
  2333. .ion-md-help-circle:before {
  2334. content: "\f30a";
  2335. }
  2336. .ion-md-help-circle-outline:before {
  2337. content: "\f16d";
  2338. }
  2339. .ion-md-home:before {
  2340. content: "\f30c";
  2341. }
  2342. .ion-md-hourglass:before {
  2343. content: "\f111";
  2344. }
  2345. .ion-md-ice-cream:before {
  2346. content: "\f30d";
  2347. }
  2348. .ion-md-image:before {
  2349. content: "\f30e";
  2350. }
  2351. .ion-md-images:before {
  2352. content: "\f30f";
  2353. }
  2354. .ion-md-infinite:before {
  2355. content: "\f310";
  2356. }
  2357. .ion-md-information:before {
  2358. content: "\f312";
  2359. }
  2360. .ion-md-information-circle:before {
  2361. content: "\f311";
  2362. }
  2363. .ion-md-information-circle-outline:before {
  2364. content: "\f16f";
  2365. }
  2366. .ion-md-jet:before {
  2367. content: "\f315";
  2368. }
  2369. .ion-md-journal:before {
  2370. content: "\f18d";
  2371. }
  2372. .ion-md-key:before {
  2373. content: "\f316";
  2374. }
  2375. .ion-md-keypad:before {
  2376. content: "\f317";
  2377. }
  2378. .ion-md-laptop:before {
  2379. content: "\f318";
  2380. }
  2381. .ion-md-leaf:before {
  2382. content: "\f319";
  2383. }
  2384. .ion-md-link:before {
  2385. content: "\f22e";
  2386. }
  2387. .ion-md-list:before {
  2388. content: "\f31b";
  2389. }
  2390. .ion-md-list-box:before {
  2391. content: "\f31a";
  2392. }
  2393. .ion-md-locate:before {
  2394. content: "\f31c";
  2395. }
  2396. .ion-md-lock:before {
  2397. content: "\f31d";
  2398. }
  2399. .ion-md-log-in:before {
  2400. content: "\f31e";
  2401. }
  2402. .ion-md-log-out:before {
  2403. content: "\f31f";
  2404. }
  2405. .ion-md-magnet:before {
  2406. content: "\f320";
  2407. }
  2408. .ion-md-mail:before {
  2409. content: "\f322";
  2410. }
  2411. .ion-md-mail-open:before {
  2412. content: "\f321";
  2413. }
  2414. .ion-md-mail-unread:before {
  2415. content: "\f172";
  2416. }
  2417. .ion-md-male:before {
  2418. content: "\f323";
  2419. }
  2420. .ion-md-man:before {
  2421. content: "\f324";
  2422. }
  2423. .ion-md-map:before {
  2424. content: "\f325";
  2425. }
  2426. .ion-md-medal:before {
  2427. content: "\f326";
  2428. }
  2429. .ion-md-medical:before {
  2430. content: "\f327";
  2431. }
  2432. .ion-md-medkit:before {
  2433. content: "\f328";
  2434. }
  2435. .ion-md-megaphone:before {
  2436. content: "\f329";
  2437. }
  2438. .ion-md-menu:before {
  2439. content: "\f32a";
  2440. }
  2441. .ion-md-mic:before {
  2442. content: "\f32c";
  2443. }
  2444. .ion-md-mic-off:before {
  2445. content: "\f32b";
  2446. }
  2447. .ion-md-microphone:before {
  2448. content: "\f32d";
  2449. }
  2450. .ion-md-moon:before {
  2451. content: "\f32e";
  2452. }
  2453. .ion-md-more:before {
  2454. content: "\f1c9";
  2455. }
  2456. .ion-md-move:before {
  2457. content: "\f331";
  2458. }
  2459. .ion-md-musical-note:before {
  2460. content: "\f332";
  2461. }
  2462. .ion-md-musical-notes:before {
  2463. content: "\f333";
  2464. }
  2465. .ion-md-navigate:before {
  2466. content: "\f334";
  2467. }
  2468. .ion-md-notifications:before {
  2469. content: "\f338";
  2470. }
  2471. .ion-md-notifications-off:before {
  2472. content: "\f336";
  2473. }
  2474. .ion-md-notifications-outline:before {
  2475. content: "\f337";
  2476. }
  2477. .ion-md-nuclear:before {
  2478. content: "\f339";
  2479. }
  2480. .ion-md-nutrition:before {
  2481. content: "\f33a";
  2482. }
  2483. .ion-md-open:before {
  2484. content: "\f33b";
  2485. }
  2486. .ion-md-options:before {
  2487. content: "\f33c";
  2488. }
  2489. .ion-md-outlet:before {
  2490. content: "\f33d";
  2491. }
  2492. .ion-md-paper:before {
  2493. content: "\f33f";
  2494. }
  2495. .ion-md-paper-plane:before {
  2496. content: "\f33e";
  2497. }
  2498. .ion-md-partly-sunny:before {
  2499. content: "\f340";
  2500. }
  2501. .ion-md-pause:before {
  2502. content: "\f341";
  2503. }
  2504. .ion-md-paw:before {
  2505. content: "\f342";
  2506. }
  2507. .ion-md-people:before {
  2508. content: "\f343";
  2509. }
  2510. .ion-md-person:before {
  2511. content: "\f345";
  2512. }
  2513. .ion-md-person-add:before {
  2514. content: "\f344";
  2515. }
  2516. .ion-md-phone-landscape:before {
  2517. content: "\f346";
  2518. }
  2519. .ion-md-phone-portrait:before {
  2520. content: "\f347";
  2521. }
  2522. .ion-md-photos:before {
  2523. content: "\f348";
  2524. }
  2525. .ion-md-pie:before {
  2526. content: "\f349";
  2527. }
  2528. .ion-md-pin:before {
  2529. content: "\f34a";
  2530. }
  2531. .ion-md-pint:before {
  2532. content: "\f34b";
  2533. }
  2534. .ion-md-pizza:before {
  2535. content: "\f354";
  2536. }
  2537. .ion-md-planet:before {
  2538. content: "\f356";
  2539. }
  2540. .ion-md-play:before {
  2541. content: "\f357";
  2542. }
  2543. .ion-md-play-circle:before {
  2544. content: "\f174";
  2545. }
  2546. .ion-md-podium:before {
  2547. content: "\f358";
  2548. }
  2549. .ion-md-power:before {
  2550. content: "\f359";
  2551. }
  2552. .ion-md-pricetag:before {
  2553. content: "\f35a";
  2554. }
  2555. .ion-md-pricetags:before {
  2556. content: "\f35b";
  2557. }
  2558. .ion-md-print:before {
  2559. content: "\f35c";
  2560. }
  2561. .ion-md-pulse:before {
  2562. content: "\f35d";
  2563. }
  2564. .ion-md-qr-scanner:before {
  2565. content: "\f35e";
  2566. }
  2567. .ion-md-quote:before {
  2568. content: "\f35f";
  2569. }
  2570. .ion-md-radio:before {
  2571. content: "\f362";
  2572. }
  2573. .ion-md-radio-button-off:before {
  2574. content: "\f360";
  2575. }
  2576. .ion-md-radio-button-on:before {
  2577. content: "\f361";
  2578. }
  2579. .ion-md-rainy:before {
  2580. content: "\f363";
  2581. }
  2582. .ion-md-recording:before {
  2583. content: "\f364";
  2584. }
  2585. .ion-md-redo:before {
  2586. content: "\f365";
  2587. }
  2588. .ion-md-refresh:before {
  2589. content: "\f366";
  2590. }
  2591. .ion-md-refresh-circle:before {
  2592. content: "\f228";
  2593. }
  2594. .ion-md-remove:before {
  2595. content: "\f368";
  2596. }
  2597. .ion-md-remove-circle:before {
  2598. content: "\f367";
  2599. }
  2600. .ion-md-remove-circle-outline:before {
  2601. content: "\f176";
  2602. }
  2603. .ion-md-reorder:before {
  2604. content: "\f369";
  2605. }
  2606. .ion-md-repeat:before {
  2607. content: "\f36a";
  2608. }
  2609. .ion-md-resize:before {
  2610. content: "\f36b";
  2611. }
  2612. .ion-md-restaurant:before {
  2613. content: "\f36c";
  2614. }
  2615. .ion-md-return-left:before {
  2616. content: "\f36d";
  2617. }
  2618. .ion-md-return-right:before {
  2619. content: "\f36e";
  2620. }
  2621. .ion-md-reverse-camera:before {
  2622. content: "\f36f";
  2623. }
  2624. .ion-md-rewind:before {
  2625. content: "\f370";
  2626. }
  2627. .ion-md-ribbon:before {
  2628. content: "\f371";
  2629. }
  2630. .ion-md-rocket:before {
  2631. content: "\f179";
  2632. }
  2633. .ion-md-rose:before {
  2634. content: "\f372";
  2635. }
  2636. .ion-md-sad:before {
  2637. content: "\f373";
  2638. }
  2639. .ion-md-save:before {
  2640. content: "\f1a9";
  2641. }
  2642. .ion-md-school:before {
  2643. content: "\f374";
  2644. }
  2645. .ion-md-search:before {
  2646. content: "\f375";
  2647. }
  2648. .ion-md-send:before {
  2649. content: "\f376";
  2650. }
  2651. .ion-md-settings:before {
  2652. content: "\f377";
  2653. }
  2654. .ion-md-share:before {
  2655. content: "\f379";
  2656. }
  2657. .ion-md-share-alt:before {
  2658. content: "\f378";
  2659. }
  2660. .ion-md-shirt:before {
  2661. content: "\f37a";
  2662. }
  2663. .ion-md-shuffle:before {
  2664. content: "\f37b";
  2665. }
  2666. .ion-md-skip-backward:before {
  2667. content: "\f37c";
  2668. }
  2669. .ion-md-skip-forward:before {
  2670. content: "\f37d";
  2671. }
  2672. .ion-md-snow:before {
  2673. content: "\f37e";
  2674. }
  2675. .ion-md-speedometer:before {
  2676. content: "\f37f";
  2677. }
  2678. .ion-md-square:before {
  2679. content: "\f381";
  2680. }
  2681. .ion-md-square-outline:before {
  2682. content: "\f380";
  2683. }
  2684. .ion-md-star:before {
  2685. content: "\f384";
  2686. }
  2687. .ion-md-star-half:before {
  2688. content: "\f382";
  2689. }
  2690. .ion-md-star-outline:before {
  2691. content: "\f383";
  2692. }
  2693. .ion-md-stats:before {
  2694. content: "\f385";
  2695. }
  2696. .ion-md-stopwatch:before {
  2697. content: "\f386";
  2698. }
  2699. .ion-md-subway:before {
  2700. content: "\f387";
  2701. }
  2702. .ion-md-sunny:before {
  2703. content: "\f388";
  2704. }
  2705. .ion-md-swap:before {
  2706. content: "\f389";
  2707. }
  2708. .ion-md-switch:before {
  2709. content: "\f38a";
  2710. }
  2711. .ion-md-sync:before {
  2712. content: "\f38b";
  2713. }
  2714. .ion-md-tablet-landscape:before {
  2715. content: "\f38c";
  2716. }
  2717. .ion-md-tablet-portrait:before {
  2718. content: "\f38d";
  2719. }
  2720. .ion-md-tennisball:before {
  2721. content: "\f38e";
  2722. }
  2723. .ion-md-text:before {
  2724. content: "\f38f";
  2725. }
  2726. .ion-md-thermometer:before {
  2727. content: "\f390";
  2728. }
  2729. .ion-md-thumbs-down:before {
  2730. content: "\f391";
  2731. }
  2732. .ion-md-thumbs-up:before {
  2733. content: "\f392";
  2734. }
  2735. .ion-md-thunderstorm:before {
  2736. content: "\f393";
  2737. }
  2738. .ion-md-time:before {
  2739. content: "\f394";
  2740. }
  2741. .ion-md-timer:before {
  2742. content: "\f395";
  2743. }
  2744. .ion-md-today:before {
  2745. content: "\f17d";
  2746. }
  2747. .ion-md-train:before {
  2748. content: "\f396";
  2749. }
  2750. .ion-md-transgender:before {
  2751. content: "\f397";
  2752. }
  2753. .ion-md-trash:before {
  2754. content: "\f398";
  2755. }
  2756. .ion-md-trending-down:before {
  2757. content: "\f399";
  2758. }
  2759. .ion-md-trending-up:before {
  2760. content: "\f39a";
  2761. }
  2762. .ion-md-trophy:before {
  2763. content: "\f39b";
  2764. }
  2765. .ion-md-tv:before {
  2766. content: "\f17f";
  2767. }
  2768. .ion-md-umbrella:before {
  2769. content: "\f39c";
  2770. }
  2771. .ion-md-undo:before {
  2772. content: "\f39d";
  2773. }
  2774. .ion-md-unlock:before {
  2775. content: "\f39e";
  2776. }
  2777. .ion-md-videocam:before {
  2778. content: "\f39f";
  2779. }
  2780. .ion-md-volume-high:before {
  2781. content: "\f123";
  2782. }
  2783. .ion-md-volume-low:before {
  2784. content: "\f131";
  2785. }
  2786. .ion-md-volume-mute:before {
  2787. content: "\f3a1";
  2788. }
  2789. .ion-md-volume-off:before {
  2790. content: "\f3a2";
  2791. }
  2792. .ion-md-walk:before {
  2793. content: "\f3a4";
  2794. }
  2795. .ion-md-wallet:before {
  2796. content: "\f18f";
  2797. }
  2798. .ion-md-warning:before {
  2799. content: "\f3a5";
  2800. }
  2801. .ion-md-watch:before {
  2802. content: "\f3a6";
  2803. }
  2804. .ion-md-water:before {
  2805. content: "\f3a7";
  2806. }
  2807. .ion-md-wifi:before {
  2808. content: "\f3a8";
  2809. }
  2810. .ion-md-wine:before {
  2811. content: "\f3a9";
  2812. }
  2813. .ion-md-woman:before {
  2814. content: "\f3aa";
  2815. }