Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

v4-shims.css 40KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172
  1. /*!
  2. * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
  3. * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
  4. */
  5. .fa.fa-glass:before {
  6. content: "\f000"; }
  7. .fa.fa-meetup {
  8. font-family: 'Font Awesome 5 Brands';
  9. font-weight: 400; }
  10. .fa.fa-star-o {
  11. font-family: 'Font Awesome 5 Free';
  12. font-weight: 400; }
  13. .fa.fa-star-o:before {
  14. content: "\f005"; }
  15. .fa.fa-remove:before {
  16. content: "\f00d"; }
  17. .fa.fa-close:before {
  18. content: "\f00d"; }
  19. .fa.fa-gear:before {
  20. content: "\f013"; }
  21. .fa.fa-trash-o {
  22. font-family: 'Font Awesome 5 Free';
  23. font-weight: 400; }
  24. .fa.fa-trash-o:before {
  25. content: "\f2ed"; }
  26. .fa.fa-file-o {
  27. font-family: 'Font Awesome 5 Free';
  28. font-weight: 400; }
  29. .fa.fa-file-o:before {
  30. content: "\f15b"; }
  31. .fa.fa-clock-o {
  32. font-family: 'Font Awesome 5 Free';
  33. font-weight: 400; }
  34. .fa.fa-clock-o:before {
  35. content: "\f017"; }
  36. .fa.fa-arrow-circle-o-down {
  37. font-family: 'Font Awesome 5 Free';
  38. font-weight: 400; }
  39. .fa.fa-arrow-circle-o-down:before {
  40. content: "\f358"; }
  41. .fa.fa-arrow-circle-o-up {
  42. font-family: 'Font Awesome 5 Free';
  43. font-weight: 400; }
  44. .fa.fa-arrow-circle-o-up:before {
  45. content: "\f35b"; }
  46. .fa.fa-play-circle-o {
  47. font-family: 'Font Awesome 5 Free';
  48. font-weight: 400; }
  49. .fa.fa-play-circle-o:before {
  50. content: "\f144"; }
  51. .fa.fa-repeat:before {
  52. content: "\f01e"; }
  53. .fa.fa-rotate-right:before {
  54. content: "\f01e"; }
  55. .fa.fa-refresh:before {
  56. content: "\f021"; }
  57. .fa.fa-list-alt {
  58. font-family: 'Font Awesome 5 Free';
  59. font-weight: 400; }
  60. .fa.fa-dedent:before {
  61. content: "\f03b"; }
  62. .fa.fa-video-camera:before {
  63. content: "\f03d"; }
  64. .fa.fa-picture-o {
  65. font-family: 'Font Awesome 5 Free';
  66. font-weight: 400; }
  67. .fa.fa-picture-o:before {
  68. content: "\f03e"; }
  69. .fa.fa-photo {
  70. font-family: 'Font Awesome 5 Free';
  71. font-weight: 400; }
  72. .fa.fa-photo:before {
  73. content: "\f03e"; }
  74. .fa.fa-image {
  75. font-family: 'Font Awesome 5 Free';
  76. font-weight: 400; }
  77. .fa.fa-image:before {
  78. content: "\f03e"; }
  79. .fa.fa-pencil:before {
  80. content: "\f303"; }
  81. .fa.fa-map-marker:before {
  82. content: "\f3c5"; }
  83. .fa.fa-pencil-square-o {
  84. font-family: 'Font Awesome 5 Free';
  85. font-weight: 400; }
  86. .fa.fa-pencil-square-o:before {
  87. content: "\f044"; }
  88. .fa.fa-share-square-o {
  89. font-family: 'Font Awesome 5 Free';
  90. font-weight: 400; }
  91. .fa.fa-share-square-o:before {
  92. content: "\f14d"; }
  93. .fa.fa-check-square-o {
  94. font-family: 'Font Awesome 5 Free';
  95. font-weight: 400; }
  96. .fa.fa-check-square-o:before {
  97. content: "\f14a"; }
  98. .fa.fa-arrows:before {
  99. content: "\f0b2"; }
  100. .fa.fa-times-circle-o {
  101. font-family: 'Font Awesome 5 Free';
  102. font-weight: 400; }
  103. .fa.fa-times-circle-o:before {
  104. content: "\f057"; }
  105. .fa.fa-check-circle-o {
  106. font-family: 'Font Awesome 5 Free';
  107. font-weight: 400; }
  108. .fa.fa-check-circle-o:before {
  109. content: "\f058"; }
  110. .fa.fa-mail-forward:before {
  111. content: "\f064"; }
  112. .fa.fa-expand:before {
  113. content: "\f424"; }
  114. .fa.fa-compress:before {
  115. content: "\f422"; }
  116. .fa.fa-eye {
  117. font-family: 'Font Awesome 5 Free';
  118. font-weight: 400; }
  119. .fa.fa-eye-slash {
  120. font-family: 'Font Awesome 5 Free';
  121. font-weight: 400; }
  122. .fa.fa-warning:before {
  123. content: "\f071"; }
  124. .fa.fa-calendar:before {
  125. content: "\f073"; }
  126. .fa.fa-arrows-v:before {
  127. content: "\f338"; }
  128. .fa.fa-arrows-h:before {
  129. content: "\f337"; }
  130. .fa.fa-bar-chart {
  131. font-family: 'Font Awesome 5 Free';
  132. font-weight: 400; }
  133. .fa.fa-bar-chart:before {
  134. content: "\f080"; }
  135. .fa.fa-bar-chart-o {
  136. font-family: 'Font Awesome 5 Free';
  137. font-weight: 400; }
  138. .fa.fa-bar-chart-o:before {
  139. content: "\f080"; }
  140. .fa.fa-twitter-square {
  141. font-family: 'Font Awesome 5 Brands';
  142. font-weight: 400; }
  143. .fa.fa-facebook-square {
  144. font-family: 'Font Awesome 5 Brands';
  145. font-weight: 400; }
  146. .fa.fa-gears:before {
  147. content: "\f085"; }
  148. .fa.fa-thumbs-o-up {
  149. font-family: 'Font Awesome 5 Free';
  150. font-weight: 400; }
  151. .fa.fa-thumbs-o-up:before {
  152. content: "\f164"; }
  153. .fa.fa-thumbs-o-down {
  154. font-family: 'Font Awesome 5 Free';
  155. font-weight: 400; }
  156. .fa.fa-thumbs-o-down:before {
  157. content: "\f165"; }
  158. .fa.fa-heart-o {
  159. font-family: 'Font Awesome 5 Free';
  160. font-weight: 400; }
  161. .fa.fa-heart-o:before {
  162. content: "\f004"; }
  163. .fa.fa-sign-out:before {
  164. content: "\f2f5"; }
  165. .fa.fa-linkedin-square {
  166. font-family: 'Font Awesome 5 Brands';
  167. font-weight: 400; }
  168. .fa.fa-linkedin-square:before {
  169. content: "\f08c"; }
  170. .fa.fa-thumb-tack:before {
  171. content: "\f08d"; }
  172. .fa.fa-external-link:before {
  173. content: "\f35d"; }
  174. .fa.fa-sign-in:before {
  175. content: "\f2f6"; }
  176. .fa.fa-github-square {
  177. font-family: 'Font Awesome 5 Brands';
  178. font-weight: 400; }
  179. .fa.fa-lemon-o {
  180. font-family: 'Font Awesome 5 Free';
  181. font-weight: 400; }
  182. .fa.fa-lemon-o:before {
  183. content: "\f094"; }
  184. .fa.fa-square-o {
  185. font-family: 'Font Awesome 5 Free';
  186. font-weight: 400; }
  187. .fa.fa-square-o:before {
  188. content: "\f0c8"; }
  189. .fa.fa-bookmark-o {
  190. font-family: 'Font Awesome 5 Free';
  191. font-weight: 400; }
  192. .fa.fa-bookmark-o:before {
  193. content: "\f02e"; }
  194. .fa.fa-twitter {
  195. font-family: 'Font Awesome 5 Brands';
  196. font-weight: 400; }
  197. .fa.fa-facebook {
  198. font-family: 'Font Awesome 5 Brands';
  199. font-weight: 400; }
  200. .fa.fa-facebook:before {
  201. content: "\f39e"; }
  202. .fa.fa-facebook-f {
  203. font-family: 'Font Awesome 5 Brands';
  204. font-weight: 400; }
  205. .fa.fa-facebook-f:before {
  206. content: "\f39e"; }
  207. .fa.fa-github {
  208. font-family: 'Font Awesome 5 Brands';
  209. font-weight: 400; }
  210. .fa.fa-credit-card {
  211. font-family: 'Font Awesome 5 Free';
  212. font-weight: 400; }
  213. .fa.fa-feed:before {
  214. content: "\f09e"; }
  215. .fa.fa-hdd-o {
  216. font-family: 'Font Awesome 5 Free';
  217. font-weight: 400; }
  218. .fa.fa-hdd-o:before {
  219. content: "\f0a0"; }
  220. .fa.fa-hand-o-right {
  221. font-family: 'Font Awesome 5 Free';
  222. font-weight: 400; }
  223. .fa.fa-hand-o-right:before {
  224. content: "\f0a4"; }
  225. .fa.fa-hand-o-left {
  226. font-family: 'Font Awesome 5 Free';
  227. font-weight: 400; }
  228. .fa.fa-hand-o-left:before {
  229. content: "\f0a5"; }
  230. .fa.fa-hand-o-up {
  231. font-family: 'Font Awesome 5 Free';
  232. font-weight: 400; }
  233. .fa.fa-hand-o-up:before {
  234. content: "\f0a6"; }
  235. .fa.fa-hand-o-down {
  236. font-family: 'Font Awesome 5 Free';
  237. font-weight: 400; }
  238. .fa.fa-hand-o-down:before {
  239. content: "\f0a7"; }
  240. .fa.fa-arrows-alt:before {
  241. content: "\f31e"; }
  242. .fa.fa-group:before {
  243. content: "\f0c0"; }
  244. .fa.fa-chain:before {
  245. content: "\f0c1"; }
  246. .fa.fa-scissors:before {
  247. content: "\f0c4"; }
  248. .fa.fa-files-o {
  249. font-family: 'Font Awesome 5 Free';
  250. font-weight: 400; }
  251. .fa.fa-files-o:before {
  252. content: "\f0c5"; }
  253. .fa.fa-floppy-o {
  254. font-family: 'Font Awesome 5 Free';
  255. font-weight: 400; }
  256. .fa.fa-floppy-o:before {
  257. content: "\f0c7"; }
  258. .fa.fa-navicon:before {
  259. content: "\f0c9"; }
  260. .fa.fa-reorder:before {
  261. content: "\f0c9"; }
  262. .fa.fa-pinterest {
  263. font-family: 'Font Awesome 5 Brands';
  264. font-weight: 400; }
  265. .fa.fa-pinterest-square {
  266. font-family: 'Font Awesome 5 Brands';
  267. font-weight: 400; }
  268. .fa.fa-google-plus-square {
  269. font-family: 'Font Awesome 5 Brands';
  270. font-weight: 400; }
  271. .fa.fa-google-plus {
  272. font-family: 'Font Awesome 5 Brands';
  273. font-weight: 400; }
  274. .fa.fa-google-plus:before {
  275. content: "\f0d5"; }
  276. .fa.fa-money {
  277. font-family: 'Font Awesome 5 Free';
  278. font-weight: 400; }
  279. .fa.fa-money:before {
  280. content: "\f3d1"; }
  281. .fa.fa-unsorted:before {
  282. content: "\f0dc"; }
  283. .fa.fa-sort-desc:before {
  284. content: "\f0dd"; }
  285. .fa.fa-sort-asc:before {
  286. content: "\f0de"; }
  287. .fa.fa-linkedin {
  288. font-family: 'Font Awesome 5 Brands';
  289. font-weight: 400; }
  290. .fa.fa-linkedin:before {
  291. content: "\f0e1"; }
  292. .fa.fa-rotate-left:before {
  293. content: "\f0e2"; }
  294. .fa.fa-legal:before {
  295. content: "\f0e3"; }
  296. .fa.fa-tachometer:before {
  297. content: "\f3fd"; }
  298. .fa.fa-dashboard:before {
  299. content: "\f3fd"; }
  300. .fa.fa-comment-o {
  301. font-family: 'Font Awesome 5 Free';
  302. font-weight: 400; }
  303. .fa.fa-comment-o:before {
  304. content: "\f075"; }
  305. .fa.fa-comments-o {
  306. font-family: 'Font Awesome 5 Free';
  307. font-weight: 400; }
  308. .fa.fa-comments-o:before {
  309. content: "\f086"; }
  310. .fa.fa-flash:before {
  311. content: "\f0e7"; }
  312. .fa.fa-clipboard {
  313. font-family: 'Font Awesome 5 Free';
  314. font-weight: 400; }
  315. .fa.fa-paste {
  316. font-family: 'Font Awesome 5 Free';
  317. font-weight: 400; }
  318. .fa.fa-paste:before {
  319. content: "\f328"; }
  320. .fa.fa-lightbulb-o {
  321. font-family: 'Font Awesome 5 Free';
  322. font-weight: 400; }
  323. .fa.fa-lightbulb-o:before {
  324. content: "\f0eb"; }
  325. .fa.fa-exchange:before {
  326. content: "\f362"; }
  327. .fa.fa-cloud-download:before {
  328. content: "\f381"; }
  329. .fa.fa-cloud-upload:before {
  330. content: "\f382"; }
  331. .fa.fa-bell-o {
  332. font-family: 'Font Awesome 5 Free';
  333. font-weight: 400; }
  334. .fa.fa-bell-o:before {
  335. content: "\f0f3"; }
  336. .fa.fa-cutlery:before {
  337. content: "\f2e7"; }
  338. .fa.fa-file-text-o {
  339. font-family: 'Font Awesome 5 Free';
  340. font-weight: 400; }
  341. .fa.fa-file-text-o:before {
  342. content: "\f15c"; }
  343. .fa.fa-building-o {
  344. font-family: 'Font Awesome 5 Free';
  345. font-weight: 400; }
  346. .fa.fa-building-o:before {
  347. content: "\f1ad"; }
  348. .fa.fa-hospital-o {
  349. font-family: 'Font Awesome 5 Free';
  350. font-weight: 400; }
  351. .fa.fa-hospital-o:before {
  352. content: "\f0f8"; }
  353. .fa.fa-tablet:before {
  354. content: "\f3fa"; }
  355. .fa.fa-mobile:before {
  356. content: "\f3cd"; }
  357. .fa.fa-mobile-phone:before {
  358. content: "\f3cd"; }
  359. .fa.fa-circle-o {
  360. font-family: 'Font Awesome 5 Free';
  361. font-weight: 400; }
  362. .fa.fa-circle-o:before {
  363. content: "\f111"; }
  364. .fa.fa-mail-reply:before {
  365. content: "\f3e5"; }
  366. .fa.fa-github-alt {
  367. font-family: 'Font Awesome 5 Brands';
  368. font-weight: 400; }
  369. .fa.fa-folder-o {
  370. font-family: 'Font Awesome 5 Free';
  371. font-weight: 400; }
  372. .fa.fa-folder-o:before {
  373. content: "\f07b"; }
  374. .fa.fa-folder-open-o {
  375. font-family: 'Font Awesome 5 Free';
  376. font-weight: 400; }
  377. .fa.fa-folder-open-o:before {
  378. content: "\f07c"; }
  379. .fa.fa-smile-o {
  380. font-family: 'Font Awesome 5 Free';
  381. font-weight: 400; }
  382. .fa.fa-smile-o:before {
  383. content: "\f118"; }
  384. .fa.fa-frown-o {
  385. font-family: 'Font Awesome 5 Free';
  386. font-weight: 400; }
  387. .fa.fa-frown-o:before {
  388. content: "\f119"; }
  389. .fa.fa-meh-o {
  390. font-family: 'Font Awesome 5 Free';
  391. font-weight: 400; }
  392. .fa.fa-meh-o:before {
  393. content: "\f11a"; }
  394. .fa.fa-keyboard-o {
  395. font-family: 'Font Awesome 5 Free';
  396. font-weight: 400; }
  397. .fa.fa-keyboard-o:before {
  398. content: "\f11c"; }
  399. .fa.fa-flag-o {
  400. font-family: 'Font Awesome 5 Free';
  401. font-weight: 400; }
  402. .fa.fa-flag-o:before {
  403. content: "\f024"; }
  404. .fa.fa-mail-reply-all:before {
  405. content: "\f122"; }
  406. .fa.fa-star-half-o {
  407. font-family: 'Font Awesome 5 Free';
  408. font-weight: 400; }
  409. .fa.fa-star-half-o:before {
  410. content: "\f089"; }
  411. .fa.fa-star-half-empty {
  412. font-family: 'Font Awesome 5 Free';
  413. font-weight: 400; }
  414. .fa.fa-star-half-empty:before {
  415. content: "\f089"; }
  416. .fa.fa-star-half-full {
  417. font-family: 'Font Awesome 5 Free';
  418. font-weight: 400; }
  419. .fa.fa-star-half-full:before {
  420. content: "\f089"; }
  421. .fa.fa-code-fork:before {
  422. content: "\f126"; }
  423. .fa.fa-chain-broken:before {
  424. content: "\f127"; }
  425. .fa.fa-shield:before {
  426. content: "\f3ed"; }
  427. .fa.fa-calendar-o {
  428. font-family: 'Font Awesome 5 Free';
  429. font-weight: 400; }
  430. .fa.fa-calendar-o:before {
  431. content: "\f133"; }
  432. .fa.fa-maxcdn {
  433. font-family: 'Font Awesome 5 Brands';
  434. font-weight: 400; }
  435. .fa.fa-html5 {
  436. font-family: 'Font Awesome 5 Brands';
  437. font-weight: 400; }
  438. .fa.fa-css3 {
  439. font-family: 'Font Awesome 5 Brands';
  440. font-weight: 400; }
  441. .fa.fa-ticket:before {
  442. content: "\f3ff"; }
  443. .fa.fa-minus-square-o {
  444. font-family: 'Font Awesome 5 Free';
  445. font-weight: 400; }
  446. .fa.fa-minus-square-o:before {
  447. content: "\f146"; }
  448. .fa.fa-level-up:before {
  449. content: "\f3bf"; }
  450. .fa.fa-level-down:before {
  451. content: "\f3be"; }
  452. .fa.fa-pencil-square:before {
  453. content: "\f14b"; }
  454. .fa.fa-external-link-square:before {
  455. content: "\f360"; }
  456. .fa.fa-compass {
  457. font-family: 'Font Awesome 5 Free';
  458. font-weight: 400; }
  459. .fa.fa-caret-square-o-down {
  460. font-family: 'Font Awesome 5 Free';
  461. font-weight: 400; }
  462. .fa.fa-caret-square-o-down:before {
  463. content: "\f150"; }
  464. .fa.fa-toggle-down {
  465. font-family: 'Font Awesome 5 Free';
  466. font-weight: 400; }
  467. .fa.fa-toggle-down:before {
  468. content: "\f150"; }
  469. .fa.fa-caret-square-o-up {
  470. font-family: 'Font Awesome 5 Free';
  471. font-weight: 400; }
  472. .fa.fa-caret-square-o-up:before {
  473. content: "\f151"; }
  474. .fa.fa-toggle-up {
  475. font-family: 'Font Awesome 5 Free';
  476. font-weight: 400; }
  477. .fa.fa-toggle-up:before {
  478. content: "\f151"; }
  479. .fa.fa-caret-square-o-right {
  480. font-family: 'Font Awesome 5 Free';
  481. font-weight: 400; }
  482. .fa.fa-caret-square-o-right:before {
  483. content: "\f152"; }
  484. .fa.fa-toggle-right {
  485. font-family: 'Font Awesome 5 Free';
  486. font-weight: 400; }
  487. .fa.fa-toggle-right:before {
  488. content: "\f152"; }
  489. .fa.fa-eur:before {
  490. content: "\f153"; }
  491. .fa.fa-euro:before {
  492. content: "\f153"; }
  493. .fa.fa-gbp:before {
  494. content: "\f154"; }
  495. .fa.fa-usd:before {
  496. content: "\f155"; }
  497. .fa.fa-dollar:before {
  498. content: "\f155"; }
  499. .fa.fa-inr:before {
  500. content: "\f156"; }
  501. .fa.fa-rupee:before {
  502. content: "\f156"; }
  503. .fa.fa-jpy:before {
  504. content: "\f157"; }
  505. .fa.fa-cny:before {
  506. content: "\f157"; }
  507. .fa.fa-rmb:before {
  508. content: "\f157"; }
  509. .fa.fa-yen:before {
  510. content: "\f157"; }
  511. .fa.fa-rub:before {
  512. content: "\f158"; }
  513. .fa.fa-ruble:before {
  514. content: "\f158"; }
  515. .fa.fa-rouble:before {
  516. content: "\f158"; }
  517. .fa.fa-krw:before {
  518. content: "\f159"; }
  519. .fa.fa-won:before {
  520. content: "\f159"; }
  521. .fa.fa-btc {
  522. font-family: 'Font Awesome 5 Brands';
  523. font-weight: 400; }
  524. .fa.fa-bitcoin {
  525. font-family: 'Font Awesome 5 Brands';
  526. font-weight: 400; }
  527. .fa.fa-bitcoin:before {
  528. content: "\f15a"; }
  529. .fa.fa-file-text:before {
  530. content: "\f15c"; }
  531. .fa.fa-sort-alpha-asc:before {
  532. content: "\f15d"; }
  533. .fa.fa-sort-alpha-desc:before {
  534. content: "\f881"; }
  535. .fa.fa-sort-amount-asc:before {
  536. content: "\f160"; }
  537. .fa.fa-sort-amount-desc:before {
  538. content: "\f884"; }
  539. .fa.fa-sort-numeric-asc:before {
  540. content: "\f162"; }
  541. .fa.fa-sort-numeric-desc:before {
  542. content: "\f886"; }
  543. .fa.fa-youtube-square {
  544. font-family: 'Font Awesome 5 Brands';
  545. font-weight: 400; }
  546. .fa.fa-youtube {
  547. font-family: 'Font Awesome 5 Brands';
  548. font-weight: 400; }
  549. .fa.fa-xing {
  550. font-family: 'Font Awesome 5 Brands';
  551. font-weight: 400; }
  552. .fa.fa-xing-square {
  553. font-family: 'Font Awesome 5 Brands';
  554. font-weight: 400; }
  555. .fa.fa-youtube-play {
  556. font-family: 'Font Awesome 5 Brands';
  557. font-weight: 400; }
  558. .fa.fa-youtube-play:before {
  559. content: "\f167"; }
  560. .fa.fa-dropbox {
  561. font-family: 'Font Awesome 5 Brands';
  562. font-weight: 400; }
  563. .fa.fa-stack-overflow {
  564. font-family: 'Font Awesome 5 Brands';
  565. font-weight: 400; }
  566. .fa.fa-instagram {
  567. font-family: 'Font Awesome 5 Brands';
  568. font-weight: 400; }
  569. .fa.fa-flickr {
  570. font-family: 'Font Awesome 5 Brands';
  571. font-weight: 400; }
  572. .fa.fa-adn {
  573. font-family: 'Font Awesome 5 Brands';
  574. font-weight: 400; }
  575. .fa.fa-bitbucket {
  576. font-family: 'Font Awesome 5 Brands';
  577. font-weight: 400; }
  578. .fa.fa-bitbucket-square {
  579. font-family: 'Font Awesome 5 Brands';
  580. font-weight: 400; }
  581. .fa.fa-bitbucket-square:before {
  582. content: "\f171"; }
  583. .fa.fa-tumblr {
  584. font-family: 'Font Awesome 5 Brands';
  585. font-weight: 400; }
  586. .fa.fa-tumblr-square {
  587. font-family: 'Font Awesome 5 Brands';
  588. font-weight: 400; }
  589. .fa.fa-long-arrow-down:before {
  590. content: "\f309"; }
  591. .fa.fa-long-arrow-up:before {
  592. content: "\f30c"; }
  593. .fa.fa-long-arrow-left:before {
  594. content: "\f30a"; }
  595. .fa.fa-long-arrow-right:before {
  596. content: "\f30b"; }
  597. .fa.fa-apple {
  598. font-family: 'Font Awesome 5 Brands';
  599. font-weight: 400; }
  600. .fa.fa-windows {
  601. font-family: 'Font Awesome 5 Brands';
  602. font-weight: 400; }
  603. .fa.fa-android {
  604. font-family: 'Font Awesome 5 Brands';
  605. font-weight: 400; }
  606. .fa.fa-linux {
  607. font-family: 'Font Awesome 5 Brands';
  608. font-weight: 400; }
  609. .fa.fa-dribbble {
  610. font-family: 'Font Awesome 5 Brands';
  611. font-weight: 400; }
  612. .fa.fa-skype {
  613. font-family: 'Font Awesome 5 Brands';
  614. font-weight: 400; }
  615. .fa.fa-foursquare {
  616. font-family: 'Font Awesome 5 Brands';
  617. font-weight: 400; }
  618. .fa.fa-trello {
  619. font-family: 'Font Awesome 5 Brands';
  620. font-weight: 400; }
  621. .fa.fa-gratipay {
  622. font-family: 'Font Awesome 5 Brands';
  623. font-weight: 400; }
  624. .fa.fa-gittip {
  625. font-family: 'Font Awesome 5 Brands';
  626. font-weight: 400; }
  627. .fa.fa-gittip:before {
  628. content: "\f184"; }
  629. .fa.fa-sun-o {
  630. font-family: 'Font Awesome 5 Free';
  631. font-weight: 400; }
  632. .fa.fa-sun-o:before {
  633. content: "\f185"; }
  634. .fa.fa-moon-o {
  635. font-family: 'Font Awesome 5 Free';
  636. font-weight: 400; }
  637. .fa.fa-moon-o:before {
  638. content: "\f186"; }
  639. .fa.fa-vk {
  640. font-family: 'Font Awesome 5 Brands';
  641. font-weight: 400; }
  642. .fa.fa-weibo {
  643. font-family: 'Font Awesome 5 Brands';
  644. font-weight: 400; }
  645. .fa.fa-renren {
  646. font-family: 'Font Awesome 5 Brands';
  647. font-weight: 400; }
  648. .fa.fa-pagelines {
  649. font-family: 'Font Awesome 5 Brands';
  650. font-weight: 400; }
  651. .fa.fa-stack-exchange {
  652. font-family: 'Font Awesome 5 Brands';
  653. font-weight: 400; }
  654. .fa.fa-arrow-circle-o-right {
  655. font-family: 'Font Awesome 5 Free';
  656. font-weight: 400; }
  657. .fa.fa-arrow-circle-o-right:before {
  658. content: "\f35a"; }
  659. .fa.fa-arrow-circle-o-left {
  660. font-family: 'Font Awesome 5 Free';
  661. font-weight: 400; }
  662. .fa.fa-arrow-circle-o-left:before {
  663. content: "\f359"; }
  664. .fa.fa-caret-square-o-left {
  665. font-family: 'Font Awesome 5 Free';
  666. font-weight: 400; }
  667. .fa.fa-caret-square-o-left:before {
  668. content: "\f191"; }
  669. .fa.fa-toggle-left {
  670. font-family: 'Font Awesome 5 Free';
  671. font-weight: 400; }
  672. .fa.fa-toggle-left:before {
  673. content: "\f191"; }
  674. .fa.fa-dot-circle-o {
  675. font-family: 'Font Awesome 5 Free';
  676. font-weight: 400; }
  677. .fa.fa-dot-circle-o:before {
  678. content: "\f192"; }
  679. .fa.fa-vimeo-square {
  680. font-family: 'Font Awesome 5 Brands';
  681. font-weight: 400; }
  682. .fa.fa-try:before {
  683. content: "\f195"; }
  684. .fa.fa-turkish-lira:before {
  685. content: "\f195"; }
  686. .fa.fa-plus-square-o {
  687. font-family: 'Font Awesome 5 Free';
  688. font-weight: 400; }
  689. .fa.fa-plus-square-o:before {
  690. content: "\f0fe"; }
  691. .fa.fa-slack {
  692. font-family: 'Font Awesome 5 Brands';
  693. font-weight: 400; }
  694. .fa.fa-wordpress {
  695. font-family: 'Font Awesome 5 Brands';
  696. font-weight: 400; }
  697. .fa.fa-openid {
  698. font-family: 'Font Awesome 5 Brands';
  699. font-weight: 400; }
  700. .fa.fa-institution:before {
  701. content: "\f19c"; }
  702. .fa.fa-bank:before {
  703. content: "\f19c"; }
  704. .fa.fa-mortar-board:before {
  705. content: "\f19d"; }
  706. .fa.fa-yahoo {
  707. font-family: 'Font Awesome 5 Brands';
  708. font-weight: 400; }
  709. .fa.fa-google {
  710. font-family: 'Font Awesome 5 Brands';
  711. font-weight: 400; }
  712. .fa.fa-reddit {
  713. font-family: 'Font Awesome 5 Brands';
  714. font-weight: 400; }
  715. .fa.fa-reddit-square {
  716. font-family: 'Font Awesome 5 Brands';
  717. font-weight: 400; }
  718. .fa.fa-stumbleupon-circle {
  719. font-family: 'Font Awesome 5 Brands';
  720. font-weight: 400; }
  721. .fa.fa-stumbleupon {
  722. font-family: 'Font Awesome 5 Brands';
  723. font-weight: 400; }
  724. .fa.fa-delicious {
  725. font-family: 'Font Awesome 5 Brands';
  726. font-weight: 400; }
  727. .fa.fa-digg {
  728. font-family: 'Font Awesome 5 Brands';
  729. font-weight: 400; }
  730. .fa.fa-pied-piper-pp {
  731. font-family: 'Font Awesome 5 Brands';
  732. font-weight: 400; }
  733. .fa.fa-pied-piper-alt {
  734. font-family: 'Font Awesome 5 Brands';
  735. font-weight: 400; }
  736. .fa.fa-drupal {
  737. font-family: 'Font Awesome 5 Brands';
  738. font-weight: 400; }
  739. .fa.fa-joomla {
  740. font-family: 'Font Awesome 5 Brands';
  741. font-weight: 400; }
  742. .fa.fa-spoon:before {
  743. content: "\f2e5"; }
  744. .fa.fa-behance {
  745. font-family: 'Font Awesome 5 Brands';
  746. font-weight: 400; }
  747. .fa.fa-behance-square {
  748. font-family: 'Font Awesome 5 Brands';
  749. font-weight: 400; }
  750. .fa.fa-steam {
  751. font-family: 'Font Awesome 5 Brands';
  752. font-weight: 400; }
  753. .fa.fa-steam-square {
  754. font-family: 'Font Awesome 5 Brands';
  755. font-weight: 400; }
  756. .fa.fa-automobile:before {
  757. content: "\f1b9"; }
  758. .fa.fa-envelope-o {
  759. font-family: 'Font Awesome 5 Free';
  760. font-weight: 400; }
  761. .fa.fa-envelope-o:before {
  762. content: "\f0e0"; }
  763. .fa.fa-spotify {
  764. font-family: 'Font Awesome 5 Brands';
  765. font-weight: 400; }
  766. .fa.fa-deviantart {
  767. font-family: 'Font Awesome 5 Brands';
  768. font-weight: 400; }
  769. .fa.fa-soundcloud {
  770. font-family: 'Font Awesome 5 Brands';
  771. font-weight: 400; }
  772. .fa.fa-file-pdf-o {
  773. font-family: 'Font Awesome 5 Free';
  774. font-weight: 400; }
  775. .fa.fa-file-pdf-o:before {
  776. content: "\f1c1"; }
  777. .fa.fa-file-word-o {
  778. font-family: 'Font Awesome 5 Free';
  779. font-weight: 400; }
  780. .fa.fa-file-word-o:before {
  781. content: "\f1c2"; }
  782. .fa.fa-file-excel-o {
  783. font-family: 'Font Awesome 5 Free';
  784. font-weight: 400; }
  785. .fa.fa-file-excel-o:before {
  786. content: "\f1c3"; }
  787. .fa.fa-file-powerpoint-o {
  788. font-family: 'Font Awesome 5 Free';
  789. font-weight: 400; }
  790. .fa.fa-file-powerpoint-o:before {
  791. content: "\f1c4"; }
  792. .fa.fa-file-image-o {
  793. font-family: 'Font Awesome 5 Free';
  794. font-weight: 400; }
  795. .fa.fa-file-image-o:before {
  796. content: "\f1c5"; }
  797. .fa.fa-file-photo-o {
  798. font-family: 'Font Awesome 5 Free';
  799. font-weight: 400; }
  800. .fa.fa-file-photo-o:before {
  801. content: "\f1c5"; }
  802. .fa.fa-file-picture-o {
  803. font-family: 'Font Awesome 5 Free';
  804. font-weight: 400; }
  805. .fa.fa-file-picture-o:before {
  806. content: "\f1c5"; }
  807. .fa.fa-file-archive-o {
  808. font-family: 'Font Awesome 5 Free';
  809. font-weight: 400; }
  810. .fa.fa-file-archive-o:before {
  811. content: "\f1c6"; }
  812. .fa.fa-file-zip-o {
  813. font-family: 'Font Awesome 5 Free';
  814. font-weight: 400; }
  815. .fa.fa-file-zip-o:before {
  816. content: "\f1c6"; }
  817. .fa.fa-file-audio-o {
  818. font-family: 'Font Awesome 5 Free';
  819. font-weight: 400; }
  820. .fa.fa-file-audio-o:before {
  821. content: "\f1c7"; }
  822. .fa.fa-file-sound-o {
  823. font-family: 'Font Awesome 5 Free';
  824. font-weight: 400; }
  825. .fa.fa-file-sound-o:before {
  826. content: "\f1c7"; }
  827. .fa.fa-file-video-o {
  828. font-family: 'Font Awesome 5 Free';
  829. font-weight: 400; }
  830. .fa.fa-file-video-o:before {
  831. content: "\f1c8"; }
  832. .fa.fa-file-movie-o {
  833. font-family: 'Font Awesome 5 Free';
  834. font-weight: 400; }
  835. .fa.fa-file-movie-o:before {
  836. content: "\f1c8"; }
  837. .fa.fa-file-code-o {
  838. font-family: 'Font Awesome 5 Free';
  839. font-weight: 400; }
  840. .fa.fa-file-code-o:before {
  841. content: "\f1c9"; }
  842. .fa.fa-vine {
  843. font-family: 'Font Awesome 5 Brands';
  844. font-weight: 400; }
  845. .fa.fa-codepen {
  846. font-family: 'Font Awesome 5 Brands';
  847. font-weight: 400; }
  848. .fa.fa-jsfiddle {
  849. font-family: 'Font Awesome 5 Brands';
  850. font-weight: 400; }
  851. .fa.fa-life-ring {
  852. font-family: 'Font Awesome 5 Free';
  853. font-weight: 400; }
  854. .fa.fa-life-bouy {
  855. font-family: 'Font Awesome 5 Free';
  856. font-weight: 400; }
  857. .fa.fa-life-bouy:before {
  858. content: "\f1cd"; }
  859. .fa.fa-life-buoy {
  860. font-family: 'Font Awesome 5 Free';
  861. font-weight: 400; }
  862. .fa.fa-life-buoy:before {
  863. content: "\f1cd"; }
  864. .fa.fa-life-saver {
  865. font-family: 'Font Awesome 5 Free';
  866. font-weight: 400; }
  867. .fa.fa-life-saver:before {
  868. content: "\f1cd"; }
  869. .fa.fa-support {
  870. font-family: 'Font Awesome 5 Free';
  871. font-weight: 400; }
  872. .fa.fa-support:before {
  873. content: "\f1cd"; }
  874. .fa.fa-circle-o-notch:before {
  875. content: "\f1ce"; }
  876. .fa.fa-rebel {
  877. font-family: 'Font Awesome 5 Brands';
  878. font-weight: 400; }
  879. .fa.fa-ra {
  880. font-family: 'Font Awesome 5 Brands';
  881. font-weight: 400; }
  882. .fa.fa-ra:before {
  883. content: "\f1d0"; }
  884. .fa.fa-resistance {
  885. font-family: 'Font Awesome 5 Brands';
  886. font-weight: 400; }
  887. .fa.fa-resistance:before {
  888. content: "\f1d0"; }
  889. .fa.fa-empire {
  890. font-family: 'Font Awesome 5 Brands';
  891. font-weight: 400; }
  892. .fa.fa-ge {
  893. font-family: 'Font Awesome 5 Brands';
  894. font-weight: 400; }
  895. .fa.fa-ge:before {
  896. content: "\f1d1"; }
  897. .fa.fa-git-square {
  898. font-family: 'Font Awesome 5 Brands';
  899. font-weight: 400; }
  900. .fa.fa-git {
  901. font-family: 'Font Awesome 5 Brands';
  902. font-weight: 400; }
  903. .fa.fa-hacker-news {
  904. font-family: 'Font Awesome 5 Brands';
  905. font-weight: 400; }
  906. .fa.fa-y-combinator-square {
  907. font-family: 'Font Awesome 5 Brands';
  908. font-weight: 400; }
  909. .fa.fa-y-combinator-square:before {
  910. content: "\f1d4"; }
  911. .fa.fa-yc-square {
  912. font-family: 'Font Awesome 5 Brands';
  913. font-weight: 400; }
  914. .fa.fa-yc-square:before {
  915. content: "\f1d4"; }
  916. .fa.fa-tencent-weibo {
  917. font-family: 'Font Awesome 5 Brands';
  918. font-weight: 400; }
  919. .fa.fa-qq {
  920. font-family: 'Font Awesome 5 Brands';
  921. font-weight: 400; }
  922. .fa.fa-weixin {
  923. font-family: 'Font Awesome 5 Brands';
  924. font-weight: 400; }
  925. .fa.fa-wechat {
  926. font-family: 'Font Awesome 5 Brands';
  927. font-weight: 400; }
  928. .fa.fa-wechat:before {
  929. content: "\f1d7"; }
  930. .fa.fa-send:before {
  931. content: "\f1d8"; }
  932. .fa.fa-paper-plane-o {
  933. font-family: 'Font Awesome 5 Free';
  934. font-weight: 400; }
  935. .fa.fa-paper-plane-o:before {
  936. content: "\f1d8"; }
  937. .fa.fa-send-o {
  938. font-family: 'Font Awesome 5 Free';
  939. font-weight: 400; }
  940. .fa.fa-send-o:before {
  941. content: "\f1d8"; }
  942. .fa.fa-circle-thin {
  943. font-family: 'Font Awesome 5 Free';
  944. font-weight: 400; }
  945. .fa.fa-circle-thin:before {
  946. content: "\f111"; }
  947. .fa.fa-header:before {
  948. content: "\f1dc"; }
  949. .fa.fa-sliders:before {
  950. content: "\f1de"; }
  951. .fa.fa-futbol-o {
  952. font-family: 'Font Awesome 5 Free';
  953. font-weight: 400; }
  954. .fa.fa-futbol-o:before {
  955. content: "\f1e3"; }
  956. .fa.fa-soccer-ball-o {
  957. font-family: 'Font Awesome 5 Free';
  958. font-weight: 400; }
  959. .fa.fa-soccer-ball-o:before {
  960. content: "\f1e3"; }
  961. .fa.fa-slideshare {
  962. font-family: 'Font Awesome 5 Brands';
  963. font-weight: 400; }
  964. .fa.fa-twitch {
  965. font-family: 'Font Awesome 5 Brands';
  966. font-weight: 400; }
  967. .fa.fa-yelp {
  968. font-family: 'Font Awesome 5 Brands';
  969. font-weight: 400; }
  970. .fa.fa-newspaper-o {
  971. font-family: 'Font Awesome 5 Free';
  972. font-weight: 400; }
  973. .fa.fa-newspaper-o:before {
  974. content: "\f1ea"; }
  975. .fa.fa-paypal {
  976. font-family: 'Font Awesome 5 Brands';
  977. font-weight: 400; }
  978. .fa.fa-google-wallet {
  979. font-family: 'Font Awesome 5 Brands';
  980. font-weight: 400; }
  981. .fa.fa-cc-visa {
  982. font-family: 'Font Awesome 5 Brands';
  983. font-weight: 400; }
  984. .fa.fa-cc-mastercard {
  985. font-family: 'Font Awesome 5 Brands';
  986. font-weight: 400; }
  987. .fa.fa-cc-discover {
  988. font-family: 'Font Awesome 5 Brands';
  989. font-weight: 400; }
  990. .fa.fa-cc-amex {
  991. font-family: 'Font Awesome 5 Brands';
  992. font-weight: 400; }
  993. .fa.fa-cc-paypal {
  994. font-family: 'Font Awesome 5 Brands';
  995. font-weight: 400; }
  996. .fa.fa-cc-stripe {
  997. font-family: 'Font Awesome 5 Brands';
  998. font-weight: 400; }
  999. .fa.fa-bell-slash-o {
  1000. font-family: 'Font Awesome 5 Free';
  1001. font-weight: 400; }
  1002. .fa.fa-bell-slash-o:before {
  1003. content: "\f1f6"; }
  1004. .fa.fa-trash:before {
  1005. content: "\f2ed"; }
  1006. .fa.fa-copyright {
  1007. font-family: 'Font Awesome 5 Free';
  1008. font-weight: 400; }
  1009. .fa.fa-eyedropper:before {
  1010. content: "\f1fb"; }
  1011. .fa.fa-area-chart:before {
  1012. content: "\f1fe"; }
  1013. .fa.fa-pie-chart:before {
  1014. content: "\f200"; }
  1015. .fa.fa-line-chart:before {
  1016. content: "\f201"; }
  1017. .fa.fa-lastfm {
  1018. font-family: 'Font Awesome 5 Brands';
  1019. font-weight: 400; }
  1020. .fa.fa-lastfm-square {
  1021. font-family: 'Font Awesome 5 Brands';
  1022. font-weight: 400; }
  1023. .fa.fa-ioxhost {
  1024. font-family: 'Font Awesome 5 Brands';
  1025. font-weight: 400; }
  1026. .fa.fa-angellist {
  1027. font-family: 'Font Awesome 5 Brands';
  1028. font-weight: 400; }
  1029. .fa.fa-cc {
  1030. font-family: 'Font Awesome 5 Free';
  1031. font-weight: 400; }
  1032. .fa.fa-cc:before {
  1033. content: "\f20a"; }
  1034. .fa.fa-ils:before {
  1035. content: "\f20b"; }
  1036. .fa.fa-shekel:before {
  1037. content: "\f20b"; }
  1038. .fa.fa-sheqel:before {
  1039. content: "\f20b"; }
  1040. .fa.fa-meanpath {
  1041. font-family: 'Font Awesome 5 Brands';
  1042. font-weight: 400; }
  1043. .fa.fa-meanpath:before {
  1044. content: "\f2b4"; }
  1045. .fa.fa-buysellads {
  1046. font-family: 'Font Awesome 5 Brands';
  1047. font-weight: 400; }
  1048. .fa.fa-connectdevelop {
  1049. font-family: 'Font Awesome 5 Brands';
  1050. font-weight: 400; }
  1051. .fa.fa-dashcube {
  1052. font-family: 'Font Awesome 5 Brands';
  1053. font-weight: 400; }
  1054. .fa.fa-forumbee {
  1055. font-family: 'Font Awesome 5 Brands';
  1056. font-weight: 400; }
  1057. .fa.fa-leanpub {
  1058. font-family: 'Font Awesome 5 Brands';
  1059. font-weight: 400; }
  1060. .fa.fa-sellsy {
  1061. font-family: 'Font Awesome 5 Brands';
  1062. font-weight: 400; }
  1063. .fa.fa-shirtsinbulk {
  1064. font-family: 'Font Awesome 5 Brands';
  1065. font-weight: 400; }
  1066. .fa.fa-simplybuilt {
  1067. font-family: 'Font Awesome 5 Brands';
  1068. font-weight: 400; }
  1069. .fa.fa-skyatlas {
  1070. font-family: 'Font Awesome 5 Brands';
  1071. font-weight: 400; }
  1072. .fa.fa-diamond {
  1073. font-family: 'Font Awesome 5 Free';
  1074. font-weight: 400; }
  1075. .fa.fa-diamond:before {
  1076. content: "\f3a5"; }
  1077. .fa.fa-intersex:before {
  1078. content: "\f224"; }
  1079. .fa.fa-facebook-official {
  1080. font-family: 'Font Awesome 5 Brands';
  1081. font-weight: 400; }
  1082. .fa.fa-facebook-official:before {
  1083. content: "\f09a"; }
  1084. .fa.fa-pinterest-p {
  1085. font-family: 'Font Awesome 5 Brands';
  1086. font-weight: 400; }
  1087. .fa.fa-whatsapp {
  1088. font-family: 'Font Awesome 5 Brands';
  1089. font-weight: 400; }
  1090. .fa.fa-hotel:before {
  1091. content: "\f236"; }
  1092. .fa.fa-viacoin {
  1093. font-family: 'Font Awesome 5 Brands';
  1094. font-weight: 400; }
  1095. .fa.fa-medium {
  1096. font-family: 'Font Awesome 5 Brands';
  1097. font-weight: 400; }
  1098. .fa.fa-y-combinator {
  1099. font-family: 'Font Awesome 5 Brands';
  1100. font-weight: 400; }
  1101. .fa.fa-yc {
  1102. font-family: 'Font Awesome 5 Brands';
  1103. font-weight: 400; }
  1104. .fa.fa-yc:before {
  1105. content: "\f23b"; }
  1106. .fa.fa-optin-monster {
  1107. font-family: 'Font Awesome 5 Brands';
  1108. font-weight: 400; }
  1109. .fa.fa-opencart {
  1110. font-family: 'Font Awesome 5 Brands';
  1111. font-weight: 400; }
  1112. .fa.fa-expeditedssl {
  1113. font-family: 'Font Awesome 5 Brands';
  1114. font-weight: 400; }
  1115. .fa.fa-battery-4:before {
  1116. content: "\f240"; }
  1117. .fa.fa-battery:before {
  1118. content: "\f240"; }
  1119. .fa.fa-battery-3:before {
  1120. content: "\f241"; }
  1121. .fa.fa-battery-2:before {
  1122. content: "\f242"; }
  1123. .fa.fa-battery-1:before {
  1124. content: "\f243"; }
  1125. .fa.fa-battery-0:before {
  1126. content: "\f244"; }
  1127. .fa.fa-object-group {
  1128. font-family: 'Font Awesome 5 Free';
  1129. font-weight: 400; }
  1130. .fa.fa-object-ungroup {
  1131. font-family: 'Font Awesome 5 Free';
  1132. font-weight: 400; }
  1133. .fa.fa-sticky-note-o {
  1134. font-family: 'Font Awesome 5 Free';
  1135. font-weight: 400; }
  1136. .fa.fa-sticky-note-o:before {
  1137. content: "\f249"; }
  1138. .fa.fa-cc-jcb {
  1139. font-family: 'Font Awesome 5 Brands';
  1140. font-weight: 400; }
  1141. .fa.fa-cc-diners-club {
  1142. font-family: 'Font Awesome 5 Brands';
  1143. font-weight: 400; }
  1144. .fa.fa-clone {
  1145. font-family: 'Font Awesome 5 Free';
  1146. font-weight: 400; }
  1147. .fa.fa-hourglass-o {
  1148. font-family: 'Font Awesome 5 Free';
  1149. font-weight: 400; }
  1150. .fa.fa-hourglass-o:before {
  1151. content: "\f254"; }
  1152. .fa.fa-hourglass-1:before {
  1153. content: "\f251"; }
  1154. .fa.fa-hourglass-2:before {
  1155. content: "\f252"; }
  1156. .fa.fa-hourglass-3:before {
  1157. content: "\f253"; }
  1158. .fa.fa-hand-rock-o {
  1159. font-family: 'Font Awesome 5 Free';
  1160. font-weight: 400; }
  1161. .fa.fa-hand-rock-o:before {
  1162. content: "\f255"; }
  1163. .fa.fa-hand-grab-o {
  1164. font-family: 'Font Awesome 5 Free';
  1165. font-weight: 400; }
  1166. .fa.fa-hand-grab-o:before {
  1167. content: "\f255"; }
  1168. .fa.fa-hand-paper-o {
  1169. font-family: 'Font Awesome 5 Free';
  1170. font-weight: 400; }
  1171. .fa.fa-hand-paper-o:before {
  1172. content: "\f256"; }
  1173. .fa.fa-hand-stop-o {
  1174. font-family: 'Font Awesome 5 Free';
  1175. font-weight: 400; }
  1176. .fa.fa-hand-stop-o:before {
  1177. content: "\f256"; }
  1178. .fa.fa-hand-scissors-o {
  1179. font-family: 'Font Awesome 5 Free';
  1180. font-weight: 400; }
  1181. .fa.fa-hand-scissors-o:before {
  1182. content: "\f257"; }
  1183. .fa.fa-hand-lizard-o {
  1184. font-family: 'Font Awesome 5 Free';
  1185. font-weight: 400; }
  1186. .fa.fa-hand-lizard-o:before {
  1187. content: "\f258"; }
  1188. .fa.fa-hand-spock-o {
  1189. font-family: 'Font Awesome 5 Free';
  1190. font-weight: 400; }
  1191. .fa.fa-hand-spock-o:before {
  1192. content: "\f259"; }
  1193. .fa.fa-hand-pointer-o {
  1194. font-family: 'Font Awesome 5 Free';
  1195. font-weight: 400; }
  1196. .fa.fa-hand-pointer-o:before {
  1197. content: "\f25a"; }
  1198. .fa.fa-hand-peace-o {
  1199. font-family: 'Font Awesome 5 Free';
  1200. font-weight: 400; }
  1201. .fa.fa-hand-peace-o:before {
  1202. content: "\f25b"; }
  1203. .fa.fa-registered {
  1204. font-family: 'Font Awesome 5 Free';
  1205. font-weight: 400; }
  1206. .fa.fa-creative-commons {
  1207. font-family: 'Font Awesome 5 Brands';
  1208. font-weight: 400; }
  1209. .fa.fa-gg {
  1210. font-family: 'Font Awesome 5 Brands';
  1211. font-weight: 400; }
  1212. .fa.fa-gg-circle {
  1213. font-family: 'Font Awesome 5 Brands';
  1214. font-weight: 400; }
  1215. .fa.fa-tripadvisor {
  1216. font-family: 'Font Awesome 5 Brands';
  1217. font-weight: 400; }
  1218. .fa.fa-odnoklassniki {
  1219. font-family: 'Font Awesome 5 Brands';
  1220. font-weight: 400; }
  1221. .fa.fa-odnoklassniki-square {
  1222. font-family: 'Font Awesome 5 Brands';
  1223. font-weight: 400; }
  1224. .fa.fa-get-pocket {
  1225. font-family: 'Font Awesome 5 Brands';
  1226. font-weight: 400; }
  1227. .fa.fa-wikipedia-w {
  1228. font-family: 'Font Awesome 5 Brands';
  1229. font-weight: 400; }
  1230. .fa.fa-safari {
  1231. font-family: 'Font Awesome 5 Brands';
  1232. font-weight: 400; }
  1233. .fa.fa-chrome {
  1234. font-family: 'Font Awesome 5 Brands';
  1235. font-weight: 400; }
  1236. .fa.fa-firefox {
  1237. font-family: 'Font Awesome 5 Brands';
  1238. font-weight: 400; }
  1239. .fa.fa-opera {
  1240. font-family: 'Font Awesome 5 Brands';
  1241. font-weight: 400; }
  1242. .fa.fa-internet-explorer {
  1243. font-family: 'Font Awesome 5 Brands';
  1244. font-weight: 400; }
  1245. .fa.fa-television:before {
  1246. content: "\f26c"; }
  1247. .fa.fa-contao {
  1248. font-family: 'Font Awesome 5 Brands';
  1249. font-weight: 400; }
  1250. .fa.fa-500px {
  1251. font-family: 'Font Awesome 5 Brands';
  1252. font-weight: 400; }
  1253. .fa.fa-amazon {
  1254. font-family: 'Font Awesome 5 Brands';
  1255. font-weight: 400; }
  1256. .fa.fa-calendar-plus-o {
  1257. font-family: 'Font Awesome 5 Free';
  1258. font-weight: 400; }
  1259. .fa.fa-calendar-plus-o:before {
  1260. content: "\f271"; }
  1261. .fa.fa-calendar-minus-o {
  1262. font-family: 'Font Awesome 5 Free';
  1263. font-weight: 400; }
  1264. .fa.fa-calendar-minus-o:before {
  1265. content: "\f272"; }
  1266. .fa.fa-calendar-times-o {
  1267. font-family: 'Font Awesome 5 Free';
  1268. font-weight: 400; }
  1269. .fa.fa-calendar-times-o:before {
  1270. content: "\f273"; }
  1271. .fa.fa-calendar-check-o {
  1272. font-family: 'Font Awesome 5 Free';
  1273. font-weight: 400; }
  1274. .fa.fa-calendar-check-o:before {
  1275. content: "\f274"; }
  1276. .fa.fa-map-o {
  1277. font-family: 'Font Awesome 5 Free';
  1278. font-weight: 400; }
  1279. .fa.fa-map-o:before {
  1280. content: "\f279"; }
  1281. .fa.fa-commenting:before {
  1282. content: "\f4ad"; }
  1283. .fa.fa-commenting-o {
  1284. font-family: 'Font Awesome 5 Free';
  1285. font-weight: 400; }
  1286. .fa.fa-commenting-o:before {
  1287. content: "\f4ad"; }
  1288. .fa.fa-houzz {
  1289. font-family: 'Font Awesome 5 Brands';
  1290. font-weight: 400; }
  1291. .fa.fa-vimeo {
  1292. font-family: 'Font Awesome 5 Brands';
  1293. font-weight: 400; }
  1294. .fa.fa-vimeo:before {
  1295. content: "\f27d"; }
  1296. .fa.fa-black-tie {
  1297. font-family: 'Font Awesome 5 Brands';
  1298. font-weight: 400; }
  1299. .fa.fa-fonticons {
  1300. font-family: 'Font Awesome 5 Brands';
  1301. font-weight: 400; }
  1302. .fa.fa-reddit-alien {
  1303. font-family: 'Font Awesome 5 Brands';
  1304. font-weight: 400; }
  1305. .fa.fa-edge {
  1306. font-family: 'Font Awesome 5 Brands';
  1307. font-weight: 400; }
  1308. .fa.fa-credit-card-alt:before {
  1309. content: "\f09d"; }
  1310. .fa.fa-codiepie {
  1311. font-family: 'Font Awesome 5 Brands';
  1312. font-weight: 400; }
  1313. .fa.fa-modx {
  1314. font-family: 'Font Awesome 5 Brands';
  1315. font-weight: 400; }
  1316. .fa.fa-fort-awesome {
  1317. font-family: 'Font Awesome 5 Brands';
  1318. font-weight: 400; }
  1319. .fa.fa-usb {
  1320. font-family: 'Font Awesome 5 Brands';
  1321. font-weight: 400; }
  1322. .fa.fa-product-hunt {
  1323. font-family: 'Font Awesome 5 Brands';
  1324. font-weight: 400; }
  1325. .fa.fa-mixcloud {
  1326. font-family: 'Font Awesome 5 Brands';
  1327. font-weight: 400; }
  1328. .fa.fa-scribd {
  1329. font-family: 'Font Awesome 5 Brands';
  1330. font-weight: 400; }
  1331. .fa.fa-pause-circle-o {
  1332. font-family: 'Font Awesome 5 Free';
  1333. font-weight: 400; }
  1334. .fa.fa-pause-circle-o:before {
  1335. content: "\f28b"; }
  1336. .fa.fa-stop-circle-o {
  1337. font-family: 'Font Awesome 5 Free';
  1338. font-weight: 400; }
  1339. .fa.fa-stop-circle-o:before {
  1340. content: "\f28d"; }
  1341. .fa.fa-bluetooth {
  1342. font-family: 'Font Awesome 5 Brands';
  1343. font-weight: 400; }
  1344. .fa.fa-bluetooth-b {
  1345. font-family: 'Font Awesome 5 Brands';
  1346. font-weight: 400; }
  1347. .fa.fa-gitlab {
  1348. font-family: 'Font Awesome 5 Brands';
  1349. font-weight: 400; }
  1350. .fa.fa-wpbeginner {
  1351. font-family: 'Font Awesome 5 Brands';
  1352. font-weight: 400; }
  1353. .fa.fa-wpforms {
  1354. font-family: 'Font Awesome 5 Brands';
  1355. font-weight: 400; }
  1356. .fa.fa-envira {
  1357. font-family: 'Font Awesome 5 Brands';
  1358. font-weight: 400; }
  1359. .fa.fa-wheelchair-alt {
  1360. font-family: 'Font Awesome 5 Brands';
  1361. font-weight: 400; }
  1362. .fa.fa-wheelchair-alt:before {
  1363. content: "\f368"; }
  1364. .fa.fa-question-circle-o {
  1365. font-family: 'Font Awesome 5 Free';
  1366. font-weight: 400; }
  1367. .fa.fa-question-circle-o:before {
  1368. content: "\f059"; }
  1369. .fa.fa-volume-control-phone:before {
  1370. content: "\f2a0"; }
  1371. .fa.fa-asl-interpreting:before {
  1372. content: "\f2a3"; }
  1373. .fa.fa-deafness:before {
  1374. content: "\f2a4"; }
  1375. .fa.fa-hard-of-hearing:before {
  1376. content: "\f2a4"; }
  1377. .fa.fa-glide {
  1378. font-family: 'Font Awesome 5 Brands';
  1379. font-weight: 400; }
  1380. .fa.fa-glide-g {
  1381. font-family: 'Font Awesome 5 Brands';
  1382. font-weight: 400; }
  1383. .fa.fa-signing:before {
  1384. content: "\f2a7"; }
  1385. .fa.fa-viadeo {
  1386. font-family: 'Font Awesome 5 Brands';
  1387. font-weight: 400; }
  1388. .fa.fa-viadeo-square {
  1389. font-family: 'Font Awesome 5 Brands';
  1390. font-weight: 400; }
  1391. .fa.fa-snapchat {
  1392. font-family: 'Font Awesome 5 Brands';
  1393. font-weight: 400; }
  1394. .fa.fa-snapchat-ghost {
  1395. font-family: 'Font Awesome 5 Brands';
  1396. font-weight: 400; }
  1397. .fa.fa-snapchat-square {
  1398. font-family: 'Font Awesome 5 Brands';
  1399. font-weight: 400; }
  1400. .fa.fa-pied-piper {
  1401. font-family: 'Font Awesome 5 Brands';
  1402. font-weight: 400; }
  1403. .fa.fa-first-order {
  1404. font-family: 'Font Awesome 5 Brands';
  1405. font-weight: 400; }
  1406. .fa.fa-yoast {
  1407. font-family: 'Font Awesome 5 Brands';
  1408. font-weight: 400; }
  1409. .fa.fa-themeisle {
  1410. font-family: 'Font Awesome 5 Brands';
  1411. font-weight: 400; }
  1412. .fa.fa-google-plus-official {
  1413. font-family: 'Font Awesome 5 Brands';
  1414. font-weight: 400; }
  1415. .fa.fa-google-plus-official:before {
  1416. content: "\f2b3"; }
  1417. .fa.fa-google-plus-circle {
  1418. font-family: 'Font Awesome 5 Brands';
  1419. font-weight: 400; }
  1420. .fa.fa-google-plus-circle:before {
  1421. content: "\f2b3"; }
  1422. .fa.fa-font-awesome {
  1423. font-family: 'Font Awesome 5 Brands';
  1424. font-weight: 400; }
  1425. .fa.fa-fa {
  1426. font-family: 'Font Awesome 5 Brands';
  1427. font-weight: 400; }
  1428. .fa.fa-fa:before {
  1429. content: "\f2b4"; }
  1430. .fa.fa-handshake-o {
  1431. font-family: 'Font Awesome 5 Free';
  1432. font-weight: 400; }
  1433. .fa.fa-handshake-o:before {
  1434. content: "\f2b5"; }
  1435. .fa.fa-envelope-open-o {
  1436. font-family: 'Font Awesome 5 Free';
  1437. font-weight: 400; }
  1438. .fa.fa-envelope-open-o:before {
  1439. content: "\f2b6"; }
  1440. .fa.fa-linode {
  1441. font-family: 'Font Awesome 5 Brands';
  1442. font-weight: 400; }
  1443. .fa.fa-address-book-o {
  1444. font-family: 'Font Awesome 5 Free';
  1445. font-weight: 400; }
  1446. .fa.fa-address-book-o:before {
  1447. content: "\f2b9"; }
  1448. .fa.fa-vcard:before {
  1449. content: "\f2bb"; }
  1450. .fa.fa-address-card-o {
  1451. font-family: 'Font Awesome 5 Free';
  1452. font-weight: 400; }
  1453. .fa.fa-address-card-o:before {
  1454. content: "\f2bb"; }
  1455. .fa.fa-vcard-o {
  1456. font-family: 'Font Awesome 5 Free';
  1457. font-weight: 400; }
  1458. .fa.fa-vcard-o:before {
  1459. content: "\f2bb"; }
  1460. .fa.fa-user-circle-o {
  1461. font-family: 'Font Awesome 5 Free';
  1462. font-weight: 400; }
  1463. .fa.fa-user-circle-o:before {
  1464. content: "\f2bd"; }
  1465. .fa.fa-user-o {
  1466. font-family: 'Font Awesome 5 Free';
  1467. font-weight: 400; }
  1468. .fa.fa-user-o:before {
  1469. content: "\f007"; }
  1470. .fa.fa-id-badge {
  1471. font-family: 'Font Awesome 5 Free';
  1472. font-weight: 400; }
  1473. .fa.fa-drivers-license:before {
  1474. content: "\f2c2"; }
  1475. .fa.fa-id-card-o {
  1476. font-family: 'Font Awesome 5 Free';
  1477. font-weight: 400; }
  1478. .fa.fa-id-card-o:before {
  1479. content: "\f2c2"; }
  1480. .fa.fa-drivers-license-o {
  1481. font-family: 'Font Awesome 5 Free';
  1482. font-weight: 400; }
  1483. .fa.fa-drivers-license-o:before {
  1484. content: "\f2c2"; }
  1485. .fa.fa-quora {
  1486. font-family: 'Font Awesome 5 Brands';
  1487. font-weight: 400; }
  1488. .fa.fa-free-code-camp {
  1489. font-family: 'Font Awesome 5 Brands';
  1490. font-weight: 400; }
  1491. .fa.fa-telegram {
  1492. font-family: 'Font Awesome 5 Brands';
  1493. font-weight: 400; }
  1494. .fa.fa-thermometer-4:before {
  1495. content: "\f2c7"; }
  1496. .fa.fa-thermometer:before {
  1497. content: "\f2c7"; }
  1498. .fa.fa-thermometer-3:before {
  1499. content: "\f2c8"; }
  1500. .fa.fa-thermometer-2:before {
  1501. content: "\f2c9"; }
  1502. .fa.fa-thermometer-1:before {
  1503. content: "\f2ca"; }
  1504. .fa.fa-thermometer-0:before {
  1505. content: "\f2cb"; }
  1506. .fa.fa-bathtub:before {
  1507. content: "\f2cd"; }
  1508. .fa.fa-s15:before {
  1509. content: "\f2cd"; }
  1510. .fa.fa-window-maximize {
  1511. font-family: 'Font Awesome 5 Free';
  1512. font-weight: 400; }
  1513. .fa.fa-window-restore {
  1514. font-family: 'Font Awesome 5 Free';
  1515. font-weight: 400; }
  1516. .fa.fa-times-rectangle:before {
  1517. content: "\f410"; }
  1518. .fa.fa-window-close-o {
  1519. font-family: 'Font Awesome 5 Free';
  1520. font-weight: 400; }
  1521. .fa.fa-window-close-o:before {
  1522. content: "\f410"; }
  1523. .fa.fa-times-rectangle-o {
  1524. font-family: 'Font Awesome 5 Free';
  1525. font-weight: 400; }
  1526. .fa.fa-times-rectangle-o:before {
  1527. content: "\f410"; }
  1528. .fa.fa-bandcamp {
  1529. font-family: 'Font Awesome 5 Brands';
  1530. font-weight: 400; }
  1531. .fa.fa-grav {
  1532. font-family: 'Font Awesome 5 Brands';
  1533. font-weight: 400; }
  1534. .fa.fa-etsy {
  1535. font-family: 'Font Awesome 5 Brands';
  1536. font-weight: 400; }
  1537. .fa.fa-imdb {
  1538. font-family: 'Font Awesome 5 Brands';
  1539. font-weight: 400; }
  1540. .fa.fa-ravelry {
  1541. font-family: 'Font Awesome 5 Brands';
  1542. font-weight: 400; }
  1543. .fa.fa-eercast {
  1544. font-family: 'Font Awesome 5 Brands';
  1545. font-weight: 400; }
  1546. .fa.fa-eercast:before {
  1547. content: "\f2da"; }
  1548. .fa.fa-snowflake-o {
  1549. font-family: 'Font Awesome 5 Free';
  1550. font-weight: 400; }
  1551. .fa.fa-snowflake-o:before {
  1552. content: "\f2dc"; }
  1553. .fa.fa-superpowers {
  1554. font-family: 'Font Awesome 5 Brands';
  1555. font-weight: 400; }
  1556. .fa.fa-wpexplorer {
  1557. font-family: 'Font Awesome 5 Brands';
  1558. font-weight: 400; }
  1559. .fa.fa-cab:before {
  1560. content: "\f1ba"; }