fhemSVG.css 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747
  1. @font-face {
  2. font-family: 'fhemSVG';
  3. src:url('../fonts/fhemSVG.eot');
  4. src:url('../fonts/fhemSVG.eot') format('embedded-opentype'),
  5. url('../fonts/fhemSVG.woff') format('woff'),
  6. url('../fonts/fhemSVG.ttf') format('truetype'),
  7. url('../fonts/fhemSVG.svg') format('svg');
  8. font-weight: normal;
  9. font-style: normal;
  10. }
  11. [class^="fs-"], [class*=" fs-"] {
  12. font-family: 'fhemSVG';
  13. speak: none;
  14. font-size:110%;
  15. font-style: normal;
  16. font-weight: normal;
  17. font-variant: normal;
  18. text-transform: none;
  19. /* Better Font Rendering =========== */
  20. -webkit-font-smoothing: antialiased;
  21. -moz-osx-font-smoothing: grayscale;
  22. }
  23. .fs-access_keypad_1:before {
  24. content: "\e900";
  25. }
  26. .fs-access_keypad_2:before {
  27. content: "\e901";
  28. }
  29. .fs-alarm_system_password:before {
  30. content: "\e902";
  31. }
  32. .fs-alexa:before {
  33. content: "\e903";
  34. }
  35. .fs-alexa2:before {
  36. content: "\e904";
  37. }
  38. .fs-ampel_aus:before {
  39. content: "\e905";
  40. }
  41. .fs-ampel_gelb:before {
  42. content: "\e906";
  43. }
  44. .fs-ampel_gelb:after {
  45. content: "\e907";
  46. margin-left: -0.59375em;
  47. color: rgb(255, 255, 0);
  48. }
  49. .fs-ampel_gruen:before {
  50. content: "\e908";
  51. }
  52. .fs-ampel_gruen:after {
  53. content: "\e909";
  54. margin-left: -0.59375em;
  55. color: rgb(0, 255, 0);
  56. }
  57. .fs-ampel_rot:before {
  58. content: "\e90a";
  59. }
  60. .fs-ampel_rot:after {
  61. content: "\e90b";
  62. margin-left: -0.59375em;
  63. color: rgb(255, 0, 0);
  64. }
  65. .fs-aurora:before {
  66. content: "\e90c";
  67. }
  68. .fs-awning.off:before {
  69. content: "\e90d";
  70. }
  71. .fs-awning:before {
  72. content: "\e90e";
  73. }
  74. .fs-bag:before {
  75. content: "\e90f";
  76. }
  77. .fs-batterie:before {
  78. content: "\e910";
  79. }
  80. .fs-bluetooth:before {
  81. content: "\e911";
  82. }
  83. .fs-Botvac_VR200:before {
  84. content: "\e912";
  85. }
  86. .fs-building_carport_light:before {
  87. content: "\e913";
  88. }
  89. .fs-building_carport_socket:before {
  90. content: "\e914";
  91. }
  92. .fs-building_carport:before {
  93. content: "\e915";
  94. }
  95. .fs-building_outside:before {
  96. content: "\e916";
  97. }
  98. .fs-building_security:before {
  99. content: "\e917";
  100. }
  101. .fs-car:before {
  102. content: "\e918";
  103. }
  104. .fs-checkbox_checked:before {
  105. content: "\e919";
  106. }
  107. .fs-checkbox_unchecked:before {
  108. content: "\e91a";
  109. }
  110. .fs-christmas_tree:before {
  111. content: "\e91b";
  112. }
  113. .fs-clock:before {
  114. content: "\e91c";
  115. }
  116. .fs-cul_868:before {
  117. content: "\e91d";
  118. }
  119. .fs-cul_cul:before {
  120. content: "\e91e";
  121. }
  122. .fs-cul_usb:before {
  123. content: "\e91f";
  124. }
  125. .fs-cul_wlan:before {
  126. content: "\e920";
  127. }
  128. .fs-cul_wlan:after {
  129. content: "\e921";
  130. margin-left: -1em;
  131. }
  132. .fs-cul_wlan .path3:before {
  133. content: "\e922";
  134. margin-left: -1em;
  135. }
  136. .fs-cul_wlan .path4:before {
  137. content: "\e923";
  138. margin-left: -1em;
  139. }
  140. .fs-cul_wlan .path5:before {
  141. content: "\e924";
  142. margin-left: -1em;
  143. }
  144. .fs-cul_wlan .path6:before {
  145. content: "\e925";
  146. margin-left: -1em;
  147. color: rgb(255, 255, 255);
  148. }
  149. .fs-cul_wlan .path7:before {
  150. content: "\e926";
  151. margin-left: -1em;
  152. color: rgb(255, 255, 255);
  153. }
  154. .fs-cul_wlan .path8:before {
  155. content: "\e927";
  156. margin-left: -1em;
  157. color: rgb(255, 255, 255);
  158. }
  159. .fs-cul_wlan .path9:before {
  160. content: "\e928";
  161. margin-left: -1em;
  162. color: rgb(255, 255, 255);
  163. }
  164. .fs-cul:before {
  165. content: "\e929";
  166. }
  167. .fs-dash_button:before {
  168. content: "\e92a";
  169. }
  170. .fs-dash_button:after {
  171. content: "\e92b";
  172. margin-left: -2.306640625em;
  173. color: rgb(255, 255, 255);
  174. }
  175. .fs-dash_button .path3:before {
  176. content: "\e92c";
  177. margin-left: -2.306640625em;
  178. color: rgb(255, 255, 255);
  179. }
  180. .fs-dash_button .path4:before {
  181. content: "\e92d";
  182. margin-left: -2.306640625em;
  183. color: rgb(0, 0, 8);
  184. }
  185. .fs-day_night:before {
  186. content: "\e92e";
  187. }
  188. .fs-DIN_rail_housing:before {
  189. content: "\e92f";
  190. }
  191. .fs-DIN_rail_housing:after {
  192. content: "\e930";
  193. margin-left: -1em;
  194. }
  195. .fs-DIN_rail_housing .path3:before {
  196. content: "\e931";
  197. margin-left: -1em;
  198. }
  199. .fs-DIN_rail_housing .path4:before {
  200. content: "\e932";
  201. margin-left: -1em;
  202. }
  203. .fs-DIN_rail_housing .path5:before {
  204. content: "\e933";
  205. margin-left: -1em;
  206. }
  207. .fs-DIN_rail_housing .path6:before {
  208. content: "\e934";
  209. margin-left: -1em;
  210. }
  211. .fs-DIN_rail_housing .path7:before {
  212. content: "\e935";
  213. margin-left: -1em;
  214. }
  215. .fs-DIN_rail_housing .path8:before {
  216. content: "\e936";
  217. margin-left: -1em;
  218. }
  219. .fs-DIN_rail_housing .path9:before {
  220. content: "\e937";
  221. margin-left: -1em;
  222. }
  223. .fs-DIN_rail_housing .path10:before {
  224. content: "\e938";
  225. margin-left: -1em;
  226. }
  227. .fs-DIN_rail_housing .path11:before {
  228. content: "\e939";
  229. margin-left: -1em;
  230. }
  231. .fs-DIN_rail_housing .path12:before {
  232. content: "\e93a";
  233. margin-left: -1em;
  234. }
  235. .fs-DIN_rail_housing .path13:before {
  236. content: "\e93b";
  237. margin-left: -1em;
  238. }
  239. .fs-DIN_rail_housing .path14:before {
  240. content: "\e93c";
  241. margin-left: -1em;
  242. }
  243. .fs-DIN_rail_housing .path15:before {
  244. content: "\e93d";
  245. margin-left: -1em;
  246. color: rgb(238, 238, 238);
  247. }
  248. .fs-DIN_rail_housing .path16:before {
  249. content: "\e93e";
  250. margin-left: -1em;
  251. }
  252. .fs-DIN_rail_housing .path17:before {
  253. content: "\e93f";
  254. margin-left: -1em;
  255. }
  256. .fs-DIN_rail_housing .path18:before {
  257. content: "\e940";
  258. margin-left: -1em;
  259. }
  260. .fs-DIN_rail_housing .path19:before {
  261. content: "\e941";
  262. margin-left: -1em;
  263. }
  264. .fs-DIN_rail_housing .path20:before {
  265. content: "\e942";
  266. margin-left: -1em;
  267. }
  268. .fs-DIN_rail_housing .path21:before {
  269. content: "\e943";
  270. margin-left: -1em;
  271. }
  272. .fs-DIN_rail_housing .path22:before {
  273. content: "\e944";
  274. margin-left: -1em;
  275. }
  276. .fs-DIN_rail_housing .path23:before {
  277. content: "\e945";
  278. margin-left: -1em;
  279. }
  280. .fs-DIN_rail_housing .path24:before {
  281. content: "\e946";
  282. margin-left: -1em;
  283. }
  284. .fs-DIN_rail_housing .path25:before {
  285. content: "\e947";
  286. margin-left: -1em;
  287. color: rgb(255, 255, 255);
  288. }
  289. .fs-DIN_rail_housing .path26:before {
  290. content: "\e948";
  291. margin-left: -1em;
  292. }
  293. .fs-DIN_rail_housing .path27:before {
  294. content: "\e949";
  295. margin-left: -1em;
  296. }
  297. .fs-DIN_rail_housing .path28:before {
  298. content: "\e94a";
  299. margin-left: -1em;
  300. }
  301. .fs-DIN_rail_housing .path29:before {
  302. content: "\e94b";
  303. margin-left: -1em;
  304. }
  305. .fs-DIN_rail_housing .path30:before {
  306. content: "\e94c";
  307. margin-left: -1em;
  308. color: rgb(255, 255, 255);
  309. }
  310. .fs-DIN_rail_housing .path31:before {
  311. content: "\e94d";
  312. margin-left: -1em;
  313. }
  314. .fs-DIN_rail_housing .path32:before {
  315. content: "\e94e";
  316. margin-left: -1em;
  317. }
  318. .fs-DIN_rail_housing .path33:before {
  319. content: "\e94f";
  320. margin-left: -1em;
  321. }
  322. .fs-DIN_rail_housing .path34:before {
  323. content: "\e950";
  324. margin-left: -1em;
  325. color: rgb(255, 255, 255);
  326. }
  327. .fs-DIN_rail_housing .path35:before {
  328. content: "\e951";
  329. margin-left: -1em;
  330. }
  331. .fs-DIN_rail_housing .path36:before {
  332. content: "\e952";
  333. margin-left: -1em;
  334. }
  335. .fs-DIN_rail_housing .path37:before {
  336. content: "\e953";
  337. margin-left: -1em;
  338. }
  339. .fs-DIN_rail_housing .path38:before {
  340. content: "\e954";
  341. margin-left: -1em;
  342. color: rgb(255, 255, 255);
  343. }
  344. .fs-DIN_rail_housing .path39:before {
  345. content: "\e955";
  346. margin-left: -1em;
  347. }
  348. .fs-DIN_rail_housing .path40:before {
  349. content: "\e956";
  350. margin-left: -1em;
  351. }
  352. .fs-DIN_rail_housing .path41:before {
  353. content: "\e957";
  354. margin-left: -1em;
  355. }
  356. .fs-DIN_rail_housing .path42:before {
  357. content: "\e958";
  358. margin-left: -1em;
  359. }
  360. .fs-DIN_rail_housing .path43:before {
  361. content: "\e959";
  362. margin-left: -1em;
  363. }
  364. .fs-DIN_rail_housing .path44:before {
  365. content: "\e95a";
  366. margin-left: -1em;
  367. }
  368. .fs-DIN_rail_housing .path45:before {
  369. content: "\e95b";
  370. margin-left: -1em;
  371. }
  372. .fs-DIN_rail_housing .path46:before {
  373. content: "\e95c";
  374. margin-left: -1em;
  375. }
  376. .fs-DIN_rail_housing .path47:before {
  377. content: "\e95d";
  378. margin-left: -1em;
  379. }
  380. .fs-DIN_rail_housing .path48:before {
  381. content: "\e95e";
  382. margin-left: -1em;
  383. }
  384. .fs-DIN_rail_housing .path49:before {
  385. content: "\e95f";
  386. margin-left: -1em;
  387. }
  388. .fs-DIN_rail_housing .path50:before {
  389. content: "\e960";
  390. margin-left: -1em;
  391. }
  392. .fs-DIN_rail_housing .path51:before {
  393. content: "\e961";
  394. margin-left: -1em;
  395. }
  396. .fs-DIN_rail_housing .path52:before {
  397. content: "\e962";
  398. margin-left: -1em;
  399. }
  400. .fs-DIN_rail_housing .path53:before {
  401. content: "\e963";
  402. margin-left: -1em;
  403. }
  404. .fs-DIN_rail_housing .path54:before {
  405. content: "\e964";
  406. margin-left: -1em;
  407. }
  408. .fs-DIN_rail_housing .path55:before {
  409. content: "\e965";
  410. margin-left: -1em;
  411. }
  412. .fs-DIN_rail_housing .path56:before {
  413. content: "\e966";
  414. margin-left: -1em;
  415. }
  416. .fs-DIN_rail_housing .path57:before {
  417. content: "\e967";
  418. margin-left: -1em;
  419. }
  420. .fs-DIN_rail_housing .path58:before {
  421. content: "\e968";
  422. margin-left: -1em;
  423. }
  424. .fs-DIN_rail_housing .path59:before {
  425. content: "\e969";
  426. margin-left: -1em;
  427. }
  428. .fs-DIN_rail_housing .path60:before {
  429. content: "\e96a";
  430. margin-left: -1em;
  431. }
  432. .fs-DIN_rail_housing .path61:before {
  433. content: "\e96b";
  434. margin-left: -1em;
  435. }
  436. .fs-DIN_rail_housing .path62:before {
  437. content: "\e96c";
  438. margin-left: -1em;
  439. color: rgb(221, 221, 221);
  440. }
  441. .fs-DIN_rail_housing .path63:before {
  442. content: "\e96d";
  443. margin-left: -1em;
  444. }
  445. .fs-DIN_rail_housing .path64:before {
  446. content: "\e96e";
  447. margin-left: -1em;
  448. }
  449. .fs-DIN_rail_housing .path65:before {
  450. content: "\e96f";
  451. margin-left: -1em;
  452. }
  453. .fs-DIN_rail_housing .path66:before {
  454. content: "\e970";
  455. margin-left: -1em;
  456. }
  457. .fs-DIN_rail_housing .path67:before {
  458. content: "\e971";
  459. margin-left: -1em;
  460. color: rgb(221, 221, 221);
  461. }
  462. .fs-DIN_rail_housing .path68:before {
  463. content: "\e972";
  464. margin-left: -1em;
  465. }
  466. .fs-DIN_rail_housing .path69:before {
  467. content: "\e973";
  468. margin-left: -1em;
  469. }
  470. .fs-DIN_rail_housing .path70:before {
  471. content: "\e974";
  472. margin-left: -1em;
  473. }
  474. .fs-DIN_rail_housing .path71:before {
  475. content: "\e975";
  476. margin-left: -1em;
  477. }
  478. .fs-DIN_rail_housing .path72:before {
  479. content: "\e976";
  480. margin-left: -1em;
  481. color: rgb(221, 221, 221);
  482. }
  483. .fs-DIN_rail_housing .path73:before {
  484. content: "\e977";
  485. margin-left: -1em;
  486. }
  487. .fs-DIN_rail_housing .path74:before {
  488. content: "\e978";
  489. margin-left: -1em;
  490. }
  491. .fs-DIN_rail_housing .path75:before {
  492. content: "\e979";
  493. margin-left: -1em;
  494. }
  495. .fs-DIN_rail_housing .path76:before {
  496. content: "\e97a";
  497. margin-left: -1em;
  498. }
  499. .fs-DIN_rail_housing .path77:before {
  500. content: "\e97b";
  501. margin-left: -1em;
  502. color: rgb(221, 221, 221);
  503. }
  504. .fs-DIN_rail_housing .path78:before {
  505. content: "\e97c";
  506. margin-left: -1em;
  507. }
  508. .fs-DIN_rail_housing .path79:before {
  509. content: "\e97d";
  510. margin-left: -1em;
  511. }
  512. .fs-DIN_rail_housing .path80:before {
  513. content: "\e97e";
  514. margin-left: -1em;
  515. }
  516. .fs-DIN_rail_housing .path81:before {
  517. content: "\e97f";
  518. margin-left: -1em;
  519. }
  520. .fs-DIN_rail_housing .path82:before {
  521. content: "\e980";
  522. margin-left: -1em;
  523. color: rgb(221, 221, 221);
  524. }
  525. .fs-DIN_rail_housing .path83:before {
  526. content: "\e981";
  527. margin-left: -1em;
  528. }
  529. .fs-DIN_rail_housing .path84:before {
  530. content: "\e982";
  531. margin-left: -1em;
  532. }
  533. .fs-DIN_rail_housing .path85:before {
  534. content: "\e983";
  535. margin-left: -1em;
  536. }
  537. .fs-DIN_rail_housing .path86:before {
  538. content: "\e984";
  539. margin-left: -1em;
  540. }
  541. .fs-DIN_rail_housing .path87:before {
  542. content: "\e985";
  543. margin-left: -1em;
  544. color: rgb(221, 221, 221);
  545. }
  546. .fs-DIN_rail_housing .path88:before {
  547. content: "\e986";
  548. margin-left: -1em;
  549. }
  550. .fs-DIN_rail_housing .path89:before {
  551. content: "\e987";
  552. margin-left: -1em;
  553. }
  554. .fs-DIN_rail_housing .path90:before {
  555. content: "\e988";
  556. margin-left: -1em;
  557. }
  558. .fs-DIN_rail_housing .path91:before {
  559. content: "\e989";
  560. margin-left: -1em;
  561. }
  562. .fs-DIN_rail_housing .path92:before {
  563. content: "\e98a";
  564. margin-left: -1em;
  565. color: rgb(221, 221, 221);
  566. }
  567. .fs-DIN_rail_housing .path93:before {
  568. content: "\e98b";
  569. margin-left: -1em;
  570. }
  571. .fs-DIN_rail_housing .path94:before {
  572. content: "\e98c";
  573. margin-left: -1em;
  574. }
  575. .fs-DIN_rail_housing .path95:before {
  576. content: "\e98d";
  577. margin-left: -1em;
  578. }
  579. .fs-DIN_rail_housing .path96:before {
  580. content: "\e98e";
  581. margin-left: -1em;
  582. }
  583. .fs-DIN_rail_housing .path97:before {
  584. content: "\e98f";
  585. margin-left: -1em;
  586. }
  587. .fs-DIN_rail_housing .path98:before {
  588. content: "\e990";
  589. margin-left: -1em;
  590. }
  591. .fs-DIN_rail_housing .path99:before {
  592. content: "\e991";
  593. margin-left: -1em;
  594. color: rgb(221, 221, 221);
  595. }
  596. .fs-DIN_rail_housing .path100:before {
  597. content: "\e992";
  598. margin-left: -1em;
  599. }
  600. .fs-DIN_rail_housing .path101:before {
  601. content: "\e993";
  602. margin-left: -1em;
  603. }
  604. .fs-DIN_rail_housing .path102:before {
  605. content: "\e994";
  606. margin-left: -1em;
  607. }
  608. .fs-DIN_rail_housing .path103:before {
  609. content: "\e995";
  610. margin-left: -1em;
  611. }
  612. .fs-DIN_rail_housing .path104:before {
  613. content: "\e996";
  614. margin-left: -1em;
  615. color: rgb(221, 221, 221);
  616. }
  617. .fs-DIN_rail_housing .path105:before {
  618. content: "\e997";
  619. margin-left: -1em;
  620. }
  621. .fs-DIN_rail_housing .path106:before {
  622. content: "\e998";
  623. margin-left: -1em;
  624. }
  625. .fs-DIN_rail_housing .path107:before {
  626. content: "\e999";
  627. margin-left: -1em;
  628. }
  629. .fs-DIN_rail_housing .path108:before {
  630. content: "\e99a";
  631. margin-left: -1em;
  632. }
  633. .fs-DIN_rail_housing .path109:before {
  634. content: "\e99b";
  635. margin-left: -1em;
  636. color: rgb(221, 221, 221);
  637. }
  638. .fs-DIN_rail_housing .path110:before {
  639. content: "\e99c";
  640. margin-left: -1em;
  641. }
  642. .fs-DIN_rail_housing .path111:before {
  643. content: "\e99d";
  644. margin-left: -1em;
  645. }
  646. .fs-DIN_rail_housing .path112:before {
  647. content: "\e99e";
  648. margin-left: -1em;
  649. }
  650. .fs-DIN_rail_housing .path113:before {
  651. content: "\e99f";
  652. margin-left: -1em;
  653. }
  654. .fs-DIN_rail_housing .path114:before {
  655. content: "\e9a0";
  656. margin-left: -1em;
  657. color: rgb(221, 221, 221);
  658. }
  659. .fs-DIN_rail_housing .path115:before {
  660. content: "\e9a1";
  661. margin-left: -1em;
  662. }
  663. .fs-DIN_rail_housing .path116:before {
  664. content: "\e9a2";
  665. margin-left: -1em;
  666. }
  667. .fs-DIN_rail_housing .path117:before {
  668. content: "\e9a3";
  669. margin-left: -1em;
  670. }
  671. .fs-DIN_rail_housing .path118:before {
  672. content: "\e9a4";
  673. margin-left: -1em;
  674. }
  675. .fs-DIN_rail_housing .path119:before {
  676. content: "\e9a5";
  677. margin-left: -1em;
  678. color: rgb(221, 221, 221);
  679. }
  680. .fs-DIN_rail_housing .path120:before {
  681. content: "\e9a6";
  682. margin-left: -1em;
  683. }
  684. .fs-DIN_rail_housing .path121:before {
  685. content: "\e9a7";
  686. margin-left: -1em;
  687. }
  688. .fs-DIN_rail_housing .path122:before {
  689. content: "\e9a8";
  690. margin-left: -1em;
  691. }
  692. .fs-DIN_rail_housing .path123:before {
  693. content: "\e9a9";
  694. margin-left: -1em;
  695. }
  696. .fs-DIN_rail_housing .path124:before {
  697. content: "\e9aa";
  698. margin-left: -1em;
  699. }
  700. .fs-DIN_rail_housing .path125:before {
  701. content: "\e9ab";
  702. margin-left: -1em;
  703. }
  704. .fs-DIN_rail_housing .path126:before {
  705. content: "\e9ac";
  706. margin-left: -1em;
  707. }
  708. .fs-DIN_rail_housing .path127:before {
  709. content: "\e9ad";
  710. margin-left: -1em;
  711. }
  712. .fs-DIN_rail_housing .path128:before {
  713. content: "\e9ae";
  714. margin-left: -1em;
  715. }
  716. .fs-DIN_rail_housing .path129:before {
  717. content: "\e9af";
  718. margin-left: -1em;
  719. }
  720. .fs-DIN_rail_housing .path130:before {
  721. content: "\e9b0";
  722. margin-left: -1em;
  723. }
  724. .fs-DIN_rail_housing .path131:before {
  725. content: "\e9b1";
  726. margin-left: -1em;
  727. }
  728. .fs-DIN_rail_housing .path132:before {
  729. content: "\e9b2";
  730. margin-left: -1em;
  731. }
  732. .fs-DIN_rail_housing .path133:before {
  733. content: "\e9b3";
  734. margin-left: -1em;
  735. }
  736. .fs-DIN_rail_housing .path134:before {
  737. content: "\e9b4";
  738. margin-left: -1em;
  739. }
  740. .fs-DIN_rail_housing .path135:before {
  741. content: "\e9b5";
  742. margin-left: -1em;
  743. }
  744. .fs-DIN_rail_housing .path136:before {
  745. content: "\e9b6";
  746. margin-left: -1em;
  747. }
  748. .fs-DIN_rail_housing .path137:before {
  749. content: "\e9b7";
  750. margin-left: -1em;
  751. }
  752. .fs-DIN_rail_housing .path138:before {
  753. content: "\e9b8";
  754. margin-left: -1em;
  755. }
  756. .fs-DIN_rail_housing .path139:before {
  757. content: "\e9b9";
  758. margin-left: -1em;
  759. }
  760. .fs-DIN_rail_housing .path140:before {
  761. content: "\e9ba";
  762. margin-left: -1em;
  763. }
  764. .fs-DIN_rail_housing .path141:before {
  765. content: "\e9bb";
  766. margin-left: -1em;
  767. }
  768. .fs-DIN_rail_housing .path142:before {
  769. content: "\e9bc";
  770. margin-left: -1em;
  771. }
  772. .fs-DIN_rail_housing .path143:before {
  773. content: "\e9bd";
  774. margin-left: -1em;
  775. }
  776. .fs-DIN_rail_housing .path144:before {
  777. content: "\e9be";
  778. margin-left: -1em;
  779. }
  780. .fs-DIN_rail_housing .path145:before {
  781. content: "\e9bf";
  782. margin-left: -1em;
  783. }
  784. .fs-DIN_rail_housing .path146:before {
  785. content: "\e9c0";
  786. margin-left: -1em;
  787. }
  788. .fs-DIN_rail_housing .path147:before {
  789. content: "\e9c1";
  790. margin-left: -1em;
  791. }
  792. .fs-DIN_rail_housing .path148:before {
  793. content: "\e9c2";
  794. margin-left: -1em;
  795. }
  796. .fs-DIN_rail_housing .path149:before {
  797. content: "\e9c3";
  798. margin-left: -1em;
  799. }
  800. .fs-DIN_rail_housing .path150:before {
  801. content: "\e9c4";
  802. margin-left: -1em;
  803. }
  804. .fs-DIN_rail_housing .path151:before {
  805. content: "\e9c5";
  806. margin-left: -1em;
  807. }
  808. .fs-DIN_rail_housing .path152:before {
  809. content: "\e9c6";
  810. margin-left: -1em;
  811. }
  812. .fs-DIN_rail_housing .path153:before {
  813. content: "\e9c7";
  814. margin-left: -1em;
  815. }
  816. .fs-DIN_rail_housing .path154:before {
  817. content: "\e9c8";
  818. margin-left: -1em;
  819. }
  820. .fs-DIN_rail_housing .path155:before {
  821. content: "\e9c9";
  822. margin-left: -1em;
  823. }
  824. .fs-DIN_rail_housing .path156:before {
  825. content: "\e9ca";
  826. margin-left: -1em;
  827. }
  828. .fs-DIN_rail_housing .path157:before {
  829. content: "\e9cb";
  830. margin-left: -1em;
  831. }
  832. .fs-DIN_rail_housing .path158:before {
  833. content: "\e9cc";
  834. margin-left: -1em;
  835. }
  836. .fs-DIN_rail_housing .path159:before {
  837. content: "\e9cd";
  838. margin-left: -1em;
  839. }
  840. .fs-DIN_rail_housing .path160:before {
  841. content: "\e9ce";
  842. margin-left: -1em;
  843. }
  844. .fs-DIN_rail_housing .path161:before {
  845. content: "\e9cf";
  846. margin-left: -1em;
  847. }
  848. .fs-DIN_rail_housing .path162:before {
  849. content: "\e9d0";
  850. margin-left: -1em;
  851. }
  852. .fs-DIN_rail_housing .path163:before {
  853. content: "\e9d1";
  854. margin-left: -1em;
  855. }
  856. .fs-DIN_rail_housing .path164:before {
  857. content: "\e9d2";
  858. margin-left: -1em;
  859. }
  860. .fs-DIN_rail_housing .path165:before {
  861. content: "\e9d3";
  862. margin-left: -1em;
  863. }
  864. .fs-DIN_rail_housing .path166:before {
  865. content: "\e9d4";
  866. margin-left: -1em;
  867. }
  868. .fs-DIN_rail_housing .path167:before {
  869. content: "\e9d5";
  870. margin-left: -1em;
  871. }
  872. .fs-DIN_rail_housing .path168:before {
  873. content: "\e9d6";
  874. margin-left: -1em;
  875. }
  876. .fs-DIN_rail_housing .path169:before {
  877. content: "\e9d7";
  878. margin-left: -1em;
  879. }
  880. .fs-DIN_rail_housing .path170:before {
  881. content: "\e9d8";
  882. margin-left: -1em;
  883. }
  884. .fs-DIN_rail_housing .path171:before {
  885. content: "\e9d9";
  886. margin-left: -1em;
  887. }
  888. .fs-DIN_rail_housing .path172:before {
  889. content: "\e9da";
  890. margin-left: -1em;
  891. }
  892. .fs-DIN_rail_housing .path173:before {
  893. content: "\e9db";
  894. margin-left: -1em;
  895. }
  896. .fs-DIN_rail_housing .path174:before {
  897. content: "\e9dc";
  898. margin-left: -1em;
  899. }
  900. .fs-DIN_rail_housing .path175:before {
  901. content: "\e9dd";
  902. margin-left: -1em;
  903. }
  904. .fs-DIN_rail_housing .path176:before {
  905. content: "\e9de";
  906. margin-left: -1em;
  907. color: rgb(238, 238, 238);
  908. }
  909. .fs-DIN_rail_housing .path177:before {
  910. content: "\e9df";
  911. margin-left: -1em;
  912. }
  913. .fs-DIN_rail_housing .path178:before {
  914. content: "\e9e0";
  915. margin-left: -1em;
  916. }
  917. .fs-DIN_rail_housing .path179:before {
  918. content: "\e9e1";
  919. margin-left: -1em;
  920. }
  921. .fs-DIN_rail_housing .path180:before {
  922. content: "\e9e2";
  923. margin-left: -1em;
  924. }
  925. .fs-DIN_rail_housing .path181:before {
  926. content: "\e9e3";
  927. margin-left: -1em;
  928. }
  929. .fs-DIN_rail_housing .path182:before {
  930. content: "\e9e4";
  931. margin-left: -1em;
  932. }
  933. .fs-DIN_rail_housing .path183:before {
  934. content: "\e9e5";
  935. margin-left: -1em;
  936. }
  937. .fs-DIN_rail_housing .path184:before {
  938. content: "\e9e6";
  939. margin-left: -1em;
  940. }
  941. .fs-DIN_rail_housing .path185:before {
  942. content: "\e9e7";
  943. margin-left: -1em;
  944. }
  945. .fs-DIN_rail_housing .path186:before {
  946. content: "\e9e8";
  947. margin-left: -1em;
  948. }
  949. .fs-DIN_rail_housing .path187:before {
  950. content: "\e9e9";
  951. margin-left: -1em;
  952. }
  953. .fs-DIN_rail_housing .path188:before {
  954. content: "\e9ea";
  955. margin-left: -1em;
  956. }
  957. .fs-DIN_rail_housing .path189:before {
  958. content: "\e9eb";
  959. margin-left: -1em;
  960. }
  961. .fs-DIN_rail_housing .path190:before {
  962. content: "\e9ec";
  963. margin-left: -1em;
  964. }
  965. .fs-DIN_rail_housing .path191:before {
  966. content: "\e9ed";
  967. margin-left: -1em;
  968. }
  969. .fs-DIN_rail_housing .path192:before {
  970. content: "\e9ee";
  971. margin-left: -1em;
  972. }
  973. .fs-dog_silhouette:before {
  974. content: "\e9ef";
  975. }
  976. .fs-dreambox:before {
  977. content: "\e9f0";
  978. }
  979. .fs-dustbin:before {
  980. content: "\e9f1";
  981. }
  982. .fs-euro:before {
  983. content: "\e9f2";
  984. }
  985. .fs-floor:before {
  986. content: "\e9f3";
  987. }
  988. .fs-frost:before {
  989. content: "\e9f4";
  990. }
  991. .fs-fs20_S4A-2_1:before {
  992. content: "\e9f5";
  993. }
  994. .fs-fs20_S4A-2_1:after {
  995. content: "\e9f6";
  996. margin-left: -1em;
  997. }
  998. .fs-fs20_S4A-2_1 .path3:before {
  999. content: "\e9f7";
  1000. margin-left: -1em;
  1001. }
  1002. .fs-fs20_S4A-2_1 .path4:before {
  1003. content: "\e9f8";
  1004. margin-left: -1em;
  1005. }
  1006. .fs-fs20_S4A-2_1 .path5:before {
  1007. content: "\e9f9";
  1008. margin-left: -1em;
  1009. }
  1010. .fs-fs20_S4A-2_1 .path6:before {
  1011. content: "\e9fa";
  1012. margin-left: -1em;
  1013. }
  1014. .fs-fs20_S4A-2_1 .path7:before {
  1015. content: "\e9fb";
  1016. margin-left: -1em;
  1017. color: rgb(229, 36, 32);
  1018. }
  1019. .fs-fs20_S4A-2_2:before {
  1020. content: "\e9fc";
  1021. }
  1022. .fs-fs20_S4A-2_2:after {
  1023. content: "\e9fd";
  1024. margin-left: -1em;
  1025. }
  1026. .fs-fs20_S4A-2_2 .path3:before {
  1027. content: "\e9fe";
  1028. margin-left: -1em;
  1029. }
  1030. .fs-fs20_S4A-2_2 .path4:before {
  1031. content: "\e9ff";
  1032. margin-left: -1em;
  1033. }
  1034. .fs-fs20_S4A-2_2 .path5:before {
  1035. content: "\ea00";
  1036. margin-left: -1em;
  1037. }
  1038. .fs-fs20_S4A-2_2 .path6:before {
  1039. content: "\ea01";
  1040. margin-left: -1em;
  1041. }
  1042. .fs-fs20_S4A-2_2 .path7:before {
  1043. content: "\ea02";
  1044. margin-left: -1em;
  1045. color: rgb(229, 36, 32);
  1046. }
  1047. .fs-fs20_S4A-2_3:before {
  1048. content: "\ea03";
  1049. }
  1050. .fs-fs20_S4A-2_3:after {
  1051. content: "\ea04";
  1052. margin-left: -1em;
  1053. }
  1054. .fs-fs20_S4A-2_3 .path3:before {
  1055. content: "\ea05";
  1056. margin-left: -1em;
  1057. }
  1058. .fs-fs20_S4A-2_3 .path4:before {
  1059. content: "\ea06";
  1060. margin-left: -1em;
  1061. }
  1062. .fs-fs20_S4A-2_3 .path5:before {
  1063. content: "\ea07";
  1064. margin-left: -1em;
  1065. }
  1066. .fs-fs20_S4A-2_3 .path6:before {
  1067. content: "\ea08";
  1068. margin-left: -1em;
  1069. }
  1070. .fs-fs20_S4A-2_3 .path7:before {
  1071. content: "\ea09";
  1072. margin-left: -1em;
  1073. color: rgb(229, 36, 32);
  1074. }
  1075. .fs-fs20_S4A-2_4:before {
  1076. content: "\ea0a";
  1077. }
  1078. .fs-fs20_S4A-2_4:after {
  1079. content: "\ea0b";
  1080. margin-left: -1em;
  1081. }
  1082. .fs-fs20_S4A-2_4 .path3:before {
  1083. content: "\ea0c";
  1084. margin-left: -1em;
  1085. }
  1086. .fs-fs20_S4A-2_4 .path4:before {
  1087. content: "\ea0d";
  1088. margin-left: -1em;
  1089. }
  1090. .fs-fs20_S4A-2_4 .path5:before {
  1091. content: "\ea0e";
  1092. margin-left: -1em;
  1093. }
  1094. .fs-fs20_S4A-2_4 .path6:before {
  1095. content: "\ea0f";
  1096. margin-left: -1em;
  1097. }
  1098. .fs-fs20_S4A-2_4 .path7:before {
  1099. content: "\ea10";
  1100. margin-left: -1em;
  1101. color: rgb(229, 36, 32);
  1102. }
  1103. .fs-fts_door_right_open:before {
  1104. content: "\ea11";
  1105. }
  1106. .fs-fts_door_right:before {
  1107. content: "\ea12";
  1108. }
  1109. .fs-fts_door_tilt:before {
  1110. content: "\ea13";
  1111. }
  1112. .fs-fts_shutter_1w_0:before {
  1113. content: "\ea14";
  1114. }
  1115. .fs-fts_shutter_1w_10:before {
  1116. content: "\ea15";
  1117. }
  1118. .fs-fts_shutter_1w_20:before {
  1119. content: "\ea16";
  1120. }
  1121. .fs-fts_shutter_1w_30:before {
  1122. content: "\ea17";
  1123. }
  1124. .fs-fts_shutter_1w_40:before {
  1125. content: "\ea18";
  1126. }
  1127. .fs-fts_shutter_1w_50:before {
  1128. content: "\ea19";
  1129. }
  1130. .fs-fts_shutter_1w_60:before {
  1131. content: "\ea1a";
  1132. }
  1133. .fs-fts_shutter_1w_70:before {
  1134. content: "\ea1b";
  1135. }
  1136. .fs-fts_shutter_1w_80:before {
  1137. content: "\ea1c";
  1138. }
  1139. .fs-fts_shutter_1w_90:before {
  1140. content: "\ea1d";
  1141. }
  1142. .fs-fts_shutter_1w_100:before {
  1143. content: "\ea1e";
  1144. }
  1145. .fs-fts_shutter_1w:before {
  1146. content: "\ea1f";
  1147. }
  1148. .fs-fts_shutter_all:before {
  1149. content: "\ea20";
  1150. }
  1151. .fs-fts_shutter_all:after {
  1152. content: "\ea21";
  1153. margin-left: -1em;
  1154. color: rgb(255, 255, 255);
  1155. }
  1156. .fs-fts_shutter_all .path3:before {
  1157. content: "\ea22";
  1158. margin-left: -1em;
  1159. }
  1160. .fs-fts_shutter_all .path4:before {
  1161. content: "\ea23";
  1162. margin-left: -1em;
  1163. }
  1164. .fs-fts_shutter_all .path5:before {
  1165. content: "\ea24";
  1166. margin-left: -1em;
  1167. }
  1168. .fs-fts_shutter_all .path6:before {
  1169. content: "\ea25";
  1170. margin-left: -1em;
  1171. }
  1172. .fs-fts_shutter_all .path7:before {
  1173. content: "\ea26";
  1174. margin-left: -1em;
  1175. }
  1176. .fs-fts_shutter_all .path8:before {
  1177. content: "\ea27";
  1178. margin-left: -1em;
  1179. }
  1180. .fs-fts_shutter_all .path9:before {
  1181. content: "\ea28";
  1182. margin-left: -1em;
  1183. }
  1184. .fs-fts_shutter_all .path10:before {
  1185. content: "\ea29";
  1186. margin-left: -1em;
  1187. }
  1188. .fs-fts_shutter_all .path11:before {
  1189. content: "\ea2a";
  1190. margin-left: -1em;
  1191. color: rgb(255, 255, 255);
  1192. }
  1193. .fs-fts_shutter_all .path12:before {
  1194. content: "\ea2b";
  1195. margin-left: -1em;
  1196. }
  1197. .fs-fts_shutter_all .path13:before {
  1198. content: "\ea2c";
  1199. margin-left: -1em;
  1200. }
  1201. .fs-fts_shutter_all .path14:before {
  1202. content: "\ea2d";
  1203. margin-left: -1em;
  1204. }
  1205. .fs-fts_shutter_all .path15:before {
  1206. content: "\ea2e";
  1207. margin-left: -1em;
  1208. }
  1209. .fs-fts_shutter_all .path16:before {
  1210. content: "\ea2f";
  1211. margin-left: -1em;
  1212. }
  1213. .fs-fts_shutter_all .path17:before {
  1214. content: "\ea30";
  1215. margin-left: -1em;
  1216. }
  1217. .fs-fts_shutter_all .path18:before {
  1218. content: "\ea31";
  1219. margin-left: -1em;
  1220. }
  1221. .fs-fts_shutter_all .path19:before {
  1222. content: "\ea32";
  1223. margin-left: -1em;
  1224. }
  1225. .fs-fts_shutter_all .path20:before {
  1226. content: "\ea33";
  1227. margin-left: -1em;
  1228. color: rgb(255, 255, 255);
  1229. }
  1230. .fs-fts_shutter_all .path21:before {
  1231. content: "\ea34";
  1232. margin-left: -1em;
  1233. }
  1234. .fs-fts_shutter_all .path22:before {
  1235. content: "\ea35";
  1236. margin-left: -1em;
  1237. }
  1238. .fs-fts_shutter_all .path23:before {
  1239. content: "\ea36";
  1240. margin-left: -1em;
  1241. }
  1242. .fs-fts_shutter_all .path24:before {
  1243. content: "\ea37";
  1244. margin-left: -1em;
  1245. }
  1246. .fs-fts_shutter_all .path25:before {
  1247. content: "\ea38";
  1248. margin-left: -1em;
  1249. }
  1250. .fs-fts_shutter_all .path26:before {
  1251. content: "\ea39";
  1252. margin-left: -1em;
  1253. }
  1254. .fs-fts_shutter_all .path27:before {
  1255. content: "\ea3a";
  1256. margin-left: -1em;
  1257. }
  1258. .fs-fts_shutter_alldown:before {
  1259. content: "\ea3b";
  1260. }
  1261. .fs-fts_shutter_alldown:after {
  1262. content: "\ea3c";
  1263. margin-left: -1em;
  1264. }
  1265. .fs-fts_shutter_alldown .path3:before {
  1266. content: "\ea3d";
  1267. margin-left: -1em;
  1268. }
  1269. .fs-fts_shutter_alldown .path4:before {
  1270. content: "\ea3e";
  1271. margin-left: -1em;
  1272. }
  1273. .fs-fts_shutter_alldown .path5:before {
  1274. content: "\ea3f";
  1275. margin-left: -1em;
  1276. }
  1277. .fs-fts_shutter_alldown .path6:before {
  1278. content: "\ea40";
  1279. margin-left: -1em;
  1280. }
  1281. .fs-fts_shutter_alldown .path7:before {
  1282. content: "\ea41";
  1283. margin-left: -1em;
  1284. }
  1285. .fs-fts_shutter_alldown .path8:before {
  1286. content: "\ea42";
  1287. margin-left: -1em;
  1288. }
  1289. .fs-fts_shutter_alldown .path9:before {
  1290. content: "\ea43";
  1291. margin-left: -1em;
  1292. }
  1293. .fs-fts_shutter_alldown .path10:before {
  1294. content: "\ea44";
  1295. margin-left: -1em;
  1296. }
  1297. .fs-fts_shutter_alldown .path11:before {
  1298. content: "\ea45";
  1299. margin-left: -1em;
  1300. }
  1301. .fs-fts_shutter_alldown .path12:before {
  1302. content: "\ea46";
  1303. margin-left: -1em;
  1304. }
  1305. .fs-fts_shutter_alldown .path13:before {
  1306. content: "\ea47";
  1307. margin-left: -1em;
  1308. }
  1309. .fs-fts_shutter_alldown .path14:before {
  1310. content: "\ea48";
  1311. margin-left: -1em;
  1312. }
  1313. .fs-fts_shutter_alldown .path15:before {
  1314. content: "\ea49";
  1315. margin-left: -1em;
  1316. }
  1317. .fs-fts_shutter_alldown .path16:before {
  1318. content: "\ea4a";
  1319. margin-left: -1em;
  1320. }
  1321. .fs-fts_shutter_alldown .path17:before {
  1322. content: "\ea4b";
  1323. margin-left: -1em;
  1324. }
  1325. .fs-fts_shutter_alldown .path18:before {
  1326. content: "\ea4c";
  1327. margin-left: -1em;
  1328. }
  1329. .fs-fts_shutter_alldown .path19:before {
  1330. content: "\ea4d";
  1331. margin-left: -1em;
  1332. }
  1333. .fs-fts_shutter_alldown .path20:before {
  1334. content: "\ea4e";
  1335. margin-left: -1em;
  1336. }
  1337. .fs-fts_shutter_alldown .path21:before {
  1338. content: "\ea4f";
  1339. margin-left: -1em;
  1340. color: rgb(9, 0, 0);
  1341. }
  1342. .fs-fts_shutter_alldown .path22:before {
  1343. content: "\ea50";
  1344. margin-left: -1em;
  1345. color: rgb(9, 0, 0);
  1346. }
  1347. .fs-fts_shutter_alldown .path23:before {
  1348. content: "\ea51";
  1349. margin-left: -1em;
  1350. color: rgb(9, 0, 0);
  1351. }
  1352. .fs-fts_shutter_alldown .path24:before {
  1353. content: "\ea52";
  1354. margin-left: -1em;
  1355. color: rgb(9, 0, 0);
  1356. }
  1357. .fs-fts_shutter_alldown .path25:before {
  1358. content: "\ea53";
  1359. margin-left: -1em;
  1360. }
  1361. .fs-fts_shutter_alldown .path26:before {
  1362. content: "\ea54";
  1363. margin-left: -1em;
  1364. color: rgb(9, 0, 0);
  1365. }
  1366. .fs-fts_shutter_alldown .path27:before {
  1367. content: "\ea55";
  1368. margin-left: -1em;
  1369. }
  1370. .fs-fts_shutter_allup:before {
  1371. content: "\ea56";
  1372. color: rgb(9, 0, 0);
  1373. }
  1374. .fs-fts_shutter_allup:after {
  1375. content: "\ea57";
  1376. margin-left: -1em;
  1377. }
  1378. .fs-fts_shutter_allup .path3:before {
  1379. content: "\ea58";
  1380. margin-left: -1em;
  1381. color: rgb(9, 0, 0);
  1382. }
  1383. .fs-fts_shutter_allup .path4:before {
  1384. content: "\ea59";
  1385. margin-left: -1em;
  1386. color: rgb(9, 0, 0);
  1387. }
  1388. .fs-fts_shutter_allup .path5:before {
  1389. content: "\ea5a";
  1390. margin-left: -1em;
  1391. color: rgb(9, 0, 0);
  1392. }
  1393. .fs-fts_shutter_allup .path6:before {
  1394. content: "\ea5b";
  1395. margin-left: -1em;
  1396. }
  1397. .fs-fts_shutter_allup .path7:before {
  1398. content: "\ea5c";
  1399. margin-left: -1em;
  1400. }
  1401. .fs-fts_shutter_allup .path8:before {
  1402. content: "\ea5d";
  1403. margin-left: -1em;
  1404. }
  1405. .fs-fts_shutter_allup .path9:before {
  1406. content: "\ea5e";
  1407. margin-left: -1em;
  1408. }
  1409. .fs-fts_shutter_allup .path10:before {
  1410. content: "\ea5f";
  1411. margin-left: -1em;
  1412. }
  1413. .fs-fts_shutter_allup .path11:before {
  1414. content: "\ea60";
  1415. margin-left: -1em;
  1416. }
  1417. .fs-fts_shutter_allup .path12:before {
  1418. content: "\ea61";
  1419. margin-left: -1em;
  1420. }
  1421. .fs-fts_shutter_allup .path13:before {
  1422. content: "\ea62";
  1423. margin-left: -1em;
  1424. }
  1425. .fs-fts_shutter_allup .path14:before {
  1426. content: "\ea63";
  1427. margin-left: -1em;
  1428. }
  1429. .fs-fts_shutter_allup .path15:before {
  1430. content: "\ea64";
  1431. margin-left: -1em;
  1432. color: rgb(9, 0, 0);
  1433. }
  1434. .fs-fts_shutter_allup .path16:before {
  1435. content: "\ea65";
  1436. margin-left: -1em;
  1437. color: rgb(9, 0, 0);
  1438. }
  1439. .fs-fts_shutter_allup .path17:before {
  1440. content: "\ea66";
  1441. margin-left: -1em;
  1442. color: rgb(9, 0, 0);
  1443. }
  1444. .fs-fts_shutter_allup .path18:before {
  1445. content: "\ea67";
  1446. margin-left: -1em;
  1447. }
  1448. .fs-fts_shutter_allup .path19:before {
  1449. content: "\ea68";
  1450. margin-left: -1em;
  1451. }
  1452. .fs-fts_shutter_allup .path20:before {
  1453. content: "\ea69";
  1454. margin-left: -1em;
  1455. }
  1456. .fs-fts_shutter_allup .path21:before {
  1457. content: "\ea6a";
  1458. margin-left: -1em;
  1459. }
  1460. .fs-fts_shutter_allup .path22:before {
  1461. content: "\ea6b";
  1462. margin-left: -1em;
  1463. }
  1464. .fs-fts_shutter_allup .path23:before {
  1465. content: "\ea6c";
  1466. margin-left: -1em;
  1467. }
  1468. .fs-fts_shutter_allup .path24:before {
  1469. content: "\ea6d";
  1470. margin-left: -1em;
  1471. }
  1472. .fs-fts_shutter_allup .path25:before {
  1473. content: "\ea6e";
  1474. margin-left: -1em;
  1475. }
  1476. .fs-fts_shutter_allup .path26:before {
  1477. content: "\ea6f";
  1478. margin-left: -1em;
  1479. }
  1480. .fs-fts_shutter_allup .path27:before {
  1481. content: "\ea70";
  1482. margin-left: -1em;
  1483. color: rgb(9, 0, 0);
  1484. }
  1485. .fs-fts_shutter_allup .path28:before {
  1486. content: "\ea71";
  1487. margin-left: -1em;
  1488. color: rgb(9, 0, 0);
  1489. }
  1490. .fs-fts_shutter_allup .path29:before {
  1491. content: "\ea72";
  1492. margin-left: -1em;
  1493. color: rgb(9, 0, 0);
  1494. }
  1495. .fs-fts_shutter_allup .path30:before {
  1496. content: "\ea73";
  1497. margin-left: -1em;
  1498. }
  1499. .fs-fts_shutter_allup .path31:before {
  1500. content: "\ea74";
  1501. margin-left: -1em;
  1502. }
  1503. .fs-fts_shutter_allup .path32:before {
  1504. content: "\ea75";
  1505. margin-left: -1em;
  1506. }
  1507. .fs-fts_shutter_allup .path33:before {
  1508. content: "\ea76";
  1509. margin-left: -1em;
  1510. }
  1511. .fs-fts_shutter_allup .path34:before {
  1512. content: "\ea77";
  1513. margin-left: -1em;
  1514. }
  1515. .fs-fts_shutter_allup .path35:before {
  1516. content: "\ea78";
  1517. margin-left: -1em;
  1518. }
  1519. .fs-fts_shutter_allup .path36:before {
  1520. content: "\ea79";
  1521. margin-left: -1em;
  1522. }
  1523. .fs-fts_shutter_allup .path37:before {
  1524. content: "\ea7a";
  1525. margin-left: -1em;
  1526. }
  1527. .fs-fts_shutter_allup .path38:before {
  1528. content: "\ea7b";
  1529. margin-left: -1em;
  1530. }
  1531. .fs-fts_shutter_shadding_run:before {
  1532. content: "\ea7c";
  1533. color: rgb(9, 0, 0);
  1534. }
  1535. .fs-fts_shutter_shadding_run:after {
  1536. content: "\ea7d";
  1537. margin-left: -1em;
  1538. color: rgb(255, 255, 255);
  1539. }
  1540. .fs-fts_shutter_shadding_run .path3:before {
  1541. content: "\ea7e";
  1542. margin-left: -1em;
  1543. color: rgb(9, 0, 0);
  1544. }
  1545. .fs-fts_shutter_shadding_run .path4:before {
  1546. content: "\ea7f";
  1547. margin-left: -1em;
  1548. color: rgb(9, 0, 0);
  1549. }
  1550. .fs-fts_shutter_shadding_run .path5:before {
  1551. content: "\ea80";
  1552. margin-left: -1em;
  1553. }
  1554. .fs-fts_shutter_shadding_run .path6:before {
  1555. content: "\ea81";
  1556. margin-left: -1em;
  1557. }
  1558. .fs-fts_shutter_shadding_run .path7:before {
  1559. content: "\ea82";
  1560. margin-left: -1em;
  1561. }
  1562. .fs-fts_shutter_shadding_run .path8:before {
  1563. content: "\ea83";
  1564. margin-left: -1em;
  1565. }
  1566. .fs-fts_shutter_shadding_run .path9:before {
  1567. content: "\ea84";
  1568. margin-left: -1em;
  1569. }
  1570. .fs-fts_shutter_shadding_run .path10:before {
  1571. content: "\ea85";
  1572. margin-left: -1em;
  1573. }
  1574. .fs-fts_shutter_shadding_run .path11:before {
  1575. content: "\ea86";
  1576. margin-left: -1em;
  1577. }
  1578. .fs-fts_shutter_shadding_run .path12:before {
  1579. content: "\ea87";
  1580. margin-left: -1em;
  1581. }
  1582. .fs-fts_shutter_shadding_run .path13:before {
  1583. content: "\ea88";
  1584. margin-left: -1em;
  1585. }
  1586. .fs-fts_shutter_shadding_run .path14:before {
  1587. content: "\ea89";
  1588. margin-left: -1em;
  1589. }
  1590. .fs-fts_shutter_shadding_run .path15:before {
  1591. content: "\ea8a";
  1592. margin-left: -1em;
  1593. }
  1594. .fs-fts_shutter_shadding_stop:before {
  1595. content: "\ea8b";
  1596. }
  1597. .fs-fts_shutter_shadding_stop:after {
  1598. content: "\ea8c";
  1599. margin-left: -1em;
  1600. color: rgb(255, 255, 255);
  1601. }
  1602. .fs-fts_shutter_shadding_stop .path3:before {
  1603. content: "\ea8d";
  1604. margin-left: -1em;
  1605. }
  1606. .fs-fts_shutter_shadding_stop .path4:before {
  1607. content: "\ea8e";
  1608. margin-left: -1em;
  1609. }
  1610. .fs-fts_shutter_shadding_stop .path5:before {
  1611. content: "\ea8f";
  1612. margin-left: -1em;
  1613. }
  1614. .fs-fts_shutter_shadding_stop .path6:before {
  1615. content: "\ea90";
  1616. margin-left: -1em;
  1617. }
  1618. .fs-fts_shutter_shadding_stop .path7:before {
  1619. content: "\ea91";
  1620. margin-left: -1em;
  1621. }
  1622. .fs-fts_shutter_shadding_stop .path8:before {
  1623. content: "\ea92";
  1624. margin-left: -1em;
  1625. }
  1626. .fs-fts_shutter_shadding_stop .path9:before {
  1627. content: "\ea93";
  1628. margin-left: -1em;
  1629. }
  1630. .fs-fts_shutter_shadding_stop .path10:before {
  1631. content: "\ea94";
  1632. margin-left: -1em;
  1633. }
  1634. .fs-fts_shutter_shadding_stop .path11:before {
  1635. content: "\ea95";
  1636. margin-left: -1em;
  1637. }
  1638. .fs-fts_shutter_shadding_stop .path12:before {
  1639. content: "\ea96";
  1640. margin-left: -1em;
  1641. }
  1642. .fs-fts_shutter_shadding_stop .path13:before {
  1643. content: "\ea97";
  1644. margin-left: -1em;
  1645. }
  1646. .fs-fts_shutter_shadding_stop .path14:before {
  1647. content: "\ea98";
  1648. margin-left: -1em;
  1649. }
  1650. .fs-fts_shutter_shadding_stop .path15:before {
  1651. content: "\ea99";
  1652. margin-left: -1em;
  1653. }
  1654. .fs-fts_shutter_updown:before {
  1655. content: "\ea9a";
  1656. }
  1657. .fs-fts_sunblind_0:before {
  1658. content: "\ea9b";
  1659. }
  1660. .fs-fts_sunblind_10:before {
  1661. content: "\ea9c";
  1662. }
  1663. .fs-fts_sunblind_20:before {
  1664. content: "\ea9d";
  1665. }
  1666. .fs-fts_sunblind_30:before {
  1667. content: "\ea9e";
  1668. }
  1669. .fs-fts_sunblind_40:before {
  1670. content: "\ea9f";
  1671. }
  1672. .fs-fts_sunblind_50:before {
  1673. content: "\eaa0";
  1674. }
  1675. .fs-fts_sunblind_60:before {
  1676. content: "\eaa1";
  1677. }
  1678. .fs-fts_sunblind_70:before {
  1679. content: "\eaa2";
  1680. }
  1681. .fs-fts_sunblind_80:before {
  1682. content: "\eaa3";
  1683. }
  1684. .fs-fts_sunblind_90:before {
  1685. content: "\eaa4";
  1686. }
  1687. .fs-fts_sunblind_100:before {
  1688. content: "\eaa5";
  1689. }
  1690. .fs-fts_window_1wbb_open:before {
  1691. content: "\eaa6";
  1692. }
  1693. .fs-garden_socket:before {
  1694. content: "\eaa7";
  1695. }
  1696. .fs-gasoline:before {
  1697. content: "\eaa8";
  1698. color: rgb(35, 31, 32);
  1699. }
  1700. .fs-gasoline:after {
  1701. content: "\eaa9";
  1702. margin-left: -1em;
  1703. color: rgb(255, 255, 255);
  1704. }
  1705. .fs-gasoline .path3:before {
  1706. content: "\eaaa";
  1707. margin-left: -1em;
  1708. color: rgb(35, 31, 32);
  1709. }
  1710. .fs-general_an_fuer_zeit:before {
  1711. content: "\eaab";
  1712. }
  1713. .fs-general_an:before {
  1714. content: "\eaac";
  1715. }
  1716. .fs-general_aus_fuer_zeit:before {
  1717. content: "\eaad";
  1718. }
  1719. .fs-general_aus:before {
  1720. content: "\eaae";
  1721. }
  1722. .fs-general_low:before {
  1723. content: "\eaaf";
  1724. }
  1725. .fs-general_ok:before {
  1726. content: "\eab0";
  1727. }
  1728. .fs-helper_doif:before {
  1729. content: "\eab1";
  1730. }
  1731. .fs-helper_doiftools:before {
  1732. content: "\eab2";
  1733. }
  1734. .fs-helper_doiftools:after {
  1735. content: "\eab3";
  1736. margin-left: -1em;
  1737. }
  1738. .fs-helper_doiftools .path3:before {
  1739. content: "\eab4";
  1740. margin-left: -1em;
  1741. }
  1742. .fs-helper_doiftools .path4:before {
  1743. content: "\eab5";
  1744. margin-left: -1em;
  1745. }
  1746. .fs-helper_doiftools .path5:before {
  1747. content: "\eab6";
  1748. margin-left: -1em;
  1749. }
  1750. .fs-helper_doiftools .path6:before {
  1751. content: "\eab7";
  1752. margin-left: -1em;
  1753. }
  1754. .fs-helper_doiftools .path7:before {
  1755. content: "\eab8";
  1756. margin-left: -1em;
  1757. }
  1758. .fs-helper_doiftools .path8:before {
  1759. content: "\eab9";
  1760. margin-left: -1em;
  1761. }
  1762. .fs-helper_doiftools .path9:before {
  1763. content: "\eaba";
  1764. margin-left: -1em;
  1765. }
  1766. .fs-helper_doiftools .path10:before {
  1767. content: "\eabb";
  1768. margin-left: -1em;
  1769. }
  1770. .fs-helper_doiftools .path11:before {
  1771. content: "\eabc";
  1772. margin-left: -1em;
  1773. }
  1774. .fs-helper_doiftools .path12:before {
  1775. content: "\eabd";
  1776. margin-left: -1em;
  1777. }
  1778. .fs-helper_doiftools .path13:before {
  1779. content: "\eabe";
  1780. margin-left: -1em;
  1781. }
  1782. .fs-helper_doiftools .path14:before {
  1783. content: "\eabf";
  1784. margin-left: -1em;
  1785. }
  1786. .fs-helper_doiftools .path15:before {
  1787. content: "\eac0";
  1788. margin-left: -1em;
  1789. }
  1790. .fs-helper_doiftools .path16:before {
  1791. content: "\eac1";
  1792. margin-left: -1em;
  1793. }
  1794. .fs-helper_doiftools .path17:before {
  1795. content: "\eac2";
  1796. margin-left: -1em;
  1797. color: rgb(68, 68, 68);
  1798. }
  1799. .fs-helper_doiftools .path18:before {
  1800. content: "\eac3";
  1801. margin-left: -1em;
  1802. color: rgb(68, 68, 68);
  1803. }
  1804. .fs-helper_doiftools .path19:before {
  1805. content: "\eac4";
  1806. margin-left: -1em;
  1807. }
  1808. .fs-hm_ccu:before {
  1809. content: "\eac5";
  1810. }
  1811. .fs-hm_keymatic:before {
  1812. content: "\eac6";
  1813. }
  1814. .fs-hm_keymatic:after {
  1815. content: "\eac7";
  1816. margin-left: -1em;
  1817. opacity: 0.9577;
  1818. }
  1819. .fs-hm_keymatic .path3:before {
  1820. content: "\eac8";
  1821. margin-left: -1em;
  1822. }
  1823. .fs-hm_keymatic .path4:before {
  1824. content: "\eac9";
  1825. margin-left: -1em;
  1826. }
  1827. .fs-hm_keymatic .path5:before {
  1828. content: "\eaca";
  1829. margin-left: -1em;
  1830. }
  1831. .fs-hm_lan:before {
  1832. content: "\eacb";
  1833. }
  1834. .fs-hm-cc-rt-dn:before {
  1835. content: "\eacc";
  1836. }
  1837. .fs-hm-dis-wm55:before {
  1838. content: "\eacd";
  1839. }
  1840. .fs-hm-sec-win:before {
  1841. content: "\eace";
  1842. }
  1843. .fs-hm-tc-it-wm-w-eu:before {
  1844. content: "\eacf";
  1845. }
  1846. .fs-hourglass:before {
  1847. content: "\ead0";
  1848. }
  1849. .fs-hue_bridge:before {
  1850. content: "\ead1";
  1851. }
  1852. .fs-hue_bridge:after {
  1853. content: "\ead2";
  1854. margin-left: -1em;
  1855. }
  1856. .fs-hue_bridge .path3:before {
  1857. content: "\ead3";
  1858. margin-left: -1em;
  1859. }
  1860. .fs-hue_bridge .path4:before {
  1861. content: "\ead4";
  1862. margin-left: -1em;
  1863. }
  1864. .fs-hue_bridge .path5:before {
  1865. content: "\ead5";
  1866. margin-left: -1em;
  1867. }
  1868. .fs-hue_bridge .path6:before {
  1869. content: "\ead6";
  1870. margin-left: -1em;
  1871. }
  1872. .fs-hue_bridge .path7:before {
  1873. content: "\ead7";
  1874. margin-left: -1em;
  1875. }
  1876. .fs-hue_bridge .path8:before {
  1877. content: "\ead8";
  1878. margin-left: -1em;
  1879. }
  1880. .fs-hue_bridge .path9:before {
  1881. content: "\ead9";
  1882. margin-left: -1em;
  1883. }
  1884. .fs-hue_bridge .path10:before {
  1885. content: "\eada";
  1886. margin-left: -1em;
  1887. }
  1888. .fs-hue_bridge .path11:before {
  1889. content: "\eadb";
  1890. margin-left: -1em;
  1891. }
  1892. .fs-hue_bridge .path12:before {
  1893. content: "\eadc";
  1894. margin-left: -1em;
  1895. }
  1896. .fs-hue_bridge .path13:before {
  1897. content: "\eadd";
  1898. margin-left: -1em;
  1899. }
  1900. .fs-hue_bridge .path14:before {
  1901. content: "\eade";
  1902. margin-left: -1em;
  1903. }
  1904. .fs-hue_bridge .path15:before {
  1905. content: "\eadf";
  1906. margin-left: -1em;
  1907. }
  1908. .fs-hue_bridge .path16:before {
  1909. content: "\eae0";
  1910. margin-left: -1em;
  1911. }
  1912. .fs-hue_bridge .path17:before {
  1913. content: "\eae1";
  1914. margin-left: -1em;
  1915. }
  1916. .fs-hue_bridge .path18:before {
  1917. content: "\eae2";
  1918. margin-left: -1em;
  1919. }
  1920. .fs-hue_bridge .path19:before {
  1921. content: "\eae3";
  1922. margin-left: -1em;
  1923. }
  1924. .fs-hue_bridge .path20:before {
  1925. content: "\eae4";
  1926. margin-left: -1em;
  1927. }
  1928. .fs-hue_bridge .path21:before {
  1929. content: "\eae5";
  1930. margin-left: -1em;
  1931. color: rgb(0, 124, 220);
  1932. }
  1933. .fs-hue_bridge .path22:before {
  1934. content: "\eae6";
  1935. margin-left: -1em;
  1936. color: rgb(0, 124, 220);
  1937. }
  1938. .fs-hue_bridge .path23:before {
  1939. content: "\eae7";
  1940. margin-left: -1em;
  1941. color: rgb(0, 124, 220);
  1942. }
  1943. .fs-hue_bridge .path24:before {
  1944. content: "\eae8";
  1945. margin-left: -1em;
  1946. color: rgb(0, 124, 220);
  1947. }
  1948. .fs-hue_filled_aura:before {
  1949. content: "\eae9";
  1950. }
  1951. .fs-hue_filled_beyond_ceiling_pendant_table:before {
  1952. content: "\eaea";
  1953. }
  1954. .fs-hue_filled_bloom:before {
  1955. content: "\eaeb";
  1956. }
  1957. .fs-hue_filled_br30:before {
  1958. content: "\eaec";
  1959. }
  1960. .fs-hue_filled_bridge_v1:before {
  1961. content: "\eaed";
  1962. }
  1963. .fs-hue_filled_bridge_v2:before {
  1964. content: "\eaee";
  1965. }
  1966. .fs-hue_filled_entity:before {
  1967. content: "\eaef";
  1968. }
  1969. .fs-hue_filled_go:before {
  1970. content: "\eaf0";
  1971. }
  1972. .fs-hue_filled_gu10_par16:before {
  1973. content: "\eaf1";
  1974. }
  1975. .fs-hue_filled_hds:before {
  1976. content: "\eaf2";
  1977. }
  1978. .fs-hue_filled_impulse:before {
  1979. content: "\eaf3";
  1980. }
  1981. .fs-hue_filled_iris:before {
  1982. content: "\eaf4";
  1983. }
  1984. .fs-hue_filled_lightstrip:before {
  1985. content: "\eaf5";
  1986. }
  1987. .fs-hue_filled_living_whites:before {
  1988. content: "\eaf6";
  1989. }
  1990. .fs-hue_filled_outlet:before {
  1991. content: "\eaf7";
  1992. }
  1993. .fs-hue_filled_phoenix_ceiling_pendant_table_wall:before {
  1994. content: "\eaf8";
  1995. }
  1996. .fs-hue_filled_phoenix_recessed_spot:before {
  1997. content: "\eaf9";
  1998. }
  1999. .fs-hue_filled_storylight:before {
  2000. content: "\eafa";
  2001. }
  2002. .fs-hue_filled_tap:before {
  2003. content: "\eafb";
  2004. }
  2005. .fs-hue_filled_white_and_color_e27_b22:before {
  2006. content: "\eafc";
  2007. }
  2008. .fs-hue_filled_white_e27_b22:before {
  2009. content: "\eafd";
  2010. }
  2011. .fs-hue_room_bathroom:before {
  2012. content: "\eafe";
  2013. }
  2014. .fs-hue_room_bedroom:before {
  2015. content: "\eaff";
  2016. }
  2017. .fs-hue_room_carport:before {
  2018. content: "\eb00";
  2019. }
  2020. .fs-hue_room_dining:before {
  2021. content: "\eb01";
  2022. }
  2023. .fs-hue_room_driveway:before {
  2024. content: "\eb02";
  2025. }
  2026. .fs-hue_room_frontdoor:before {
  2027. content: "\eb03";
  2028. }
  2029. .fs-hue_room_garage:before {
  2030. content: "\eb04";
  2031. }
  2032. .fs-hue_room_garden:before {
  2033. content: "\eb05";
  2034. }
  2035. .fs-hue_room_gym:before {
  2036. content: "\eb06";
  2037. }
  2038. .fs-hue_room_hallway:before {
  2039. content: "\eb07";
  2040. }
  2041. .fs-hue_room_kids_bedroom:before {
  2042. content: "\eb08";
  2043. }
  2044. .fs-hue_room_kitchen:before {
  2045. content: "\eb09";
  2046. }
  2047. .fs-hue_room_living:before {
  2048. content: "\eb0a";
  2049. }
  2050. .fs-hue_room_nursery:before {
  2051. content: "\eb0b";
  2052. }
  2053. .fs-hue_room_office:before {
  2054. content: "\eb0c";
  2055. }
  2056. .fs-hue_room_other:before {
  2057. content: "\eb0d";
  2058. }
  2059. .fs-hue_room_recreation:before {
  2060. content: "\eb0e";
  2061. }
  2062. .fs-hue_room_terrace:before {
  2063. content: "\eb0f";
  2064. }
  2065. .fs-hue_room_toilet:before {
  2066. content: "\eb10";
  2067. }
  2068. .fs-humidity:before {
  2069. content: "\eb11";
  2070. }
  2071. .fs-HutschIcon3:before {
  2072. content: "\eb12";
  2073. opacity: 0.2475;
  2074. }
  2075. .fs-HutschIcon3:after {
  2076. content: "\eb13";
  2077. margin-left: -0.9873046875em;
  2078. opacity: 0.2475;
  2079. }
  2080. .fs-HutschIcon3 .path3:before {
  2081. content: "\eb14";
  2082. margin-left: -0.9873046875em;
  2083. opacity: 0.2475;
  2084. }
  2085. .fs-HutschIcon3 .path4:before {
  2086. content: "\eb15";
  2087. margin-left: -0.9873046875em;
  2088. opacity: 0.2475;
  2089. }
  2090. .fs-HutschIcon3 .path5:before {
  2091. content: "\eb16";
  2092. margin-left: -0.9873046875em;
  2093. opacity: 0.2475;
  2094. }
  2095. .fs-HutschIcon3 .path6:before {
  2096. content: "\eb17";
  2097. margin-left: -0.9873046875em;
  2098. opacity: 0.2475;
  2099. }
  2100. .fs-HutschIcon3 .path7:before {
  2101. content: "\eb18";
  2102. margin-left: -0.9873046875em;
  2103. opacity: 0.2475;
  2104. }
  2105. .fs-HutschIcon3 .path8:before {
  2106. content: "\eb19";
  2107. margin-left: -0.9873046875em;
  2108. opacity: 0.2475;
  2109. }
  2110. .fs-HutschIcon3 .path9:before {
  2111. content: "\eb1a";
  2112. margin-left: -0.9873046875em;
  2113. }
  2114. .fs-HutschIcon3 .path10:before {
  2115. content: "\eb1b";
  2116. margin-left: -0.9873046875em;
  2117. }
  2118. .fs-HutschIcon3 .path11:before {
  2119. content: "\eb1c";
  2120. margin-left: -0.9873046875em;
  2121. }
  2122. .fs-HutschIcon3 .path12:before {
  2123. content: "\eb1d";
  2124. margin-left: -0.9873046875em;
  2125. }
  2126. .fs-HutschIcon3 .path13:before {
  2127. content: "\eb1e";
  2128. margin-left: -0.9873046875em;
  2129. }
  2130. .fs-HutschIcon3 .path14:before {
  2131. content: "\eb1f";
  2132. margin-left: -0.9873046875em;
  2133. }
  2134. .fs-HutschIcon3 .path15:before {
  2135. content: "\eb20";
  2136. margin-left: -0.9873046875em;
  2137. }
  2138. .fs-HutschIcon3 .path16:before {
  2139. content: "\eb21";
  2140. margin-left: -0.9873046875em;
  2141. }
  2142. .fs-HutschIcon3 .path17:before {
  2143. content: "\eb22";
  2144. margin-left: -0.9873046875em;
  2145. }
  2146. .fs-HutschIcon3 .path18:before {
  2147. content: "\eb23";
  2148. margin-left: -0.9873046875em;
  2149. }
  2150. .fs-HutschIcon3 .path19:before {
  2151. content: "\eb24";
  2152. margin-left: -0.9873046875em;
  2153. }
  2154. .fs-HutschIcon3 .path20:before {
  2155. content: "\eb25";
  2156. margin-left: -0.9873046875em;
  2157. }
  2158. .fs-HutschIcon3 .path21:before {
  2159. content: "\eb26";
  2160. margin-left: -0.9873046875em;
  2161. }
  2162. .fs-HutschIcon3 .path22:before {
  2163. content: "\eb27";
  2164. margin-left: -0.9873046875em;
  2165. }
  2166. .fs-HutschIcon3 .path23:before {
  2167. content: "\eb28";
  2168. margin-left: -0.9873046875em;
  2169. }
  2170. .fs-HutschIcon3 .path24:before {
  2171. content: "\eb29";
  2172. margin-left: -0.9873046875em;
  2173. }
  2174. .fs-HutschIcon3 .path25:before {
  2175. content: "\eb2a";
  2176. margin-left: -0.9873046875em;
  2177. }
  2178. .fs-HutschIcon3 .path26:before {
  2179. content: "\eb2b";
  2180. margin-left: -0.9873046875em;
  2181. }
  2182. .fs-HutschIcon3 .path27:before {
  2183. content: "\eb2c";
  2184. margin-left: -0.9873046875em;
  2185. }
  2186. .fs-HutschIcon3 .path28:before {
  2187. content: "\eb2d";
  2188. margin-left: -0.9873046875em;
  2189. }
  2190. .fs-HutschIcon3 .path29:before {
  2191. content: "\eb2e";
  2192. margin-left: -0.9873046875em;
  2193. }
  2194. .fs-HutschIcon3 .path30:before {
  2195. content: "\eb2f";
  2196. margin-left: -0.9873046875em;
  2197. }
  2198. .fs-HutschIcon3 .path31:before {
  2199. content: "\eb30";
  2200. margin-left: -0.9873046875em;
  2201. }
  2202. .fs-HutschIcon3 .path32:before {
  2203. content: "\eb31";
  2204. margin-left: -0.9873046875em;
  2205. }
  2206. .fs-HutschIcon3 .path33:before {
  2207. content: "\eb32";
  2208. margin-left: -0.9873046875em;
  2209. }
  2210. .fs-HutschIcon3 .path34:before {
  2211. content: "\eb33";
  2212. margin-left: -0.9873046875em;
  2213. }
  2214. .fs-HutschIcon3 .path35:before {
  2215. content: "\eb34";
  2216. margin-left: -0.9873046875em;
  2217. }
  2218. .fs-HutschIcon3 .path36:before {
  2219. content: "\eb35";
  2220. margin-left: -0.9873046875em;
  2221. }
  2222. .fs-HutschIcon3 .path37:before {
  2223. content: "\eb36";
  2224. margin-left: -0.9873046875em;
  2225. }
  2226. .fs-HutschIcon3 .path38:before {
  2227. content: "\eb37";
  2228. margin-left: -0.9873046875em;
  2229. }
  2230. .fs-HutschIcon3 .path39:before {
  2231. content: "\eb38";
  2232. margin-left: -0.9873046875em;
  2233. }
  2234. .fs-HutschIcon3 .path40:before {
  2235. content: "\eb39";
  2236. margin-left: -0.9873046875em;
  2237. }
  2238. .fs-HutschIcon3 .path41:before {
  2239. content: "\eb3a";
  2240. margin-left: -0.9873046875em;
  2241. }
  2242. .fs-HutschIcon3 .path42:before {
  2243. content: "\eb3b";
  2244. margin-left: -0.9873046875em;
  2245. }
  2246. .fs-HutschIcon3 .path43:before {
  2247. content: "\eb3c";
  2248. margin-left: -0.9873046875em;
  2249. }
  2250. .fs-HutschIcon3 .path44:before {
  2251. content: "\eb3d";
  2252. margin-left: -0.9873046875em;
  2253. }
  2254. .fs-HutschIcon3 .path45:before {
  2255. content: "\eb3e";
  2256. margin-left: -0.9873046875em;
  2257. }
  2258. .fs-HutschIcon3 .path46:before {
  2259. content: "\eb3f";
  2260. margin-left: -0.9873046875em;
  2261. }
  2262. .fs-HutschIcon3 .path47:before {
  2263. content: "\eb40";
  2264. margin-left: -0.9873046875em;
  2265. }
  2266. .fs-HutschIcon3 .path48:before {
  2267. content: "\eb41";
  2268. margin-left: -0.9873046875em;
  2269. }
  2270. .fs-HutschIcon3 .path49:before {
  2271. content: "\eb42";
  2272. margin-left: -0.9873046875em;
  2273. }
  2274. .fs-HutschIcon3 .path50:before {
  2275. content: "\eb43";
  2276. margin-left: -0.9873046875em;
  2277. }
  2278. .fs-HutschIcon3 .path51:before {
  2279. content: "\eb44";
  2280. margin-left: -0.9873046875em;
  2281. }
  2282. .fs-Icon_Fisch:before {
  2283. content: "\eb45";
  2284. }
  2285. .fs-ios_off_fill:before {
  2286. content: "\eb46";
  2287. }
  2288. .fs-ios_off_fill:after {
  2289. content: "\eb47";
  2290. margin-left: -1.61328125em;
  2291. color: rgb(255, 255, 255);
  2292. }
  2293. .fs-ios_off_fortimer_fill:before {
  2294. content: "\eb48";
  2295. }
  2296. .fs-ios_off_fortimer_fill:after {
  2297. content: "\eb49";
  2298. margin-left: -1.775390625em;
  2299. color: rgb(255, 255, 255);
  2300. }
  2301. .fs-ios_off_fortimer_fill .path3:before {
  2302. content: "\eb4a";
  2303. margin-left: -1.775390625em;
  2304. color: rgb(171, 171, 171);
  2305. }
  2306. .fs-ios_off_till_fill:before {
  2307. content: "\eb4b";
  2308. }
  2309. .fs-ios_off_till_fill:after {
  2310. content: "\eb4c";
  2311. margin-left: -1.775390625em;
  2312. color: rgb(255, 255, 255);
  2313. }
  2314. .fs-ios_off_tillovernight_fill:before {
  2315. content: "\eb4d";
  2316. }
  2317. .fs-ios_off_tillovernight_fill:after {
  2318. content: "\eb4e";
  2319. margin-left: -1.775390625em;
  2320. color: rgb(255, 255, 255);
  2321. }
  2322. .fs-ios_off_tillovernight_fill .path3:before {
  2323. content: "\eb4f";
  2324. margin-left: -1.775390625em;
  2325. color: rgb(171, 171, 171);
  2326. }
  2327. .fs-ios_off_tillovernight_fill .path4:before {
  2328. content: "\eb50";
  2329. margin-left: -1.775390625em;
  2330. color: rgb(210, 210, 210);
  2331. }
  2332. .fs-ios_on_fill:before {
  2333. content: "\eb51";
  2334. }
  2335. .fs-ios_on_fill:after {
  2336. content: "\eb52";
  2337. margin-left: -1.775390625em;
  2338. color: rgb(255, 255, 255);
  2339. }
  2340. .fs-ios_on_fortimer_fill:before {
  2341. content: "\eb53";
  2342. }
  2343. .fs-ios_on_fortimer_fill:after {
  2344. content: "\eb54";
  2345. margin-left: -1.775390625em;
  2346. color: rgb(255, 255, 255);
  2347. }
  2348. .fs-ios_on_fortimer_fill .path3:before {
  2349. content: "\eb55";
  2350. margin-left: -1.775390625em;
  2351. color: rgb(171, 171, 171);
  2352. }
  2353. .fs-ios_on_till_fill:before {
  2354. content: "\eb56";
  2355. }
  2356. .fs-ios_on_till_fill:after {
  2357. content: "\eb57";
  2358. margin-left: -1.775390625em;
  2359. color: rgb(255, 255, 255);
  2360. }
  2361. .fs-ios_on_tillovernight_fill:before {
  2362. content: "\eb58";
  2363. }
  2364. .fs-ios_on_tillovernight_fill:after {
  2365. content: "\eb59";
  2366. margin-left: -1.775390625em;
  2367. color: rgb(255, 255, 255);
  2368. }
  2369. .fs-ios_on_tillovernight_fill .path3:before {
  2370. content: "\eb5a";
  2371. margin-left: -1.775390625em;
  2372. color: rgb(171, 171, 171);
  2373. }
  2374. .fs-ios_on_tillovernight_fill .path4:before {
  2375. content: "\eb5b";
  2376. margin-left: -1.775390625em;
  2377. color: rgb(210, 210, 210);
  2378. }
  2379. .fs-ios_setoff_fill:before {
  2380. content: "\eb5c";
  2381. }
  2382. .fs-ios_setoff_fill:after {
  2383. content: "\eb5d";
  2384. margin-left: -1.61328125em;
  2385. color: rgb(255, 255, 255);
  2386. }
  2387. .fs-ios_setoff_fill .path3:before {
  2388. content: "\eb5e";
  2389. margin-left: -1.61328125em;
  2390. color: rgb(255, 0, 0);
  2391. }
  2392. .fs-ios_setoff_fill .path4:before {
  2393. content: "\eb5f";
  2394. margin-left: -1.61328125em;
  2395. color: rgb(255, 0, 0);
  2396. }
  2397. .fs-ios_seton_fill:before {
  2398. content: "\eb60";
  2399. }
  2400. .fs-ios_seton_fill:after {
  2401. content: "\eb61";
  2402. margin-left: -1.775390625em;
  2403. color: rgb(255, 255, 255);
  2404. }
  2405. .fs-ios_seton_fill .path3:before {
  2406. content: "\eb62";
  2407. margin-left: -1.775390625em;
  2408. color: rgb(255, 0, 0);
  2409. }
  2410. .fs-ios_seton_fill .path4:before {
  2411. content: "\eb63";
  2412. margin-left: -1.775390625em;
  2413. color: rgb(255, 0, 0);
  2414. }
  2415. .fs-IR:before {
  2416. content: "\eb64";
  2417. }
  2418. .fs-it_hue_bridge:before {
  2419. content: "\eb65";
  2420. }
  2421. .fs-it_hue_bridge:after {
  2422. content: "\eb66";
  2423. margin-left: -1em;
  2424. }
  2425. .fs-it_hue_bridge .path3:before {
  2426. content: "\eb67";
  2427. margin-left: -1em;
  2428. }
  2429. .fs-it_hue_bridge .path4:before {
  2430. content: "\eb68";
  2431. margin-left: -1em;
  2432. }
  2433. .fs-it_hue_bridge .path5:before {
  2434. content: "\eb69";
  2435. margin-left: -1em;
  2436. }
  2437. .fs-it_hue_bridge .path6:before {
  2438. content: "\eb6a";
  2439. margin-left: -1em;
  2440. }
  2441. .fs-it_hue_bridge .path7:before {
  2442. content: "\eb6b";
  2443. margin-left: -1em;
  2444. }
  2445. .fs-it_hue_bridge .path8:before {
  2446. content: "\eb6c";
  2447. margin-left: -1em;
  2448. }
  2449. .fs-it_hue_bridge .path9:before {
  2450. content: "\eb6d";
  2451. margin-left: -1em;
  2452. }
  2453. .fs-it_hue_bridge .path10:before {
  2454. content: "\eb6e";
  2455. margin-left: -1em;
  2456. }
  2457. .fs-it_hue_bridge .path11:before {
  2458. content: "\eb6f";
  2459. margin-left: -1em;
  2460. }
  2461. .fs-it_hue_bridge .path12:before {
  2462. content: "\eb70";
  2463. margin-left: -1em;
  2464. }
  2465. .fs-it_hue_bridge .path13:before {
  2466. content: "\eb71";
  2467. margin-left: -1em;
  2468. }
  2469. .fs-it_hue_bridge .path14:before {
  2470. content: "\eb72";
  2471. margin-left: -1em;
  2472. }
  2473. .fs-it_hue_bridge .path15:before {
  2474. content: "\eb73";
  2475. margin-left: -1em;
  2476. }
  2477. .fs-it_hue_bridge .path16:before {
  2478. content: "\eb74";
  2479. margin-left: -1em;
  2480. }
  2481. .fs-it_hue_bridge .path17:before {
  2482. content: "\eb75";
  2483. margin-left: -1em;
  2484. }
  2485. .fs-it_hue_bridge .path18:before {
  2486. content: "\eb76";
  2487. margin-left: -1em;
  2488. }
  2489. .fs-it_hue_bridge .path19:before {
  2490. content: "\eb77";
  2491. margin-left: -1em;
  2492. }
  2493. .fs-it_hue_bridge .path20:before {
  2494. content: "\eb78";
  2495. margin-left: -1em;
  2496. }
  2497. .fs-it_hue_bridge .path21:before {
  2498. content: "\eb79";
  2499. margin-left: -1em;
  2500. color: rgb(0, 124, 220);
  2501. }
  2502. .fs-it_hue_bridge .path22:before {
  2503. content: "\eb7a";
  2504. margin-left: -1em;
  2505. color: rgb(0, 124, 220);
  2506. }
  2507. .fs-it_hue_bridge .path23:before {
  2508. content: "\eb7b";
  2509. margin-left: -1em;
  2510. color: rgb(0, 124, 220);
  2511. }
  2512. .fs-it_hue_bridge .path24:before {
  2513. content: "\eb7c";
  2514. margin-left: -1em;
  2515. color: rgb(0, 124, 220);
  2516. }
  2517. .fs-it_i-net:before {
  2518. content: "\eb7d";
  2519. }
  2520. .fs-it_i-net:after {
  2521. content: "\eb7e";
  2522. margin-left: -1em;
  2523. opacity: 0.9;
  2524. }
  2525. .fs-it_i-net .path3:before {
  2526. content: "\eb7f";
  2527. margin-left: -1em;
  2528. opacity: 0.9;
  2529. }
  2530. .fs-it_i-net .path4:before {
  2531. content: "\eb80";
  2532. margin-left: -1em;
  2533. opacity: 0.9;
  2534. }
  2535. .fs-it_i-net .path5:before {
  2536. content: "\eb81";
  2537. margin-left: -1em;
  2538. opacity: 0.9;
  2539. }
  2540. .fs-it_i-net .path6:before {
  2541. content: "\eb82";
  2542. margin-left: -1em;
  2543. }
  2544. .fs-it_i-net .path7:before {
  2545. content: "\eb83";
  2546. margin-left: -1em;
  2547. }
  2548. .fs-it_i-net .path8:before {
  2549. content: "\eb84";
  2550. margin-left: -1em;
  2551. }
  2552. .fs-it_i-net .path9:before {
  2553. content: "\eb85";
  2554. margin-left: -1em;
  2555. }
  2556. .fs-it_i-net .path10:before {
  2557. content: "\eb86";
  2558. margin-left: -1em;
  2559. }
  2560. .fs-it_printer:before {
  2561. content: "\eb87";
  2562. }
  2563. .fs-it_remote_folder:before {
  2564. content: "\eb88";
  2565. }
  2566. .fs-it_remote_folder:after {
  2567. content: "\eb89";
  2568. margin-left: -1em;
  2569. }
  2570. .fs-it_remote_folder .path3:before {
  2571. content: "\eb8a";
  2572. margin-left: -1em;
  2573. }
  2574. .fs-it_remote_folder .path4:before {
  2575. content: "\eb8b";
  2576. margin-left: -1em;
  2577. }
  2578. .fs-it_remote_folder .path5:before {
  2579. content: "\eb8c";
  2580. margin-left: -1em;
  2581. color: rgb(114, 159, 207);
  2582. opacity: 0.1136;
  2583. }
  2584. .fs-it_remote_folder .path6:before {
  2585. content: "\eb8d";
  2586. margin-left: -1em;
  2587. opacity: 0.1136;
  2588. }
  2589. .fs-it_remote_folder .path7:before {
  2590. content: "\eb8e";
  2591. margin-left: -1em;
  2592. color: rgb(114, 159, 207);
  2593. opacity: 0.1136;
  2594. }
  2595. .fs-it_remote_folder .path8:before {
  2596. content: "\eb8f";
  2597. margin-left: -1em;
  2598. opacity: 0.1136;
  2599. }
  2600. .fs-it_remote_folder .path9:before {
  2601. content: "\eb90";
  2602. margin-left: -1em;
  2603. color: rgb(114, 159, 207);
  2604. opacity: 0.1136;
  2605. }
  2606. .fs-it_remote_folder .path10:before {
  2607. content: "\eb91";
  2608. margin-left: -1em;
  2609. opacity: 0.1136;
  2610. }
  2611. .fs-it_remote_folder .path11:before {
  2612. content: "\eb92";
  2613. margin-left: -1em;
  2614. color: rgb(114, 159, 207);
  2615. opacity: 0.1136;
  2616. }
  2617. .fs-it_remote_folder .path12:before {
  2618. content: "\eb93";
  2619. margin-left: -1em;
  2620. opacity: 0.1136;
  2621. }
  2622. .fs-it_remote_folder .path13:before {
  2623. content: "\eb94";
  2624. margin-left: -1em;
  2625. color: rgb(114, 159, 207);
  2626. opacity: 0.1136;
  2627. }
  2628. .fs-it_remote_folder .path14:before {
  2629. content: "\eb95";
  2630. margin-left: -1em;
  2631. opacity: 0.1136;
  2632. }
  2633. .fs-it_remote_folder .path15:before {
  2634. content: "\eb96";
  2635. margin-left: -1em;
  2636. color: rgb(114, 159, 207);
  2637. opacity: 0.1136;
  2638. }
  2639. .fs-it_remote_folder .path16:before {
  2640. content: "\eb97";
  2641. margin-left: -1em;
  2642. opacity: 0.1136;
  2643. }
  2644. .fs-it_remote_folder .path17:before {
  2645. content: "\eb98";
  2646. margin-left: -1em;
  2647. color: rgb(114, 159, 207);
  2648. opacity: 0.1136;
  2649. }
  2650. .fs-it_remote_folder .path18:before {
  2651. content: "\eb99";
  2652. margin-left: -1em;
  2653. opacity: 0.1136;
  2654. }
  2655. .fs-it_remote_folder .path19:before {
  2656. content: "\eb9a";
  2657. margin-left: -1em;
  2658. color: rgb(114, 159, 207);
  2659. opacity: 0.1136;
  2660. }
  2661. .fs-it_remote_folder .path20:before {
  2662. content: "\eb9b";
  2663. margin-left: -1em;
  2664. opacity: 0.1136;
  2665. }
  2666. .fs-it_remote_folder .path21:before {
  2667. content: "\eb9c";
  2668. margin-left: -1em;
  2669. color: rgb(114, 159, 207);
  2670. opacity: 0.1136;
  2671. }
  2672. .fs-it_remote_folder .path22:before {
  2673. content: "\eb9d";
  2674. margin-left: -1em;
  2675. opacity: 0.1136;
  2676. }
  2677. .fs-it_remote_folder .path23:before {
  2678. content: "\eb9e";
  2679. margin-left: -1em;
  2680. color: rgb(114, 159, 207);
  2681. opacity: 0.1136;
  2682. }
  2683. .fs-it_remote_folder .path24:before {
  2684. content: "\eb9f";
  2685. margin-left: -1em;
  2686. opacity: 0.1136;
  2687. }
  2688. .fs-it_remote_folder .path25:before {
  2689. content: "\eba0";
  2690. margin-left: -1em;
  2691. color: rgb(114, 159, 207);
  2692. opacity: 0.1136;
  2693. }
  2694. .fs-it_remote_folder .path26:before {
  2695. content: "\eba1";
  2696. margin-left: -1em;
  2697. opacity: 0.1136;
  2698. }
  2699. .fs-it_remote_folder .path27:before {
  2700. content: "\eba2";
  2701. margin-left: -1em;
  2702. color: rgb(114, 159, 207);
  2703. opacity: 0.1136;
  2704. }
  2705. .fs-it_remote_folder .path28:before {
  2706. content: "\eba3";
  2707. margin-left: -1em;
  2708. opacity: 0.1136;
  2709. }
  2710. .fs-it_remote_folder .path29:before {
  2711. content: "\eba4";
  2712. margin-left: -1em;
  2713. color: rgb(114, 159, 207);
  2714. opacity: 0.1136;
  2715. }
  2716. .fs-it_remote_folder .path30:before {
  2717. content: "\eba5";
  2718. margin-left: -1em;
  2719. opacity: 0.1136;
  2720. }
  2721. .fs-it_remote_folder .path31:before {
  2722. content: "\eba6";
  2723. margin-left: -1em;
  2724. color: rgb(114, 159, 207);
  2725. opacity: 0.1136;
  2726. }
  2727. .fs-it_remote_folder .path32:before {
  2728. content: "\eba7";
  2729. margin-left: -1em;
  2730. opacity: 0.1136;
  2731. }
  2732. .fs-it_remote_folder .path33:before {
  2733. content: "\eba8";
  2734. margin-left: -1em;
  2735. color: rgb(114, 159, 207);
  2736. opacity: 0.1136;
  2737. }
  2738. .fs-it_remote_folder .path34:before {
  2739. content: "\eba9";
  2740. margin-left: -1em;
  2741. opacity: 0.1136;
  2742. }
  2743. .fs-it_remote_folder .path35:before {
  2744. content: "\ebaa";
  2745. margin-left: -1em;
  2746. }
  2747. .fs-it_remote_folder .path36:before {
  2748. content: "\ebab";
  2749. margin-left: -1em;
  2750. }
  2751. .fs-it_remote_folder .path37:before {
  2752. content: "\ebac";
  2753. margin-left: -1em;
  2754. color: rgb(255, 255, 255);
  2755. opacity: 0.4659;
  2756. }
  2757. .fs-kindle:before {
  2758. content: "\ebad";
  2759. }
  2760. .fs-kindle:after {
  2761. content: "\ebae";
  2762. margin-left: -1em;
  2763. color: rgb(255, 255, 255);
  2764. }
  2765. .fs-kindle .path3:before {
  2766. content: "\ebaf";
  2767. margin-left: -1em;
  2768. color: rgb(255, 255, 255);
  2769. }
  2770. .fs-kindle .path4:before {
  2771. content: "\ebb0";
  2772. margin-left: -1em;
  2773. color: rgb(255, 255, 255);
  2774. }
  2775. .fs-kindle .path5:before {
  2776. content: "\ebb1";
  2777. margin-left: -1em;
  2778. color: rgb(255, 255, 255);
  2779. }
  2780. .fs-kindle .path6:before {
  2781. content: "\ebb2";
  2782. margin-left: -1em;
  2783. color: rgb(255, 255, 255);
  2784. }
  2785. .fs-kindle .path7:before {
  2786. content: "\ebb3";
  2787. margin-left: -1em;
  2788. color: rgb(255, 255, 255);
  2789. }
  2790. .fs-lan_rs485:before {
  2791. content: "\ebb4";
  2792. }
  2793. .fs-light_ceiling_off:before {
  2794. content: "\ebb5";
  2795. }
  2796. .fs-light_ceiling:before {
  2797. content: "\ebb6";
  2798. }
  2799. .fs-light_dim_down:before {
  2800. content: "\ebb7";
  2801. }
  2802. .fs-light_dim_up:before {
  2803. content: "\ebb8";
  2804. }
  2805. .fs-light_exclamation:before {
  2806. content: "\ebb9";
  2807. }
  2808. .fs-light_exclamation:after {
  2809. content: "\ebba";
  2810. margin-left: -0.4208984375em;
  2811. }
  2812. .fs-light_exclamation .path3:before {
  2813. content: "\ebbb";
  2814. margin-left: -0.4208984375em;
  2815. }
  2816. .fs-light_exclamation .path4:before {
  2817. content: "\ebbc";
  2818. margin-left: -0.4208984375em;
  2819. }
  2820. .fs-light_exclamation .path5:before {
  2821. content: "\ebbd";
  2822. margin-left: -0.4208984375em;
  2823. }
  2824. .fs-light_exclamation .path6:before {
  2825. content: "\ebbe";
  2826. margin-left: -0.4208984375em;
  2827. color: rgb(255, 85, 85);
  2828. }
  2829. .fs-light_off-for-timer:before {
  2830. content: "\ebbf";
  2831. }
  2832. .fs-light_on-for-timer:before {
  2833. content: "\ebc0";
  2834. }
  2835. .fs-light_outdoor:before {
  2836. content: "\ebc1";
  2837. }
  2838. .fs-light_question:before {
  2839. content: "\ebc2";
  2840. }
  2841. .fs-light_question:after {
  2842. content: "\ebc3";
  2843. margin-left: -0.4208984375em;
  2844. }
  2845. .fs-light_question .path3:before {
  2846. content: "\ebc4";
  2847. margin-left: -0.4208984375em;
  2848. }
  2849. .fs-light_question .path4:before {
  2850. content: "\ebc5";
  2851. margin-left: -0.4208984375em;
  2852. }
  2853. .fs-light_question .path5:before {
  2854. content: "\ebc6";
  2855. margin-left: -0.4208984375em;
  2856. }
  2857. .fs-light_question .path6:before {
  2858. content: "\ebc7";
  2859. margin-left: -0.4208984375em;
  2860. color: rgb(255, 85, 85);
  2861. }
  2862. .fs-light_toggle:before {
  2863. content: "\ebc8";
  2864. }
  2865. .fs-markise_in:before {
  2866. content: "\ebc9";
  2867. }
  2868. .fs-markise_out:before {
  2869. content: "\ebca";
  2870. }
  2871. .fs-max_heizungsthermostat:before {
  2872. content: "\ebcb";
  2873. }
  2874. .fs-max_wandthermostat:before {
  2875. content: "\ebcc";
  2876. }
  2877. .fs-message_socket_disabled:before {
  2878. content: "\ebcd";
  2879. }
  2880. .fs-message_socket_enabled:before {
  2881. content: "\ebce";
  2882. }
  2883. .fs-message_socket_off:before {
  2884. content: "\ebcf";
  2885. }
  2886. .fs-message_socket_off2:before {
  2887. content: "\ebd0";
  2888. }
  2889. .fs-message_socket_on2:before {
  2890. content: "\ebd1";
  2891. }
  2892. .fs-message_socket_unknown:before {
  2893. content: "\ebd2";
  2894. }
  2895. .fs-mg_growl_mce:before {
  2896. content: "\ebd3";
  2897. }
  2898. .fs-mg_growl:before {
  2899. content: "\ebd4";
  2900. }
  2901. .fs-motion_detector:before {
  2902. content: "\ebd5";
  2903. }
  2904. .fs-muelltonne:before {
  2905. content: "\ebd6";
  2906. }
  2907. .fs-muelltonne:after {
  2908. content: "\ebd7";
  2909. margin-left: -0.6904296875em;
  2910. color: rgb(0, 0, 1);
  2911. }
  2912. .fs-muelltonne .path3:before {
  2913. content: "\ebd8";
  2914. margin-left: -0.6904296875em;
  2915. color: rgb(46, 53, 53);
  2916. }
  2917. .fs-muelltonne .path4:before {
  2918. content: "\ebd9";
  2919. margin-left: -0.6904296875em;
  2920. }
  2921. .fs-muelltonne .path5:before {
  2922. content: "\ebda";
  2923. margin-left: -0.6904296875em;
  2924. }
  2925. .fs-muelltonne .path6:before {
  2926. content: "\ebdb";
  2927. margin-left: -0.6904296875em;
  2928. }
  2929. .fs-outside_socket:before {
  2930. content: "\ebdc";
  2931. }
  2932. .fs-people_sensor:before {
  2933. content: "\ebdd";
  2934. }
  2935. .fs-radio_checked:before {
  2936. content: "\ebde";
  2937. }
  2938. .fs-radio_unchecked:before {
  2939. content: "\ebdf";
  2940. }
  2941. .fs-rc_0:before {
  2942. content: "\ebe0";
  2943. }
  2944. .fs-rc_1:before {
  2945. content: "\ebe1";
  2946. }
  2947. .fs-rc_2:before {
  2948. content: "\ebe2";
  2949. }
  2950. .fs-rc_3:before {
  2951. content: "\ebe3";
  2952. }
  2953. .fs-rc_4:before {
  2954. content: "\ebe4";
  2955. }
  2956. .fs-rc_5:before {
  2957. content: "\ebe5";
  2958. }
  2959. .fs-rc_6:before {
  2960. content: "\ebe6";
  2961. }
  2962. .fs-rc_7:before {
  2963. content: "\ebe7";
  2964. }
  2965. .fs-rc_8:before {
  2966. content: "\ebe8";
  2967. }
  2968. .fs-rc_9:before {
  2969. content: "\ebe9";
  2970. }
  2971. .fs-rc_ASPECT:before {
  2972. content: "\ebea";
  2973. }
  2974. .fs-rc_AUDIO:before {
  2975. content: "\ebeb";
  2976. }
  2977. .fs-rc_AV:before {
  2978. content: "\ebec";
  2979. }
  2980. .fs-rc_BACK:before {
  2981. content: "\ebed";
  2982. }
  2983. .fs-rc_BLANK:before {
  2984. content: "\ebee";
  2985. }
  2986. .fs-rc_BLANK2:before {
  2987. content: "\ebef";
  2988. }
  2989. .fs-rc_BLUE:before {
  2990. content: "\ebf0";
  2991. }
  2992. .fs-rc_BLUE:after {
  2993. content: "\ebf1";
  2994. margin-left: -1em;
  2995. color: rgb(0, 0, 128);
  2996. }
  2997. .fs-rc_dot:before {
  2998. content: "\ebf2";
  2999. }
  3000. .fs-rc_DOWN:before {
  3001. content: "\ebf3";
  3002. }
  3003. .fs-rc_EJECT:before {
  3004. content: "\ebf4";
  3005. }
  3006. .fs-rc_EPG:before {
  3007. content: "\ebf5";
  3008. }
  3009. .fs-rc_EXIT:before {
  3010. content: "\ebf6";
  3011. }
  3012. .fs-rc_FF:before {
  3013. content: "\ebf7";
  3014. }
  3015. .fs-rc_FFblue:before {
  3016. content: "\ebf8";
  3017. }
  3018. .fs-rc_FFblue:after {
  3019. content: "\ebf9";
  3020. margin-left: -1em;
  3021. }
  3022. .fs-rc_FFblue .path3:before {
  3023. content: "\ebfa";
  3024. margin-left: -1em;
  3025. color: rgb(0, 0, 128);
  3026. }
  3027. .fs-rc_GREEN:before {
  3028. content: "\ebfb";
  3029. }
  3030. .fs-rc_GREEN:after {
  3031. content: "\ebfc";
  3032. margin-left: -1em;
  3033. color: rgb(0, 128, 0);
  3034. }
  3035. .fs-rc_HDMI:before {
  3036. content: "\ebfd";
  3037. }
  3038. .fs-rc_HELP:before {
  3039. content: "\ebfe";
  3040. }
  3041. .fs-rc_HOME:before {
  3042. content: "\ebff";
  3043. }
  3044. .fs-rc_INFO:before {
  3045. content: "\ec00";
  3046. }
  3047. .fs-rc_INFO2:before {
  3048. content: "\ec01";
  3049. }
  3050. .fs-rc_LEFT:before {
  3051. content: "\ec02";
  3052. }
  3053. .fs-rc_MEDIAMENU:before {
  3054. content: "\ec03";
  3055. }
  3056. .fs-rc_MENU:before {
  3057. content: "\ec04";
  3058. }
  3059. .fs-rc_MINUS:before {
  3060. content: "\ec05";
  3061. }
  3062. .fs-rc_MUTE:before {
  3063. content: "\ec06";
  3064. }
  3065. .fs-rc_NEXT:before {
  3066. content: "\ec07";
  3067. }
  3068. .fs-rc_OK:before {
  3069. content: "\ec08";
  3070. }
  3071. .fs-rc_OPTIONS:before {
  3072. content: "\ec09";
  3073. }
  3074. .fs-rc_PAUSE:before {
  3075. content: "\ec0a";
  3076. }
  3077. .fs-rc_PAUSEyellow:before {
  3078. content: "\ec0b";
  3079. }
  3080. .fs-rc_PAUSEyellow:after {
  3081. content: "\ec0c";
  3082. margin-left: -1em;
  3083. }
  3084. .fs-rc_PAUSEyellow .path3:before {
  3085. content: "\ec0d";
  3086. margin-left: -1em;
  3087. }
  3088. .fs-rc_PAUSEyellow .path4:before {
  3089. content: "\ec0e";
  3090. margin-left: -1em;
  3091. color: rgb(255, 212, 42);
  3092. }
  3093. .fs-rc_PLAY:before {
  3094. content: "\ec0f";
  3095. }
  3096. .fs-rc_PLAYgreen:before {
  3097. content: "\ec10";
  3098. }
  3099. .fs-rc_PLAYgreen:after {
  3100. content: "\ec11";
  3101. margin-left: -1em;
  3102. }
  3103. .fs-rc_PLAYgreen .path3:before {
  3104. content: "\ec12";
  3105. margin-left: -1em;
  3106. color: rgb(0, 128, 0);
  3107. }
  3108. .fs-rc_PLUS:before {
  3109. content: "\ec13";
  3110. }
  3111. .fs-rc_POWER:before {
  3112. content: "\ec14";
  3113. }
  3114. .fs-rc_PREVIOUS:before {
  3115. content: "\ec15";
  3116. }
  3117. .fs-rc_PROG:before {
  3118. content: "\ec16";
  3119. }
  3120. .fs-rc_RADIO:before {
  3121. content: "\ec17";
  3122. }
  3123. .fs-rc_RADIOred:before {
  3124. content: "\ec18";
  3125. }
  3126. .fs-rc_RADIOred:after {
  3127. content: "\ec19";
  3128. margin-left: -1em;
  3129. }
  3130. .fs-rc_RADIOred .path3:before {
  3131. content: "\ec1a";
  3132. margin-left: -1em;
  3133. }
  3134. .fs-rc_RADIOred .path4:before {
  3135. content: "\ec1b";
  3136. margin-left: -1em;
  3137. }
  3138. .fs-rc_RADIOred .path5:before {
  3139. content: "\ec1c";
  3140. margin-left: -1em;
  3141. }
  3142. .fs-rc_RADIOred .path6:before {
  3143. content: "\ec1d";
  3144. margin-left: -1em;
  3145. }
  3146. .fs-rc_RADIOred .path7:before {
  3147. content: "\ec1e";
  3148. margin-left: -1em;
  3149. }
  3150. .fs-rc_RADIOred .path8:before {
  3151. content: "\ec1f";
  3152. margin-left: -1em;
  3153. }
  3154. .fs-rc_RADIOred .path9:before {
  3155. content: "\ec20";
  3156. margin-left: -1em;
  3157. }
  3158. .fs-rc_RADIOred .path10:before {
  3159. content: "\ec21";
  3160. margin-left: -1em;
  3161. }
  3162. .fs-rc_RADIOred .path11:before {
  3163. content: "\ec22";
  3164. margin-left: -1em;
  3165. }
  3166. .fs-rc_RADIOred .path12:before {
  3167. content: "\ec23";
  3168. margin-left: -1em;
  3169. }
  3170. .fs-rc_RADIOred .path13:before {
  3171. content: "\ec24";
  3172. margin-left: -1em;
  3173. }
  3174. .fs-rc_RADIOred .path14:before {
  3175. content: "\ec25";
  3176. margin-left: -1em;
  3177. }
  3178. .fs-rc_RADIOred .path15:before {
  3179. content: "\ec26";
  3180. margin-left: -1em;
  3181. color: rgb(155, 0, 0);
  3182. }
  3183. .fs-rc_RADIOred .path16:before {
  3184. content: "\ec27";
  3185. margin-left: -1em;
  3186. }
  3187. .fs-rc_REC:before {
  3188. content: "\ec28";
  3189. }
  3190. .fs-rc_REC:after {
  3191. content: "\ec29";
  3192. margin-left: -1em;
  3193. color: rgb(155, 0, 0);
  3194. }
  3195. .fs-rc_REC .path3:before {
  3196. content: "\ec2a";
  3197. margin-left: -1em;
  3198. }
  3199. .fs-rc_RED:before {
  3200. content: "\ec2b";
  3201. }
  3202. .fs-rc_RED:after {
  3203. content: "\ec2c";
  3204. margin-left: -1em;
  3205. color: rgb(155, 0, 0);
  3206. }
  3207. .fs-rc_REPEAT:before {
  3208. content: "\ec2d";
  3209. }
  3210. .fs-rc_REW:before {
  3211. content: "\ec2e";
  3212. }
  3213. .fs-rc_REWred:before {
  3214. content: "\ec2f";
  3215. }
  3216. .fs-rc_REWred:after {
  3217. content: "\ec30";
  3218. margin-left: -1em;
  3219. }
  3220. .fs-rc_REWred .path3:before {
  3221. content: "\ec31";
  3222. margin-left: -1em;
  3223. color: rgb(155, 0, 0);
  3224. }
  3225. .fs-rc_RIGHT:before {
  3226. content: "\ec32";
  3227. }
  3228. .fs-rc_SEARCH:before {
  3229. content: "\ec33";
  3230. }
  3231. .fs-rc_SETUP:before {
  3232. content: "\ec34";
  3233. }
  3234. .fs-rc_SHUFFLE:before {
  3235. content: "\ec35";
  3236. }
  3237. .fs-rc_STOP:before {
  3238. content: "\ec36";
  3239. }
  3240. .fs-rc_SUB:before {
  3241. content: "\ec37";
  3242. }
  3243. .fs-rc_templatebutton:before {
  3244. content: "\ec38";
  3245. }
  3246. .fs-rc_TEXT:before {
  3247. content: "\ec39";
  3248. }
  3249. .fs-rc_TV:before {
  3250. content: "\ec3a";
  3251. }
  3252. .fs-rc_TV1_off:before {
  3253. content: "\ec3b";
  3254. color: rgb(132, 133, 133);
  3255. opacity: 0.9835;
  3256. }
  3257. .fs-rc_TV1_off:after {
  3258. content: "\ec3c";
  3259. margin-left: -1em;
  3260. }
  3261. .fs-rc_TV1_off .path3:before {
  3262. content: "\ec3d";
  3263. margin-left: -1em;
  3264. color: rgb(254, 255, 255);
  3265. }
  3266. .fs-rc_TV1_off .path4:before {
  3267. content: "\ec3e";
  3268. margin-left: -1em;
  3269. color: rgb(255, 255, 255);
  3270. }
  3271. .fs-rc_TV1_on:before {
  3272. content: "\ec3f";
  3273. color: rgb(132, 133, 133);
  3274. opacity: 0.9835;
  3275. }
  3276. .fs-rc_TV1_on:after {
  3277. content: "\ec40";
  3278. margin-left: -1em;
  3279. color: rgb(157, 156, 217);
  3280. }
  3281. .fs-rc_TV1_on .path3:before {
  3282. content: "\ec41";
  3283. margin-left: -1em;
  3284. color: rgb(254, 255, 255);
  3285. }
  3286. .fs-rc_TV1_on .path4:before {
  3287. content: "\ec42";
  3288. margin-left: -1em;
  3289. color: rgb(255, 255, 255);
  3290. }
  3291. .fs-rc_TV2:before {
  3292. content: "\ec43";
  3293. }
  3294. .fs-rc_TVstop:before {
  3295. content: "\ec44";
  3296. }
  3297. .fs-rc_TVstop:after {
  3298. content: "\ec45";
  3299. margin-left: -1em;
  3300. }
  3301. .fs-rc_TVstop .path3:before {
  3302. content: "\ec46";
  3303. margin-left: -1em;
  3304. color: rgb(29, 29, 27);
  3305. }
  3306. .fs-rc_UP:before {
  3307. content: "\ec47";
  3308. }
  3309. .fs-rc_USB:before {
  3310. content: "\ec48";
  3311. }
  3312. .fs-rc_VIDEO:before {
  3313. content: "\ec49";
  3314. }
  3315. .fs-rc_VIERA_LINK:before {
  3316. content: "\ec4a";
  3317. }
  3318. .fs-rc_VIERA_TOOLS:before {
  3319. content: "\ec4b";
  3320. }
  3321. .fs-rc_VOL:before {
  3322. content: "\ec4c";
  3323. }
  3324. .fs-rc_VOLDOWN:before {
  3325. content: "\ec4d";
  3326. }
  3327. .fs-rc_VOLMINUS:before {
  3328. content: "\ec4e";
  3329. }
  3330. .fs-rc_VOLPLUS:before {
  3331. content: "\ec4f";
  3332. }
  3333. .fs-rc_VOLUP:before {
  3334. content: "\ec50";
  3335. }
  3336. .fs-rc_WEB:before {
  3337. content: "\ec51";
  3338. }
  3339. .fs-rc_WEB:after {
  3340. content: "\ec52";
  3341. margin-left: -1em;
  3342. }
  3343. .fs-rc_WEB .path3:before {
  3344. content: "\ec53";
  3345. margin-left: -1em;
  3346. opacity: 0.9;
  3347. }
  3348. .fs-rc_WEB .path4:before {
  3349. content: "\ec54";
  3350. margin-left: -1em;
  3351. opacity: 0.9;
  3352. }
  3353. .fs-rc_WEB .path5:before {
  3354. content: "\ec55";
  3355. margin-left: -1em;
  3356. opacity: 0.9;
  3357. }
  3358. .fs-rc_WEB .path6:before {
  3359. content: "\ec56";
  3360. margin-left: -1em;
  3361. opacity: 0.9;
  3362. }
  3363. .fs-rc_WEB .path7:before {
  3364. content: "\ec57";
  3365. margin-left: -1em;
  3366. }
  3367. .fs-rc_WEB .path8:before {
  3368. content: "\ec58";
  3369. margin-left: -1em;
  3370. }
  3371. .fs-rc_WEB .path9:before {
  3372. content: "\ec59";
  3373. margin-left: -1em;
  3374. }
  3375. .fs-rc_WEB .path10:before {
  3376. content: "\ec5a";
  3377. margin-left: -1em;
  3378. }
  3379. .fs-rc_WEB .path11:before {
  3380. content: "\ec5b";
  3381. margin-left: -1em;
  3382. }
  3383. .fs-rc_YELLOW:before {
  3384. content: "\ec5c";
  3385. }
  3386. .fs-rc_YELLOW:after {
  3387. content: "\ec5d";
  3388. margin-left: -1em;
  3389. color: rgb(255, 212, 42);
  3390. }
  3391. .fs-recycling:before {
  3392. content: "\ec5e";
  3393. }
  3394. .fs-refresh:before {
  3395. content: "\ec5f";
  3396. }
  3397. .fs-remote_control:before {
  3398. content: "\ec60";
  3399. }
  3400. .fs-ring:before {
  3401. content: "\ec61";
  3402. }
  3403. .fs-RPi:before {
  3404. content: "\ec62";
  3405. }
  3406. .fs-RPi:after {
  3407. content: "\ec63";
  3408. margin-left: -0.775390625em;
  3409. color: rgb(255, 13, 64);
  3410. }
  3411. .fs-RPi .path3:before {
  3412. content: "\ec64";
  3413. margin-left: -0.775390625em;
  3414. color: rgb(250, 15, 69);
  3415. }
  3416. .fs-RPi .path4:before {
  3417. content: "\ec65";
  3418. margin-left: -0.775390625em;
  3419. color: rgb(255, 255, 255);
  3420. }
  3421. .fs-RPi .path5:before {
  3422. content: "\ec66";
  3423. margin-left: -0.775390625em;
  3424. color: rgb(255, 255, 255);
  3425. }
  3426. .fs-RPi .path6:before {
  3427. content: "\ec67";
  3428. margin-left: -0.775390625em;
  3429. color: rgb(255, 13, 64);
  3430. }
  3431. .fs-RPi .path7:before {
  3432. content: "\ec68";
  3433. margin-left: -0.775390625em;
  3434. color: rgb(250, 15, 69);
  3435. }
  3436. .fs-RPi .path8:before {
  3437. content: "\ec69";
  3438. margin-left: -0.775390625em;
  3439. color: rgb(255, 13, 64);
  3440. }
  3441. .fs-RPi .path9:before {
  3442. content: "\ec6a";
  3443. margin-left: -0.775390625em;
  3444. color: rgb(250, 15, 69);
  3445. }
  3446. .fs-RPi .path10:before {
  3447. content: "\ec6b";
  3448. margin-left: -0.775390625em;
  3449. color: rgb(255, 255, 255);
  3450. }
  3451. .fs-RPi .path11:before {
  3452. content: "\ec6c";
  3453. margin-left: -0.775390625em;
  3454. color: rgb(255, 255, 255);
  3455. }
  3456. .fs-RPi .path12:before {
  3457. content: "\ec6d";
  3458. margin-left: -0.775390625em;
  3459. color: rgb(255, 255, 255);
  3460. }
  3461. .fs-RPi .path13:before {
  3462. content: "\ec6e";
  3463. margin-left: -0.775390625em;
  3464. color: rgb(255, 255, 255);
  3465. }
  3466. .fs-RPi .path14:before {
  3467. content: "\ec6f";
  3468. margin-left: -0.775390625em;
  3469. color: rgb(255, 255, 255);
  3470. }
  3471. .fs-RPi .path15:before {
  3472. content: "\ec70";
  3473. margin-left: -0.775390625em;
  3474. color: rgb(255, 13, 64);
  3475. }
  3476. .fs-RPi .path16:before {
  3477. content: "\ec71";
  3478. margin-left: -0.775390625em;
  3479. color: rgb(250, 15, 69);
  3480. }
  3481. .fs-RPi .path17:before {
  3482. content: "\ec72";
  3483. margin-left: -0.775390625em;
  3484. color: rgb(255, 255, 255);
  3485. }
  3486. .fs-RPi .path18:before {
  3487. content: "\ec73";
  3488. margin-left: -0.775390625em;
  3489. color: rgb(255, 13, 64);
  3490. }
  3491. .fs-RPi .path19:before {
  3492. content: "\ec74";
  3493. margin-left: -0.775390625em;
  3494. color: rgb(250, 15, 69);
  3495. }
  3496. .fs-RPi .path20:before {
  3497. content: "\ec75";
  3498. margin-left: -0.775390625em;
  3499. color: rgb(255, 255, 255);
  3500. }
  3501. .fs-RPi .path21:before {
  3502. content: "\ec76";
  3503. margin-left: -0.775390625em;
  3504. color: rgb(255, 13, 64);
  3505. }
  3506. .fs-RPi .path22:before {
  3507. content: "\ec77";
  3508. margin-left: -0.775390625em;
  3509. color: rgb(250, 15, 69);
  3510. }
  3511. .fs-RPi .path23:before {
  3512. content: "\ec78";
  3513. margin-left: -0.775390625em;
  3514. color: rgb(255, 13, 64);
  3515. }
  3516. .fs-RPi .path24:before {
  3517. content: "\ec79";
  3518. margin-left: -0.775390625em;
  3519. color: rgb(250, 15, 69);
  3520. }
  3521. .fs-RPi .path25:before {
  3522. content: "\ec7a";
  3523. margin-left: -0.775390625em;
  3524. color: rgb(255, 255, 255);
  3525. }
  3526. .fs-RPi .path26:before {
  3527. content: "\ec7b";
  3528. margin-left: -0.775390625em;
  3529. color: rgb(255, 255, 255);
  3530. }
  3531. .fs-RPi .path27:before {
  3532. content: "\ec7c";
  3533. margin-left: -0.775390625em;
  3534. color: rgb(255, 255, 255);
  3535. }
  3536. .fs-RPi .path28:before {
  3537. content: "\ec7d";
  3538. margin-left: -0.775390625em;
  3539. color: rgb(255, 255, 255);
  3540. }
  3541. .fs-sani_floor_heating_neutral:before {
  3542. content: "\ec7e";
  3543. }
  3544. .fs-sani_floor_heating_off:before {
  3545. content: "\ec7f";
  3546. }
  3547. .fs-sani_heating_boost:before {
  3548. content: "\ec80";
  3549. }
  3550. .fs-sani_heating_calendar:before {
  3551. content: "\ec81";
  3552. }
  3553. .fs-sani_heating_level_0:before {
  3554. content: "\ec82";
  3555. }
  3556. .fs-sani_heating_level_10:before {
  3557. content: "\ec83";
  3558. }
  3559. .fs-sani_heating_level_20:before {
  3560. content: "\ec84";
  3561. }
  3562. .fs-sani_heating_level_30:before {
  3563. content: "\ec85";
  3564. }
  3565. .fs-sani_heating_level_40:before {
  3566. content: "\ec86";
  3567. }
  3568. .fs-sani_heating_level_50:before {
  3569. content: "\ec87";
  3570. }
  3571. .fs-sani_heating_level_60:before {
  3572. content: "\ec88";
  3573. }
  3574. .fs-sani_heating_level_70:before {
  3575. content: "\ec89";
  3576. }
  3577. .fs-sani_heating_level_80:before {
  3578. content: "\ec8a";
  3579. }
  3580. .fs-sani_heating_level_90:before {
  3581. content: "\ec8b";
  3582. }
  3583. .fs-sani_heating_level_100:before {
  3584. content: "\ec8c";
  3585. }
  3586. .fs-sani_heating_timer:before {
  3587. content: "\ec8d";
  3588. }
  3589. .fs-scc_868:before {
  3590. content: "\ec8e";
  3591. }
  3592. .fs-sdcard:before {
  3593. content: "\ec8f";
  3594. }
  3595. .fs-security_password:before {
  3596. content: "\ec90";
  3597. }
  3598. .fs-security:before {
  3599. content: "\ec91";
  3600. }
  3601. .fs-socket_timer:before {
  3602. content: "\ec92";
  3603. }
  3604. .fs-sunblind_0:before {
  3605. content: "\ec93";
  3606. }
  3607. .fs-sunblind_10:before {
  3608. content: "\ec94";
  3609. }
  3610. .fs-sunblind_20:before {
  3611. content: "\ec95";
  3612. }
  3613. .fs-sunblind_30:before {
  3614. content: "\ec96";
  3615. }
  3616. .fs-sunblind_40:before {
  3617. content: "\ec97";
  3618. }
  3619. .fs-sunblind_50:before {
  3620. content: "\ec98";
  3621. }
  3622. .fs-sunblind_60:before {
  3623. content: "\ec99";
  3624. }
  3625. .fs-sunblind_70:before {
  3626. content: "\ec9a";
  3627. }
  3628. .fs-sunblind_80:before {
  3629. content: "\ec9b";
  3630. }
  3631. .fs-sunblind_90:before {
  3632. content: "\ec9c";
  3633. }
  3634. .fs-sunblind_100:before {
  3635. content: "\ec9d";
  3636. }
  3637. .fs-system_backup:before {
  3638. content: "\ec9e";
  3639. }
  3640. .fs-system_fhem_reboot:before {
  3641. content: "\ec9f";
  3642. }
  3643. .fs-system_fhem_update:before {
  3644. content: "\eca0";
  3645. }
  3646. .fs-system_fhem:before {
  3647. content: "\eca1";
  3648. }
  3649. .fs-taster_ch_1:before {
  3650. content: "\eca2";
  3651. }
  3652. .fs-taster_ch_2:before {
  3653. content: "\eca3";
  3654. }
  3655. .fs-taster_ch_an_gruen:before {
  3656. content: "\eca4";
  3657. }
  3658. .fs-taster_ch_an_gruen:after {
  3659. content: "\eca5";
  3660. margin-left: -1em;
  3661. }
  3662. .fs-taster_ch_an_gruen .path3:before {
  3663. content: "\eca6";
  3664. margin-left: -1em;
  3665. }
  3666. .fs-taster_ch_an_gruen .path4:before {
  3667. content: "\eca7";
  3668. margin-left: -1em;
  3669. color: rgb(51, 128, 0);
  3670. }
  3671. .fs-taster_ch_an_gruen .path5:before {
  3672. content: "\eca8";
  3673. margin-left: -1em;
  3674. color: rgb(51, 128, 0);
  3675. }
  3676. .fs-taster_ch_aus_rot:before {
  3677. content: "\eca9";
  3678. }
  3679. .fs-taster_ch_aus_rot:after {
  3680. content: "\ecaa";
  3681. margin-left: -1em;
  3682. }
  3683. .fs-taster_ch_aus_rot .path3:before {
  3684. content: "\ecab";
  3685. margin-left: -1em;
  3686. }
  3687. .fs-taster_ch_aus_rot .path4:before {
  3688. content: "\ecac";
  3689. margin-left: -1em;
  3690. color: rgb(212, 0, 0);
  3691. }
  3692. .fs-taster_ch_aus_rot .path5:before {
  3693. content: "\ecad";
  3694. margin-left: -1em;
  3695. color: rgb(212, 0, 0);
  3696. }
  3697. .fs-taster_ch_aus_rot .path6:before {
  3698. content: "\ecae";
  3699. margin-left: -1em;
  3700. color: rgb(212, 0, 0);
  3701. }
  3702. .fs-taster_ch:before {
  3703. content: "\ecaf";
  3704. }
  3705. .fs-taster_ch6_1:before {
  3706. content: "\ecb0";
  3707. }
  3708. .fs-taster_ch6_2:before {
  3709. content: "\ecb1";
  3710. }
  3711. .fs-taster_ch6_3:before {
  3712. content: "\ecb2";
  3713. }
  3714. .fs-taster_ch6_4:before {
  3715. content: "\ecb3";
  3716. }
  3717. .fs-taster_ch6_5:before {
  3718. content: "\ecb4";
  3719. }
  3720. .fs-taster_ch6_6:before {
  3721. content: "\ecb5";
  3722. }
  3723. .fs-taster:before {
  3724. content: "\ecb6";
  3725. }
  3726. .fs-temperature_humidity:before {
  3727. content: "\ecb7";
  3728. }
  3729. .fs-unknown:before {
  3730. content: "\ecb8";
  3731. }
  3732. .fs-usb_stick:before {
  3733. content: "\ecb9";
  3734. }
  3735. .fs-usb:before {
  3736. content: "\ecba";
  3737. }
  3738. .fs-user_unknown:before {
  3739. content: "\ecbb";
  3740. }
  3741. .fs-wuerfel:before {
  3742. content: "\ecbc";
  3743. }