material-icons.css 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810
  1. @font-face {
  2. font-family: 'Material Icons';
  3. font-style: normal;
  4. font-weight: 400;
  5. src: local('Material Icons'),
  6. local('MaterialIcons-Regular'),
  7. url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
  8. url(../fonts/MaterialIcons-Regular.woff) format('woff'),
  9. url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
  10. }
  11. [class^="mi-"],
  12. [class*="mi-"],
  13. .material-icons,
  14. .mi {
  15. font-family: 'Material Icons';
  16. speak: none;
  17. font-size:100%;
  18. font-style: normal;
  19. font-weight: normal;
  20. font-variant: normal;
  21. text-transform: none;
  22. /* Support for all WebKit browsers. */
  23. -webkit-font-smoothing: antialiased;
  24. /* Support for Safari and Chrome. */
  25. text-rendering: optimizeLegibility;
  26. /* Support for Firefox. */
  27. -moz-osx-font-smoothing: grayscale;
  28. /* Support for IE. */
  29. font-feature-settings: 'liga';
  30. }
  31. /* Rules for sizing the icon. */
  32. .material-icons.md-18, .mi-md-18 { font-size: 18px; }
  33. .material-icons.md-24, .mi-md-24 { font-size: 24px; }
  34. .material-icons.md-36, .mi-md-36 { font-size: 36px; }
  35. .material-icons.md-48, .mi-md-48 { font-size: 48px; }
  36. /* Rules for using icons as black on a light background. */
  37. .material-icons.md-dark, .mi-md-dark { color: rgba(0, 0, 0, 0.54); }
  38. .material-icons.md-dark.md-inactive, .mi-md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
  39. /* Rules for using icons as white on a dark background. */
  40. .material-icons.md-light, .mi-md-light { color: rgba(255, 255, 255, 1); }
  41. .material-icons.md-light.md-inactive, .mi-md-inactive { color: rgba(255, 255, 255, 0.3); }
  42. /* Rules to rotate items */
  43. .material-icons.r90, .mi-r90 {
  44. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  45. -webkit-transform: rotate(90deg);
  46. -ms-transform: rotate(90deg);
  47. transform: rotate(90deg);
  48. }
  49. .material-icons.r180, .mi-r180 {
  50. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  51. -webkit-transform: rotate(180deg);
  52. -ms-transform: rotate(180deg);
  53. transform: rotate(180deg);
  54. }
  55. .material-icons.r270, .mi-r270 {
  56. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  57. -webkit-transform: rotate(270deg);
  58. -ms-transform: rotate(270deg);
  59. transform: rotate(270deg);
  60. }
  61. .material-icons.flip-horizontal, .mi-flip-horizontal {
  62. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  63. -webkit-transform: scale(-1, 1);
  64. -ms-transform: scale(-1, 1);
  65. transform: scale(-1, 1);
  66. }
  67. .material-icons.flip-vertical, .mi-flip-vertical {
  68. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  69. -webkit-transform: scale(1, -1);
  70. -ms-transform: scale(1, -1);
  71. transform: scale(1, -1);
  72. }
  73. /* Unicode */
  74. .material-icons.three_d_rotation:before,
  75. .mi-three_d_rotation:before {
  76. content: '\e84d';
  77. }
  78. .material-icons.ac_unit:before,
  79. .mi-ac_unit:before {
  80. content: '\eb3b';
  81. }
  82. .material-icons.access_alarm:before,
  83. .mi-access_alarm:before {
  84. content: '\e190';
  85. }
  86. .material-icons.access_alarms:before,
  87. .mi-access_alarms:before {
  88. content: '\e191';
  89. }
  90. .material-icons.access_time:before,
  91. .mi-access_time:before {
  92. content: '\e192';
  93. }
  94. .material-icons.accessibility:before,
  95. .mi-accessibility:before {
  96. content: '\e84e';
  97. }
  98. .material-icons.accessible:before,
  99. .mi-accessible:before {
  100. content: '\e914';
  101. }
  102. .material-icons.account_balance:before,
  103. .mi-account_balance:before {
  104. content: '\e84f';
  105. }
  106. .material-icons.account_balance_wallet:before,
  107. .mi-account_balance_wallet:before {
  108. content: '\e850';
  109. }
  110. .material-icons.account_box:before,
  111. .mi-account_box:before {
  112. content: '\e851';
  113. }
  114. .material-icons.account_circle:before,
  115. .mi-account_circle:before {
  116. content: '\e853';
  117. }
  118. .material-icons.adb:before,
  119. .mi-adb:before {
  120. content: '\e60e';
  121. }
  122. .material-icons.add:before,
  123. .mi-add:before {
  124. content: '\e145';
  125. }
  126. .material-icons.add_a_photo:before,
  127. .mi-add_a_photo:before {
  128. content: '\e439';
  129. }
  130. .material-icons.add_alarm:before,
  131. .mi-add_alarm:before {
  132. content: '\e193';
  133. }
  134. .material-icons.add_alert:before,
  135. .mi-add_alert:before {
  136. content: '\e003';
  137. }
  138. .material-icons.add_box:before,
  139. .mi-add_box:before {
  140. content: '\e146';
  141. }
  142. .material-icons.add_circle:before,
  143. .mi-add_circle:before {
  144. content: '\e147';
  145. }
  146. .material-icons.add_circle_outline:before,
  147. .mi-add_circle_outline:before {
  148. content: '\e148';
  149. }
  150. .material-icons.add_location:before,
  151. .mi-add_location:before {
  152. content: '\e567';
  153. }
  154. .material-icons.add_shopping_cart:before,
  155. .mi-add_shopping_cart:before {
  156. content: '\e854';
  157. }
  158. .material-icons.add_to_photos:before,
  159. .mi-add_to_photos:before {
  160. content: '\e39d';
  161. }
  162. .material-icons.add_to_queue:before,
  163. .mi-add_to_queue:before {
  164. content: '\e05c';
  165. }
  166. .material-icons.adjust:before,
  167. .mi-adjust:before {
  168. content: '\e39e';
  169. }
  170. .material-icons.airline_seat_flat:before,
  171. .mi-airline_seat_flat:before {
  172. content: '\e630';
  173. }
  174. .material-icons.airline_seat_flat_angled:before,
  175. .mi-airline_seat_flat_angled:before {
  176. content: '\e631';
  177. }
  178. .material-icons.airline_seat_individual_suite:before,
  179. .mi-airline_seat_individual_suite:before {
  180. content: '\e632';
  181. }
  182. .material-icons.airline_seat_legroom_extra:before,
  183. .mi-airline_seat_legroom_extra:before {
  184. content: '\e633';
  185. }
  186. .material-icons.airline_seat_legroom_normal:before,
  187. .mi-airline_seat_legroom_normal:before {
  188. content: '\e634';
  189. }
  190. .material-icons.airline_seat_legroom_reduced:before,
  191. .mi-airline_seat_legroom_reduced:before {
  192. content: '\e635';
  193. }
  194. .material-icons.airline_seat_recline_extra:before,
  195. .mi-airline_seat_recline_extra:before {
  196. content: '\e636';
  197. }
  198. .material-icons.airline_seat_recline_normal:before,
  199. .mi-airline_seat_recline_normal:before {
  200. content: '\e637';
  201. }
  202. .material-icons.airplanemode_active:before,
  203. .mi-airplanemode_active:before {
  204. content: '\e195';
  205. }
  206. .material-icons.airplanemode_inactive:before,
  207. .mi-airplanemode_inactive:before {
  208. content: '\e194';
  209. }
  210. .material-icons.airplay:before,
  211. .mi-airplay:before {
  212. content: '\e055';
  213. }
  214. .material-icons.airport_shuttle:before,
  215. .mi-airport_shuttle:before {
  216. content: '\eb3c';
  217. }
  218. .material-icons.alarm:before,
  219. .mi-alarm:before {
  220. content: '\e855';
  221. }
  222. .material-icons.alarm_add:before,
  223. .mi-alarm_add:before {
  224. content: '\e856';
  225. }
  226. .material-icons.alarm_off:before,
  227. .mi-alarm_off:before {
  228. content: '\e857';
  229. }
  230. .material-icons.alarm_on:before,
  231. .mi-alarm_on:before {
  232. content: '\e858';
  233. }
  234. .material-icons.album:before,
  235. .mi-album:before {
  236. content: '\e019';
  237. }
  238. .material-icons.all_inclusive:before,
  239. .mi-all_inclusive:before {
  240. content: '\eb3d';
  241. }
  242. .material-icons.all_out:before,
  243. .mi-all_out:before {
  244. content: '\e90b';
  245. }
  246. .material-icons.android:before,
  247. .mi-android:before {
  248. content: '\e859';
  249. }
  250. .material-icons.announcement:before,
  251. .mi-announcement:before {
  252. content: '\e85a';
  253. }
  254. .material-icons.apps:before,
  255. .mi-apps:before {
  256. content: '\e5c3';
  257. }
  258. .material-icons.archive:before,
  259. .mi-archive:before {
  260. content: '\e149';
  261. }
  262. .material-icons.arrow_back:before,
  263. .mi-arrow_back:before {
  264. content: '\e5c4';
  265. }
  266. .material-icons.arrow_downward:before,
  267. .mi-arrow_downward:before {
  268. content: '\e5db';
  269. }
  270. .material-icons.arrow_drop_down:before,
  271. .mi-arrow_drop_down:before {
  272. content: '\e5c5';
  273. }
  274. .material-icons.arrow_drop_down_circle:before,
  275. .mi-arrow_drop_down_circle:before {
  276. content: '\e5c6';
  277. }
  278. .material-icons.arrow_drop_up:before,
  279. .mi-arrow_drop_up:before {
  280. content: '\e5c7';
  281. }
  282. .material-icons.arrow_forward:before,
  283. .mi-arrow_forward:before {
  284. content: '\e5c8';
  285. }
  286. .material-icons.arrow_upward:before,
  287. .mi-arrow_upward:before {
  288. content: '\e5d8';
  289. }
  290. .material-icons.art_track:before,
  291. .mi-art_track:before {
  292. content: '\e060';
  293. }
  294. .material-icons.aspect_ratio:before,
  295. .mi-aspect_ratio:before {
  296. content: '\e85b';
  297. }
  298. .material-icons.assessment:before,
  299. .mi-assessment:before {
  300. content: '\e85c';
  301. }
  302. .material-icons.assignment:before,
  303. .mi-assignment:before {
  304. content: '\e85d';
  305. }
  306. .material-icons.assignment_ind:before,
  307. .mi-assignment_ind:before {
  308. content: '\e85e';
  309. }
  310. .material-icons.assignment_late:before,
  311. .mi-assignment_late:before {
  312. content: '\e85f';
  313. }
  314. .material-icons.assignment_return:before,
  315. .mi-assignment_return:before {
  316. content: '\e860';
  317. }
  318. .material-icons.assignment_returned:before,
  319. .mi-assignment_returned:before {
  320. content: '\e861';
  321. }
  322. .material-icons.assignment_turned_in:before,
  323. .mi-assignment_turned_in:before {
  324. content: '\e862';
  325. }
  326. .material-icons.assistant:before,
  327. .mi-assistant:before {
  328. content: '\e39f';
  329. }
  330. .material-icons.assistant_photo:before,
  331. .mi-assistant_photo:before {
  332. content: '\e3a0';
  333. }
  334. .material-icons.attach_file:before,
  335. .mi-attach_file:before {
  336. content: '\e226';
  337. }
  338. .material-icons.attach_money:before,
  339. .mi-attach_money:before {
  340. content: '\e227';
  341. }
  342. .material-icons.attachment:before,
  343. .mi-attachment:before {
  344. content: '\e2bc';
  345. }
  346. .material-icons.audiotrack:before,
  347. .mi-audiotrack:before {
  348. content: '\e3a1';
  349. }
  350. .material-icons.autorenew:before,
  351. .mi-autorenew:before {
  352. content: '\e863';
  353. }
  354. .material-icons.av_timer:before,
  355. .mi-av_timer:before {
  356. content: '\e01b';
  357. }
  358. .material-icons.backspace:before,
  359. .mi-backspace:before {
  360. content: '\e14a';
  361. }
  362. .material-icons.backup:before,
  363. .mi-backup:before {
  364. content: '\e864';
  365. }
  366. .material-icons.battery_alert:before,
  367. .mi-battery_alert:before {
  368. content: '\e19c';
  369. }
  370. .material-icons.battery_charging_full:before,
  371. .mi-battery_charging_full:before {
  372. content: '\e1a3';
  373. }
  374. .material-icons.battery_full:before,
  375. .mi-battery_full:before {
  376. content: '\e1a4';
  377. }
  378. .material-icons.battery_std:before,
  379. .mi-battery_std:before {
  380. content: '\e1a5';
  381. }
  382. .material-icons.battery_unknown:before,
  383. .mi-battery_unknown:before {
  384. content: '\e1a6';
  385. }
  386. .material-icons.beach_access:before,
  387. .mi-beach_access:before {
  388. content: '\eb3e';
  389. }
  390. .material-icons.beenhere:before,
  391. .mi-beenhere:before {
  392. content: '\e52d';
  393. }
  394. .material-icons.block:before,
  395. .mi-block:before {
  396. content: '\e14b';
  397. }
  398. .material-icons.bluetooth:before,
  399. .mi-bluetooth:before {
  400. content: '\e1a7';
  401. }
  402. .material-icons.bluetooth_audio:before,
  403. .mi-bluetooth_audio:before {
  404. content: '\e60f';
  405. }
  406. .material-icons.bluetooth_connected:before,
  407. .mi-bluetooth_connected:before {
  408. content: '\e1a8';
  409. }
  410. .material-icons.bluetooth_disabled:before,
  411. .mi-bluetooth_disabled:before {
  412. content: '\e1a9';
  413. }
  414. .material-icons.bluetooth_searching:before,
  415. .mi-bluetooth_searching:before {
  416. content: '\e1aa';
  417. }
  418. .material-icons.blur_circular:before,
  419. .mi-blur_circular:before {
  420. content: '\e3a2';
  421. }
  422. .material-icons.blur_linear:before,
  423. .mi-blur_linear:before {
  424. content: '\e3a3';
  425. }
  426. .material-icons.blur_off:before,
  427. .mi-blur_off:before {
  428. content: '\e3a4';
  429. }
  430. .material-icons.blur_on:before,
  431. .mi-blur_on:before {
  432. content: '\e3a5';
  433. }
  434. .material-icons.book:before,
  435. .mi-book:before {
  436. content: '\e865';
  437. }
  438. .material-icons.bookmark:before,
  439. .mi-bookmark:before {
  440. content: '\e866';
  441. }
  442. .material-icons.bookmark_border:before,
  443. .mi-bookmark_border:before {
  444. content: '\e867';
  445. }
  446. .material-icons.border_all:before,
  447. .mi-border_all:before {
  448. content: '\e228';
  449. }
  450. .material-icons.border_bottom:before,
  451. .mi-border_bottom:before {
  452. content: '\e229';
  453. }
  454. .material-icons.border_clear:before,
  455. .mi-border_clear:before {
  456. content: '\e22a';
  457. }
  458. .material-icons.border_color:before,
  459. .mi-border_color:before {
  460. content: '\e22b';
  461. }
  462. .material-icons.border_horizontal:before,
  463. .mi-border_horizontal:before {
  464. content: '\e22c';
  465. }
  466. .material-icons.border_inner:before,
  467. .mi-border_inner:before {
  468. content: '\e22d';
  469. }
  470. .material-icons.border_left:before,
  471. .mi-border_left:before {
  472. content: '\e22e';
  473. }
  474. .material-icons.border_outer:before,
  475. .mi-border_outer:before {
  476. content: '\e22f';
  477. }
  478. .material-icons.border_right:before,
  479. .mi-border_right:before {
  480. content: '\e230';
  481. }
  482. .material-icons.border_style:before,
  483. .mi-border_style:before {
  484. content: '\e231';
  485. }
  486. .material-icons.border_top:before,
  487. .mi-border_top:before {
  488. content: '\e232';
  489. }
  490. .material-icons.border_vertical:before,
  491. .mi-border_vertical:before {
  492. content: '\e233';
  493. }
  494. .material-icons.branding_watermark:before,
  495. .mi-branding_watermark:before {
  496. content: '\e06b';
  497. }
  498. .material-icons.brightness_1:before,
  499. .mi-brightness_1:before {
  500. content: '\e3a6';
  501. }
  502. .material-icons.brightness_2:before,
  503. .mi-brightness_2:before {
  504. content: '\e3a7';
  505. }
  506. .material-icons.brightness_3:before,
  507. .mi-brightness_3:before {
  508. content: '\e3a8';
  509. }
  510. .material-icons.brightness_4:before,
  511. .mi-brightness_4:before {
  512. content: '\e3a9';
  513. }
  514. .material-icons.brightness_5:before,
  515. .mi-brightness_5:before {
  516. content: '\e3aa';
  517. }
  518. .material-icons.brightness_6:before,
  519. .mi-brightness_6:before {
  520. content: '\e3ab';
  521. }
  522. .material-icons.brightness_7:before,
  523. .mi-brightness_7:before {
  524. content: '\e3ac';
  525. }
  526. .material-icons.brightness_auto:before,
  527. .mi-brightness_auto:before {
  528. content: '\e1ab';
  529. }
  530. .material-icons.brightness_high:before,
  531. .mi-brightness_high:before {
  532. content: '\e1ac';
  533. }
  534. .material-icons.brightness_low:before,
  535. .mi-brightness_low:before {
  536. content: '\e1ad';
  537. }
  538. .material-icons.brightness_medium:before,
  539. .mi-brightness_medium:before {
  540. content: '\e1ae';
  541. }
  542. .material-icons.broken_image:before,
  543. .mi-broken_image:before {
  544. content: '\e3ad';
  545. }
  546. .material-icons.brush:before,
  547. .mi-brush:before {
  548. content: '\e3ae';
  549. }
  550. .material-icons.bubble_chart:before,
  551. .mi-bubble_chart:before {
  552. content: '\e6dd';
  553. }
  554. .material-icons.bug_report:before,
  555. .mi-bug_report:before {
  556. content: '\e868';
  557. }
  558. .material-icons.build:before,
  559. .mi-build:before {
  560. content: '\e869';
  561. }
  562. .material-icons.burst_mode:before,
  563. .mi-burst_mode:before {
  564. content: '\e43c';
  565. }
  566. .material-icons.business:before,
  567. .mi-business:before {
  568. content: '\e0af';
  569. }
  570. .material-icons.business_center:before,
  571. .mi-business_center:before {
  572. content: '\eb3f';
  573. }
  574. .material-icons.cached:before,
  575. .mi-cached:before {
  576. content: '\e86a';
  577. }
  578. .material-icons.cake:before,
  579. .mi-cake:before {
  580. content: '\e7e9';
  581. }
  582. .material-icons.call:before,
  583. .mi-call:before {
  584. content: '\e0b0';
  585. }
  586. .material-icons.call_end:before,
  587. .mi-call_end:before {
  588. content: '\e0b1';
  589. }
  590. .material-icons.call_made:before,
  591. .mi-call_made:before {
  592. content: '\e0b2';
  593. }
  594. .material-icons.call_merge:before,
  595. .mi-call_merge:before {
  596. content: '\e0b3';
  597. }
  598. .material-icons.call_missed:before,
  599. .mi-call_missed:before {
  600. content: '\e0b4';
  601. }
  602. .material-icons.call_missed_outgoing:before,
  603. .mi-call_missed_outgoing:before {
  604. content: '\e0e4';
  605. }
  606. .material-icons.call_received:before,
  607. .mi-call_received:before {
  608. content: '\e0b5';
  609. }
  610. .material-icons.call_split:before,
  611. .mi-call_split:before {
  612. content: '\e0b6';
  613. }
  614. .material-icons.call_to_action:before,
  615. .mi-call_to_action:before {
  616. content: '\e06c';
  617. }
  618. .material-icons.camera:before,
  619. .mi-camera:before {
  620. content: '\e3af';
  621. }
  622. .material-icons.camera_alt:before,
  623. .mi-camera_alt:before {
  624. content: '\e3b0';
  625. }
  626. .material-icons.camera_enhance:before,
  627. .mi-camera_enhance:before {
  628. content: '\e8fc';
  629. }
  630. .material-icons.camera_front:before,
  631. .mi-camera_front:before {
  632. content: '\e3b1';
  633. }
  634. .material-icons.camera_rear:before,
  635. .mi-camera_rear:before {
  636. content: '\e3b2';
  637. }
  638. .material-icons.camera_roll:before,
  639. .mi-camera_roll:before {
  640. content: '\e3b3';
  641. }
  642. .material-icons.cancel:before,
  643. .mi-cancel:before {
  644. content: '\e5c9';
  645. }
  646. .material-icons.card_giftcard:before,
  647. .mi-card_giftcard:before {
  648. content: '\e8f6';
  649. }
  650. .material-icons.card_membership:before,
  651. .mi-card_membership:before {
  652. content: '\e8f7';
  653. }
  654. .material-icons.card_travel:before,
  655. .mi-card_travel:before {
  656. content: '\e8f8';
  657. }
  658. .material-icons.casino:before,
  659. .mi-casino:before {
  660. content: '\eb40';
  661. }
  662. .material-icons.cast:before,
  663. .mi-cast:before {
  664. content: '\e307';
  665. }
  666. .material-icons.cast_connected:before,
  667. .mi-cast_connected:before {
  668. content: '\e308';
  669. }
  670. .material-icons.center_focus_strong:before,
  671. .mi-center_focus_strong:before {
  672. content: '\e3b4';
  673. }
  674. .material-icons.center_focus_weak:before,
  675. .mi-center_focus_weak:before {
  676. content: '\e3b5';
  677. }
  678. .material-icons.change_history:before,
  679. .mi-change_history:before {
  680. content: '\e86b';
  681. }
  682. .material-icons.chat:before,
  683. .mi-chat:before {
  684. content: '\e0b7';
  685. }
  686. .material-icons.chat_bubble:before,
  687. .mi-chat_bubble:before {
  688. content: '\e0ca';
  689. }
  690. .material-icons.chat_bubble_outline:before,
  691. .mi-chat_bubble_outline:before {
  692. content: '\e0cb';
  693. }
  694. .material-icons.check:before,
  695. .mi-check:before {
  696. content: '\e5ca';
  697. }
  698. .material-icons.check_box:before,
  699. .mi-check_box:before {
  700. content: '\e834';
  701. }
  702. .material-icons.check_box_outline_blank:before,
  703. .mi-check_box_outline_blank:before {
  704. content: '\e835';
  705. }
  706. .material-icons.check_circle:before,
  707. .mi-check_circle:before {
  708. content: '\e86c';
  709. }
  710. .material-icons.chevron_left:before,
  711. .mi-chevron_left:before {
  712. content: '\e5cb';
  713. }
  714. .material-icons.chevron_right:before,
  715. .mi-chevron_right:before {
  716. content: '\e5cc';
  717. }
  718. .material-icons.child_care:before,
  719. .mi-child_care:before {
  720. content: '\eb41';
  721. }
  722. .material-icons.child_friendly:before,
  723. .mi-child_friendly:before {
  724. content: '\eb42';
  725. }
  726. .material-icons.chrome_reader_mode:before,
  727. .mi-chrome_reader_mode:before {
  728. content: '\e86d';
  729. }
  730. .material-icons.class:before,
  731. .mi-class:before {
  732. content: '\e86e';
  733. }
  734. .material-icons.clear:before,
  735. .mi-clear:before {
  736. content: '\e14c';
  737. }
  738. .material-icons.clear_all:before,
  739. .mi-clear_all:before {
  740. content: '\e0b8';
  741. }
  742. .material-icons.close:before,
  743. .mi-close:before {
  744. content: '\e5cd';
  745. }
  746. .material-icons.closed_caption:before,
  747. .mi-closed_caption:before {
  748. content: '\e01c';
  749. }
  750. .material-icons.cloud:before,
  751. .mi-cloud:before {
  752. content: '\e2bd';
  753. }
  754. .material-icons.cloud_circle:before,
  755. .mi-cloud_circle:before {
  756. content: '\e2be';
  757. }
  758. .material-icons.cloud_done:before,
  759. .mi-cloud_done:before {
  760. content: '\e2bf';
  761. }
  762. .material-icons.cloud_download:before,
  763. .mi-cloud_download:before {
  764. content: '\e2c0';
  765. }
  766. .material-icons.cloud_off:before,
  767. .mi-cloud_off:before {
  768. content: '\e2c1';
  769. }
  770. .material-icons.cloud_queue:before,
  771. .mi-cloud_queue:before {
  772. content: '\e2c2';
  773. }
  774. .material-icons.cloud_upload:before,
  775. .mi-cloud_upload:before {
  776. content: '\e2c3';
  777. }
  778. .material-icons.code:before,
  779. .mi-code:before {
  780. content: '\e86f';
  781. }
  782. .material-icons.collections:before,
  783. .mi-collections:before {
  784. content: '\e3b6';
  785. }
  786. .material-icons.collections_bookmark:before,
  787. .mi-collections_bookmark:before {
  788. content: '\e431';
  789. }
  790. .material-icons.color_lens:before,
  791. .mi-color_lens:before {
  792. content: '\e3b7';
  793. }
  794. .material-icons.colorize:before,
  795. .mi-colorize:before {
  796. content: '\e3b8';
  797. }
  798. .material-icons.comment:before,
  799. .mi-comment:before {
  800. content: '\e0b9';
  801. }
  802. .material-icons.compare:before,
  803. .mi-compare:before {
  804. content: '\e3b9';
  805. }
  806. .material-icons.compare_arrows:before,
  807. .mi-compare_arrows:before {
  808. content: '\e915';
  809. }
  810. .material-icons.computer:before,
  811. .mi-computer:before {
  812. content: '\e30a';
  813. }
  814. .material-icons.confirmation_number:before,
  815. .mi-confirmation_number:before {
  816. content: '\e638';
  817. }
  818. .material-icons.contact_mail:before,
  819. .mi-contact_mail:before {
  820. content: '\e0d0';
  821. }
  822. .material-icons.contact_phone:before,
  823. .mi-contact_phone:before {
  824. content: '\e0cf';
  825. }
  826. .material-icons.contacts:before,
  827. .mi-contacts:before {
  828. content: '\e0ba';
  829. }
  830. .material-icons.content_copy:before,
  831. .mi-content_copy:before {
  832. content: '\e14d';
  833. }
  834. .material-icons.content_cut:before,
  835. .mi-content_cut:before {
  836. content: '\e14e';
  837. }
  838. .material-icons.content_paste:before,
  839. .mi-content_paste:before {
  840. content: '\e14f';
  841. }
  842. .material-icons.control_point:before,
  843. .mi-control_point:before {
  844. content: '\e3ba';
  845. }
  846. .material-icons.control_point_duplicate:before,
  847. .mi-control_point_duplicate:before {
  848. content: '\e3bb';
  849. }
  850. .material-icons.copyright:before,
  851. .mi-copyright:before {
  852. content: '\e90c';
  853. }
  854. .material-icons.create:before,
  855. .mi-create:before {
  856. content: '\e150';
  857. }
  858. .material-icons.create_new_folder:before,
  859. .mi-create_new_folder:before {
  860. content: '\e2cc';
  861. }
  862. .material-icons.credit_card:before,
  863. .mi-credit_card:before {
  864. content: '\e870';
  865. }
  866. .material-icons.crop:before,
  867. .mi-crop:before {
  868. content: '\e3be';
  869. }
  870. .material-icons.crop_16_9:before,
  871. .mi-crop_16_9:before {
  872. content: '\e3bc';
  873. }
  874. .material-icons.crop_3_2:before,
  875. .mi-crop_3_2:before {
  876. content: '\e3bd';
  877. }
  878. .material-icons.crop_5_4:before,
  879. .mi-crop_5_4:before {
  880. content: '\e3bf';
  881. }
  882. .material-icons.crop_7_5:before,
  883. .mi-crop_7_5:before {
  884. content: '\e3c0';
  885. }
  886. .material-icons.crop_din:before,
  887. .mi-crop_din:before {
  888. content: '\e3c1';
  889. }
  890. .material-icons.crop_free:before,
  891. .mi-crop_free:before {
  892. content: '\e3c2';
  893. }
  894. .material-icons.crop_landscape:before,
  895. .mi-crop_landscape:before {
  896. content: '\e3c3';
  897. }
  898. .material-icons.crop_original:before,
  899. .mi-crop_original:before {
  900. content: '\e3c4';
  901. }
  902. .material-icons.crop_portrait:before,
  903. .mi-crop_portrait:before {
  904. content: '\e3c5';
  905. }
  906. .material-icons.crop_rotate:before,
  907. .mi-crop_rotate:before {
  908. content: '\e437';
  909. }
  910. .material-icons.crop_square:before,
  911. .mi-crop_square:before {
  912. content: '\e3c6';
  913. }
  914. .material-icons.dashboard:before,
  915. .mi-dashboard:before {
  916. content: '\e871';
  917. }
  918. .material-icons.data_usage:before,
  919. .mi-data_usage:before {
  920. content: '\e1af';
  921. }
  922. .material-icons.date_range:before,
  923. .mi-date_range:before {
  924. content: '\e916';
  925. }
  926. .material-icons.dehaze:before,
  927. .mi-dehaze:before {
  928. content: '\e3c7';
  929. }
  930. .material-icons.delete:before,
  931. .mi-delete:before {
  932. content: '\e872';
  933. }
  934. .material-icons.delete_forever:before,
  935. .mi-delete_forever:before {
  936. content: '\e92b';
  937. }
  938. .material-icons.delete_sweep:before,
  939. .mi-delete_sweep:before {
  940. content: '\e16c';
  941. }
  942. .material-icons.description:before,
  943. .mi-description:before {
  944. content: '\e873';
  945. }
  946. .material-icons.desktop_mac:before,
  947. .mi-desktop_mac:before {
  948. content: '\e30b';
  949. }
  950. .material-icons.desktop_windows:before,
  951. .mi-desktop_windows:before {
  952. content: '\e30c';
  953. }
  954. .material-icons.details:before,
  955. .mi-details:before {
  956. content: '\e3c8';
  957. }
  958. .material-icons.developer_board:before,
  959. .mi-developer_board:before {
  960. content: '\e30d';
  961. }
  962. .material-icons.developer_mode:before,
  963. .mi-developer_mode:before {
  964. content: '\e1b0';
  965. }
  966. .material-icons.device_hub:before,
  967. .mi-device_hub:before {
  968. content: '\e335';
  969. }
  970. .material-icons.devices:before,
  971. .mi-devices:before {
  972. content: '\e1b1';
  973. }
  974. .material-icons.devices_other:before,
  975. .mi-devices_other:before {
  976. content: '\e337';
  977. }
  978. .material-icons.dialer_sip:before,
  979. .mi-dialer_sip:before {
  980. content: '\e0bb';
  981. }
  982. .material-icons.dialpad:before,
  983. .mi-dialpad:before {
  984. content: '\e0bc';
  985. }
  986. .material-icons.directions:before,
  987. .mi-directions:before {
  988. content: '\e52e';
  989. }
  990. .material-icons.directions_bike:before,
  991. .mi-directions_bike:before {
  992. content: '\e52f';
  993. }
  994. .material-icons.directions_boat:before,
  995. .mi-directions_boat:before {
  996. content: '\e532';
  997. }
  998. .material-icons.directions_bus:before,
  999. .mi-directions_bus:before {
  1000. content: '\e530';
  1001. }
  1002. .material-icons.directions_car:before,
  1003. .mi-directions_car:before {
  1004. content: '\e531';
  1005. }
  1006. .material-icons.directions_railway:before,
  1007. .mi-directions_railway:before {
  1008. content: '\e534';
  1009. }
  1010. .material-icons.directions_run:before,
  1011. .mi-directions_run:before {
  1012. content: '\e566';
  1013. }
  1014. .material-icons.directions_subway:before,
  1015. .mi-directions_subway:before {
  1016. content: '\e533';
  1017. }
  1018. .material-icons.directions_transit:before,
  1019. .mi-directions_transit:before {
  1020. content: '\e535';
  1021. }
  1022. .material-icons.directions_walk:before,
  1023. .mi-directions_walk:before {
  1024. content: '\e536';
  1025. }
  1026. .material-icons.disc_full:before,
  1027. .mi-disc_full:before {
  1028. content: '\e610';
  1029. }
  1030. .material-icons.dns:before,
  1031. .mi-dns:before {
  1032. content: '\e875';
  1033. }
  1034. .material-icons.do_not_disturb:before,
  1035. .mi-do_not_disturb:before {
  1036. content: '\e612';
  1037. }
  1038. .material-icons.do_not_disturb_alt:before,
  1039. .mi-do_not_disturb_alt:before {
  1040. content: '\e611';
  1041. }
  1042. .material-icons.do_not_disturb_off:before,
  1043. .mi-do_not_disturb_off:before {
  1044. content: '\e643';
  1045. }
  1046. .material-icons.do_not_disturb_on:before,
  1047. .mi-do_not_disturb_on:before {
  1048. content: '\e644';
  1049. }
  1050. .material-icons.dock:before,
  1051. .mi-dock:before {
  1052. content: '\e30e';
  1053. }
  1054. .material-icons.domain:before,
  1055. .mi-domain:before {
  1056. content: '\e7ee';
  1057. }
  1058. .material-icons.done:before,
  1059. .mi-done:before {
  1060. content: '\e876';
  1061. }
  1062. .material-icons.done_all:before,
  1063. .mi-done_all:before {
  1064. content: '\e877';
  1065. }
  1066. .material-icons.donut_large:before,
  1067. .mi-donut_large:before {
  1068. content: '\e917';
  1069. }
  1070. .material-icons.donut_small:before,
  1071. .mi-donut_small:before {
  1072. content: '\e918';
  1073. }
  1074. .material-icons.drafts:before,
  1075. .mi-drafts:before {
  1076. content: '\e151';
  1077. }
  1078. .material-icons.drag_handle:before,
  1079. .mi-drag_handle:before {
  1080. content: '\e25d';
  1081. }
  1082. .material-icons.drive_eta:before,
  1083. .mi-drive_eta:before {
  1084. content: '\e613';
  1085. }
  1086. .material-icons.dvr:before,
  1087. .mi-dvr:before {
  1088. content: '\e1b2';
  1089. }
  1090. .material-icons.edit:before,
  1091. .mi-edit:before {
  1092. content: '\e3c9';
  1093. }
  1094. .material-icons.edit_location:before,
  1095. .mi-edit_location:before {
  1096. content: '\e568';
  1097. }
  1098. .material-icons.eject:before,
  1099. .mi-eject:before {
  1100. content: '\e8fb';
  1101. }
  1102. .material-icons.email:before,
  1103. .mi-email:before {
  1104. content: '\e0be';
  1105. }
  1106. .material-icons.enhanced_encryption:before,
  1107. .mi-enhanced_encryption:before {
  1108. content: '\e63f';
  1109. }
  1110. .material-icons.equalizer:before,
  1111. .mi-equalizer:before {
  1112. content: '\e01d';
  1113. }
  1114. .material-icons.error:before,
  1115. .mi-error:before {
  1116. content: '\e000';
  1117. }
  1118. .material-icons.error_outline:before,
  1119. .mi-error_outline:before {
  1120. content: '\e001';
  1121. }
  1122. .material-icons.euro_symbol:before,
  1123. .mi-euro_symbol:before {
  1124. content: '\e926';
  1125. }
  1126. .material-icons.ev_station:before,
  1127. .mi-ev_station:before {
  1128. content: '\e56d';
  1129. }
  1130. .material-icons.event:before,
  1131. .mi-event:before {
  1132. content: '\e878';
  1133. }
  1134. .material-icons.event_available:before,
  1135. .mi-event_available:before {
  1136. content: '\e614';
  1137. }
  1138. .material-icons.event_busy:before,
  1139. .mi-event_busy:before {
  1140. content: '\e615';
  1141. }
  1142. .material-icons.event_note:before,
  1143. .mi-event_note:before {
  1144. content: '\e616';
  1145. }
  1146. .material-icons.event_seat:before,
  1147. .mi-event_seat:before {
  1148. content: '\e903';
  1149. }
  1150. .material-icons.exit_to_app:before,
  1151. .mi-exit_to_app:before {
  1152. content: '\e879';
  1153. }
  1154. .material-icons.expand_less:before,
  1155. .mi-expand_less:before {
  1156. content: '\e5ce';
  1157. }
  1158. .material-icons.expand_more:before,
  1159. .mi-expand_more:before {
  1160. content: '\e5cf';
  1161. }
  1162. .material-icons.explicit:before,
  1163. .mi-explicit:before {
  1164. content: '\e01e';
  1165. }
  1166. .material-icons.explore:before,
  1167. .mi-explore:before {
  1168. content: '\e87a';
  1169. }
  1170. .material-icons.exposure:before,
  1171. .mi-exposure:before {
  1172. content: '\e3ca';
  1173. }
  1174. .material-icons.exposure_neg_1:before,
  1175. .mi-exposure_neg_1:before {
  1176. content: '\e3cb';
  1177. }
  1178. .material-icons.exposure_neg_2:before,
  1179. .mi-exposure_neg_2:before {
  1180. content: '\e3cc';
  1181. }
  1182. .material-icons.exposure_plus_1:before,
  1183. .mi-exposure_plus_1:before {
  1184. content: '\e3cd';
  1185. }
  1186. .material-icons.exposure_plus_2:before,
  1187. .mi-exposure_plus_2:before {
  1188. content: '\e3ce';
  1189. }
  1190. .material-icons.exposure_zero:before,
  1191. .mi-exposure_zero:before {
  1192. content: '\e3cf';
  1193. }
  1194. .material-icons.extension:before,
  1195. .mi-extension:before {
  1196. content: '\e87b';
  1197. }
  1198. .material-icons.face:before,
  1199. .mi-face:before {
  1200. content: '\e87c';
  1201. }
  1202. .material-icons.fast_forward:before,
  1203. .mi-fast_forward:before {
  1204. content: '\e01f';
  1205. }
  1206. .material-icons.fast_rewind:before,
  1207. .mi-fast_rewind:before {
  1208. content: '\e020';
  1209. }
  1210. .material-icons.favorite:before,
  1211. .mi-favorite:before {
  1212. content: '\e87d';
  1213. }
  1214. .material-icons.favorite_border:before,
  1215. .mi-favorite_border:before {
  1216. content: '\e87e';
  1217. }
  1218. .material-icons.featured_play_list:before,
  1219. .mi-featured_play_list:before {
  1220. content: '\e06d';
  1221. }
  1222. .material-icons.featured_video:before,
  1223. .mi-featured_video:before {
  1224. content: '\e06e';
  1225. }
  1226. .material-icons.feedback:before,
  1227. .mi-feedback:before {
  1228. content: '\e87f';
  1229. }
  1230. .material-icons.fiber_dvr:before,
  1231. .mi-fiber_dvr:before {
  1232. content: '\e05d';
  1233. }
  1234. .material-icons.fiber_manual_record:before,
  1235. .mi-fiber_manual_record:before {
  1236. content: '\e061';
  1237. }
  1238. .material-icons.fiber_new:before,
  1239. .mi-fiber_new:before {
  1240. content: '\e05e';
  1241. }
  1242. .material-icons.fiber_pin:before,
  1243. .mi-fiber_pin:before {
  1244. content: '\e06a';
  1245. }
  1246. .material-icons.fiber_smart_record:before,
  1247. .mi-fiber_smart_record:before {
  1248. content: '\e062';
  1249. }
  1250. .material-icons.file_download:before,
  1251. .mi-file_download:before {
  1252. content: '\e2c4';
  1253. }
  1254. .material-icons.file_upload:before,
  1255. .mi-file_upload:before {
  1256. content: '\e2c6';
  1257. }
  1258. .material-icons.filter:before,
  1259. .mi-filter:before {
  1260. content: '\e3d3';
  1261. }
  1262. .material-icons.filter_1:before,
  1263. .mi-filter_1:before {
  1264. content: '\e3d0';
  1265. }
  1266. .material-icons.filter_2:before,
  1267. .mi-filter_2:before {
  1268. content: '\e3d1';
  1269. }
  1270. .material-icons.filter_3:before,
  1271. .mi-filter_3:before {
  1272. content: '\e3d2';
  1273. }
  1274. .material-icons.filter_4:before,
  1275. .mi-filter_4:before {
  1276. content: '\e3d4';
  1277. }
  1278. .material-icons.filter_5:before,
  1279. .mi-filter_5:before {
  1280. content: '\e3d5';
  1281. }
  1282. .material-icons.filter_6:before,
  1283. .mi-filter_6:before {
  1284. content: '\e3d6';
  1285. }
  1286. .material-icons.filter_7:before,
  1287. .mi-filter_7:before {
  1288. content: '\e3d7';
  1289. }
  1290. .material-icons.filter_8:before,
  1291. .mi-filter_8:before {
  1292. content: '\e3d8';
  1293. }
  1294. .material-icons.filter_9:before,
  1295. .mi-filter_9:before {
  1296. content: '\e3d9';
  1297. }
  1298. .material-icons.filter_9_plus:before,
  1299. .mi-filter_9_plus:before {
  1300. content: '\e3da';
  1301. }
  1302. .material-icons.filter_b_and_w:before,
  1303. .mi-filter_b_and_w:before {
  1304. content: '\e3db';
  1305. }
  1306. .material-icons.filter_center_focus:before,
  1307. .mi-filter_center_focus:before {
  1308. content: '\e3dc';
  1309. }
  1310. .material-icons.filter_drama:before,
  1311. .mi-filter_drama:before {
  1312. content: '\e3dd';
  1313. }
  1314. .material-icons.filter_frames:before,
  1315. .mi-filter_frames:before {
  1316. content: '\e3de';
  1317. }
  1318. .material-icons.filter_hdr:before,
  1319. .mi-filter_hdr:before {
  1320. content: '\e3df';
  1321. }
  1322. .material-icons.filter_list:before,
  1323. .mi-filter_list:before {
  1324. content: '\e152';
  1325. }
  1326. .material-icons.filter_none:before,
  1327. .mi-filter_none:before {
  1328. content: '\e3e0';
  1329. }
  1330. .material-icons.filter_tilt_shift:before,
  1331. .mi-filter_tilt_shift:before {
  1332. content: '\e3e2';
  1333. }
  1334. .material-icons.filter_vintage:before,
  1335. .mi-filter_vintage:before {
  1336. content: '\e3e3';
  1337. }
  1338. .material-icons.find_in_page:before,
  1339. .mi-find_in_page:before {
  1340. content: '\e880';
  1341. }
  1342. .material-icons.find_replace:before,
  1343. .mi-find_replace:before {
  1344. content: '\e881';
  1345. }
  1346. .material-icons.fingerprint:before,
  1347. .mi-fingerprint:before {
  1348. content: '\e90d';
  1349. }
  1350. .material-icons.first_page:before,
  1351. .mi-first_page:before {
  1352. content: '\e5dc';
  1353. }
  1354. .material-icons.fitness_center:before,
  1355. .mi-fitness_center:before {
  1356. content: '\eb43';
  1357. }
  1358. .material-icons.flag:before,
  1359. .mi-flag:before {
  1360. content: '\e153';
  1361. }
  1362. .material-icons.flare:before,
  1363. .mi-flare:before {
  1364. content: '\e3e4';
  1365. }
  1366. .material-icons.flash_auto:before,
  1367. .mi-flash_auto:before {
  1368. content: '\e3e5';
  1369. }
  1370. .material-icons.flash_off:before,
  1371. .mi-flash_off:before {
  1372. content: '\e3e6';
  1373. }
  1374. .material-icons.flash_on:before,
  1375. .mi-flash_on:before {
  1376. content: '\e3e7';
  1377. }
  1378. .material-icons.flight:before,
  1379. .mi-flight:before {
  1380. content: '\e539';
  1381. }
  1382. .material-icons.flight_land:before,
  1383. .mi-flight_land:before {
  1384. content: '\e904';
  1385. }
  1386. .material-icons.flight_takeoff:before,
  1387. .mi-flight_takeoff:before {
  1388. content: '\e905';
  1389. }
  1390. .material-icons.flip:before,
  1391. .mi-flip:before {
  1392. content: '\e3e8';
  1393. }
  1394. .material-icons.flip_to_back:before,
  1395. .mi-flip_to_back:before {
  1396. content: '\e882';
  1397. }
  1398. .material-icons.flip_to_front:before,
  1399. .mi-flip_to_front:before {
  1400. content: '\e883';
  1401. }
  1402. .material-icons.folder:before,
  1403. .mi-folder:before {
  1404. content: '\e2c7';
  1405. }
  1406. .material-icons.folder_open:before,
  1407. .mi-folder_open:before {
  1408. content: '\e2c8';
  1409. }
  1410. .material-icons.folder_shared:before,
  1411. .mi-folder_shared:before {
  1412. content: '\e2c9';
  1413. }
  1414. .material-icons.folder_special:before,
  1415. .mi-folder_special:before {
  1416. content: '\e617';
  1417. }
  1418. .material-icons.font_download:before,
  1419. .mi-font_download:before {
  1420. content: '\e167';
  1421. }
  1422. .material-icons.format_align_center:before,
  1423. .mi-format_align_center:before {
  1424. content: '\e234';
  1425. }
  1426. .material-icons.format_align_justify:before,
  1427. .mi-format_align_justify:before {
  1428. content: '\e235';
  1429. }
  1430. .material-icons.format_align_left:before,
  1431. .mi-format_align_left:before {
  1432. content: '\e236';
  1433. }
  1434. .material-icons.format_align_right:before,
  1435. .mi-format_align_right:before {
  1436. content: '\e237';
  1437. }
  1438. .material-icons.format_bold:before,
  1439. .mi-format_bold:before {
  1440. content: '\e238';
  1441. }
  1442. .material-icons.format_clear:before,
  1443. .mi-format_clear:before {
  1444. content: '\e239';
  1445. }
  1446. .material-icons.format_color_fill:before,
  1447. .mi-format_color_fill:before {
  1448. content: '\e23a';
  1449. }
  1450. .material-icons.format_color_reset:before,
  1451. .mi-format_color_reset:before {
  1452. content: '\e23b';
  1453. }
  1454. .material-icons.format_color_text:before,
  1455. .mi-format_color_text:before {
  1456. content: '\e23c';
  1457. }
  1458. .material-icons.format_indent_decrease:before,
  1459. .mi-format_indent_decrease:before {
  1460. content: '\e23d';
  1461. }
  1462. .material-icons.format_indent_increase:before,
  1463. .mi-format_indent_increase:before {
  1464. content: '\e23e';
  1465. }
  1466. .material-icons.format_italic:before,
  1467. .mi-format_italic:before {
  1468. content: '\e23f';
  1469. }
  1470. .material-icons.format_line_spacing:before,
  1471. .mi-format_line_spacing:before {
  1472. content: '\e240';
  1473. }
  1474. .material-icons.format_list_bulleted:before,
  1475. .mi-format_list_bulleted:before {
  1476. content: '\e241';
  1477. }
  1478. .material-icons.format_list_numbered:before,
  1479. .mi-format_list_numbered:before {
  1480. content: '\e242';
  1481. }
  1482. .material-icons.format_paint:before,
  1483. .mi-format_paint:before {
  1484. content: '\e243';
  1485. }
  1486. .material-icons.format_quote:before,
  1487. .mi-format_quote:before {
  1488. content: '\e244';
  1489. }
  1490. .material-icons.format_shapes:before,
  1491. .mi-format_shapes:before {
  1492. content: '\e25e';
  1493. }
  1494. .material-icons.format_size:before,
  1495. .mi-format_size:before {
  1496. content: '\e245';
  1497. }
  1498. .material-icons.format_strikethrough:before,
  1499. .mi-format_strikethrough:before {
  1500. content: '\e246';
  1501. }
  1502. .material-icons.format_textdirection_l_to_r:before,
  1503. .mi-format_textdirection_l_to_r:before {
  1504. content: '\e247';
  1505. }
  1506. .material-icons.format_textdirection_r_to_l:before,
  1507. .mi-format_textdirection_r_to_l:before {
  1508. content: '\e248';
  1509. }
  1510. .material-icons.format_underlined:before,
  1511. .mi-format_underlined:before {
  1512. content: '\e249';
  1513. }
  1514. .material-icons.forum:before,
  1515. .mi-forum:before {
  1516. content: '\e0bf';
  1517. }
  1518. .material-icons.forward:before,
  1519. .mi-forward:before {
  1520. content: '\e154';
  1521. }
  1522. .material-icons.forward_10:before,
  1523. .mi-forward_10:before {
  1524. content: '\e056';
  1525. }
  1526. .material-icons.forward_30:before,
  1527. .mi-forward_30:before {
  1528. content: '\e057';
  1529. }
  1530. .material-icons.forward_5:before,
  1531. .mi-forward_5:before {
  1532. content: '\e058';
  1533. }
  1534. .material-icons.free_breakfast:before,
  1535. .mi-free_breakfast:before {
  1536. content: '\eb44';
  1537. }
  1538. .material-icons.fullscreen:before,
  1539. .mi-fullscreen:before {
  1540. content: '\e5d0';
  1541. }
  1542. .material-icons.fullscreen_exit:before,
  1543. .mi-fullscreen_exit:before {
  1544. content: '\e5d1';
  1545. }
  1546. .material-icons.functions:before,
  1547. .mi-functions:before {
  1548. content: '\e24a';
  1549. }
  1550. .material-icons.g_translate:before,
  1551. .mi-g_translate:before {
  1552. content: '\e927';
  1553. }
  1554. .material-icons.gamepad:before,
  1555. .mi-gamepad:before {
  1556. content: '\e30f';
  1557. }
  1558. .material-icons.games:before,
  1559. .mi-games:before {
  1560. content: '\e021';
  1561. }
  1562. .material-icons.gavel:before,
  1563. .mi-gavel:before {
  1564. content: '\e90e';
  1565. }
  1566. .material-icons.gesture:before,
  1567. .mi-gesture:before {
  1568. content: '\e155';
  1569. }
  1570. .material-icons.get_app:before,
  1571. .mi-get_app:before {
  1572. content: '\e884';
  1573. }
  1574. .material-icons.gif:before,
  1575. .mi-gif:before {
  1576. content: '\e908';
  1577. }
  1578. .material-icons.golf_course:before,
  1579. .mi-golf_course:before {
  1580. content: '\eb45';
  1581. }
  1582. .material-icons.gps_fixed:before,
  1583. .mi-gps_fixed:before {
  1584. content: '\e1b3';
  1585. }
  1586. .material-icons.gps_not_fixed:before,
  1587. .mi-gps_not_fixed:before {
  1588. content: '\e1b4';
  1589. }
  1590. .material-icons.gps_off:before,
  1591. .mi-gps_off:before {
  1592. content: '\e1b5';
  1593. }
  1594. .material-icons.grade:before,
  1595. .mi-grade:before {
  1596. content: '\e885';
  1597. }
  1598. .material-icons.gradient:before,
  1599. .mi-gradient:before {
  1600. content: '\e3e9';
  1601. }
  1602. .material-icons.grain:before,
  1603. .mi-grain:before {
  1604. content: '\e3ea';
  1605. }
  1606. .material-icons.graphic_eq:before,
  1607. .mi-graphic_eq:before {
  1608. content: '\e1b8';
  1609. }
  1610. .material-icons.grid_off:before,
  1611. .mi-grid_off:before {
  1612. content: '\e3eb';
  1613. }
  1614. .material-icons.grid_on:before,
  1615. .mi-grid_on:before {
  1616. content: '\e3ec';
  1617. }
  1618. .material-icons.group:before,
  1619. .mi-group:before {
  1620. content: '\e7ef';
  1621. }
  1622. .material-icons.group_add:before,
  1623. .mi-group_add:before {
  1624. content: '\e7f0';
  1625. }
  1626. .material-icons.group_work:before,
  1627. .mi-group_work:before {
  1628. content: '\e886';
  1629. }
  1630. .material-icons.hd:before,
  1631. .mi-hd:before {
  1632. content: '\e052';
  1633. }
  1634. .material-icons.hdr_off:before,
  1635. .mi-hdr_off:before {
  1636. content: '\e3ed';
  1637. }
  1638. .material-icons.hdr_on:before,
  1639. .mi-hdr_on:before {
  1640. content: '\e3ee';
  1641. }
  1642. .material-icons.hdr_strong:before,
  1643. .mi-hdr_strong:before {
  1644. content: '\e3f1';
  1645. }
  1646. .material-icons.hdr_weak:before,
  1647. .mi-hdr_weak:before {
  1648. content: '\e3f2';
  1649. }
  1650. .material-icons.headset:before,
  1651. .mi-headset:before {
  1652. content: '\e310';
  1653. }
  1654. .material-icons.headset_mic:before,
  1655. .mi-headset_mic:before {
  1656. content: '\e311';
  1657. }
  1658. .material-icons.healing:before,
  1659. .mi-healing:before {
  1660. content: '\e3f3';
  1661. }
  1662. .material-icons.hearing:before,
  1663. .mi-hearing:before {
  1664. content: '\e023';
  1665. }
  1666. .material-icons.help:before,
  1667. .mi-help:before {
  1668. content: '\e887';
  1669. }
  1670. .material-icons.help_outline:before,
  1671. .mi-help_outline:before {
  1672. content: '\e8fd';
  1673. }
  1674. .material-icons.high_quality:before,
  1675. .mi-high_quality:before {
  1676. content: '\e024';
  1677. }
  1678. .material-icons.highlight:before,
  1679. .mi-highlight:before {
  1680. content: '\e25f';
  1681. }
  1682. .material-icons.highlight_off:before,
  1683. .mi-highlight_off:before {
  1684. content: '\e888';
  1685. }
  1686. .material-icons.history:before,
  1687. .mi-history:before {
  1688. content: '\e889';
  1689. }
  1690. .material-icons.home:before,
  1691. .mi-home:before {
  1692. content: '\e88a';
  1693. }
  1694. .material-icons.hot_tub:before,
  1695. .mi-hot_tub:before {
  1696. content: '\eb46';
  1697. }
  1698. .material-icons.hotel:before,
  1699. .mi-hotel:before {
  1700. content: '\e53a';
  1701. }
  1702. .material-icons.hourglass_empty:before,
  1703. .mi-hourglass_empty:before {
  1704. content: '\e88b';
  1705. }
  1706. .material-icons.hourglass_full:before,
  1707. .mi-hourglass_full:before {
  1708. content: '\e88c';
  1709. }
  1710. .material-icons.http:before,
  1711. .mi-http:before {
  1712. content: '\e902';
  1713. }
  1714. .material-icons.https:before,
  1715. .mi-https:before {
  1716. content: '\e88d';
  1717. }
  1718. .material-icons.image:before,
  1719. .mi-image:before {
  1720. content: '\e3f4';
  1721. }
  1722. .material-icons.image_aspect_ratio:before,
  1723. .mi-image_aspect_ratio:before {
  1724. content: '\e3f5';
  1725. }
  1726. .material-icons.import_contacts:before,
  1727. .mi-import_contacts:before {
  1728. content: '\e0e0';
  1729. }
  1730. .material-icons.import_export:before,
  1731. .mi-import_export:before {
  1732. content: '\e0c3';
  1733. }
  1734. .material-icons.important_devices:before,
  1735. .mi-important_devices:before {
  1736. content: '\e912';
  1737. }
  1738. .material-icons.inbox:before,
  1739. .mi-inbox:before {
  1740. content: '\e156';
  1741. }
  1742. .material-icons.indeterminate_check_box:before,
  1743. .mi-indeterminate_check_box:before {
  1744. content: '\e909';
  1745. }
  1746. .material-icons.info:before,
  1747. .mi-info:before {
  1748. content: '\e88e';
  1749. }
  1750. .material-icons.info_outline:before,
  1751. .mi-info_outline:before {
  1752. content: '\e88f';
  1753. }
  1754. .material-icons.input:before,
  1755. .mi-input:before {
  1756. content: '\e890';
  1757. }
  1758. .material-icons.insert_chart:before,
  1759. .mi-insert_chart:before {
  1760. content: '\e24b';
  1761. }
  1762. .material-icons.insert_comment:before,
  1763. .mi-insert_comment:before {
  1764. content: '\e24c';
  1765. }
  1766. .material-icons.insert_drive_file:before,
  1767. .mi-insert_drive_file:before {
  1768. content: '\e24d';
  1769. }
  1770. .material-icons.insert_emoticon:before,
  1771. .mi-insert_emoticon:before {
  1772. content: '\e24e';
  1773. }
  1774. .material-icons.insert_invitation:before,
  1775. .mi-insert_invitation:before {
  1776. content: '\e24f';
  1777. }
  1778. .material-icons.insert_link:before,
  1779. .mi-insert_link:before {
  1780. content: '\e250';
  1781. }
  1782. .material-icons.insert_photo:before,
  1783. .mi-insert_photo:before {
  1784. content: '\e251';
  1785. }
  1786. .material-icons.invert_colors:before,
  1787. .mi-invert_colors:before {
  1788. content: '\e891';
  1789. }
  1790. .material-icons.invert_colors_off:before,
  1791. .mi-invert_colors_off:before {
  1792. content: '\e0c4';
  1793. }
  1794. .material-icons.iso:before,
  1795. .mi-iso:before {
  1796. content: '\e3f6';
  1797. }
  1798. .material-icons.keyboard:before,
  1799. .mi-keyboard:before {
  1800. content: '\e312';
  1801. }
  1802. .material-icons.keyboard_arrow_down:before,
  1803. .mi-keyboard_arrow_down:before {
  1804. content: '\e313';
  1805. }
  1806. .material-icons.keyboard_arrow_left:before,
  1807. .mi-keyboard_arrow_left:before {
  1808. content: '\e314';
  1809. }
  1810. .material-icons.keyboard_arrow_right:before,
  1811. .mi-keyboard_arrow_right:before {
  1812. content: '\e315';
  1813. }
  1814. .material-icons.keyboard_arrow_up:before,
  1815. .mi-keyboard_arrow_up:before {
  1816. content: '\e316';
  1817. }
  1818. .material-icons.keyboard_backspace:before,
  1819. .mi-keyboard_backspace:before {
  1820. content: '\e317';
  1821. }
  1822. .material-icons.keyboard_capslock:before,
  1823. .mi-keyboard_capslock:before {
  1824. content: '\e318';
  1825. }
  1826. .material-icons.keyboard_hide:before,
  1827. .mi-keyboard_hide:before {
  1828. content: '\e31a';
  1829. }
  1830. .material-icons.keyboard_return:before,
  1831. .mi-keyboard_return:before {
  1832. content: '\e31b';
  1833. }
  1834. .material-icons.keyboard_tab:before,
  1835. .mi-keyboard_tab:before {
  1836. content: '\e31c';
  1837. }
  1838. .material-icons.keyboard_voice:before,
  1839. .mi-keyboard_voice:before {
  1840. content: '\e31d';
  1841. }
  1842. .material-icons.kitchen:before,
  1843. .mi-kitchen:before {
  1844. content: '\eb47';
  1845. }
  1846. .material-icons.label:before,
  1847. .mi-label:before {
  1848. content: '\e892';
  1849. }
  1850. .material-icons.label_outline:before,
  1851. .mi-label_outline:before {
  1852. content: '\e893';
  1853. }
  1854. .material-icons.landscape:before,
  1855. .mi-landscape:before {
  1856. content: '\e3f7';
  1857. }
  1858. .material-icons.language:before,
  1859. .mi-language:before {
  1860. content: '\e894';
  1861. }
  1862. .material-icons.laptop:before,
  1863. .mi-laptop:before {
  1864. content: '\e31e';
  1865. }
  1866. .material-icons.laptop_chromebook:before,
  1867. .mi-laptop_chromebook:before {
  1868. content: '\e31f';
  1869. }
  1870. .material-icons.laptop_mac:before,
  1871. .mi-laptop_mac:before {
  1872. content: '\e320';
  1873. }
  1874. .material-icons.laptop_windows:before,
  1875. .mi-laptop_windows:before {
  1876. content: '\e321';
  1877. }
  1878. .material-icons.last_page:before,
  1879. .mi-last_page:before {
  1880. content: '\e5dd';
  1881. }
  1882. .material-icons.launch:before,
  1883. .mi-launch:before {
  1884. content: '\e895';
  1885. }
  1886. .material-icons.layers:before,
  1887. .mi-layers:before {
  1888. content: '\e53b';
  1889. }
  1890. .material-icons.layers_clear:before,
  1891. .mi-layers_clear:before {
  1892. content: '\e53c';
  1893. }
  1894. .material-icons.leak_add:before,
  1895. .mi-leak_add:before {
  1896. content: '\e3f8';
  1897. }
  1898. .material-icons.leak_remove:before,
  1899. .mi-leak_remove:before {
  1900. content: '\e3f9';
  1901. }
  1902. .material-icons.lens:before,
  1903. .mi-lens:before {
  1904. content: '\e3fa';
  1905. }
  1906. .material-icons.library_add:before,
  1907. .mi-library_add:before {
  1908. content: '\e02e';
  1909. }
  1910. .material-icons.library_books:before,
  1911. .mi-library_books:before {
  1912. content: '\e02f';
  1913. }
  1914. .material-icons.library_music:before,
  1915. .mi-library_music:before {
  1916. content: '\e030';
  1917. }
  1918. .material-icons.lightbulb_outline:before,
  1919. .mi-lightbulb_outline:before {
  1920. content: '\e90f';
  1921. }
  1922. .material-icons.line_style:before,
  1923. .mi-line_style:before {
  1924. content: '\e919';
  1925. }
  1926. .material-icons.line_weight:before,
  1927. .mi-line_weight:before {
  1928. content: '\e91a';
  1929. }
  1930. .material-icons.linear_scale:before,
  1931. .mi-linear_scale:before {
  1932. content: '\e260';
  1933. }
  1934. .material-icons.link:before,
  1935. .mi-link:before {
  1936. content: '\e157';
  1937. }
  1938. .material-icons.linked_camera:before,
  1939. .mi-linked_camera:before {
  1940. content: '\e438';
  1941. }
  1942. .material-icons.list:before,
  1943. .mi-list:before {
  1944. content: '\e896';
  1945. }
  1946. .material-icons.live_help:before,
  1947. .mi-live_help:before {
  1948. content: '\e0c6';
  1949. }
  1950. .material-icons.live_tv:before,
  1951. .mi-live_tv:before {
  1952. content: '\e639';
  1953. }
  1954. .material-icons.local_activity:before,
  1955. .mi-local_activity:before {
  1956. content: '\e53f';
  1957. }
  1958. .material-icons.local_airport:before,
  1959. .mi-local_airport:before {
  1960. content: '\e53d';
  1961. }
  1962. .material-icons.local_atm:before,
  1963. .mi-local_atm:before {
  1964. content: '\e53e';
  1965. }
  1966. .material-icons.local_bar:before,
  1967. .mi-local_bar:before {
  1968. content: '\e540';
  1969. }
  1970. .material-icons.local_cafe:before,
  1971. .mi-local_cafe:before {
  1972. content: '\e541';
  1973. }
  1974. .material-icons.local_car_wash:before,
  1975. .mi-local_car_wash:before {
  1976. content: '\e542';
  1977. }
  1978. .material-icons.local_convenience_store:before,
  1979. .mi-local_convenience_store:before {
  1980. content: '\e543';
  1981. }
  1982. .material-icons.local_dining:before,
  1983. .mi-local_dining:before {
  1984. content: '\e556';
  1985. }
  1986. .material-icons.local_drink:before,
  1987. .mi-local_drink:before {
  1988. content: '\e544';
  1989. }
  1990. .material-icons.local_florist:before,
  1991. .mi-local_florist:before {
  1992. content: '\e545';
  1993. }
  1994. .material-icons.local_gas_station:before,
  1995. .mi-local_gas_station:before {
  1996. content: '\e546';
  1997. }
  1998. .material-icons.local_grocery_store:before,
  1999. .mi-local_grocery_store:before {
  2000. content: '\e547';
  2001. }
  2002. .material-icons.local_hospital:before,
  2003. .mi-local_hospital:before {
  2004. content: '\e548';
  2005. }
  2006. .material-icons.local_hotel:before,
  2007. .mi-local_hotel:before {
  2008. content: '\e549';
  2009. }
  2010. .material-icons.local_laundry_service:before,
  2011. .mi-local_laundry_service:before {
  2012. content: '\e54a';
  2013. }
  2014. .material-icons.local_library:before,
  2015. .mi-local_library:before {
  2016. content: '\e54b';
  2017. }
  2018. .material-icons.local_mall:before,
  2019. .mi-local_mall:before {
  2020. content: '\e54c';
  2021. }
  2022. .material-icons.local_movies:before,
  2023. .mi-local_movies:before {
  2024. content: '\e54d';
  2025. }
  2026. .material-icons.local_offer:before,
  2027. .mi-local_offer:before {
  2028. content: '\e54e';
  2029. }
  2030. .material-icons.local_parking:before,
  2031. .mi-local_parking:before {
  2032. content: '\e54f';
  2033. }
  2034. .material-icons.local_pharmacy:before,
  2035. .mi-local_pharmacy:before {
  2036. content: '\e550';
  2037. }
  2038. .material-icons.local_phone:before,
  2039. .mi-local_phone:before {
  2040. content: '\e551';
  2041. }
  2042. .material-icons.local_pizza:before,
  2043. .mi-local_pizza:before {
  2044. content: '\e552';
  2045. }
  2046. .material-icons.local_play:before,
  2047. .mi-local_play:before {
  2048. content: '\e553';
  2049. }
  2050. .material-icons.local_post_office:before,
  2051. .mi-local_post_office:before {
  2052. content: '\e554';
  2053. }
  2054. .material-icons.local_printshop:before,
  2055. .mi-local_printshop:before {
  2056. content: '\e555';
  2057. }
  2058. .material-icons.local_see:before,
  2059. .mi-local_see:before {
  2060. content: '\e557';
  2061. }
  2062. .material-icons.local_shipping:before,
  2063. .mi-local_shipping:before {
  2064. content: '\e558';
  2065. }
  2066. .material-icons.local_taxi:before,
  2067. .mi-local_taxi:before {
  2068. content: '\e559';
  2069. }
  2070. .material-icons.location_city:before,
  2071. .mi-location_city:before {
  2072. content: '\e7f1';
  2073. }
  2074. .material-icons.location_disabled:before,
  2075. .mi-location_disabled:before {
  2076. content: '\e1b6';
  2077. }
  2078. .material-icons.location_off:before,
  2079. .mi-location_off:before {
  2080. content: '\e0c7';
  2081. }
  2082. .material-icons.location_on:before,
  2083. .mi-location_on:before {
  2084. content: '\e0c8';
  2085. }
  2086. .material-icons.location_searching:before,
  2087. .mi-location_searching:before {
  2088. content: '\e1b7';
  2089. }
  2090. .material-icons.lock:before,
  2091. .mi-lock:before {
  2092. content: '\e897';
  2093. }
  2094. .material-icons.lock_open:before,
  2095. .mi-lock_open:before {
  2096. content: '\e898';
  2097. }
  2098. .material-icons.lock_outline:before,
  2099. .mi-lock_outline:before {
  2100. content: '\e899';
  2101. }
  2102. .material-icons.looks:before,
  2103. .mi-looks:before {
  2104. content: '\e3fc';
  2105. }
  2106. .material-icons.looks_3:before,
  2107. .mi-looks_3:before {
  2108. content: '\e3fb';
  2109. }
  2110. .material-icons.looks_4:before,
  2111. .mi-looks_4:before {
  2112. content: '\e3fd';
  2113. }
  2114. .material-icons.looks_5:before,
  2115. .mi-looks_5:before {
  2116. content: '\e3fe';
  2117. }
  2118. .material-icons.looks_6:before,
  2119. .mi-looks_6:before {
  2120. content: '\e3ff';
  2121. }
  2122. .material-icons.looks_one:before,
  2123. .mi-looks_one:before {
  2124. content: '\e400';
  2125. }
  2126. .material-icons.looks_two:before,
  2127. .mi-looks_two:before {
  2128. content: '\e401';
  2129. }
  2130. .material-icons.loop:before,
  2131. .mi-loop:before {
  2132. content: '\e028';
  2133. }
  2134. .material-icons.loupe:before,
  2135. .mi-loupe:before {
  2136. content: '\e402';
  2137. }
  2138. .material-icons.low_priority:before,
  2139. .mi-low_priority:before {
  2140. content: '\e16d';
  2141. }
  2142. .material-icons.loyalty:before,
  2143. .mi-loyalty:before {
  2144. content: '\e89a';
  2145. }
  2146. .material-icons.mail:before,
  2147. .mi-mail:before {
  2148. content: '\e158';
  2149. }
  2150. .material-icons.mail_outline:before,
  2151. .mi-mail_outline:before {
  2152. content: '\e0e1';
  2153. }
  2154. .material-icons.map:before,
  2155. .mi-map:before {
  2156. content: '\e55b';
  2157. }
  2158. .material-icons.markunread:before,
  2159. .mi-markunread:before {
  2160. content: '\e159';
  2161. }
  2162. .material-icons.markunread_mailbox:before,
  2163. .mi-markunread_mailbox:before {
  2164. content: '\e89b';
  2165. }
  2166. .material-icons.memory:before,
  2167. .mi-memory:before {
  2168. content: '\e322';
  2169. }
  2170. .material-icons.menu:before,
  2171. .mi-menu:before {
  2172. content: '\e5d2';
  2173. }
  2174. .material-icons.merge_type:before,
  2175. .mi-merge_type:before {
  2176. content: '\e252';
  2177. }
  2178. .material-icons.message:before,
  2179. .mi-message:before {
  2180. content: '\e0c9';
  2181. }
  2182. .material-icons.mic:before,
  2183. .mi-mic:before {
  2184. content: '\e029';
  2185. }
  2186. .material-icons.mic_none:before,
  2187. .mi-mic_none:before {
  2188. content: '\e02a';
  2189. }
  2190. .material-icons.mic_off:before,
  2191. .mi-mic_off:before {
  2192. content: '\e02b';
  2193. }
  2194. .material-icons.mms:before,
  2195. .mi-mms:before {
  2196. content: '\e618';
  2197. }
  2198. .material-icons.mode_comment:before,
  2199. .mi-mode_comment:before {
  2200. content: '\e253';
  2201. }
  2202. .material-icons.mode_edit:before,
  2203. .mi-mode_edit:before {
  2204. content: '\e254';
  2205. }
  2206. .material-icons.monetization_on:before,
  2207. .mi-monetization_on:before {
  2208. content: '\e263';
  2209. }
  2210. .material-icons.money_off:before,
  2211. .mi-money_off:before {
  2212. content: '\e25c';
  2213. }
  2214. .material-icons.monochrome_photos:before,
  2215. .mi-monochrome_photos:before {
  2216. content: '\e403';
  2217. }
  2218. .material-icons.mood:before,
  2219. .mi-mood:before {
  2220. content: '\e7f2';
  2221. }
  2222. .material-icons.mood_bad:before,
  2223. .mi-mood_bad:before {
  2224. content: '\e7f3';
  2225. }
  2226. .material-icons.more:before,
  2227. .mi-more:before {
  2228. content: '\e619';
  2229. }
  2230. .material-icons.more_horiz:before,
  2231. .mi-more_horiz:before {
  2232. content: '\e5d3';
  2233. }
  2234. .material-icons.more_vert:before,
  2235. .mi-more_vert:before {
  2236. content: '\e5d4';
  2237. }
  2238. .material-icons.motorcycle:before,
  2239. .mi-motorcycle:before {
  2240. content: '\e91b';
  2241. }
  2242. .material-icons.mouse:before,
  2243. .mi-mouse:before {
  2244. content: '\e323';
  2245. }
  2246. .material-icons.move_to_inbox:before,
  2247. .mi-move_to_inbox:before {
  2248. content: '\e168';
  2249. }
  2250. .material-icons.movie:before,
  2251. .mi-movie:before {
  2252. content: '\e02c';
  2253. }
  2254. .material-icons.movie_creation:before,
  2255. .mi-movie_creation:before {
  2256. content: '\e404';
  2257. }
  2258. .material-icons.movie_filter:before,
  2259. .mi-movie_filter:before {
  2260. content: '\e43a';
  2261. }
  2262. .material-icons.multiline_chart:before,
  2263. .mi-multiline_chart:before {
  2264. content: '\e6df';
  2265. }
  2266. .material-icons.music_note:before,
  2267. .mi-music_note:before {
  2268. content: '\e405';
  2269. }
  2270. .material-icons.music_video:before,
  2271. .mi-music_video:before {
  2272. content: '\e063';
  2273. }
  2274. .material-icons.my_location:before,
  2275. .mi-my_location:before {
  2276. content: '\e55c';
  2277. }
  2278. .material-icons.nature:before,
  2279. .mi-nature:before {
  2280. content: '\e406';
  2281. }
  2282. .material-icons.nature_people:before,
  2283. .mi-nature_people:before {
  2284. content: '\e407';
  2285. }
  2286. .material-icons.navigate_before:before,
  2287. .mi-navigate_before:before {
  2288. content: '\e408';
  2289. }
  2290. .material-icons.navigate_next:before,
  2291. .mi-navigate_next:before {
  2292. content: '\e409';
  2293. }
  2294. .material-icons.navigation:before,
  2295. .mi-navigation:before {
  2296. content: '\e55d';
  2297. }
  2298. .material-icons.near_me:before,
  2299. .mi-near_me:before {
  2300. content: '\e569';
  2301. }
  2302. .material-icons.network_cell:before,
  2303. .mi-network_cell:before {
  2304. content: '\e1b9';
  2305. }
  2306. .material-icons.network_check:before,
  2307. .mi-network_check:before {
  2308. content: '\e640';
  2309. }
  2310. .material-icons.network_locked:before,
  2311. .mi-network_locked:before {
  2312. content: '\e61a';
  2313. }
  2314. .material-icons.network_wifi:before,
  2315. .mi-network_wifi:before {
  2316. content: '\e1ba';
  2317. }
  2318. .material-icons.new_releases:before,
  2319. .mi-new_releases:before {
  2320. content: '\e031';
  2321. }
  2322. .material-icons.next_week:before,
  2323. .mi-next_week:before {
  2324. content: '\e16a';
  2325. }
  2326. .material-icons.nfc:before,
  2327. .mi-nfc:before {
  2328. content: '\e1bb';
  2329. }
  2330. .material-icons.no_encryption:before,
  2331. .mi-no_encryption:before {
  2332. content: '\e641';
  2333. }
  2334. .material-icons.no_sim:before,
  2335. .mi-no_sim:before {
  2336. content: '\e0cc';
  2337. }
  2338. .material-icons.not_interested:before,
  2339. .mi-not_interested:before {
  2340. content: '\e033';
  2341. }
  2342. .material-icons.note:before,
  2343. .mi-note:before {
  2344. content: '\e06f';
  2345. }
  2346. .material-icons.note_add:before,
  2347. .mi-note_add:before {
  2348. content: '\e89c';
  2349. }
  2350. .material-icons.notifications:before,
  2351. .mi-notifications:before {
  2352. content: '\e7f4';
  2353. }
  2354. .material-icons.notifications_active:before,
  2355. .mi-notifications_active:before {
  2356. content: '\e7f7';
  2357. }
  2358. .material-icons.notifications_none:before,
  2359. .mi-notifications_none:before {
  2360. content: '\e7f5';
  2361. }
  2362. .material-icons.notifications_off:before,
  2363. .mi-notifications_off:before {
  2364. content: '\e7f6';
  2365. }
  2366. .material-icons.notifications_paused:before,
  2367. .mi-notifications_paused:before {
  2368. content: '\e7f8';
  2369. }
  2370. .material-icons.offline_pin:before,
  2371. .mi-offline_pin:before {
  2372. content: '\e90a';
  2373. }
  2374. .material-icons.ondemand_video:before,
  2375. .mi-ondemand_video:before {
  2376. content: '\e63a';
  2377. }
  2378. .material-icons.opacity:before,
  2379. .mi-opacity:before {
  2380. content: '\e91c';
  2381. }
  2382. .material-icons.open_in_browser:before,
  2383. .mi-open_in_browser:before {
  2384. content: '\e89d';
  2385. }
  2386. .material-icons.open_in_new:before,
  2387. .mi-open_in_new:before {
  2388. content: '\e89e';
  2389. }
  2390. .material-icons.open_with:before,
  2391. .mi-open_with:before {
  2392. content: '\e89f';
  2393. }
  2394. .material-icons.pages:before,
  2395. .mi-pages:before {
  2396. content: '\e7f9';
  2397. }
  2398. .material-icons.pageview:before,
  2399. .mi-pageview:before {
  2400. content: '\e8a0';
  2401. }
  2402. .material-icons.palette:before,
  2403. .mi-palette:before {
  2404. content: '\e40a';
  2405. }
  2406. .material-icons.pan_tool:before,
  2407. .mi-pan_tool:before {
  2408. content: '\e925';
  2409. }
  2410. .material-icons.panorama:before,
  2411. .mi-panorama:before {
  2412. content: '\e40b';
  2413. }
  2414. .material-icons.panorama_fish_eye:before,
  2415. .mi-panorama_fish_eye:before {
  2416. content: '\e40c';
  2417. }
  2418. .material-icons.panorama_horizontal:before,
  2419. .mi-panorama_horizontal:before {
  2420. content: '\e40d';
  2421. }
  2422. .material-icons.panorama_vertical:before,
  2423. .mi-panorama_vertical:before {
  2424. content: '\e40e';
  2425. }
  2426. .material-icons.panorama_wide_angle:before,
  2427. .mi-panorama_wide_angle:before {
  2428. content: '\e40f';
  2429. }
  2430. .material-icons.party_mode:before,
  2431. .mi-party_mode:before {
  2432. content: '\e7fa';
  2433. }
  2434. .material-icons.pause:before,
  2435. .mi-pause:before {
  2436. content: '\e034';
  2437. }
  2438. .material-icons.pause_circle_filled:before,
  2439. .mi-pause_circle_filled:before {
  2440. content: '\e035';
  2441. }
  2442. .material-icons.pause_circle_outline:before,
  2443. .mi-pause_circle_outline:before {
  2444. content: '\e036';
  2445. }
  2446. .material-icons.payment:before,
  2447. .mi-payment:before {
  2448. content: '\e8a1';
  2449. }
  2450. .material-icons.people:before,
  2451. .mi-people:before {
  2452. content: '\e7fb';
  2453. }
  2454. .material-icons.people_outline:before,
  2455. .mi-people_outline:before {
  2456. content: '\e7fc';
  2457. }
  2458. .material-icons.perm_camera_mic:before,
  2459. .mi-perm_camera_mic:before {
  2460. content: '\e8a2';
  2461. }
  2462. .material-icons.perm_contact_calendar:before,
  2463. .mi-perm_contact_calendar:before {
  2464. content: '\e8a3';
  2465. }
  2466. .material-icons.perm_data_setting:before,
  2467. .mi-perm_data_setting:before {
  2468. content: '\e8a4';
  2469. }
  2470. .material-icons.perm_device_information:before,
  2471. .mi-perm_device_information:before {
  2472. content: '\e8a5';
  2473. }
  2474. .material-icons.perm_identity:before,
  2475. .mi-perm_identity:before {
  2476. content: '\e8a6';
  2477. }
  2478. .material-icons.perm_media:before,
  2479. .mi-perm_media:before {
  2480. content: '\e8a7';
  2481. }
  2482. .material-icons.perm_phone_msg:before,
  2483. .mi-perm_phone_msg:before {
  2484. content: '\e8a8';
  2485. }
  2486. .material-icons.perm_scan_wifi:before,
  2487. .mi-perm_scan_wifi:before {
  2488. content: '\e8a9';
  2489. }
  2490. .material-icons.person:before,
  2491. .mi-person:before {
  2492. content: '\e7fd';
  2493. }
  2494. .material-icons.person_add:before,
  2495. .mi-person_add:before {
  2496. content: '\e7fe';
  2497. }
  2498. .material-icons.person_outline:before,
  2499. .mi-person_outline:before {
  2500. content: '\e7ff';
  2501. }
  2502. .material-icons.person_pin:before,
  2503. .mi-person_pin:before {
  2504. content: '\e55a';
  2505. }
  2506. .material-icons.person_pin_circle:before,
  2507. .mi-person_pin_circle:before {
  2508. content: '\e56a';
  2509. }
  2510. .material-icons.personal_video:before,
  2511. .mi-personal_video:before {
  2512. content: '\e63b';
  2513. }
  2514. .material-icons.pets:before,
  2515. .mi-pets:before {
  2516. content: '\e91d';
  2517. }
  2518. .material-icons.phone:before,
  2519. .mi-phone:before {
  2520. content: '\e0cd';
  2521. }
  2522. .material-icons.phone_android:before,
  2523. .mi-phone_android:before {
  2524. content: '\e324';
  2525. }
  2526. .material-icons.phone_bluetooth_speaker:before,
  2527. .mi-phone_bluetooth_speaker:before {
  2528. content: '\e61b';
  2529. }
  2530. .material-icons.phone_forwarded:before,
  2531. .mi-phone_forwarded:before {
  2532. content: '\e61c';
  2533. }
  2534. .material-icons.phone_in_talk:before,
  2535. .mi-phone_in_talk:before {
  2536. content: '\e61d';
  2537. }
  2538. .material-icons.phone_iphone:before,
  2539. .mi-phone_iphone:before {
  2540. content: '\e325';
  2541. }
  2542. .material-icons.phone_locked:before,
  2543. .mi-phone_locked:before {
  2544. content: '\e61e';
  2545. }
  2546. .material-icons.phone_missed:before,
  2547. .mi-phone_missed:before {
  2548. content: '\e61f';
  2549. }
  2550. .material-icons.phone_paused:before,
  2551. .mi-phone_paused:before {
  2552. content: '\e620';
  2553. }
  2554. .material-icons.phonelink:before,
  2555. .mi-phonelink:before {
  2556. content: '\e326';
  2557. }
  2558. .material-icons.phonelink_erase:before,
  2559. .mi-phonelink_erase:before {
  2560. content: '\e0db';
  2561. }
  2562. .material-icons.phonelink_lock:before,
  2563. .mi-phonelink_lock:before {
  2564. content: '\e0dc';
  2565. }
  2566. .material-icons.phonelink_off:before,
  2567. .mi-phonelink_off:before {
  2568. content: '\e327';
  2569. }
  2570. .material-icons.phonelink_ring:before,
  2571. .mi-phonelink_ring:before {
  2572. content: '\e0dd';
  2573. }
  2574. .material-icons.phonelink_setup:before,
  2575. .mi-phonelink_setup:before {
  2576. content: '\e0de';
  2577. }
  2578. .material-icons.photo:before,
  2579. .mi-photo:before {
  2580. content: '\e410';
  2581. }
  2582. .material-icons.photo_album:before,
  2583. .mi-photo_album:before {
  2584. content: '\e411';
  2585. }
  2586. .material-icons.photo_camera:before,
  2587. .mi-photo_camera:before {
  2588. content: '\e412';
  2589. }
  2590. .material-icons.photo_filter:before,
  2591. .mi-photo_filter:before {
  2592. content: '\e43b';
  2593. }
  2594. .material-icons.photo_library:before,
  2595. .mi-photo_library:before {
  2596. content: '\e413';
  2597. }
  2598. .material-icons.photo_size_select_actual:before,
  2599. .mi-photo_size_select_actual:before {
  2600. content: '\e432';
  2601. }
  2602. .material-icons.photo_size_select_large:before,
  2603. .mi-photo_size_select_large:before {
  2604. content: '\e433';
  2605. }
  2606. .material-icons.photo_size_select_small:before,
  2607. .mi-photo_size_select_small:before {
  2608. content: '\e434';
  2609. }
  2610. .material-icons.picture_as_pdf:before,
  2611. .mi-picture_as_pdf:before {
  2612. content: '\e415';
  2613. }
  2614. .material-icons.picture_in_picture:before,
  2615. .mi-picture_in_picture:before {
  2616. content: '\e8aa';
  2617. }
  2618. .material-icons.picture_in_picture_alt:before,
  2619. .mi-picture_in_picture_alt:before {
  2620. content: '\e911';
  2621. }
  2622. .material-icons.pie_chart:before,
  2623. .mi-pie_chart:before {
  2624. content: '\e6c4';
  2625. }
  2626. .material-icons.pie_chart_outlined:before,
  2627. .mi-pie_chart_outlined:before {
  2628. content: '\e6c5';
  2629. }
  2630. .material-icons.pin_drop:before,
  2631. .mi-pin_drop:before {
  2632. content: '\e55e';
  2633. }
  2634. .material-icons.place:before,
  2635. .mi-place:before {
  2636. content: '\e55f';
  2637. }
  2638. .material-icons.play_arrow:before,
  2639. .mi-play_arrow:before {
  2640. content: '\e037';
  2641. }
  2642. .material-icons.play_circle_filled:before,
  2643. .mi-play_circle_filled:before {
  2644. content: '\e038';
  2645. }
  2646. .material-icons.play_circle_outline:before,
  2647. .mi-play_circle_outline:before {
  2648. content: '\e039';
  2649. }
  2650. .material-icons.play_for_work:before,
  2651. .mi-play_for_work:before {
  2652. content: '\e906';
  2653. }
  2654. .material-icons.playlist_add:before,
  2655. .mi-playlist_add:before {
  2656. content: '\e03b';
  2657. }
  2658. .material-icons.playlist_add_check:before,
  2659. .mi-playlist_add_check:before {
  2660. content: '\e065';
  2661. }
  2662. .material-icons.playlist_play:before,
  2663. .mi-playlist_play:before {
  2664. content: '\e05f';
  2665. }
  2666. .material-icons.plus_one:before,
  2667. .mi-plus_one:before {
  2668. content: '\e800';
  2669. }
  2670. .material-icons.poll:before,
  2671. .mi-poll:before {
  2672. content: '\e801';
  2673. }
  2674. .material-icons.polymer:before,
  2675. .mi-polymer:before {
  2676. content: '\e8ab';
  2677. }
  2678. .material-icons.pool:before,
  2679. .mi-pool:before {
  2680. content: '\eb48';
  2681. }
  2682. .material-icons.portable_wifi_off:before,
  2683. .mi-portable_wifi_off:before {
  2684. content: '\e0ce';
  2685. }
  2686. .material-icons.portrait:before,
  2687. .mi-portrait:before {
  2688. content: '\e416';
  2689. }
  2690. .material-icons.power:before,
  2691. .mi-power:before {
  2692. content: '\e63c';
  2693. }
  2694. .material-icons.power_input:before,
  2695. .mi-power_input:before {
  2696. content: '\e336';
  2697. }
  2698. .material-icons.power_settings_new:before,
  2699. .mi-power_settings_new:before {
  2700. content: '\e8ac';
  2701. }
  2702. .material-icons.pregnant_woman:before,
  2703. .mi-pregnant_woman:before {
  2704. content: '\e91e';
  2705. }
  2706. .material-icons.present_to_all:before,
  2707. .mi-present_to_all:before {
  2708. content: '\e0df';
  2709. }
  2710. .material-icons.print:before,
  2711. .mi-print:before {
  2712. content: '\e8ad';
  2713. }
  2714. .material-icons.priority_high:before,
  2715. .mi-priority_high:before {
  2716. content: '\e645';
  2717. }
  2718. .material-icons.public:before,
  2719. .mi-public:before {
  2720. content: '\e80b';
  2721. }
  2722. .material-icons.publish:before,
  2723. .mi-publish:before {
  2724. content: '\e255';
  2725. }
  2726. .material-icons.query_builder:before,
  2727. .mi-query_builder:before {
  2728. content: '\e8ae';
  2729. }
  2730. .material-icons.question_answer:before,
  2731. .mi-question_answer:before {
  2732. content: '\e8af';
  2733. }
  2734. .material-icons.queue:before,
  2735. .mi-queue:before {
  2736. content: '\e03c';
  2737. }
  2738. .material-icons.queue_music:before,
  2739. .mi-queue_music:before {
  2740. content: '\e03d';
  2741. }
  2742. .material-icons.queue_play_next:before,
  2743. .mi-queue_play_next:before {
  2744. content: '\e066';
  2745. }
  2746. .material-icons.radio:before,
  2747. .mi-radio:before {
  2748. content: '\e03e';
  2749. }
  2750. .material-icons.radio_button_checked:before,
  2751. .mi-radio_button_checked:before {
  2752. content: '\e837';
  2753. }
  2754. .material-icons.radio_button_unchecked:before,
  2755. .mi-radio_button_unchecked:before {
  2756. content: '\e836';
  2757. }
  2758. .material-icons.rate_review:before,
  2759. .mi-rate_review:before {
  2760. content: '\e560';
  2761. }
  2762. .material-icons.receipt:before,
  2763. .mi-receipt:before {
  2764. content: '\e8b0';
  2765. }
  2766. .material-icons.recent_actors:before,
  2767. .mi-recent_actors:before {
  2768. content: '\e03f';
  2769. }
  2770. .material-icons.record_voice_over:before,
  2771. .mi-record_voice_over:before {
  2772. content: '\e91f';
  2773. }
  2774. .material-icons.redeem:before,
  2775. .mi-redeem:before {
  2776. content: '\e8b1';
  2777. }
  2778. .material-icons.redo:before,
  2779. .mi-redo:before {
  2780. content: '\e15a';
  2781. }
  2782. .material-icons.refresh:before,
  2783. .mi-refresh:before {
  2784. content: '\e5d5';
  2785. }
  2786. .material-icons.remove:before,
  2787. .mi-remove:before {
  2788. content: '\e15b';
  2789. }
  2790. .material-icons.remove_circle:before,
  2791. .mi-remove_circle:before {
  2792. content: '\e15c';
  2793. }
  2794. .material-icons.remove_circle_outline:before,
  2795. .mi-remove_circle_outline:before {
  2796. content: '\e15d';
  2797. }
  2798. .material-icons.remove_from_queue:before,
  2799. .mi-remove_from_queue:before {
  2800. content: '\e067';
  2801. }
  2802. .material-icons.remove_red_eye:before,
  2803. .mi-remove_red_eye:before {
  2804. content: '\e417';
  2805. }
  2806. .material-icons.remove_shopping_cart:before,
  2807. .mi-remove_shopping_cart:before {
  2808. content: '\e928';
  2809. }
  2810. .material-icons.reorder:before,
  2811. .mi-reorder:before {
  2812. content: '\e8fe';
  2813. }
  2814. .material-icons.repeat:before,
  2815. .mi-repeat:before {
  2816. content: '\e040';
  2817. }
  2818. .material-icons.repeat_one:before,
  2819. .mi-repeat_one:before {
  2820. content: '\e041';
  2821. }
  2822. .material-icons.replay:before,
  2823. .mi-replay:before {
  2824. content: '\e042';
  2825. }
  2826. .material-icons.replay_10:before,
  2827. .mi-replay_10:before {
  2828. content: '\e059';
  2829. }
  2830. .material-icons.replay_30:before,
  2831. .mi-replay_30:before {
  2832. content: '\e05a';
  2833. }
  2834. .material-icons.replay_5:before,
  2835. .mi-replay_5:before {
  2836. content: '\e05b';
  2837. }
  2838. .material-icons.reply:before,
  2839. .mi-reply:before {
  2840. content: '\e15e';
  2841. }
  2842. .material-icons.reply_all:before,
  2843. .mi-reply_all:before {
  2844. content: '\e15f';
  2845. }
  2846. .material-icons.report:before,
  2847. .mi-report:before {
  2848. content: '\e160';
  2849. }
  2850. .material-icons.report_problem:before,
  2851. .mi-report_problem:before {
  2852. content: '\e8b2';
  2853. }
  2854. .material-icons.restaurant:before,
  2855. .mi-restaurant:before {
  2856. content: '\e56c';
  2857. }
  2858. .material-icons.restaurant_menu:before,
  2859. .mi-restaurant_menu:before {
  2860. content: '\e561';
  2861. }
  2862. .material-icons.restore:before,
  2863. .mi-restore:before {
  2864. content: '\e8b3';
  2865. }
  2866. .material-icons.restore_page:before,
  2867. .mi-restore_page:before {
  2868. content: '\e929';
  2869. }
  2870. .material-icons.ring_volume:before,
  2871. .mi-ring_volume:before {
  2872. content: '\e0d1';
  2873. }
  2874. .material-icons.room:before,
  2875. .mi-room:before {
  2876. content: '\e8b4';
  2877. }
  2878. .material-icons.room_service:before,
  2879. .mi-room_service:before {
  2880. content: '\eb49';
  2881. }
  2882. .material-icons.rotate_90_degrees_ccw:before,
  2883. .mi-rotate_90_degrees_ccw:before {
  2884. content: '\e418';
  2885. }
  2886. .material-icons.rotate_left:before,
  2887. .mi-rotate_left:before {
  2888. content: '\e419';
  2889. }
  2890. .material-icons.rotate_right:before,
  2891. .mi-rotate_right:before {
  2892. content: '\e41a';
  2893. }
  2894. .material-icons.rounded_corner:before,
  2895. .mi-rounded_corner:before {
  2896. content: '\e920';
  2897. }
  2898. .material-icons.router:before,
  2899. .mi-router:before {
  2900. content: '\e328';
  2901. }
  2902. .material-icons.rowing:before,
  2903. .mi-rowing:before {
  2904. content: '\e921';
  2905. }
  2906. .material-icons.rss_feed:before,
  2907. .mi-rss_feed:before {
  2908. content: '\e0e5';
  2909. }
  2910. .material-icons.rv_hookup:before,
  2911. .mi-rv_hookup:before {
  2912. content: '\e642';
  2913. }
  2914. .material-icons.satellite:before,
  2915. .mi-satellite:before {
  2916. content: '\e562';
  2917. }
  2918. .material-icons.save:before,
  2919. .mi-save:before {
  2920. content: '\e161';
  2921. }
  2922. .material-icons.scanner:before,
  2923. .mi-scanner:before {
  2924. content: '\e329';
  2925. }
  2926. .material-icons.schedule:before,
  2927. .mi-schedule:before {
  2928. content: '\e8b5';
  2929. }
  2930. .material-icons.school:before,
  2931. .mi-school:before {
  2932. content: '\e80c';
  2933. }
  2934. .material-icons.screen_lock_landscape:before,
  2935. .mi-screen_lock_landscape:before {
  2936. content: '\e1be';
  2937. }
  2938. .material-icons.screen_lock_portrait:before,
  2939. .mi-screen_lock_portrait:before {
  2940. content: '\e1bf';
  2941. }
  2942. .material-icons.screen_lock_rotation:before,
  2943. .mi-screen_lock_rotation:before {
  2944. content: '\e1c0';
  2945. }
  2946. .material-icons.screen_rotation:before,
  2947. .mi-screen_rotation:before {
  2948. content: '\e1c1';
  2949. }
  2950. .material-icons.screen_share:before,
  2951. .mi-screen_share:before {
  2952. content: '\e0e2';
  2953. }
  2954. .material-icons.sd_card:before,
  2955. .mi-sd_card:before {
  2956. content: '\e623';
  2957. }
  2958. .material-icons.sd_storage:before,
  2959. .mi-sd_storage:before {
  2960. content: '\e1c2';
  2961. }
  2962. .material-icons.search:before,
  2963. .mi-search:before {
  2964. content: '\e8b6';
  2965. }
  2966. .material-icons.security:before,
  2967. .mi-security:before {
  2968. content: '\e32a';
  2969. }
  2970. .material-icons.select_all:before,
  2971. .mi-select_all:before {
  2972. content: '\e162';
  2973. }
  2974. .material-icons.send:before,
  2975. .mi-send:before {
  2976. content: '\e163';
  2977. }
  2978. .material-icons.sentiment_dissatisfied:before,
  2979. .mi-sentiment_dissatisfied:before {
  2980. content: '\e811';
  2981. }
  2982. .material-icons.sentiment_neutral:before,
  2983. .mi-sentiment_neutral:before {
  2984. content: '\e812';
  2985. }
  2986. .material-icons.sentiment_satisfied:before,
  2987. .mi-sentiment_satisfied:before {
  2988. content: '\e813';
  2989. }
  2990. .material-icons.sentiment_very_dissatisfied:before,
  2991. .mi-sentiment_very_dissatisfied:before {
  2992. content: '\e814';
  2993. }
  2994. .material-icons.sentiment_very_satisfied:before,
  2995. .mi-sentiment_very_satisfied:before {
  2996. content: '\e815';
  2997. }
  2998. .material-icons.settings:before,
  2999. .mi-settings:before {
  3000. content: '\e8b8';
  3001. }
  3002. .material-icons.settings_applications:before,
  3003. .mi-settings_applications:before {
  3004. content: '\e8b9';
  3005. }
  3006. .material-icons.settings_backup_restore:before,
  3007. .mi-settings_backup_restore:before {
  3008. content: '\e8ba';
  3009. }
  3010. .material-icons.settings_bluetooth:before,
  3011. .mi-settings_bluetooth:before {
  3012. content: '\e8bb';
  3013. }
  3014. .material-icons.settings_brightness:before,
  3015. .mi-settings_brightness:before {
  3016. content: '\e8bd';
  3017. }
  3018. .material-icons.settings_cell:before,
  3019. .mi-settings_cell:before {
  3020. content: '\e8bc';
  3021. }
  3022. .material-icons.settings_ethernet:before,
  3023. .mi-settings_ethernet:before {
  3024. content: '\e8be';
  3025. }
  3026. .material-icons.settings_input_antenna:before,
  3027. .mi-settings_input_antenna:before {
  3028. content: '\e8bf';
  3029. }
  3030. .material-icons.settings_input_component:before,
  3031. .mi-settings_input_component:before {
  3032. content: '\e8c0';
  3033. }
  3034. .material-icons.settings_input_composite:before,
  3035. .mi-settings_input_composite:before {
  3036. content: '\e8c1';
  3037. }
  3038. .material-icons.settings_input_hdmi:before,
  3039. .mi-settings_input_hdmi:before {
  3040. content: '\e8c2';
  3041. }
  3042. .material-icons.settings_input_svideo:before,
  3043. .mi-settings_input_svideo:before {
  3044. content: '\e8c3';
  3045. }
  3046. .material-icons.settings_overscan:before,
  3047. .mi-settings_overscan:before {
  3048. content: '\e8c4';
  3049. }
  3050. .material-icons.settings_phone:before,
  3051. .mi-settings_phone:before {
  3052. content: '\e8c5';
  3053. }
  3054. .material-icons.settings_power:before,
  3055. .mi-settings_power:before {
  3056. content: '\e8c6';
  3057. }
  3058. .material-icons.settings_remote:before,
  3059. .mi-settings_remote:before {
  3060. content: '\e8c7';
  3061. }
  3062. .material-icons.settings_system_daydream:before,
  3063. .mi-settings_system_daydream:before {
  3064. content: '\e1c3';
  3065. }
  3066. .material-icons.settings_voice:before,
  3067. .mi-settings_voice:before {
  3068. content: '\e8c8';
  3069. }
  3070. .material-icons.share:before,
  3071. .mi-share:before {
  3072. content: '\e80d';
  3073. }
  3074. .material-icons.shop:before,
  3075. .mi-shop:before {
  3076. content: '\e8c9';
  3077. }
  3078. .material-icons.shop_two:before,
  3079. .mi-shop_two:before {
  3080. content: '\e8ca';
  3081. }
  3082. .material-icons.shopping_basket:before,
  3083. .mi-shopping_basket:before {
  3084. content: '\e8cb';
  3085. }
  3086. .material-icons.shopping_cart:before,
  3087. .mi-shopping_cart:before {
  3088. content: '\e8cc';
  3089. }
  3090. .material-icons.short_text:before,
  3091. .mi-short_text:before {
  3092. content: '\e261';
  3093. }
  3094. .material-icons.show_chart:before,
  3095. .mi-show_chart:before {
  3096. content: '\e6e1';
  3097. }
  3098. .material-icons.shuffle:before,
  3099. .mi-shuffle:before {
  3100. content: '\e043';
  3101. }
  3102. .material-icons.signal_cellular_4_bar:before,
  3103. .mi-signal_cellular_4_bar:before {
  3104. content: '\e1c8';
  3105. }
  3106. .material-icons.signal_cellular_connected_no_internet_4_bar:before,
  3107. .mi-signal_cellular_connected_no_internet_4_bar:before {
  3108. content: '\e1cd';
  3109. }
  3110. .material-icons.signal_cellular_no_sim:before,
  3111. .mi-signal_cellular_no_sim:before {
  3112. content: '\e1ce';
  3113. }
  3114. .material-icons.signal_cellular_null:before,
  3115. .mi-signal_cellular_null:before {
  3116. content: '\e1cf';
  3117. }
  3118. .material-icons.signal_cellular_off:before,
  3119. .mi-signal_cellular_off:before {
  3120. content: '\e1d0';
  3121. }
  3122. .material-icons.signal_wifi_4_bar:before,
  3123. .mi-signal_wifi_4_bar:before {
  3124. content: '\e1d8';
  3125. }
  3126. .material-icons.signal_wifi_4_bar_lock:before,
  3127. .mi-signal_wifi_4_bar_lock:before {
  3128. content: '\e1d9';
  3129. }
  3130. .material-icons.signal_wifi_off:before,
  3131. .mi-signal_wifi_off:before {
  3132. content: '\e1da';
  3133. }
  3134. .material-icons.sim_card:before,
  3135. .mi-sim_card:before {
  3136. content: '\e32b';
  3137. }
  3138. .material-icons.sim_card_alert:before,
  3139. .mi-sim_card_alert:before {
  3140. content: '\e624';
  3141. }
  3142. .material-icons.skip_next:before,
  3143. .mi-skip_next:before {
  3144. content: '\e044';
  3145. }
  3146. .material-icons.skip_previous:before,
  3147. .mi-skip_previous:before {
  3148. content: '\e045';
  3149. }
  3150. .material-icons.slideshow:before,
  3151. .mi-slideshow:before {
  3152. content: '\e41b';
  3153. }
  3154. .material-icons.slow_motion_video:before,
  3155. .mi-slow_motion_video:before {
  3156. content: '\e068';
  3157. }
  3158. .material-icons.smartphone:before,
  3159. .mi-smartphone:before {
  3160. content: '\e32c';
  3161. }
  3162. .material-icons.smoke_free:before,
  3163. .mi-smoke_free:before {
  3164. content: '\eb4a';
  3165. }
  3166. .material-icons.smoking_rooms:before,
  3167. .mi-smoking_rooms:before {
  3168. content: '\eb4b';
  3169. }
  3170. .material-icons.sms:before,
  3171. .mi-sms:before {
  3172. content: '\e625';
  3173. }
  3174. .material-icons.sms_failed:before,
  3175. .mi-sms_failed:before {
  3176. content: '\e626';
  3177. }
  3178. .material-icons.snooze:before,
  3179. .mi-snooze:before {
  3180. content: '\e046';
  3181. }
  3182. .material-icons.sort:before,
  3183. .mi-sort:before {
  3184. content: '\e164';
  3185. }
  3186. .material-icons.sort_by_alpha:before,
  3187. .mi-sort_by_alpha:before {
  3188. content: '\e053';
  3189. }
  3190. .material-icons.spa:before,
  3191. .mi-spa:before {
  3192. content: '\eb4c';
  3193. }
  3194. .material-icons.space_bar:before,
  3195. .mi-space_bar:before {
  3196. content: '\e256';
  3197. }
  3198. .material-icons.speaker:before,
  3199. .mi-speaker:before {
  3200. content: '\e32d';
  3201. }
  3202. .material-icons.speaker_group:before,
  3203. .mi-speaker_group:before {
  3204. content: '\e32e';
  3205. }
  3206. .material-icons.speaker_notes:before,
  3207. .mi-speaker_notes:before {
  3208. content: '\e8cd';
  3209. }
  3210. .material-icons.speaker_notes_off:before,
  3211. .mi-speaker_notes_off:before {
  3212. content: '\e92a';
  3213. }
  3214. .material-icons.speaker_phone:before,
  3215. .mi-speaker_phone:before {
  3216. content: '\e0d2';
  3217. }
  3218. .material-icons.spellcheck:before,
  3219. .mi-spellcheck:before {
  3220. content: '\e8ce';
  3221. }
  3222. .material-icons.star:before,
  3223. .mi-star:before {
  3224. content: '\e838';
  3225. }
  3226. .material-icons.star_border:before,
  3227. .mi-star_border:before {
  3228. content: '\e83a';
  3229. }
  3230. .material-icons.star_half:before,
  3231. .mi-star_half:before {
  3232. content: '\e839';
  3233. }
  3234. .material-icons.stars:before,
  3235. .mi-stars:before {
  3236. content: '\e8d0';
  3237. }
  3238. .material-icons.stay_current_landscape:before,
  3239. .mi-stay_current_landscape:before {
  3240. content: '\e0d3';
  3241. }
  3242. .material-icons.stay_current_portrait:before,
  3243. .mi-stay_current_portrait:before {
  3244. content: '\e0d4';
  3245. }
  3246. .material-icons.stay_primary_landscape:before,
  3247. .mi-stay_primary_landscape:before {
  3248. content: '\e0d5';
  3249. }
  3250. .material-icons.stay_primary_portrait:before,
  3251. .mi-stay_primary_portrait:before {
  3252. content: '\e0d6';
  3253. }
  3254. .material-icons.stop:before,
  3255. .mi-stop:before {
  3256. content: '\e047';
  3257. }
  3258. .material-icons.stop_screen_share:before,
  3259. .mi-stop_screen_share:before {
  3260. content: '\e0e3';
  3261. }
  3262. .material-icons.storage:before,
  3263. .mi-storage:before {
  3264. content: '\e1db';
  3265. }
  3266. .material-icons.store:before,
  3267. .mi-store:before {
  3268. content: '\e8d1';
  3269. }
  3270. .material-icons.store_mall_directory:before,
  3271. .mi-store_mall_directory:before {
  3272. content: '\e563';
  3273. }
  3274. .material-icons.straighten:before,
  3275. .mi-straighten:before {
  3276. content: '\e41c';
  3277. }
  3278. .material-icons.streetview:before,
  3279. .mi-streetview:before {
  3280. content: '\e56e';
  3281. }
  3282. .material-icons.strikethrough_s:before,
  3283. .mi-strikethrough_s:before {
  3284. content: '\e257';
  3285. }
  3286. .material-icons.style:before,
  3287. .mi-style:before {
  3288. content: '\e41d';
  3289. }
  3290. .material-icons.subdirectory_arrow_left:before,
  3291. .mi-subdirectory_arrow_left:before {
  3292. content: '\e5d9';
  3293. }
  3294. .material-icons.subdirectory_arrow_right:before,
  3295. .mi-subdirectory_arrow_right:before {
  3296. content: '\e5da';
  3297. }
  3298. .material-icons.subject:before,
  3299. .mi-subject:before {
  3300. content: '\e8d2';
  3301. }
  3302. .material-icons.subscriptions:before,
  3303. .mi-subscriptions:before {
  3304. content: '\e064';
  3305. }
  3306. .material-icons.subtitles:before,
  3307. .mi-subtitles:before {
  3308. content: '\e048';
  3309. }
  3310. .material-icons.subway:before,
  3311. .mi-subway:before {
  3312. content: '\e56f';
  3313. }
  3314. .material-icons.supervisor_account:before,
  3315. .mi-supervisor_account:before {
  3316. content: '\e8d3';
  3317. }
  3318. .material-icons.surround_sound:before,
  3319. .mi-surround_sound:before {
  3320. content: '\e049';
  3321. }
  3322. .material-icons.swap_calls:before,
  3323. .mi-swap_calls:before {
  3324. content: '\e0d7';
  3325. }
  3326. .material-icons.swap_horiz:before,
  3327. .mi-swap_horiz:before {
  3328. content: '\e8d4';
  3329. }
  3330. .material-icons.swap_vert:before,
  3331. .mi-swap_vert:before {
  3332. content: '\e8d5';
  3333. }
  3334. .material-icons.swap_vertical_circle:before,
  3335. .mi-swap_vertical_circle:before {
  3336. content: '\e8d6';
  3337. }
  3338. .material-icons.switch_camera:before,
  3339. .mi-switch_camera:before {
  3340. content: '\e41e';
  3341. }
  3342. .material-icons.switch_video:before,
  3343. .mi-switch_video:before {
  3344. content: '\e41f';
  3345. }
  3346. .material-icons.sync:before,
  3347. .mi-sync:before {
  3348. content: '\e627';
  3349. }
  3350. .material-icons.sync_disabled:before,
  3351. .mi-sync_disabled:before {
  3352. content: '\e628';
  3353. }
  3354. .material-icons.sync_problem:before,
  3355. .mi-sync_problem:before {
  3356. content: '\e629';
  3357. }
  3358. .material-icons.system_update:before,
  3359. .mi-system_update:before {
  3360. content: '\e62a';
  3361. }
  3362. .material-icons.system_update_alt:before,
  3363. .mi-system_update_alt:before {
  3364. content: '\e8d7';
  3365. }
  3366. .material-icons.tab:before,
  3367. .mi-tab:before {
  3368. content: '\e8d8';
  3369. }
  3370. .material-icons.tab_unselected:before,
  3371. .mi-tab_unselected:before {
  3372. content: '\e8d9';
  3373. }
  3374. .material-icons.tablet:before,
  3375. .mi-tablet:before {
  3376. content: '\e32f';
  3377. }
  3378. .material-icons.tablet_android:before,
  3379. .mi-tablet_android:before {
  3380. content: '\e330';
  3381. }
  3382. .material-icons.tablet_mac:before,
  3383. .mi-tablet_mac:before {
  3384. content: '\e331';
  3385. }
  3386. .material-icons.tag_faces:before,
  3387. .mi-tag_faces:before {
  3388. content: '\e420';
  3389. }
  3390. .material-icons.tap_and_play:before,
  3391. .mi-tap_and_play:before {
  3392. content: '\e62b';
  3393. }
  3394. .material-icons.terrain:before,
  3395. .mi-terrain:before {
  3396. content: '\e564';
  3397. }
  3398. .material-icons.text_fields:before,
  3399. .mi-text_fields:before {
  3400. content: '\e262';
  3401. }
  3402. .material-icons.text_format:before,
  3403. .mi-text_format:before {
  3404. content: '\e165';
  3405. }
  3406. .material-icons.textsms:before,
  3407. .mi-textsms:before {
  3408. content: '\e0d8';
  3409. }
  3410. .material-icons.texture:before,
  3411. .mi-texture:before {
  3412. content: '\e421';
  3413. }
  3414. .material-icons.theaters:before,
  3415. .mi-theaters:before {
  3416. content: '\e8da';
  3417. }
  3418. .material-icons.thumb_down:before,
  3419. .mi-thumb_down:before {
  3420. content: '\e8db';
  3421. }
  3422. .material-icons.thumb_up:before,
  3423. .mi-thumb_up:before {
  3424. content: '\e8dc';
  3425. }
  3426. .material-icons.thumbs_up_down:before,
  3427. .mi-thumbs_up_down:before {
  3428. content: '\e8dd';
  3429. }
  3430. .material-icons.time_to_leave:before,
  3431. .mi-time_to_leave:before {
  3432. content: '\e62c';
  3433. }
  3434. .material-icons.timelapse:before,
  3435. .mi-timelapse:before {
  3436. content: '\e422';
  3437. }
  3438. .material-icons.timeline:before,
  3439. .mi-timeline:before {
  3440. content: '\e922';
  3441. }
  3442. .material-icons.timer:before,
  3443. .mi-timer:before {
  3444. content: '\e425';
  3445. }
  3446. .material-icons.timer_10:before,
  3447. .mi-timer_10:before {
  3448. content: '\e423';
  3449. }
  3450. .material-icons.timer_3:before,
  3451. .mi-timer_3:before {
  3452. content: '\e424';
  3453. }
  3454. .material-icons.timer_off:before,
  3455. .mi-timer_off:before {
  3456. content: '\e426';
  3457. }
  3458. .material-icons.title:before,
  3459. .mi-title:before {
  3460. content: '\e264';
  3461. }
  3462. .material-icons.toc:before,
  3463. .mi-toc:before {
  3464. content: '\e8de';
  3465. }
  3466. .material-icons.today:before,
  3467. .mi-today:before {
  3468. content: '\e8df';
  3469. }
  3470. .material-icons.toll:before,
  3471. .mi-toll:before {
  3472. content: '\e8e0';
  3473. }
  3474. .material-icons.tonality:before,
  3475. .mi-tonality:before {
  3476. content: '\e427';
  3477. }
  3478. .material-icons.touch_app:before,
  3479. .mi-touch_app:before {
  3480. content: '\e913';
  3481. }
  3482. .material-icons.toys:before,
  3483. .mi-toys:before {
  3484. content: '\e332';
  3485. }
  3486. .material-icons.track_changes:before,
  3487. .mi-track_changes:before {
  3488. content: '\e8e1';
  3489. }
  3490. .material-icons.traffic:before,
  3491. .mi-traffic:before {
  3492. content: '\e565';
  3493. }
  3494. .material-icons.train:before,
  3495. .mi-train:before {
  3496. content: '\e570';
  3497. }
  3498. .material-icons.tram:before,
  3499. .mi-tram:before {
  3500. content: '\e571';
  3501. }
  3502. .material-icons.transfer_within_a_station:before,
  3503. .mi-transfer_within_a_station:before {
  3504. content: '\e572';
  3505. }
  3506. .material-icons.transform:before,
  3507. .mi-transform:before {
  3508. content: '\e428';
  3509. }
  3510. .material-icons.translate:before,
  3511. .mi-translate:before {
  3512. content: '\e8e2';
  3513. }
  3514. .material-icons.trending_down:before,
  3515. .mi-trending_down:before {
  3516. content: '\e8e3';
  3517. }
  3518. .material-icons.trending_flat:before,
  3519. .mi-trending_flat:before {
  3520. content: '\e8e4';
  3521. }
  3522. .material-icons.trending_up:before,
  3523. .mi-trending_up:before {
  3524. content: '\e8e5';
  3525. }
  3526. .material-icons.tune:before,
  3527. .mi-tune:before {
  3528. content: '\e429';
  3529. }
  3530. .material-icons.turned_in:before,
  3531. .mi-turned_in:before {
  3532. content: '\e8e6';
  3533. }
  3534. .material-icons.turned_in_not:before,
  3535. .mi-turned_in_not:before {
  3536. content: '\e8e7';
  3537. }
  3538. .material-icons.tv:before,
  3539. .mi-tv:before {
  3540. content: '\e333';
  3541. }
  3542. .material-icons.unarchive:before,
  3543. .mi-unarchive:before {
  3544. content: '\e169';
  3545. }
  3546. .material-icons.undo:before,
  3547. .mi-undo:before {
  3548. content: '\e166';
  3549. }
  3550. .material-icons.unfold_less:before,
  3551. .mi-unfold_less:before {
  3552. content: '\e5d6';
  3553. }
  3554. .material-icons.unfold_more:before,
  3555. .mi-unfold_more:before {
  3556. content: '\e5d7';
  3557. }
  3558. .material-icons.update:before,
  3559. .mi-update:before {
  3560. content: '\e923';
  3561. }
  3562. .material-icons.usb:before,
  3563. .mi-usb:before {
  3564. content: '\e1e0';
  3565. }
  3566. .material-icons.verified_user:before,
  3567. .mi-verified_user:before {
  3568. content: '\e8e8';
  3569. }
  3570. .material-icons.vertical_align_bottom:before,
  3571. .mi-vertical_align_bottom:before {
  3572. content: '\e258';
  3573. }
  3574. .material-icons.vertical_align_center:before,
  3575. .mi-vertical_align_center:before {
  3576. content: '\e259';
  3577. }
  3578. .material-icons.vertical_align_top:before,
  3579. .mi-vertical_align_top:before {
  3580. content: '\e25a';
  3581. }
  3582. .material-icons.vibration:before,
  3583. .mi-vibration:before {
  3584. content: '\e62d';
  3585. }
  3586. .material-icons.video_call:before,
  3587. .mi-video_call:before {
  3588. content: '\e070';
  3589. }
  3590. .material-icons.video_label:before,
  3591. .mi-video_label:before {
  3592. content: '\e071';
  3593. }
  3594. .material-icons.video_library:before,
  3595. .mi-video_library:before {
  3596. content: '\e04a';
  3597. }
  3598. .material-icons.videocam:before,
  3599. .mi-videocam:before {
  3600. content: '\e04b';
  3601. }
  3602. .material-icons.videocam_off:before,
  3603. .mi-videocam_off:before {
  3604. content: '\e04c';
  3605. }
  3606. .material-icons.videogame_asset:before,
  3607. .mi-videogame_asset:before {
  3608. content: '\e338';
  3609. }
  3610. .material-icons.view_agenda:before,
  3611. .mi-view_agenda:before {
  3612. content: '\e8e9';
  3613. }
  3614. .material-icons.view_array:before,
  3615. .mi-view_array:before {
  3616. content: '\e8ea';
  3617. }
  3618. .material-icons.view_carousel:before,
  3619. .mi-view_carousel:before {
  3620. content: '\e8eb';
  3621. }
  3622. .material-icons.view_column:before,
  3623. .mi-view_column:before {
  3624. content: '\e8ec';
  3625. }
  3626. .material-icons.view_comfy:before,
  3627. .mi-view_comfy:before {
  3628. content: '\e42a';
  3629. }
  3630. .material-icons.view_compact:before,
  3631. .mi-view_compact:before {
  3632. content: '\e42b';
  3633. }
  3634. .material-icons.view_day:before,
  3635. .mi-view_day:before {
  3636. content: '\e8ed';
  3637. }
  3638. .material-icons.view_headline:before,
  3639. .mi-view_headline:before {
  3640. content: '\e8ee';
  3641. }
  3642. .material-icons.view_list:before,
  3643. .mi-view_list:before {
  3644. content: '\e8ef';
  3645. }
  3646. .material-icons.view_module:before,
  3647. .mi-view_module:before {
  3648. content: '\e8f0';
  3649. }
  3650. .material-icons.view_quilt:before,
  3651. .mi-view_quilt:before {
  3652. content: '\e8f1';
  3653. }
  3654. .material-icons.view_stream:before,
  3655. .mi-view_stream:before {
  3656. content: '\e8f2';
  3657. }
  3658. .material-icons.view_week:before,
  3659. .mi-view_week:before {
  3660. content: '\e8f3';
  3661. }
  3662. .material-icons.vignette:before,
  3663. .mi-vignette:before {
  3664. content: '\e435';
  3665. }
  3666. .material-icons.visibility:before,
  3667. .mi-visibility:before {
  3668. content: '\e8f4';
  3669. }
  3670. .material-icons.visibility_off:before,
  3671. .mi-visibility_off:before {
  3672. content: '\e8f5';
  3673. }
  3674. .material-icons.voice_chat:before,
  3675. .mi-voice_chat:before {
  3676. content: '\e62e';
  3677. }
  3678. .material-icons.voicemail:before,
  3679. .mi-voicemail:before {
  3680. content: '\e0d9';
  3681. }
  3682. .material-icons.volume_down:before,
  3683. .mi-volume_down:before {
  3684. content: '\e04d';
  3685. }
  3686. .material-icons.volume_mute:before,
  3687. .mi-volume_mute:before {
  3688. content: '\e04e';
  3689. }
  3690. .material-icons.volume_off:before,
  3691. .mi-volume_off:before {
  3692. content: '\e04f';
  3693. }
  3694. .material-icons.volume_up:before,
  3695. .mi-volume_up:before {
  3696. content: '\e050';
  3697. }
  3698. .material-icons.vpn_key:before,
  3699. .mi-vpn_key:before {
  3700. content: '\e0da';
  3701. }
  3702. .material-icons.vpn_lock:before,
  3703. .mi-vpn_lock:before {
  3704. content: '\e62f';
  3705. }
  3706. .material-icons.wallpaper:before,
  3707. .mi-wallpaper:before {
  3708. content: '\e1bc';
  3709. }
  3710. .material-icons.warning:before,
  3711. .mi-warning:before {
  3712. content: '\e002';
  3713. }
  3714. .material-icons.watch:before,
  3715. .mi-watch:before {
  3716. content: '\e334';
  3717. }
  3718. .material-icons.watch_later:before,
  3719. .mi-watch_later:before {
  3720. content: '\e924';
  3721. }
  3722. .material-icons.wb_auto:before,
  3723. .mi-wb_auto:before {
  3724. content: '\e42c';
  3725. }
  3726. .material-icons.wb_cloudy:before,
  3727. .mi-wb_cloudy:before {
  3728. content: '\e42d';
  3729. }
  3730. .material-icons.wb_incandescent:before,
  3731. .mi-wb_incandescent:before {
  3732. content: '\e42e';
  3733. }
  3734. .material-icons.wb_iridescent:before,
  3735. .mi-wb_iridescent:before {
  3736. content: '\e436';
  3737. }
  3738. .material-icons.wb_sunny:before,
  3739. .mi-wb_sunny:before {
  3740. content: '\e430';
  3741. }
  3742. .material-icons.wc:before,
  3743. .mi-wc:before {
  3744. content: '\e63d';
  3745. }
  3746. .material-icons.web:before,
  3747. .mi-web:before {
  3748. content: '\e051';
  3749. }
  3750. .material-icons.web_asset:before,
  3751. .mi-web_asset:before {
  3752. content: '\e069';
  3753. }
  3754. .material-icons.weekend:before,
  3755. .mi-weekend:before {
  3756. content: '\e16b';
  3757. }
  3758. .material-icons.whatshot:before,
  3759. .mi-whatshot:before {
  3760. content: '\e80e';
  3761. }
  3762. .material-icons.widgets:before,
  3763. .mi-widgets:before {
  3764. content: '\e1bd';
  3765. }
  3766. .material-icons.wifi:before,
  3767. .mi-wifi:before {
  3768. content: '\e63e';
  3769. }
  3770. .material-icons.wifi_lock:before,
  3771. .mi-wifi_lock:before {
  3772. content: '\e1e1';
  3773. }
  3774. .material-icons.wifi_tethering:before,
  3775. .mi-wifi_tethering:before {
  3776. content: '\e1e2';
  3777. }
  3778. .material-icons.work:before,
  3779. .mi-work:before {
  3780. content: '\e8f9';
  3781. }
  3782. .material-icons.wrap_text:before,
  3783. .mi-wrap_text:before {
  3784. content: '\e25b';
  3785. }
  3786. .material-icons.youtube_searched_for:before,
  3787. .mi-youtube_searched_for:before {
  3788. content: '\e8fa';
  3789. }
  3790. .material-icons.zoom_in:before,
  3791. .mi-zoom_in:before {
  3792. content: '\e8ff';
  3793. }
  3794. .material-icons.zoom_out:before,
  3795. .mi-zoom_out:before {
  3796. content: '\e900';
  3797. }
  3798. .material-icons.zoom_out_map:before,
  3799. .mi-zoom_out_map:before {
  3800. content: '\e56b';
  3801. }