icon.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806
  1. /*!
  2. * # Semantic UI 2.3.3 - Icon
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Released under the MIT license
  7. * http://opensource.org/licenses/MIT
  8. *
  9. */
  10. /*******************************
  11. Icon
  12. *******************************/
  13. @font-face {
  14. font-family: 'Icons';
  15. src: url("./../themes/default/assets/fonts/icons.eot");
  16. src: url("./../themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("./../themes/default/assets/fonts/icons.woff2") format('woff2'), url("./../themes/default/assets/fonts/icons.woff") format('woff'), url("./../themes/default/assets/fonts/icons.ttf") format('truetype'), url("./../themes/default/assets/fonts/icons.svg#icons") format('svg');
  17. font-style: normal;
  18. font-weight: normal;
  19. font-variant: normal;
  20. text-decoration: inherit;
  21. text-transform: none;
  22. }
  23. i.icon {
  24. display: inline-block;
  25. opacity: 1;
  26. margin: 0em 0.25rem 0em 0em;
  27. width: 1.18em;
  28. height: 1em;
  29. font-family: 'Icons';
  30. font-style: normal;
  31. font-weight: normal;
  32. text-decoration: inherit;
  33. text-align: center;
  34. speak: none;
  35. font-smoothing: antialiased;
  36. -moz-osx-font-smoothing: grayscale;
  37. -webkit-font-smoothing: antialiased;
  38. -webkit-backface-visibility: hidden;
  39. backface-visibility: hidden;
  40. }
  41. i.icon:before {
  42. background: none !important;
  43. }
  44. /*******************************
  45. Types
  46. *******************************/
  47. /*--------------
  48. Loading
  49. ---------------*/
  50. i.icon.loading {
  51. height: 1em;
  52. line-height: 1;
  53. -webkit-animation: icon-loading 2s linear infinite;
  54. animation: icon-loading 2s linear infinite;
  55. }
  56. @-webkit-keyframes icon-loading {
  57. from {
  58. -webkit-transform: rotate(0deg);
  59. transform: rotate(0deg);
  60. }
  61. to {
  62. -webkit-transform: rotate(360deg);
  63. transform: rotate(360deg);
  64. }
  65. }
  66. @keyframes icon-loading {
  67. from {
  68. -webkit-transform: rotate(0deg);
  69. transform: rotate(0deg);
  70. }
  71. to {
  72. -webkit-transform: rotate(360deg);
  73. transform: rotate(360deg);
  74. }
  75. }
  76. /*******************************
  77. States
  78. *******************************/
  79. i.icon.hover {
  80. opacity: 1 !important;
  81. }
  82. i.icon.active {
  83. opacity: 1 !important;
  84. }
  85. i.emphasized.icon {
  86. opacity: 1 !important;
  87. }
  88. i.disabled.icon {
  89. opacity: 0.45 !important;
  90. }
  91. /*******************************
  92. Variations
  93. *******************************/
  94. /*-------------------
  95. Fitted
  96. --------------------*/
  97. i.fitted.icon {
  98. width: auto;
  99. margin: 0em !important;
  100. }
  101. /*-------------------
  102. Link
  103. --------------------*/
  104. i.link.icon,
  105. i.link.icons {
  106. cursor: pointer;
  107. opacity: 0.8;
  108. -webkit-transition: opacity 0.1s ease;
  109. transition: opacity 0.1s ease;
  110. }
  111. i.link.icon:hover,
  112. i.link.icons:hover {
  113. opacity: 1 !important;
  114. }
  115. /*-------------------
  116. Circular
  117. --------------------*/
  118. i.circular.icon {
  119. border-radius: 500em !important;
  120. line-height: 1 !important;
  121. padding: 0.5em 0em !important;
  122. -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  123. box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  124. width: 2em !important;
  125. height: 2em !important;
  126. }
  127. i.circular.inverted.icon {
  128. border: none;
  129. -webkit-box-shadow: none;
  130. box-shadow: none;
  131. }
  132. /*-------------------
  133. Flipped
  134. --------------------*/
  135. i.flipped.icon,
  136. i.horizontally.flipped.icon {
  137. -webkit-transform: scale(-1, 1);
  138. transform: scale(-1, 1);
  139. }
  140. i.vertically.flipped.icon {
  141. -webkit-transform: scale(1, -1);
  142. transform: scale(1, -1);
  143. }
  144. /*-------------------
  145. Rotated
  146. --------------------*/
  147. i.rotated.icon,
  148. i.right.rotated.icon,
  149. i.clockwise.rotated.icon {
  150. -webkit-transform: rotate(90deg);
  151. transform: rotate(90deg);
  152. }
  153. i.left.rotated.icon,
  154. i.counterclockwise.rotated.icon {
  155. -webkit-transform: rotate(-90deg);
  156. transform: rotate(-90deg);
  157. }
  158. /*-------------------
  159. Bordered
  160. --------------------*/
  161. i.bordered.icon {
  162. line-height: 1;
  163. vertical-align: baseline;
  164. width: 2em;
  165. height: 2em;
  166. padding: 0.5em 0em !important;
  167. -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  168. box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  169. }
  170. i.bordered.inverted.icon {
  171. border: none;
  172. -webkit-box-shadow: none;
  173. box-shadow: none;
  174. }
  175. /*-------------------
  176. Inverted
  177. --------------------*/
  178. /* Inverted Shapes */
  179. i.inverted.bordered.icon,
  180. i.inverted.circular.icon {
  181. background-color: #1B1C1D !important;
  182. color: #FFFFFF !important;
  183. }
  184. i.inverted.icon {
  185. color: #FFFFFF;
  186. }
  187. /*-------------------
  188. Colors
  189. --------------------*/
  190. /* Red */
  191. i.red.icon {
  192. color: #DB2828 !important;
  193. }
  194. i.inverted.red.icon {
  195. color: #FF695E !important;
  196. }
  197. i.inverted.bordered.red.icon,
  198. i.inverted.circular.red.icon {
  199. background-color: #DB2828 !important;
  200. color: #FFFFFF !important;
  201. }
  202. /* Orange */
  203. i.orange.icon {
  204. color: #F2711C !important;
  205. }
  206. i.inverted.orange.icon {
  207. color: #FF851B !important;
  208. }
  209. i.inverted.bordered.orange.icon,
  210. i.inverted.circular.orange.icon {
  211. background-color: #F2711C !important;
  212. color: #FFFFFF !important;
  213. }
  214. /* Yellow */
  215. i.yellow.icon {
  216. color: #FBBD08 !important;
  217. }
  218. i.inverted.yellow.icon {
  219. color: #FFE21F !important;
  220. }
  221. i.inverted.bordered.yellow.icon,
  222. i.inverted.circular.yellow.icon {
  223. background-color: #FBBD08 !important;
  224. color: #FFFFFF !important;
  225. }
  226. /* Olive */
  227. i.olive.icon {
  228. color: #B5CC18 !important;
  229. }
  230. i.inverted.olive.icon {
  231. color: #D9E778 !important;
  232. }
  233. i.inverted.bordered.olive.icon,
  234. i.inverted.circular.olive.icon {
  235. background-color: #B5CC18 !important;
  236. color: #FFFFFF !important;
  237. }
  238. /* Green */
  239. i.green.icon {
  240. color: #21BA45 !important;
  241. }
  242. i.inverted.green.icon {
  243. color: #2ECC40 !important;
  244. }
  245. i.inverted.bordered.green.icon,
  246. i.inverted.circular.green.icon {
  247. background-color: #21BA45 !important;
  248. color: #FFFFFF !important;
  249. }
  250. /* Teal */
  251. i.teal.icon {
  252. color: #00B5AD !important;
  253. }
  254. i.inverted.teal.icon {
  255. color: #6DFFFF !important;
  256. }
  257. i.inverted.bordered.teal.icon,
  258. i.inverted.circular.teal.icon {
  259. background-color: #00B5AD !important;
  260. color: #FFFFFF !important;
  261. }
  262. /* Blue */
  263. i.blue.icon {
  264. color: #2185D0 !important;
  265. }
  266. i.inverted.blue.icon {
  267. color: #54C8FF !important;
  268. }
  269. i.inverted.bordered.blue.icon,
  270. i.inverted.circular.blue.icon {
  271. background-color: #2185D0 !important;
  272. color: #FFFFFF !important;
  273. }
  274. /* Violet */
  275. i.violet.icon {
  276. color: #6435C9 !important;
  277. }
  278. i.inverted.violet.icon {
  279. color: #A291FB !important;
  280. }
  281. i.inverted.bordered.violet.icon,
  282. i.inverted.circular.violet.icon {
  283. background-color: #6435C9 !important;
  284. color: #FFFFFF !important;
  285. }
  286. /* Purple */
  287. i.purple.icon {
  288. color: #A333C8 !important;
  289. }
  290. i.inverted.purple.icon {
  291. color: #DC73FF !important;
  292. }
  293. i.inverted.bordered.purple.icon,
  294. i.inverted.circular.purple.icon {
  295. background-color: #A333C8 !important;
  296. color: #FFFFFF !important;
  297. }
  298. /* Pink */
  299. i.pink.icon {
  300. color: #E03997 !important;
  301. }
  302. i.inverted.pink.icon {
  303. color: #FF8EDF !important;
  304. }
  305. i.inverted.bordered.pink.icon,
  306. i.inverted.circular.pink.icon {
  307. background-color: #E03997 !important;
  308. color: #FFFFFF !important;
  309. }
  310. /* Brown */
  311. i.brown.icon {
  312. color: #A5673F !important;
  313. }
  314. i.inverted.brown.icon {
  315. color: #D67C1C !important;
  316. }
  317. i.inverted.bordered.brown.icon,
  318. i.inverted.circular.brown.icon {
  319. background-color: #A5673F !important;
  320. color: #FFFFFF !important;
  321. }
  322. /* Grey */
  323. i.grey.icon {
  324. color: #767676 !important;
  325. }
  326. i.inverted.grey.icon {
  327. color: #DCDDDE !important;
  328. }
  329. i.inverted.bordered.grey.icon,
  330. i.inverted.circular.grey.icon {
  331. background-color: #767676 !important;
  332. color: #FFFFFF !important;
  333. }
  334. /* Black */
  335. i.black.icon {
  336. color: #1B1C1D !important;
  337. }
  338. i.inverted.black.icon {
  339. color: #545454 !important;
  340. }
  341. i.inverted.bordered.black.icon,
  342. i.inverted.circular.black.icon {
  343. background-color: #1B1C1D !important;
  344. color: #FFFFFF !important;
  345. }
  346. /*-------------------
  347. Sizes
  348. --------------------*/
  349. i.mini.icon,
  350. i.mini.icons {
  351. line-height: 1;
  352. font-size: 0.4em;
  353. }
  354. i.tiny.icon,
  355. i.tiny.icons {
  356. line-height: 1;
  357. font-size: 0.5em;
  358. }
  359. i.small.icon,
  360. i.small.icons {
  361. line-height: 1;
  362. font-size: 0.75em;
  363. }
  364. i.icon,
  365. i.icons {
  366. font-size: 1em;
  367. }
  368. i.large.icon,
  369. i.large.icons {
  370. line-height: 1;
  371. vertical-align: middle;
  372. font-size: 1.5em;
  373. }
  374. i.big.icon,
  375. i.big.icons {
  376. line-height: 1;
  377. vertical-align: middle;
  378. font-size: 2em;
  379. }
  380. i.huge.icon,
  381. i.huge.icons {
  382. line-height: 1;
  383. vertical-align: middle;
  384. font-size: 4em;
  385. }
  386. i.massive.icon,
  387. i.massive.icons {
  388. line-height: 1;
  389. vertical-align: middle;
  390. font-size: 8em;
  391. }
  392. /*******************************
  393. Groups
  394. *******************************/
  395. i.icons {
  396. display: inline-block;
  397. position: relative;
  398. line-height: 1;
  399. }
  400. i.icons .icon {
  401. position: absolute;
  402. top: 50%;
  403. left: 50%;
  404. -webkit-transform: translateX(-50%) translateY(-50%);
  405. transform: translateX(-50%) translateY(-50%);
  406. margin: 0em;
  407. margin: 0;
  408. }
  409. i.icons .icon:first-child {
  410. position: static;
  411. width: auto;
  412. height: auto;
  413. vertical-align: top;
  414. -webkit-transform: none;
  415. transform: none;
  416. margin-right: 0.25rem;
  417. }
  418. /* Corner Icon */
  419. i.icons .corner.icon {
  420. top: auto;
  421. left: auto;
  422. right: 0;
  423. bottom: 0;
  424. -webkit-transform: none;
  425. transform: none;
  426. font-size: 0.45em;
  427. text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
  428. }
  429. i.icons .top.right.corner.icon {
  430. top: 0;
  431. left: auto;
  432. right: 0;
  433. bottom: auto;
  434. }
  435. i.icons .top.left.corner.icon {
  436. top: 0;
  437. left: 0;
  438. right: auto;
  439. bottom: auto;
  440. }
  441. i.icons .bottom.left.corner.icon {
  442. top: auto;
  443. left: 0;
  444. right: auto;
  445. bottom: 0;
  446. }
  447. i.icons .bottom.right.corner.icon {
  448. top: auto;
  449. left: auto;
  450. right: 0;
  451. bottom: 0;
  452. }
  453. i.icons .inverted.corner.icon {
  454. text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
  455. }
  456. /*
  457. * Font Awesome 5.0.8 by @fontawesome - http://fontawesome.io - @fontawesome
  458. * License - https://fontawesome.com/license (Icons: CC BY 4.0 License, Fonts: SIL OFL 1.1 License, CSS: MIT License)
  459. */
  460. /*******************************
  461. Semantic-UI integration of font-awesome :
  462. ///class names are separated
  463. i.icon.circle => i.icon.circle
  464. i.icon.circle-o => i.icon.circle.outline
  465. //abbreviation are replaced by full letters:
  466. i.icon.ellipsis-h => i.icon.ellipsis.horizontal
  467. i.icon.ellipsis-v => i.icon.ellipsis.vertical
  468. .alpha => .i.icon.alphabet
  469. .asc => .i.icon.ascending
  470. .desc => .i.icon.descending
  471. .alt =>.alternate
  472. ASCII order is conserved for easier maintenance.
  473. Icons that only have one style 'outline', 'square' etc do not require this class
  474. for instance `lemon icon` not `lemon outline icon` since there is only one lemon
  475. *******************************/
  476. /*******************************
  477. Icons
  478. *******************************/
  479. /* Deprecated *In/Out Naming Conflict) */
  480. i.icon.linkedin.in:before {
  481. content: "\f0e1";
  482. }
  483. i.icon.zoom.in:before {
  484. content: "\f00e";
  485. }
  486. i.icon.zoom.out:before {
  487. content: "\f010";
  488. }
  489. i.icon.sign.in:before {
  490. content: "\f2f6";
  491. }
  492. i.icon.in.cart:before {
  493. content: "\f218";
  494. }
  495. i.icon.log.out:before {
  496. content: "\f2f5";
  497. }
  498. i.icon.sign.out:before {
  499. content: "\f2f5";
  500. }
  501. /* Icons */
  502. i.icon.\35 00px:before {
  503. content: "\f26e";
  504. }
  505. i.icon.accessible.icon:before {
  506. content: "\f368";
  507. }
  508. i.icon.accusoft:before {
  509. content: "\f369";
  510. }
  511. i.icon.address.book:before {
  512. content: "\f2b9";
  513. }
  514. i.icon.address.card:before {
  515. content: "\f2bb";
  516. }
  517. i.icon.adjust:before {
  518. content: "\f042";
  519. }
  520. i.icon.adn:before {
  521. content: "\f170";
  522. }
  523. i.icon.adversal:before {
  524. content: "\f36a";
  525. }
  526. i.icon.affiliatetheme:before {
  527. content: "\f36b";
  528. }
  529. i.icon.algolia:before {
  530. content: "\f36c";
  531. }
  532. i.icon.align.center:before {
  533. content: "\f037";
  534. }
  535. i.icon.align.justify:before {
  536. content: "\f039";
  537. }
  538. i.icon.align.left:before {
  539. content: "\f036";
  540. }
  541. i.icon.align.right:before {
  542. content: "\f038";
  543. }
  544. i.icon.amazon:before {
  545. content: "\f270";
  546. }
  547. i.icon.amazon.pay:before {
  548. content: "\f42c";
  549. }
  550. i.icon.ambulance:before {
  551. content: "\f0f9";
  552. }
  553. i.icon.american.sign.language.interpreting:before {
  554. content: "\f2a3";
  555. }
  556. i.icon.amilia:before {
  557. content: "\f36d";
  558. }
  559. i.icon.anchor:before {
  560. content: "\f13d";
  561. }
  562. i.icon.android:before {
  563. content: "\f17b";
  564. }
  565. i.icon.angellist:before {
  566. content: "\f209";
  567. }
  568. i.icon.angle.double.down:before {
  569. content: "\f103";
  570. }
  571. i.icon.angle.double.left:before {
  572. content: "\f100";
  573. }
  574. i.icon.angle.double.right:before {
  575. content: "\f101";
  576. }
  577. i.icon.angle.double.up:before {
  578. content: "\f102";
  579. }
  580. i.icon.angle.down:before {
  581. content: "\f107";
  582. }
  583. i.icon.angle.left:before {
  584. content: "\f104";
  585. }
  586. i.icon.angle.right:before {
  587. content: "\f105";
  588. }
  589. i.icon.angle.up:before {
  590. content: "\f106";
  591. }
  592. i.icon.angrycreative:before {
  593. content: "\f36e";
  594. }
  595. i.icon.angular:before {
  596. content: "\f420";
  597. }
  598. i.icon.app.store:before {
  599. content: "\f36f";
  600. }
  601. i.icon.app.store.ios:before {
  602. content: "\f370";
  603. }
  604. i.icon.apper:before {
  605. content: "\f371";
  606. }
  607. i.icon.apple:before {
  608. content: "\f179";
  609. }
  610. i.icon.apple.pay:before {
  611. content: "\f415";
  612. }
  613. i.icon.archive:before {
  614. content: "\f187";
  615. }
  616. i.icon.arrow.alternate.circle.down:before {
  617. content: "\f358";
  618. }
  619. i.icon.arrow.alternate.circle.left:before {
  620. content: "\f359";
  621. }
  622. i.icon.arrow.alternate.circle.right:before {
  623. content: "\f35a";
  624. }
  625. i.icon.arrow.alternate.circle.up:before {
  626. content: "\f35b";
  627. }
  628. i.icon.arrow.circle.down:before {
  629. content: "\f0ab";
  630. }
  631. i.icon.arrow.circle.left:before {
  632. content: "\f0a8";
  633. }
  634. i.icon.arrow.circle.right:before {
  635. content: "\f0a9";
  636. }
  637. i.icon.arrow.circle.up:before {
  638. content: "\f0aa";
  639. }
  640. i.icon.arrow.down:before {
  641. content: "\f063";
  642. }
  643. i.icon.arrow.left:before {
  644. content: "\f060";
  645. }
  646. i.icon.arrow.right:before {
  647. content: "\f061";
  648. }
  649. i.icon.arrow.up:before {
  650. content: "\f062";
  651. }
  652. i.icon.arrows.alternate:before {
  653. content: "\f0b2";
  654. }
  655. i.icon.arrows.alternate.horizontal:before {
  656. content: "\f337";
  657. }
  658. i.icon.arrows.alternate.vertical:before {
  659. content: "\f338";
  660. }
  661. i.icon.assistive.listening.systems:before {
  662. content: "\f2a2";
  663. }
  664. i.icon.asterisk:before {
  665. content: "\f069";
  666. }
  667. i.icon.asymmetrik:before {
  668. content: "\f372";
  669. }
  670. i.icon.at:before {
  671. content: "\f1fa";
  672. }
  673. i.icon.audible:before {
  674. content: "\f373";
  675. }
  676. i.icon.audio.description:before {
  677. content: "\f29e";
  678. }
  679. i.icon.autoprefixer:before {
  680. content: "\f41c";
  681. }
  682. i.icon.avianex:before {
  683. content: "\f374";
  684. }
  685. i.icon.aviato:before {
  686. content: "\f421";
  687. }
  688. i.icon.aws:before {
  689. content: "\f375";
  690. }
  691. i.icon.backward:before {
  692. content: "\f04a";
  693. }
  694. i.icon.balance.scale:before {
  695. content: "\f24e";
  696. }
  697. i.icon.ban:before {
  698. content: "\f05e";
  699. }
  700. i.icon.band.aid:before {
  701. content: "\f462";
  702. }
  703. i.icon.bandcamp:before {
  704. content: "\f2d5";
  705. }
  706. i.icon.barcode:before {
  707. content: "\f02a";
  708. }
  709. i.icon.bars:before {
  710. content: "\f0c9";
  711. }
  712. i.icon.baseball.ball:before {
  713. content: "\f433";
  714. }
  715. i.icon.basketball.ball:before {
  716. content: "\f434";
  717. }
  718. i.icon.bath:before {
  719. content: "\f2cd";
  720. }
  721. i.icon.battery.empty:before {
  722. content: "\f244";
  723. }
  724. i.icon.battery.full:before {
  725. content: "\f240";
  726. }
  727. i.icon.battery.half:before {
  728. content: "\f242";
  729. }
  730. i.icon.battery.quarter:before {
  731. content: "\f243";
  732. }
  733. i.icon.battery.three.quarters:before {
  734. content: "\f241";
  735. }
  736. i.icon.bed:before {
  737. content: "\f236";
  738. }
  739. i.icon.beer:before {
  740. content: "\f0fc";
  741. }
  742. i.icon.behance:before {
  743. content: "\f1b4";
  744. }
  745. i.icon.behance.square:before {
  746. content: "\f1b5";
  747. }
  748. i.icon.bell:before {
  749. content: "\f0f3";
  750. }
  751. i.icon.bell.slash:before {
  752. content: "\f1f6";
  753. }
  754. i.icon.bicycle:before {
  755. content: "\f206";
  756. }
  757. i.icon.bimobject:before {
  758. content: "\f378";
  759. }
  760. i.icon.binoculars:before {
  761. content: "\f1e5";
  762. }
  763. i.icon.birthday.cake:before {
  764. content: "\f1fd";
  765. }
  766. i.icon.bitbucket:before {
  767. content: "\f171";
  768. }
  769. i.icon.bitcoin:before {
  770. content: "\f379";
  771. }
  772. i.icon.bity:before {
  773. content: "\f37a";
  774. }
  775. i.icon.black.tie:before {
  776. content: "\f27e";
  777. }
  778. i.icon.blackberry:before {
  779. content: "\f37b";
  780. }
  781. i.icon.blind:before {
  782. content: "\f29d";
  783. }
  784. i.icon.blogger:before {
  785. content: "\f37c";
  786. }
  787. i.icon.blogger.b:before {
  788. content: "\f37d";
  789. }
  790. i.icon.bluetooth:before {
  791. content: "\f293";
  792. }
  793. i.icon.bluetooth.b:before {
  794. content: "\f294";
  795. }
  796. i.icon.bold:before {
  797. content: "\f032";
  798. }
  799. i.icon.bolt:before {
  800. content: "\f0e7";
  801. }
  802. i.icon.bomb:before {
  803. content: "\f1e2";
  804. }
  805. i.icon.book:before {
  806. content: "\f02d";
  807. }
  808. i.icon.bookmark:before {
  809. content: "\f02e";
  810. }
  811. i.icon.bowling.ball:before {
  812. content: "\f436";
  813. }
  814. i.icon.box:before {
  815. content: "\f466";
  816. }
  817. i.icon.boxes:before {
  818. content: "\f468";
  819. }
  820. i.icon.braille:before {
  821. content: "\f2a1";
  822. }
  823. i.icon.briefcase:before {
  824. content: "\f0b1";
  825. }
  826. i.icon.btc:before {
  827. content: "\f15a";
  828. }
  829. i.icon.bug:before {
  830. content: "\f188";
  831. }
  832. i.icon.building:before {
  833. content: "\f1ad";
  834. }
  835. i.icon.bullhorn:before {
  836. content: "\f0a1";
  837. }
  838. i.icon.bullseye:before {
  839. content: "\f140";
  840. }
  841. i.icon.buromobelexperte:before {
  842. content: "\f37f";
  843. }
  844. i.icon.bus:before {
  845. content: "\f207";
  846. }
  847. i.icon.buysellads:before {
  848. content: "\f20d";
  849. }
  850. i.icon.calculator:before {
  851. content: "\f1ec";
  852. }
  853. i.icon.calendar:before {
  854. content: "\f133";
  855. }
  856. i.icon.calendar.alternate:before {
  857. content: "\f073";
  858. }
  859. i.icon.calendar.check:before {
  860. content: "\f274";
  861. }
  862. i.icon.calendar.minus:before {
  863. content: "\f272";
  864. }
  865. i.icon.calendar.plus:before {
  866. content: "\f271";
  867. }
  868. i.icon.calendar.times:before {
  869. content: "\f273";
  870. }
  871. i.icon.camera:before {
  872. content: "\f030";
  873. }
  874. i.icon.camera.retro:before {
  875. content: "\f083";
  876. }
  877. i.icon.car:before {
  878. content: "\f1b9";
  879. }
  880. i.icon.caret.down:before {
  881. content: "\f0d7";
  882. }
  883. i.icon.caret.left:before {
  884. content: "\f0d9";
  885. }
  886. i.icon.caret.right:before {
  887. content: "\f0da";
  888. }
  889. i.icon.caret.square.down:before {
  890. content: "\f150";
  891. }
  892. i.icon.caret.square.left:before {
  893. content: "\f191";
  894. }
  895. i.icon.caret.square.right:before {
  896. content: "\f152";
  897. }
  898. i.icon.caret.square.up:before {
  899. content: "\f151";
  900. }
  901. i.icon.caret.up:before {
  902. content: "\f0d8";
  903. }
  904. i.icon.cart.arrow.down:before {
  905. content: "\f218";
  906. }
  907. i.icon.cart.plus:before {
  908. content: "\f217";
  909. }
  910. i.icon.cc.amazon.pay:before {
  911. content: "\f42d";
  912. }
  913. i.icon.cc.amex:before {
  914. content: "\f1f3";
  915. }
  916. i.icon.cc.apple.pay:before {
  917. content: "\f416";
  918. }
  919. i.icon.cc.diners.club:before {
  920. content: "\f24c";
  921. }
  922. i.icon.cc.discover:before {
  923. content: "\f1f2";
  924. }
  925. i.icon.cc.jcb:before {
  926. content: "\f24b";
  927. }
  928. i.icon.cc.mastercard:before {
  929. content: "\f1f1";
  930. }
  931. i.icon.cc.paypal:before {
  932. content: "\f1f4";
  933. }
  934. i.icon.cc.stripe:before {
  935. content: "\f1f5";
  936. }
  937. i.icon.cc.visa:before {
  938. content: "\f1f0";
  939. }
  940. i.icon.centercode:before {
  941. content: "\f380";
  942. }
  943. i.icon.certificate:before {
  944. content: "\f0a3";
  945. }
  946. i.icon.chart.area:before {
  947. content: "\f1fe";
  948. }
  949. i.icon.chart.bar:before {
  950. content: "\f080";
  951. }
  952. i.icon.chart.line:before {
  953. content: "\f201";
  954. }
  955. i.icon.chart.pie:before {
  956. content: "\f200";
  957. }
  958. i.icon.check:before {
  959. content: "\f00c";
  960. }
  961. i.icon.check.circle:before {
  962. content: "\f058";
  963. }
  964. i.icon.check.square:before {
  965. content: "\f14a";
  966. }
  967. i.icon.chess:before {
  968. content: "\f439";
  969. }
  970. i.icon.chess.bishop:before {
  971. content: "\f43a";
  972. }
  973. i.icon.chess.board:before {
  974. content: "\f43c";
  975. }
  976. i.icon.chess.king:before {
  977. content: "\f43f";
  978. }
  979. i.icon.chess.knight:before {
  980. content: "\f441";
  981. }
  982. i.icon.chess.pawn:before {
  983. content: "\f443";
  984. }
  985. i.icon.chess.queen:before {
  986. content: "\f445";
  987. }
  988. i.icon.chess.rook:before {
  989. content: "\f447";
  990. }
  991. i.icon.chevron.circle.down:before {
  992. content: "\f13a";
  993. }
  994. i.icon.chevron.circle.left:before {
  995. content: "\f137";
  996. }
  997. i.icon.chevron.circle.right:before {
  998. content: "\f138";
  999. }
  1000. i.icon.chevron.circle.up:before {
  1001. content: "\f139";
  1002. }
  1003. i.icon.chevron.down:before {
  1004. content: "\f078";
  1005. }
  1006. i.icon.chevron.left:before {
  1007. content: "\f053";
  1008. }
  1009. i.icon.chevron.right:before {
  1010. content: "\f054";
  1011. }
  1012. i.icon.chevron.up:before {
  1013. content: "\f077";
  1014. }
  1015. i.icon.child:before {
  1016. content: "\f1ae";
  1017. }
  1018. i.icon.chrome:before {
  1019. content: "\f268";
  1020. }
  1021. i.icon.circle:before {
  1022. content: "\f111";
  1023. }
  1024. i.icon.circle.notch:before {
  1025. content: "\f1ce";
  1026. }
  1027. i.icon.clipboard:before {
  1028. content: "\f328";
  1029. }
  1030. i.icon.clipboard.check:before {
  1031. content: "\f46c";
  1032. }
  1033. i.icon.clipboard.list:before {
  1034. content: "\f46d";
  1035. }
  1036. i.icon.clock:before {
  1037. content: "\f017";
  1038. }
  1039. i.icon.clone:before {
  1040. content: "\f24d";
  1041. }
  1042. i.icon.closed.captioning:before {
  1043. content: "\f20a";
  1044. }
  1045. i.icon.cloud:before {
  1046. content: "\f0c2";
  1047. }
  1048. i.icon.cloudscale:before {
  1049. content: "\f383";
  1050. }
  1051. i.icon.cloudsmith:before {
  1052. content: "\f384";
  1053. }
  1054. i.icon.cloudversify:before {
  1055. content: "\f385";
  1056. }
  1057. i.icon.code:before {
  1058. content: "\f121";
  1059. }
  1060. i.icon.code.branch:before {
  1061. content: "\f126";
  1062. }
  1063. i.icon.codepen:before {
  1064. content: "\f1cb";
  1065. }
  1066. i.icon.codiepie:before {
  1067. content: "\f284";
  1068. }
  1069. i.icon.coffee:before {
  1070. content: "\f0f4";
  1071. }
  1072. i.icon.cog:before {
  1073. content: "\f013";
  1074. }
  1075. i.icon.cogs:before {
  1076. content: "\f085";
  1077. }
  1078. i.icon.columns:before {
  1079. content: "\f0db";
  1080. }
  1081. i.icon.comment:before {
  1082. content: "\f075";
  1083. }
  1084. i.icon.comment.alternate:before {
  1085. content: "\f27a";
  1086. }
  1087. i.icon.comments:before {
  1088. content: "\f086";
  1089. }
  1090. i.icon.compass:before {
  1091. content: "\f14e";
  1092. }
  1093. i.icon.compress:before {
  1094. content: "\f066";
  1095. }
  1096. i.icon.connectdevelop:before {
  1097. content: "\f20e";
  1098. }
  1099. i.icon.contao:before {
  1100. content: "\f26d";
  1101. }
  1102. i.icon.copy:before {
  1103. content: "\f0c5";
  1104. }
  1105. i.icon.copyright:before {
  1106. content: "\f1f9";
  1107. }
  1108. i.icon.cpanel:before {
  1109. content: "\f388";
  1110. }
  1111. i.icon.creative.commons:before {
  1112. content: "\f25e";
  1113. }
  1114. i.icon.credit.card:before {
  1115. content: "\f09d";
  1116. }
  1117. i.icon.crop:before {
  1118. content: "\f125";
  1119. }
  1120. i.icon.crosshairs:before {
  1121. content: "\f05b";
  1122. }
  1123. i.icon.css3:before {
  1124. content: "\f13c";
  1125. }
  1126. i.icon.css3.alternate:before {
  1127. content: "\f38b";
  1128. }
  1129. i.icon.cube:before {
  1130. content: "\f1b2";
  1131. }
  1132. i.icon.cubes:before {
  1133. content: "\f1b3";
  1134. }
  1135. i.icon.cut:before {
  1136. content: "\f0c4";
  1137. }
  1138. i.icon.cuttlefish:before {
  1139. content: "\f38c";
  1140. }
  1141. i.icon.d.and.d:before {
  1142. content: "\f38d";
  1143. }
  1144. i.icon.dashcube:before {
  1145. content: "\f210";
  1146. }
  1147. i.icon.database:before {
  1148. content: "\f1c0";
  1149. }
  1150. i.icon.deaf:before {
  1151. content: "\f2a4";
  1152. }
  1153. i.icon.delicious:before {
  1154. content: "\f1a5";
  1155. }
  1156. i.icon.deploydog:before {
  1157. content: "\f38e";
  1158. }
  1159. i.icon.deskpro:before {
  1160. content: "\f38f";
  1161. }
  1162. i.icon.desktop:before {
  1163. content: "\f108";
  1164. }
  1165. i.icon.deviantart:before {
  1166. content: "\f1bd";
  1167. }
  1168. i.icon.digg:before {
  1169. content: "\f1a6";
  1170. }
  1171. i.icon.digital.ocean:before {
  1172. content: "\f391";
  1173. }
  1174. i.icon.discord:before {
  1175. content: "\f392";
  1176. }
  1177. i.icon.discourse:before {
  1178. content: "\f393";
  1179. }
  1180. i.icon.dna:before {
  1181. content: "\f471";
  1182. }
  1183. i.icon.dochub:before {
  1184. content: "\f394";
  1185. }
  1186. i.icon.docker:before {
  1187. content: "\f395";
  1188. }
  1189. i.icon.dollar.sign:before {
  1190. content: "\f155";
  1191. }
  1192. i.icon.dolly:before {
  1193. content: "\f472";
  1194. }
  1195. i.icon.dolly.flatbed:before {
  1196. content: "\f474";
  1197. }
  1198. i.icon.dot.circle:before {
  1199. content: "\f192";
  1200. }
  1201. i.icon.download:before {
  1202. content: "\f019";
  1203. }
  1204. i.icon.draft2digital:before {
  1205. content: "\f396";
  1206. }
  1207. i.icon.dribbble:before {
  1208. content: "\f17d";
  1209. }
  1210. i.icon.dribbble.square:before {
  1211. content: "\f397";
  1212. }
  1213. i.icon.dropbox:before {
  1214. content: "\f16b";
  1215. }
  1216. i.icon.drupal:before {
  1217. content: "\f1a9";
  1218. }
  1219. i.icon.dyalog:before {
  1220. content: "\f399";
  1221. }
  1222. i.icon.earlybirds:before {
  1223. content: "\f39a";
  1224. }
  1225. i.icon.edge:before {
  1226. content: "\f282";
  1227. }
  1228. i.icon.edit:before {
  1229. content: "\f044";
  1230. }
  1231. i.icon.eject:before {
  1232. content: "\f052";
  1233. }
  1234. i.icon.elementor:before {
  1235. content: "\f430";
  1236. }
  1237. i.icon.ellipsis.horizontal:before {
  1238. content: "\f141";
  1239. }
  1240. i.icon.ellipsis.vertical:before {
  1241. content: "\f142";
  1242. }
  1243. i.icon.ember:before {
  1244. content: "\f423";
  1245. }
  1246. i.icon.empire:before {
  1247. content: "\f1d1";
  1248. }
  1249. i.icon.envelope:before {
  1250. content: "\f0e0";
  1251. }
  1252. i.icon.envelope.open:before {
  1253. content: "\f2b6";
  1254. }
  1255. i.icon.envelope.square:before {
  1256. content: "\f199";
  1257. }
  1258. i.icon.envira:before {
  1259. content: "\f299";
  1260. }
  1261. i.icon.eraser:before {
  1262. content: "\f12d";
  1263. }
  1264. i.icon.erlang:before {
  1265. content: "\f39d";
  1266. }
  1267. i.icon.ethereum:before {
  1268. content: "\f42e";
  1269. }
  1270. i.icon.etsy:before {
  1271. content: "\f2d7";
  1272. }
  1273. i.icon.euro.sign:before {
  1274. content: "\f153";
  1275. }
  1276. i.icon.exchange.alternate:before {
  1277. content: "\f362";
  1278. }
  1279. i.icon.exclamation:before {
  1280. content: "\f12a";
  1281. }
  1282. i.icon.exclamation.circle:before {
  1283. content: "\f06a";
  1284. }
  1285. i.icon.exclamation.triangle:before {
  1286. content: "\f071";
  1287. }
  1288. i.icon.expand:before {
  1289. content: "\f065";
  1290. }
  1291. i.icon.expand.arrows.alternate:before {
  1292. content: "\f31e";
  1293. }
  1294. i.icon.expeditedssl:before {
  1295. content: "\f23e";
  1296. }
  1297. i.icon.external.alternate:before {
  1298. content: "\f35d";
  1299. }
  1300. i.icon.external.square.alternate:before {
  1301. content: "\f360";
  1302. }
  1303. i.icon.eye:before {
  1304. content: "\f06e";
  1305. }
  1306. i.icon.eye.dropper:before {
  1307. content: "\f1fb";
  1308. }
  1309. i.icon.eye.slash:before {
  1310. content: "\f070";
  1311. }
  1312. i.icon.facebook:before {
  1313. content: "\f09a";
  1314. }
  1315. i.icon.facebook.f:before {
  1316. content: "\f39e";
  1317. }
  1318. i.icon.facebook.messenger:before {
  1319. content: "\f39f";
  1320. }
  1321. i.icon.facebook.square:before {
  1322. content: "\f082";
  1323. }
  1324. i.icon.fast.backward:before {
  1325. content: "\f049";
  1326. }
  1327. i.icon.fast.forward:before {
  1328. content: "\f050";
  1329. }
  1330. i.icon.fax:before {
  1331. content: "\f1ac";
  1332. }
  1333. i.icon.female:before {
  1334. content: "\f182";
  1335. }
  1336. i.icon.fighter.jet:before {
  1337. content: "\f0fb";
  1338. }
  1339. i.icon.file:before {
  1340. content: "\f15b";
  1341. }
  1342. i.icon.file.alternate:before {
  1343. content: "\f15c";
  1344. }
  1345. i.icon.file.archive:before {
  1346. content: "\f1c6";
  1347. }
  1348. i.icon.file.audio:before {
  1349. content: "\f1c7";
  1350. }
  1351. i.icon.file.code:before {
  1352. content: "\f1c9";
  1353. }
  1354. i.icon.file.excel:before {
  1355. content: "\f1c3";
  1356. }
  1357. i.icon.file.image:before {
  1358. content: "\f1c5";
  1359. }
  1360. i.icon.file.pdf:before {
  1361. content: "\f1c1";
  1362. }
  1363. i.icon.file.powerpoint:before {
  1364. content: "\f1c4";
  1365. }
  1366. i.icon.file.video:before {
  1367. content: "\f1c8";
  1368. }
  1369. i.icon.file.word:before {
  1370. content: "\f1c2";
  1371. }
  1372. i.icon.film:before {
  1373. content: "\f008";
  1374. }
  1375. i.icon.filter:before {
  1376. content: "\f0b0";
  1377. }
  1378. i.icon.fire:before {
  1379. content: "\f06d";
  1380. }
  1381. i.icon.fire.extinguisher:before {
  1382. content: "\f134";
  1383. }
  1384. i.icon.firefox:before {
  1385. content: "\f269";
  1386. }
  1387. i.icon.first.aid:before {
  1388. content: "\f479";
  1389. }
  1390. i.icon.first.order:before {
  1391. content: "\f2b0";
  1392. }
  1393. i.icon.firstdraft:before {
  1394. content: "\f3a1";
  1395. }
  1396. i.icon.flag:before {
  1397. content: "\f024";
  1398. }
  1399. i.icon.flag.checkered:before {
  1400. content: "\f11e";
  1401. }
  1402. i.icon.flask:before {
  1403. content: "\f0c3";
  1404. }
  1405. i.icon.flickr:before {
  1406. content: "\f16e";
  1407. }
  1408. i.icon.flipboard:before {
  1409. content: "\f44d";
  1410. }
  1411. i.icon.fly:before {
  1412. content: "\f417";
  1413. }
  1414. i.icon.folder:before {
  1415. content: "\f07b";
  1416. }
  1417. i.icon.folder.open:before {
  1418. content: "\f07c";
  1419. }
  1420. i.icon.font:before {
  1421. content: "\f031";
  1422. }
  1423. i.icon.font.awesome:before {
  1424. content: "\f2b4";
  1425. }
  1426. i.icon.font.awesome.alternate:before {
  1427. content: "\f35c";
  1428. }
  1429. i.icon.font.awesome.flag:before {
  1430. content: "\f425";
  1431. }
  1432. i.icon.fonticons:before {
  1433. content: "\f280";
  1434. }
  1435. i.icon.fonticons.fi:before {
  1436. content: "\f3a2";
  1437. }
  1438. i.icon.football.ball:before {
  1439. content: "\f44e";
  1440. }
  1441. i.icon.fort.awesome:before {
  1442. content: "\f286";
  1443. }
  1444. i.icon.fort.awesome.alternate:before {
  1445. content: "\f3a3";
  1446. }
  1447. i.icon.forumbee:before {
  1448. content: "\f211";
  1449. }
  1450. i.icon.forward:before {
  1451. content: "\f04e";
  1452. }
  1453. i.icon.foursquare:before {
  1454. content: "\f180";
  1455. }
  1456. i.icon.free.code.camp:before {
  1457. content: "\f2c5";
  1458. }
  1459. i.icon.freebsd:before {
  1460. content: "\f3a4";
  1461. }
  1462. i.icon.frown:before {
  1463. content: "\f119";
  1464. }
  1465. i.icon.futbol:before {
  1466. content: "\f1e3";
  1467. }
  1468. i.icon.gamepad:before {
  1469. content: "\f11b";
  1470. }
  1471. i.icon.gavel:before {
  1472. content: "\f0e3";
  1473. }
  1474. i.icon.gem:before {
  1475. content: "\f3a5";
  1476. }
  1477. i.icon.genderless:before {
  1478. content: "\f22d";
  1479. }
  1480. i.icon.get.pocket:before {
  1481. content: "\f265";
  1482. }
  1483. i.icon.gg:before {
  1484. content: "\f260";
  1485. }
  1486. i.icon.gg.circle:before {
  1487. content: "\f261";
  1488. }
  1489. i.icon.gift:before {
  1490. content: "\f06b";
  1491. }
  1492. i.icon.git:before {
  1493. content: "\f1d3";
  1494. }
  1495. i.icon.git.square:before {
  1496. content: "\f1d2";
  1497. }
  1498. i.icon.github:before {
  1499. content: "\f09b";
  1500. }
  1501. i.icon.github.alternate:before {
  1502. content: "\f113";
  1503. }
  1504. i.icon.github.square:before {
  1505. content: "\f092";
  1506. }
  1507. i.icon.gitkraken:before {
  1508. content: "\f3a6";
  1509. }
  1510. i.icon.gitlab:before {
  1511. content: "\f296";
  1512. }
  1513. i.icon.gitter:before {
  1514. content: "\f426";
  1515. }
  1516. i.icon.glass.martini:before {
  1517. content: "\f000";
  1518. }
  1519. i.icon.glide:before {
  1520. content: "\f2a5";
  1521. }
  1522. i.icon.glide.g:before {
  1523. content: "\f2a6";
  1524. }
  1525. i.icon.globe:before {
  1526. content: "\f0ac";
  1527. }
  1528. i.icon.gofore:before {
  1529. content: "\f3a7";
  1530. }
  1531. i.icon.golf.ball:before {
  1532. content: "\f450";
  1533. }
  1534. i.icon.goodreads:before {
  1535. content: "\f3a8";
  1536. }
  1537. i.icon.goodreads.g:before {
  1538. content: "\f3a9";
  1539. }
  1540. i.icon.google:before {
  1541. content: "\f1a0";
  1542. }
  1543. i.icon.google.drive:before {
  1544. content: "\f3aa";
  1545. }
  1546. i.icon.google.play:before {
  1547. content: "\f3ab";
  1548. }
  1549. i.icon.google.plus:before {
  1550. content: "\f2b3";
  1551. }
  1552. i.icon.google.plus.g:before {
  1553. content: "\f0d5";
  1554. }
  1555. i.icon.google.plus.square:before {
  1556. content: "\f0d4";
  1557. }
  1558. i.icon.google.wallet:before {
  1559. content: "\f1ee";
  1560. }
  1561. i.icon.graduation.cap:before {
  1562. content: "\f19d";
  1563. }
  1564. i.icon.gratipay:before {
  1565. content: "\f184";
  1566. }
  1567. i.icon.grav:before {
  1568. content: "\f2d6";
  1569. }
  1570. i.icon.gripfire:before {
  1571. content: "\f3ac";
  1572. }
  1573. i.icon.grunt:before {
  1574. content: "\f3ad";
  1575. }
  1576. i.icon.gulp:before {
  1577. content: "\f3ae";
  1578. }
  1579. i.icon.h.square:before {
  1580. content: "\f0fd";
  1581. }
  1582. i.icon.hacker.news:before {
  1583. content: "\f1d4";
  1584. }
  1585. i.icon.hacker.news.square:before {
  1586. content: "\f3af";
  1587. }
  1588. i.icon.hand.lizard:before {
  1589. content: "\f258";
  1590. }
  1591. i.icon.hand.paper:before {
  1592. content: "\f256";
  1593. }
  1594. i.icon.hand.peace:before {
  1595. content: "\f25b";
  1596. }
  1597. i.icon.hand.point.down:before {
  1598. content: "\f0a7";
  1599. }
  1600. i.icon.hand.point.left:before {
  1601. content: "\f0a5";
  1602. }
  1603. i.icon.hand.point.right:before {
  1604. content: "\f0a4";
  1605. }
  1606. i.icon.hand.point.up:before {
  1607. content: "\f0a6";
  1608. }
  1609. i.icon.hand.pointer:before {
  1610. content: "\f25a";
  1611. }
  1612. i.icon.hand.rock:before {
  1613. content: "\f255";
  1614. }
  1615. i.icon.hand.scissors:before {
  1616. content: "\f257";
  1617. }
  1618. i.icon.hand.spock:before {
  1619. content: "\f259";
  1620. }
  1621. i.icon.handshake:before {
  1622. content: "\f2b5";
  1623. }
  1624. i.icon.hashtag:before {
  1625. content: "\f292";
  1626. }
  1627. i.icon.hdd:before {
  1628. content: "\f0a0";
  1629. }
  1630. i.icon.heading:before {
  1631. content: "\f1dc";
  1632. }
  1633. i.icon.headphones:before {
  1634. content: "\f025";
  1635. }
  1636. i.icon.heart:before {
  1637. content: "\f004";
  1638. }
  1639. i.icon.heartbeat:before {
  1640. content: "\f21e";
  1641. }
  1642. i.icon.hips:before {
  1643. content: "\f452";
  1644. }
  1645. i.icon.hire.a.helper:before {
  1646. content: "\f3b0";
  1647. }
  1648. i.icon.history:before {
  1649. content: "\f1da";
  1650. }
  1651. i.icon.hockey.puck:before {
  1652. content: "\f453";
  1653. }
  1654. i.icon.home:before {
  1655. content: "\f015";
  1656. }
  1657. i.icon.hooli:before {
  1658. content: "\f427";
  1659. }
  1660. i.icon.hospital:before {
  1661. content: "\f0f8";
  1662. }
  1663. i.icon.hospital.symbol:before {
  1664. content: "\f47e";
  1665. }
  1666. i.icon.hotjar:before {
  1667. content: "\f3b1";
  1668. }
  1669. i.icon.hourglass:before {
  1670. content: "\f254";
  1671. }
  1672. i.icon.hourglass.end:before {
  1673. content: "\f253";
  1674. }
  1675. i.icon.hourglass.half:before {
  1676. content: "\f252";
  1677. }
  1678. i.icon.hourglass.start:before {
  1679. content: "\f251";
  1680. }
  1681. i.icon.houzz:before {
  1682. content: "\f27c";
  1683. }
  1684. i.icon.html5:before {
  1685. content: "\f13b";
  1686. }
  1687. i.icon.hubspot:before {
  1688. content: "\f3b2";
  1689. }
  1690. i.icon.i.cursor:before {
  1691. content: "\f246";
  1692. }
  1693. i.icon.id.badge:before {
  1694. content: "\f2c1";
  1695. }
  1696. i.icon.id.card:before {
  1697. content: "\f2c2";
  1698. }
  1699. i.icon.image:before {
  1700. content: "\f03e";
  1701. }
  1702. i.icon.images:before {
  1703. content: "\f302";
  1704. }
  1705. i.icon.imdb:before {
  1706. content: "\f2d8";
  1707. }
  1708. i.icon.inbox:before {
  1709. content: "\f01c";
  1710. }
  1711. i.icon.indent:before {
  1712. content: "\f03c";
  1713. }
  1714. i.icon.industry:before {
  1715. content: "\f275";
  1716. }
  1717. i.icon.info:before {
  1718. content: "\f129";
  1719. }
  1720. i.icon.info.circle:before {
  1721. content: "\f05a";
  1722. }
  1723. i.icon.instagram:before {
  1724. content: "\f16d";
  1725. }
  1726. i.icon.internet.explorer:before {
  1727. content: "\f26b";
  1728. }
  1729. i.icon.ioxhost:before {
  1730. content: "\f208";
  1731. }
  1732. i.icon.italic:before {
  1733. content: "\f033";
  1734. }
  1735. i.icon.itunes:before {
  1736. content: "\f3b4";
  1737. }
  1738. i.icon.itunes.note:before {
  1739. content: "\f3b5";
  1740. }
  1741. i.icon.jenkins:before {
  1742. content: "\f3b6";
  1743. }
  1744. i.icon.joget:before {
  1745. content: "\f3b7";
  1746. }
  1747. i.icon.joomla:before {
  1748. content: "\f1aa";
  1749. }
  1750. i.icon.js:before {
  1751. content: "\f3b8";
  1752. }
  1753. i.icon.js.square:before {
  1754. content: "\f3b9";
  1755. }
  1756. i.icon.jsfiddle:before {
  1757. content: "\f1cc";
  1758. }
  1759. i.icon.key:before {
  1760. content: "\f084";
  1761. }
  1762. i.icon.keyboard:before {
  1763. content: "\f11c";
  1764. }
  1765. i.icon.keycdn:before {
  1766. content: "\f3ba";
  1767. }
  1768. i.icon.kickstarter:before {
  1769. content: "\f3bb";
  1770. }
  1771. i.icon.kickstarter.k:before {
  1772. content: "\f3bc";
  1773. }
  1774. i.icon.korvue:before {
  1775. content: "\f42f";
  1776. }
  1777. i.icon.language:before {
  1778. content: "\f1ab";
  1779. }
  1780. i.icon.laptop:before {
  1781. content: "\f109";
  1782. }
  1783. i.icon.laravel:before {
  1784. content: "\f3bd";
  1785. }
  1786. i.icon.lastfm:before {
  1787. content: "\f202";
  1788. }
  1789. i.icon.lastfm.square:before {
  1790. content: "\f203";
  1791. }
  1792. i.icon.leaf:before {
  1793. content: "\f06c";
  1794. }
  1795. i.icon.leanpub:before {
  1796. content: "\f212";
  1797. }
  1798. i.icon.lemon:before {
  1799. content: "\f094";
  1800. }
  1801. i.icon.less:before {
  1802. content: "\f41d";
  1803. }
  1804. i.icon.level.down.alternate:before {
  1805. content: "\f3be";
  1806. }
  1807. i.icon.level.up.alternate:before {
  1808. content: "\f3bf";
  1809. }
  1810. i.icon.life.ring:before {
  1811. content: "\f1cd";
  1812. }
  1813. i.icon.lightbulb:before {
  1814. content: "\f0eb";
  1815. }
  1816. i.icon.linechat:before {
  1817. content: "\f3c0";
  1818. }
  1819. i.icon.linkify:before {
  1820. content: "\f0c1";
  1821. }
  1822. i.icon.linkedin:before {
  1823. content: "\f08c";
  1824. }
  1825. i.icon.linkedin.alt:before {
  1826. content: "\f0e1";
  1827. }
  1828. i.icon.linode:before {
  1829. content: "\f2b8";
  1830. }
  1831. i.icon.linux:before {
  1832. content: "\f17c";
  1833. }
  1834. i.icon.lira.sign:before {
  1835. content: "\f195";
  1836. }
  1837. i.icon.list:before {
  1838. content: "\f03a";
  1839. }
  1840. i.icon.list.alternate:before {
  1841. content: "\f022";
  1842. }
  1843. i.icon.list.ol:before {
  1844. content: "\f0cb";
  1845. }
  1846. i.icon.list.ul:before {
  1847. content: "\f0ca";
  1848. }
  1849. i.icon.location.arrow:before {
  1850. content: "\f124";
  1851. }
  1852. i.icon.lock:before {
  1853. content: "\f023";
  1854. }
  1855. i.icon.lock.open:before {
  1856. content: "\f3c1";
  1857. }
  1858. i.icon.long.arrow.alternate.down:before {
  1859. content: "\f309";
  1860. }
  1861. i.icon.long.arrow.alternate.left:before {
  1862. content: "\f30a";
  1863. }
  1864. i.icon.long.arrow.alternate.right:before {
  1865. content: "\f30b";
  1866. }
  1867. i.icon.long.arrow.alternate.up:before {
  1868. content: "\f30c";
  1869. }
  1870. i.icon.low.vision:before {
  1871. content: "\f2a8";
  1872. }
  1873. i.icon.lyft:before {
  1874. content: "\f3c3";
  1875. }
  1876. i.icon.magento:before {
  1877. content: "\f3c4";
  1878. }
  1879. i.icon.magic:before {
  1880. content: "\f0d0";
  1881. }
  1882. i.icon.magnet:before {
  1883. content: "\f076";
  1884. }
  1885. i.icon.male:before {
  1886. content: "\f183";
  1887. }
  1888. i.icon.map:before {
  1889. content: "\f279";
  1890. }
  1891. i.icon.map.marker:before {
  1892. content: "\f041";
  1893. }
  1894. i.icon.map.marker.alternate:before {
  1895. content: "\f3c5";
  1896. }
  1897. i.icon.map.pin:before {
  1898. content: "\f276";
  1899. }
  1900. i.icon.map.signs:before {
  1901. content: "\f277";
  1902. }
  1903. i.icon.mars:before {
  1904. content: "\f222";
  1905. }
  1906. i.icon.mars.double:before {
  1907. content: "\f227";
  1908. }
  1909. i.icon.mars.stroke:before {
  1910. content: "\f229";
  1911. }
  1912. i.icon.mars.stroke.horizontal:before {
  1913. content: "\f22b";
  1914. }
  1915. i.icon.mars.stroke.vertical:before {
  1916. content: "\f22a";
  1917. }
  1918. i.icon.maxcdn:before {
  1919. content: "\f136";
  1920. }
  1921. i.icon.medapps:before {
  1922. content: "\f3c6";
  1923. }
  1924. i.icon.medium:before {
  1925. content: "\f23a";
  1926. }
  1927. i.icon.medium.m:before {
  1928. content: "\f3c7";
  1929. }
  1930. i.icon.medkit:before {
  1931. content: "\f0fa";
  1932. }
  1933. i.icon.medrt:before {
  1934. content: "\f3c8";
  1935. }
  1936. i.icon.meetup:before {
  1937. content: "\f2e0";
  1938. }
  1939. i.icon.meh:before {
  1940. content: "\f11a";
  1941. }
  1942. i.icon.mercury:before {
  1943. content: "\f223";
  1944. }
  1945. i.icon.microchip:before {
  1946. content: "\f2db";
  1947. }
  1948. i.icon.microphone:before {
  1949. content: "\f130";
  1950. }
  1951. i.icon.microphone.slash:before {
  1952. content: "\f131";
  1953. }
  1954. i.icon.microsoft:before {
  1955. content: "\f3ca";
  1956. }
  1957. i.icon.minus:before {
  1958. content: "\f068";
  1959. }
  1960. i.icon.minus.circle:before {
  1961. content: "\f056";
  1962. }
  1963. i.icon.minus.square:before {
  1964. content: "\f146";
  1965. }
  1966. i.icon.mix:before {
  1967. content: "\f3cb";
  1968. }
  1969. i.icon.mixcloud:before {
  1970. content: "\f289";
  1971. }
  1972. i.icon.mizuni:before {
  1973. content: "\f3cc";
  1974. }
  1975. i.icon.mobile:before {
  1976. content: "\f10b";
  1977. }
  1978. i.icon.mobile.alternate:before {
  1979. content: "\f3cd";
  1980. }
  1981. i.icon.modx:before {
  1982. content: "\f285";
  1983. }
  1984. i.icon.monero:before {
  1985. content: "\f3d0";
  1986. }
  1987. i.icon.money.bill.alternate:before {
  1988. content: "\f3d1";
  1989. }
  1990. i.icon.moon:before {
  1991. content: "\f186";
  1992. }
  1993. i.icon.motorcycle:before {
  1994. content: "\f21c";
  1995. }
  1996. i.icon.mouse.pointer:before {
  1997. content: "\f245";
  1998. }
  1999. i.icon.music:before {
  2000. content: "\f001";
  2001. }
  2002. i.icon.napster:before {
  2003. content: "\f3d2";
  2004. }
  2005. i.icon.neuter:before {
  2006. content: "\f22c";
  2007. }
  2008. i.icon.newspaper:before {
  2009. content: "\f1ea";
  2010. }
  2011. i.icon.nintendo.switch:before {
  2012. content: "\f418";
  2013. }
  2014. i.icon.node:before {
  2015. content: "\f419";
  2016. }
  2017. i.icon.node.js:before {
  2018. content: "\f3d3";
  2019. }
  2020. i.icon.npm:before {
  2021. content: "\f3d4";
  2022. }
  2023. i.icon.ns8:before {
  2024. content: "\f3d5";
  2025. }
  2026. i.icon.nutritionix:before {
  2027. content: "\f3d6";
  2028. }
  2029. i.icon.object.group:before {
  2030. content: "\f247";
  2031. }
  2032. i.icon.object.ungroup:before {
  2033. content: "\f248";
  2034. }
  2035. i.icon.odnoklassniki:before {
  2036. content: "\f263";
  2037. }
  2038. i.icon.odnoklassniki.square:before {
  2039. content: "\f264";
  2040. }
  2041. i.icon.opencart:before {
  2042. content: "\f23d";
  2043. }
  2044. i.icon.openid:before {
  2045. content: "\f19b";
  2046. }
  2047. i.icon.opera:before {
  2048. content: "\f26a";
  2049. }
  2050. i.icon.optin.monster:before {
  2051. content: "\f23c";
  2052. }
  2053. i.icon.osi:before {
  2054. content: "\f41a";
  2055. }
  2056. i.icon.outdent:before {
  2057. content: "\f03b";
  2058. }
  2059. i.icon.page4:before {
  2060. content: "\f3d7";
  2061. }
  2062. i.icon.pagelines:before {
  2063. content: "\f18c";
  2064. }
  2065. i.icon.paint.brush:before {
  2066. content: "\f1fc";
  2067. }
  2068. i.icon.palfed:before {
  2069. content: "\f3d8";
  2070. }
  2071. i.icon.pallet:before {
  2072. content: "\f482";
  2073. }
  2074. i.icon.paper.plane:before {
  2075. content: "\f1d8";
  2076. }
  2077. i.icon.paperclip:before {
  2078. content: "\f0c6";
  2079. }
  2080. i.icon.paragraph:before {
  2081. content: "\f1dd";
  2082. }
  2083. i.icon.paste:before {
  2084. content: "\f0ea";
  2085. }
  2086. i.icon.patreon:before {
  2087. content: "\f3d9";
  2088. }
  2089. i.icon.pause:before {
  2090. content: "\f04c";
  2091. }
  2092. i.icon.pause.circle:before {
  2093. content: "\f28b";
  2094. }
  2095. i.icon.paw:before {
  2096. content: "\f1b0";
  2097. }
  2098. i.icon.paypal:before {
  2099. content: "\f1ed";
  2100. }
  2101. i.icon.pen.square:before {
  2102. content: "\f14b";
  2103. }
  2104. i.icon.pencil.alternate:before {
  2105. content: "\f303";
  2106. }
  2107. i.icon.percent:before {
  2108. content: "\f295";
  2109. }
  2110. i.icon.periscope:before {
  2111. content: "\f3da";
  2112. }
  2113. i.icon.phabricator:before {
  2114. content: "\f3db";
  2115. }
  2116. i.icon.phoenix.framework:before {
  2117. content: "\f3dc";
  2118. }
  2119. i.icon.phone:before {
  2120. content: "\f095";
  2121. }
  2122. i.icon.phone.square:before {
  2123. content: "\f098";
  2124. }
  2125. i.icon.phone.volume:before {
  2126. content: "\f2a0";
  2127. }
  2128. i.icon.php:before {
  2129. content: "\f457";
  2130. }
  2131. i.icon.pied.piper:before {
  2132. content: "\f2ae";
  2133. }
  2134. i.icon.pied.piper.alternate:before {
  2135. content: "\f1a8";
  2136. }
  2137. i.icon.pied.piper.pp:before {
  2138. content: "\f1a7";
  2139. }
  2140. i.icon.pills:before {
  2141. content: "\f484";
  2142. }
  2143. i.icon.pinterest:before {
  2144. content: "\f0d2";
  2145. }
  2146. i.icon.pinterest.p:before {
  2147. content: "\f231";
  2148. }
  2149. i.icon.pinterest.square:before {
  2150. content: "\f0d3";
  2151. }
  2152. i.icon.plane:before {
  2153. content: "\f072";
  2154. }
  2155. i.icon.play:before {
  2156. content: "\f04b";
  2157. }
  2158. i.icon.play.circle:before {
  2159. content: "\f144";
  2160. }
  2161. i.icon.playstation:before {
  2162. content: "\f3df";
  2163. }
  2164. i.icon.plug:before {
  2165. content: "\f1e6";
  2166. }
  2167. i.icon.plus:before {
  2168. content: "\f067";
  2169. }
  2170. i.icon.plus.circle:before {
  2171. content: "\f055";
  2172. }
  2173. i.icon.plus.square:before {
  2174. content: "\f0fe";
  2175. }
  2176. i.icon.podcast:before {
  2177. content: "\f2ce";
  2178. }
  2179. i.icon.pound.sign:before {
  2180. content: "\f154";
  2181. }
  2182. i.icon.power.off:before {
  2183. content: "\f011";
  2184. }
  2185. i.icon.print:before {
  2186. content: "\f02f";
  2187. }
  2188. i.icon.product.hunt:before {
  2189. content: "\f288";
  2190. }
  2191. i.icon.pushed:before {
  2192. content: "\f3e1";
  2193. }
  2194. i.icon.puzzle.piece:before {
  2195. content: "\f12e";
  2196. }
  2197. i.icon.python:before {
  2198. content: "\f3e2";
  2199. }
  2200. i.icon.qq:before {
  2201. content: "\f1d6";
  2202. }
  2203. i.icon.qrcode:before {
  2204. content: "\f029";
  2205. }
  2206. i.icon.question:before {
  2207. content: "\f128";
  2208. }
  2209. i.icon.question.circle:before {
  2210. content: "\f059";
  2211. }
  2212. i.icon.quidditch:before {
  2213. content: "\f458";
  2214. }
  2215. i.icon.quinscape:before {
  2216. content: "\f459";
  2217. }
  2218. i.icon.quora:before {
  2219. content: "\f2c4";
  2220. }
  2221. i.icon.quote.left:before {
  2222. content: "\f10d";
  2223. }
  2224. i.icon.quote.right:before {
  2225. content: "\f10e";
  2226. }
  2227. i.icon.random:before {
  2228. content: "\f074";
  2229. }
  2230. i.icon.ravelry:before {
  2231. content: "\f2d9";
  2232. }
  2233. i.icon.react:before {
  2234. content: "\f41b";
  2235. }
  2236. i.icon.rebel:before {
  2237. content: "\f1d0";
  2238. }
  2239. i.icon.recycle:before {
  2240. content: "\f1b8";
  2241. }
  2242. i.icon.redriver:before {
  2243. content: "\f3e3";
  2244. }
  2245. i.icon.reddit:before {
  2246. content: "\f1a1";
  2247. }
  2248. i.icon.reddit.alien:before {
  2249. content: "\f281";
  2250. }
  2251. i.icon.reddit.square:before {
  2252. content: "\f1a2";
  2253. }
  2254. i.icon.redo:before {
  2255. content: "\f01e";
  2256. }
  2257. i.icon.redo.alternate:before {
  2258. content: "\f2f9";
  2259. }
  2260. i.icon.registered:before {
  2261. content: "\f25d";
  2262. }
  2263. i.icon.rendact:before {
  2264. content: "\f3e4";
  2265. }
  2266. i.icon.renren:before {
  2267. content: "\f18b";
  2268. }
  2269. i.icon.reply:before {
  2270. content: "\f3e5";
  2271. }
  2272. i.icon.reply.all:before {
  2273. content: "\f122";
  2274. }
  2275. i.icon.replyd:before {
  2276. content: "\f3e6";
  2277. }
  2278. i.icon.resolving:before {
  2279. content: "\f3e7";
  2280. }
  2281. i.icon.retweet:before {
  2282. content: "\f079";
  2283. }
  2284. i.icon.road:before {
  2285. content: "\f018";
  2286. }
  2287. i.icon.rocket:before {
  2288. content: "\f135";
  2289. }
  2290. i.icon.rocketchat:before {
  2291. content: "\f3e8";
  2292. }
  2293. i.icon.rockrms:before {
  2294. content: "\f3e9";
  2295. }
  2296. i.icon.rss:before {
  2297. content: "\f09e";
  2298. }
  2299. i.icon.rss.square:before {
  2300. content: "\f143";
  2301. }
  2302. i.icon.ruble.sign:before {
  2303. content: "\f158";
  2304. }
  2305. i.icon.rupee.sign:before {
  2306. content: "\f156";
  2307. }
  2308. i.icon.safari:before {
  2309. content: "\f267";
  2310. }
  2311. i.icon.sass:before {
  2312. content: "\f41e";
  2313. }
  2314. i.icon.save:before {
  2315. content: "\f0c7";
  2316. }
  2317. i.icon.schlix:before {
  2318. content: "\f3ea";
  2319. }
  2320. i.icon.scribd:before {
  2321. content: "\f28a";
  2322. }
  2323. i.icon.search:before {
  2324. content: "\f002";
  2325. }
  2326. i.icon.search.minus:before {
  2327. content: "\f010";
  2328. }
  2329. i.icon.search.plus:before {
  2330. content: "\f00e";
  2331. }
  2332. i.icon.searchengin:before {
  2333. content: "\f3eb";
  2334. }
  2335. i.icon.sellcast:before {
  2336. content: "\f2da";
  2337. }
  2338. i.icon.sellsy:before {
  2339. content: "\f213";
  2340. }
  2341. i.icon.server:before {
  2342. content: "\f233";
  2343. }
  2344. i.icon.servicestack:before {
  2345. content: "\f3ec";
  2346. }
  2347. i.icon.share:before {
  2348. content: "\f064";
  2349. }
  2350. i.icon.share.alternate:before {
  2351. content: "\f1e0";
  2352. }
  2353. i.icon.share.alternate.square:before {
  2354. content: "\f1e1";
  2355. }
  2356. i.icon.share.square:before {
  2357. content: "\f14d";
  2358. }
  2359. i.icon.shekel.sign:before {
  2360. content: "\f20b";
  2361. }
  2362. i.icon.shield.alternate:before {
  2363. content: "\f3ed";
  2364. }
  2365. i.icon.ship:before {
  2366. content: "\f21a";
  2367. }
  2368. i.icon.shipping.fast:before {
  2369. content: "\f48b";
  2370. }
  2371. i.icon.shirtsinbulk:before {
  2372. content: "\f214";
  2373. }
  2374. i.icon.shopping.bag:before {
  2375. content: "\f290";
  2376. }
  2377. i.icon.shopping.basket:before {
  2378. content: "\f291";
  2379. }
  2380. i.icon.shopping.cart:before {
  2381. content: "\f07a";
  2382. }
  2383. i.icon.shower:before {
  2384. content: "\f2cc";
  2385. }
  2386. i.icon.sign.language:before {
  2387. content: "\f2a7";
  2388. }
  2389. i.icon.signal:before {
  2390. content: "\f012";
  2391. }
  2392. i.icon.simplybuilt:before {
  2393. content: "\f215";
  2394. }
  2395. i.icon.sistrix:before {
  2396. content: "\f3ee";
  2397. }
  2398. i.icon.sitemap:before {
  2399. content: "\f0e8";
  2400. }
  2401. i.icon.skyatlas:before {
  2402. content: "\f216";
  2403. }
  2404. i.icon.skype:before {
  2405. content: "\f17e";
  2406. }
  2407. i.icon.slack:before {
  2408. content: "\f198";
  2409. }
  2410. i.icon.slack.hash:before {
  2411. content: "\f3ef";
  2412. }
  2413. i.icon.sliders.horizontal:before {
  2414. content: "\f1de";
  2415. }
  2416. i.icon.slideshare:before {
  2417. content: "\f1e7";
  2418. }
  2419. i.icon.smile:before {
  2420. content: "\f118";
  2421. }
  2422. i.icon.snapchat:before {
  2423. content: "\f2ab";
  2424. }
  2425. i.icon.snapchat.ghost:before {
  2426. content: "\f2ac";
  2427. }
  2428. i.icon.snapchat.square:before {
  2429. content: "\f2ad";
  2430. }
  2431. i.icon.snowflake:before {
  2432. content: "\f2dc";
  2433. }
  2434. i.icon.sort:before {
  2435. content: "\f0dc";
  2436. }
  2437. i.icon.sort.alphabet.down:before {
  2438. content: "\f15d";
  2439. }
  2440. i.icon.sort.alphabet.up:before {
  2441. content: "\f15e";
  2442. }
  2443. i.icon.sort.amount.down:before {
  2444. content: "\f160";
  2445. }
  2446. i.icon.sort.amount.up:before {
  2447. content: "\f161";
  2448. }
  2449. i.icon.sort.down:before {
  2450. content: "\f0dd";
  2451. }
  2452. i.icon.sort.numeric.down:before {
  2453. content: "\f162";
  2454. }
  2455. i.icon.sort.numeric.up:before {
  2456. content: "\f163";
  2457. }
  2458. i.icon.sort.up:before {
  2459. content: "\f0de";
  2460. }
  2461. i.icon.soundcloud:before {
  2462. content: "\f1be";
  2463. }
  2464. i.icon.space.shuttle:before {
  2465. content: "\f197";
  2466. }
  2467. i.icon.speakap:before {
  2468. content: "\f3f3";
  2469. }
  2470. i.icon.spinner:before {
  2471. content: "\f110";
  2472. }
  2473. i.icon.spotify:before {
  2474. content: "\f1bc";
  2475. }
  2476. i.icon.square:before {
  2477. content: "\f0c8";
  2478. }
  2479. i.icon.square.full:before {
  2480. content: "\f45c";
  2481. }
  2482. i.icon.stack.exchange:before {
  2483. content: "\f18d";
  2484. }
  2485. i.icon.stack.overflow:before {
  2486. content: "\f16c";
  2487. }
  2488. i.icon.star:before {
  2489. content: "\f005";
  2490. }
  2491. i.icon.star.half:before {
  2492. content: "\f089";
  2493. }
  2494. i.icon.staylinked:before {
  2495. content: "\f3f5";
  2496. }
  2497. i.icon.steam:before {
  2498. content: "\f1b6";
  2499. }
  2500. i.icon.steam.square:before {
  2501. content: "\f1b7";
  2502. }
  2503. i.icon.steam.symbol:before {
  2504. content: "\f3f6";
  2505. }
  2506. i.icon.step.backward:before {
  2507. content: "\f048";
  2508. }
  2509. i.icon.step.forward:before {
  2510. content: "\f051";
  2511. }
  2512. i.icon.stethoscope:before {
  2513. content: "\f0f1";
  2514. }
  2515. i.icon.sticker.mule:before {
  2516. content: "\f3f7";
  2517. }
  2518. i.icon.sticky.note:before {
  2519. content: "\f249";
  2520. }
  2521. i.icon.stop:before {
  2522. content: "\f04d";
  2523. }
  2524. i.icon.stop.circle:before {
  2525. content: "\f28d";
  2526. }
  2527. i.icon.stopwatch:before {
  2528. content: "\f2f2";
  2529. }
  2530. i.icon.strava:before {
  2531. content: "\f428";
  2532. }
  2533. i.icon.street.view:before {
  2534. content: "\f21d";
  2535. }
  2536. i.icon.strikethrough:before {
  2537. content: "\f0cc";
  2538. }
  2539. i.icon.stripe:before {
  2540. content: "\f429";
  2541. }
  2542. i.icon.stripe.s:before {
  2543. content: "\f42a";
  2544. }
  2545. i.icon.studiovinari:before {
  2546. content: "\f3f8";
  2547. }
  2548. i.icon.stumbleupon:before {
  2549. content: "\f1a4";
  2550. }
  2551. i.icon.stumbleupon.circle:before {
  2552. content: "\f1a3";
  2553. }
  2554. i.icon.subscript:before {
  2555. content: "\f12c";
  2556. }
  2557. i.icon.subway:before {
  2558. content: "\f239";
  2559. }
  2560. i.icon.suitcase:before {
  2561. content: "\f0f2";
  2562. }
  2563. i.icon.sun:before {
  2564. content: "\f185";
  2565. }
  2566. i.icon.superpowers:before {
  2567. content: "\f2dd";
  2568. }
  2569. i.icon.superscript:before {
  2570. content: "\f12b";
  2571. }
  2572. i.icon.supple:before {
  2573. content: "\f3f9";
  2574. }
  2575. i.icon.sync:before {
  2576. content: "\f021";
  2577. }
  2578. i.icon.sync.alternate:before {
  2579. content: "\f2f1";
  2580. }
  2581. i.icon.syringe:before {
  2582. content: "\f48e";
  2583. }
  2584. i.icon.table:before {
  2585. content: "\f0ce";
  2586. }
  2587. i.icon.table.tennis:before {
  2588. content: "\f45d";
  2589. }
  2590. i.icon.tablet:before {
  2591. content: "\f10a";
  2592. }
  2593. i.icon.tablet.alternate:before {
  2594. content: "\f3fa";
  2595. }
  2596. i.icon.tachometer.alternate:before {
  2597. content: "\f3fd";
  2598. }
  2599. i.icon.tag:before {
  2600. content: "\f02b";
  2601. }
  2602. i.icon.tags:before {
  2603. content: "\f02c";
  2604. }
  2605. i.icon.tasks:before {
  2606. content: "\f0ae";
  2607. }
  2608. i.icon.taxi:before {
  2609. content: "\f1ba";
  2610. }
  2611. i.icon.telegram:before {
  2612. content: "\f2c6";
  2613. }
  2614. i.icon.telegram.plane:before {
  2615. content: "\f3fe";
  2616. }
  2617. i.icon.tencent.weibo:before {
  2618. content: "\f1d5";
  2619. }
  2620. i.icon.terminal:before {
  2621. content: "\f120";
  2622. }
  2623. i.icon.text.height:before {
  2624. content: "\f034";
  2625. }
  2626. i.icon.text.width:before {
  2627. content: "\f035";
  2628. }
  2629. i.icon.th:before {
  2630. content: "\f00a";
  2631. }
  2632. i.icon.th.large:before {
  2633. content: "\f009";
  2634. }
  2635. i.icon.th.list:before {
  2636. content: "\f00b";
  2637. }
  2638. i.icon.themeisle:before {
  2639. content: "\f2b2";
  2640. }
  2641. i.icon.thermometer:before {
  2642. content: "\f491";
  2643. }
  2644. i.icon.thermometer.empty:before {
  2645. content: "\f2cb";
  2646. }
  2647. i.icon.thermometer.full:before {
  2648. content: "\f2c7";
  2649. }
  2650. i.icon.thermometer.half:before {
  2651. content: "\f2c9";
  2652. }
  2653. i.icon.thermometer.quarter:before {
  2654. content: "\f2ca";
  2655. }
  2656. i.icon.thermometer.three.quarters:before {
  2657. content: "\f2c8";
  2658. }
  2659. i.icon.thumbs.down:before {
  2660. content: "\f165";
  2661. }
  2662. i.icon.thumbs.up:before {
  2663. content: "\f164";
  2664. }
  2665. i.icon.thumbtack:before {
  2666. content: "\f08d";
  2667. }
  2668. i.icon.ticket.alternate:before {
  2669. content: "\f3ff";
  2670. }
  2671. i.icon.times:before {
  2672. content: "\f00d";
  2673. }
  2674. i.icon.times.circle:before {
  2675. content: "\f057";
  2676. }
  2677. i.icon.tint:before {
  2678. content: "\f043";
  2679. }
  2680. i.icon.toggle.off:before {
  2681. content: "\f204";
  2682. }
  2683. i.icon.toggle.on:before {
  2684. content: "\f205";
  2685. }
  2686. i.icon.trademark:before {
  2687. content: "\f25c";
  2688. }
  2689. i.icon.train:before {
  2690. content: "\f238";
  2691. }
  2692. i.icon.transgender:before {
  2693. content: "\f224";
  2694. }
  2695. i.icon.transgender.alternate:before {
  2696. content: "\f225";
  2697. }
  2698. i.icon.trash:before {
  2699. content: "\f1f8";
  2700. }
  2701. i.icon.trash.alternate:before {
  2702. content: "\f2ed";
  2703. }
  2704. i.icon.tree:before {
  2705. content: "\f1bb";
  2706. }
  2707. i.icon.trello:before {
  2708. content: "\f181";
  2709. }
  2710. i.icon.tripadvisor:before {
  2711. content: "\f262";
  2712. }
  2713. i.icon.trophy:before {
  2714. content: "\f091";
  2715. }
  2716. i.icon.truck:before {
  2717. content: "\f0d1";
  2718. }
  2719. i.icon.tty:before {
  2720. content: "\f1e4";
  2721. }
  2722. i.icon.tumblr:before {
  2723. content: "\f173";
  2724. }
  2725. i.icon.tumblr.square:before {
  2726. content: "\f174";
  2727. }
  2728. i.icon.tv:before {
  2729. content: "\f26c";
  2730. }
  2731. i.icon.twitch:before {
  2732. content: "\f1e8";
  2733. }
  2734. i.icon.twitter:before {
  2735. content: "\f099";
  2736. }
  2737. i.icon.twitter.square:before {
  2738. content: "\f081";
  2739. }
  2740. i.icon.typo3:before {
  2741. content: "\f42b";
  2742. }
  2743. i.icon.uber:before {
  2744. content: "\f402";
  2745. }
  2746. i.icon.uikit:before {
  2747. content: "\f403";
  2748. }
  2749. i.icon.umbrella:before {
  2750. content: "\f0e9";
  2751. }
  2752. i.icon.underline:before {
  2753. content: "\f0cd";
  2754. }
  2755. i.icon.undo:before {
  2756. content: "\f0e2";
  2757. }
  2758. i.icon.undo.alternate:before {
  2759. content: "\f2ea";
  2760. }
  2761. i.icon.uniregistry:before {
  2762. content: "\f404";
  2763. }
  2764. i.icon.universal.access:before {
  2765. content: "\f29a";
  2766. }
  2767. i.icon.university:before {
  2768. content: "\f19c";
  2769. }
  2770. i.icon.unlink:before {
  2771. content: "\f127";
  2772. }
  2773. i.icon.unlock:before {
  2774. content: "\f09c";
  2775. }
  2776. i.icon.unlock.alternate:before {
  2777. content: "\f13e";
  2778. }
  2779. i.icon.untappd:before {
  2780. content: "\f405";
  2781. }
  2782. i.icon.upload:before {
  2783. content: "\f093";
  2784. }
  2785. i.icon.usb:before {
  2786. content: "\f287";
  2787. }
  2788. i.icon.user:before {
  2789. content: "\f007";
  2790. }
  2791. i.icon.user.circle:before {
  2792. content: "\f2bd";
  2793. }
  2794. i.icon.user.md:before {
  2795. content: "\f0f0";
  2796. }
  2797. i.icon.user.plus:before {
  2798. content: "\f234";
  2799. }
  2800. i.icon.user.secret:before {
  2801. content: "\f21b";
  2802. }
  2803. i.icon.user.times:before {
  2804. content: "\f235";
  2805. }
  2806. i.icon.users:before {
  2807. content: "\f0c0";
  2808. }
  2809. i.icon.ussunnah:before {
  2810. content: "\f407";
  2811. }
  2812. i.icon.utensil.spoon:before {
  2813. content: "\f2e5";
  2814. }
  2815. i.icon.utensils:before {
  2816. content: "\f2e7";
  2817. }
  2818. i.icon.vaadin:before {
  2819. content: "\f408";
  2820. }
  2821. i.icon.venus:before {
  2822. content: "\f221";
  2823. }
  2824. i.icon.venus.double:before {
  2825. content: "\f226";
  2826. }
  2827. i.icon.venus.mars:before {
  2828. content: "\f228";
  2829. }
  2830. i.icon.viacoin:before {
  2831. content: "\f237";
  2832. }
  2833. i.icon.viadeo:before {
  2834. content: "\f2a9";
  2835. }
  2836. i.icon.viadeo.square:before {
  2837. content: "\f2aa";
  2838. }
  2839. i.icon.viber:before {
  2840. content: "\f409";
  2841. }
  2842. i.icon.video:before {
  2843. content: "\f03d";
  2844. }
  2845. i.icon.vimeo:before {
  2846. content: "\f40a";
  2847. }
  2848. i.icon.vimeo.square:before {
  2849. content: "\f194";
  2850. }
  2851. i.icon.vimeo.v:before {
  2852. content: "\f27d";
  2853. }
  2854. i.icon.vine:before {
  2855. content: "\f1ca";
  2856. }
  2857. i.icon.vk:before {
  2858. content: "\f189";
  2859. }
  2860. i.icon.vnv:before {
  2861. content: "\f40b";
  2862. }
  2863. i.icon.volleyball.ball:before {
  2864. content: "\f45f";
  2865. }
  2866. i.icon.volume.down:before {
  2867. content: "\f027";
  2868. }
  2869. i.icon.volume.off:before {
  2870. content: "\f026";
  2871. }
  2872. i.icon.volume.up:before {
  2873. content: "\f028";
  2874. }
  2875. i.icon.vuejs:before {
  2876. content: "\f41f";
  2877. }
  2878. i.icon.warehouse:before {
  2879. content: "\f494";
  2880. }
  2881. i.icon.weibo:before {
  2882. content: "\f18a";
  2883. }
  2884. i.icon.weight:before {
  2885. content: "\f496";
  2886. }
  2887. i.icon.weixin:before {
  2888. content: "\f1d7";
  2889. }
  2890. i.icon.whatsapp:before {
  2891. content: "\f232";
  2892. }
  2893. i.icon.whatsapp.square:before {
  2894. content: "\f40c";
  2895. }
  2896. i.icon.wheelchair:before {
  2897. content: "\f193";
  2898. }
  2899. i.icon.whmcs:before {
  2900. content: "\f40d";
  2901. }
  2902. i.icon.wifi:before {
  2903. content: "\f1eb";
  2904. }
  2905. i.icon.wikipedia.w:before {
  2906. content: "\f266";
  2907. }
  2908. i.icon.window.close:before {
  2909. content: "\f410";
  2910. }
  2911. i.icon.window.maximize:before {
  2912. content: "\f2d0";
  2913. }
  2914. i.icon.window.minimize:before {
  2915. content: "\f2d1";
  2916. }
  2917. i.icon.window.restore:before {
  2918. content: "\f2d2";
  2919. }
  2920. i.icon.windows:before {
  2921. content: "\f17a";
  2922. }
  2923. i.icon.won.sign:before {
  2924. content: "\f159";
  2925. }
  2926. i.icon.wordpress:before {
  2927. content: "\f19a";
  2928. }
  2929. i.icon.wordpress.simple:before {
  2930. content: "\f411";
  2931. }
  2932. i.icon.wpbeginner:before {
  2933. content: "\f297";
  2934. }
  2935. i.icon.wpexplorer:before {
  2936. content: "\f2de";
  2937. }
  2938. i.icon.wpforms:before {
  2939. content: "\f298";
  2940. }
  2941. i.icon.wrench:before {
  2942. content: "\f0ad";
  2943. }
  2944. i.icon.xbox:before {
  2945. content: "\f412";
  2946. }
  2947. i.icon.xing:before {
  2948. content: "\f168";
  2949. }
  2950. i.icon.xing.square:before {
  2951. content: "\f169";
  2952. }
  2953. i.icon.y.combinator:before {
  2954. content: "\f23b";
  2955. }
  2956. i.icon.yahoo:before {
  2957. content: "\f19e";
  2958. }
  2959. i.icon.yandex:before {
  2960. content: "\f413";
  2961. }
  2962. i.icon.yandex.international:before {
  2963. content: "\f414";
  2964. }
  2965. i.icon.yelp:before {
  2966. content: "\f1e9";
  2967. }
  2968. i.icon.yen.sign:before {
  2969. content: "\f157";
  2970. }
  2971. i.icon.yoast:before {
  2972. content: "\f2b1";
  2973. }
  2974. i.icon.youtube:before {
  2975. content: "\f167";
  2976. }
  2977. i.icon.youtube.square:before {
  2978. content: "\f431";
  2979. }
  2980. /* Aliases */
  2981. i.icon.chess.rock:before {
  2982. content: "\f447";
  2983. }
  2984. i.icon.ordered.list:before {
  2985. content: "\f0cb";
  2986. }
  2987. i.icon.unordered.list:before {
  2988. content: "\f0ca";
  2989. }
  2990. i.icon.user.doctor:before {
  2991. content: "\f0f0";
  2992. }
  2993. i.icon.shield:before {
  2994. content: "\f3ed";
  2995. }
  2996. i.icon.puzzle:before {
  2997. content: "\f12e";
  2998. }
  2999. i.icon.credit.card.amazon.pay:before {
  3000. content: "\f42d";
  3001. }
  3002. i.icon.credit.card.american.express:before {
  3003. content: "\f1f3";
  3004. }
  3005. i.icon.credit.card.diners.club:before {
  3006. content: "\f24c";
  3007. }
  3008. i.icon.credit.card.discover:before {
  3009. content: "\f1f2";
  3010. }
  3011. i.icon.credit.card.jcb:before {
  3012. content: "\f24b";
  3013. }
  3014. i.icon.credit.card.mastercard:before {
  3015. content: "\f1f1";
  3016. }
  3017. i.icon.credit.card.paypal:before {
  3018. content: "\f1f4";
  3019. }
  3020. i.icon.credit.card.stripe:before {
  3021. content: "\f1f5";
  3022. }
  3023. i.icon.credit.card.visa:before {
  3024. content: "\f1f0";
  3025. }
  3026. i.icon.add.circle:before {
  3027. content: "\f055";
  3028. }
  3029. i.icon.add.square:before {
  3030. content: "\f0fe";
  3031. }
  3032. i.icon.add.to.calendar:before {
  3033. content: "\f271";
  3034. }
  3035. i.icon.add.to.cart:before {
  3036. content: "\f217";
  3037. }
  3038. i.icon.add.user:before {
  3039. content: "\f234";
  3040. }
  3041. i.icon.add:before {
  3042. content: "\f067";
  3043. }
  3044. i.icon.alarm.mute:before {
  3045. content: "\f1f6";
  3046. }
  3047. i.icon.alarm:before {
  3048. content: "\f0f3";
  3049. }
  3050. i.icon.ald:before {
  3051. content: "\f2a2";
  3052. }
  3053. i.icon.als:before {
  3054. content: "\f2a2";
  3055. }
  3056. i.icon.american.express.card:before {
  3057. content: "\f1f3";
  3058. }
  3059. i.icon.american.express:before {
  3060. content: "\f1f3";
  3061. }
  3062. i.icon.amex:before {
  3063. content: "\f1f3";
  3064. }
  3065. i.icon.announcement:before {
  3066. content: "\f0a1";
  3067. }
  3068. i.icon.area.chart:before {
  3069. content: "\f1fe";
  3070. }
  3071. i.icon.area.graph:before {
  3072. content: "\f1fe";
  3073. }
  3074. i.icon.arrow.down.cart:before {
  3075. content: "\f218";
  3076. }
  3077. i.icon.asexual:before {
  3078. content: "\f22d";
  3079. }
  3080. i.icon.asl.interpreting:before {
  3081. content: "\f2a3";
  3082. }
  3083. i.icon.asl:before {
  3084. content: "\f2a3";
  3085. }
  3086. i.icon.assistive.listening.devices:before {
  3087. content: "\f2a2";
  3088. }
  3089. i.icon.attach:before {
  3090. content: "\f0c6";
  3091. }
  3092. i.icon.attention:before {
  3093. content: "\f06a";
  3094. }
  3095. i.icon.balance:before {
  3096. content: "\f24e";
  3097. }
  3098. i.icon.bar:before {
  3099. content: "\f0fc";
  3100. }
  3101. i.icon.bathtub:before {
  3102. content: "\f2cd";
  3103. }
  3104. i.icon.battery.four:before {
  3105. content: "\f240";
  3106. }
  3107. i.icon.battery.high:before {
  3108. content: "\f241";
  3109. }
  3110. i.icon.battery.low:before {
  3111. content: "\f243";
  3112. }
  3113. i.icon.battery.medium:before {
  3114. content: "\f242";
  3115. }
  3116. i.icon.battery.one:before {
  3117. content: "\f243";
  3118. }
  3119. i.icon.battery.three:before {
  3120. content: "\f241";
  3121. }
  3122. i.icon.battery.two:before {
  3123. content: "\f242";
  3124. }
  3125. i.icon.battery.zero:before {
  3126. content: "\f244";
  3127. }
  3128. i.icon.birthday:before {
  3129. content: "\f1fd";
  3130. }
  3131. i.icon.block.layout:before {
  3132. content: "\f009";
  3133. }
  3134. i.icon.bluetooth.alternative:before {
  3135. content: "\f294";
  3136. }
  3137. i.icon.broken.chain:before {
  3138. content: "\f127";
  3139. }
  3140. i.icon.browser:before {
  3141. content: "\f022";
  3142. }
  3143. i.icon.call.square:before {
  3144. content: "\f098";
  3145. }
  3146. i.icon.call:before {
  3147. content: "\f095";
  3148. }
  3149. i.icon.cancel:before {
  3150. content: "\f00d";
  3151. }
  3152. i.icon.cart:before {
  3153. content: "\f07a";
  3154. }
  3155. i.icon.cc:before {
  3156. content: "\f20a";
  3157. }
  3158. i.icon.chain:before {
  3159. content: "\f0c1";
  3160. }
  3161. i.icon.chat:before {
  3162. content: "\f075";
  3163. }
  3164. i.icon.checked.calendar:before {
  3165. content: "\f274";
  3166. }
  3167. i.icon.checkmark:before {
  3168. content: "\f00c";
  3169. }
  3170. i.icon.circle.notched:before {
  3171. content: "\f1ce";
  3172. }
  3173. i.icon.close:before {
  3174. content: "\f00d";
  3175. }
  3176. i.icon.cny:before {
  3177. content: "\f157";
  3178. }
  3179. i.icon.cocktail:before {
  3180. content: "\f000";
  3181. }
  3182. i.icon.commenting:before {
  3183. content: "\f27a";
  3184. }
  3185. i.icon.computer:before {
  3186. content: "\f108";
  3187. }
  3188. i.icon.configure:before {
  3189. content: "\f0ad";
  3190. }
  3191. i.icon.content:before {
  3192. content: "\f0c9";
  3193. }
  3194. i.icon.deafness:before {
  3195. content: "\f2a4";
  3196. }
  3197. i.icon.delete.calendar:before {
  3198. content: "\f273";
  3199. }
  3200. i.icon.delete:before {
  3201. content: "\f00d";
  3202. }
  3203. i.icon.detective:before {
  3204. content: "\f21b";
  3205. }
  3206. i.icon.diners.club.card:before {
  3207. content: "\f24c";
  3208. }
  3209. i.icon.diners.club:before {
  3210. content: "\f24c";
  3211. }
  3212. i.icon.discover.card:before {
  3213. content: "\f1f2";
  3214. }
  3215. i.icon.discover:before {
  3216. content: "\f1f2";
  3217. }
  3218. i.icon.discussions:before {
  3219. content: "\f086";
  3220. }
  3221. i.icon.doctor:before {
  3222. content: "\f0f0";
  3223. }
  3224. i.icon.dollar:before {
  3225. content: "\f155";
  3226. }
  3227. i.icon.dont:before {
  3228. content: "\f05e";
  3229. }
  3230. i.icon.dribble:before {
  3231. content: "\f17d";
  3232. }
  3233. i.icon.drivers.license:before {
  3234. content: "\f2c2";
  3235. }
  3236. i.icon.dropdown:before {
  3237. content: "\f0d7";
  3238. }
  3239. i.icon.eercast:before {
  3240. content: "\f2da";
  3241. }
  3242. i.icon.emergency:before {
  3243. content: "\f0f9";
  3244. }
  3245. i.icon.envira.gallery:before {
  3246. content: "\f299";
  3247. }
  3248. i.icon.erase:before {
  3249. content: "\f12d";
  3250. }
  3251. i.icon.eur:before {
  3252. content: "\f153";
  3253. }
  3254. i.icon.euro:before {
  3255. content: "\f153";
  3256. }
  3257. i.icon.eyedropper:before {
  3258. content: "\f1fb";
  3259. }
  3260. i.icon.fa:before {
  3261. content: "\f2b4";
  3262. }
  3263. i.icon.factory:before {
  3264. content: "\f275";
  3265. }
  3266. i.icon.favorite:before {
  3267. content: "\f005";
  3268. }
  3269. i.icon.feed:before {
  3270. content: "\f09e";
  3271. }
  3272. i.icon.female.homosexual:before {
  3273. content: "\f226";
  3274. }
  3275. i.icon.file.text:before {
  3276. content: "\f15c";
  3277. }
  3278. i.icon.find:before {
  3279. content: "\f1e5";
  3280. }
  3281. i.icon.first.aid:before {
  3282. content: "\f0fa";
  3283. }
  3284. i.icon.five.hundred.pixels:before {
  3285. content: "\f26e";
  3286. }
  3287. i.icon.fork:before {
  3288. content: "\f126";
  3289. }
  3290. i.icon.game:before {
  3291. content: "\f11b";
  3292. }
  3293. i.icon.gay:before {
  3294. content: "\f227";
  3295. }
  3296. i.icon.gbp:before {
  3297. content: "\f154";
  3298. }
  3299. i.icon.gittip:before {
  3300. content: "\f184";
  3301. }
  3302. i.icon.google.plus.circle:before {
  3303. content: "\f2b3";
  3304. }
  3305. i.icon.google.plus.official:before {
  3306. content: "\f2b3";
  3307. }
  3308. i.icon.grab:before {
  3309. content: "\f255";
  3310. }
  3311. i.icon.graduation:before {
  3312. content: "\f19d";
  3313. }
  3314. i.icon.grid.layout:before {
  3315. content: "\f00a";
  3316. }
  3317. i.icon.group:before {
  3318. content: "\f0c0";
  3319. }
  3320. i.icon.h:before {
  3321. content: "\f0fd";
  3322. }
  3323. i.icon.hand.victory:before {
  3324. content: "\f25b";
  3325. }
  3326. i.icon.handicap:before {
  3327. content: "\f193";
  3328. }
  3329. i.icon.hard.of.hearing:before {
  3330. content: "\f2a4";
  3331. }
  3332. i.icon.header:before {
  3333. content: "\f1dc";
  3334. }
  3335. i.icon.help.circle:before {
  3336. content: "\f059";
  3337. }
  3338. i.icon.help:before {
  3339. content: "\f128";
  3340. }
  3341. i.icon.heterosexual:before {
  3342. content: "\f228";
  3343. }
  3344. i.icon.hide:before {
  3345. content: "\f070";
  3346. }
  3347. i.icon.hotel:before {
  3348. content: "\f236";
  3349. }
  3350. i.icon.hourglass.four:before {
  3351. content: "\f254";
  3352. }
  3353. i.icon.hourglass.full:before {
  3354. content: "\f254";
  3355. }
  3356. i.icon.hourglass.one:before {
  3357. content: "\f251";
  3358. }
  3359. i.icon.hourglass.three:before {
  3360. content: "\f253";
  3361. }
  3362. i.icon.hourglass.two:before {
  3363. content: "\f252";
  3364. }
  3365. i.icon.idea:before {
  3366. content: "\f0eb";
  3367. }
  3368. i.icon.ils:before {
  3369. content: "\f20b";
  3370. }
  3371. i.icon.in-cart:before {
  3372. content: "\f218";
  3373. }
  3374. i.icon.inr:before {
  3375. content: "\f156";
  3376. }
  3377. i.icon.intergender:before {
  3378. content: "\f224";
  3379. }
  3380. i.icon.intersex:before {
  3381. content: "\f224";
  3382. }
  3383. i.icon.japan.credit.bureau.card:before {
  3384. content: "\f24b";
  3385. }
  3386. i.icon.japan.credit.bureau:before {
  3387. content: "\f24b";
  3388. }
  3389. i.icon.jcb:before {
  3390. content: "\f24b";
  3391. }
  3392. i.icon.jpy:before {
  3393. content: "\f157";
  3394. }
  3395. i.icon.krw:before {
  3396. content: "\f159";
  3397. }
  3398. i.icon.lab:before {
  3399. content: "\f0c3";
  3400. }
  3401. i.icon.law:before {
  3402. content: "\f24e";
  3403. }
  3404. i.icon.legal:before {
  3405. content: "\f0e3";
  3406. }
  3407. i.icon.lesbian:before {
  3408. content: "\f226";
  3409. }
  3410. i.icon.lightning:before {
  3411. content: "\f0e7";
  3412. }
  3413. i.icon.like:before {
  3414. content: "\f004";
  3415. }
  3416. i.icon.line.graph:before {
  3417. content: "\f201";
  3418. }
  3419. i.icon.linkedin.square:before {
  3420. content: "\f08c";
  3421. }
  3422. i.icon.linkify:before {
  3423. content: "\f0c1";
  3424. }
  3425. i.icon.lira:before {
  3426. content: "\f195";
  3427. }
  3428. i.icon.list.layout:before {
  3429. content: "\f00b";
  3430. }
  3431. i.icon.magnify:before {
  3432. content: "\f00e";
  3433. }
  3434. i.icon.mail.forward:before {
  3435. content: "\f064";
  3436. }
  3437. i.icon.mail.square:before {
  3438. content: "\f199";
  3439. }
  3440. i.icon.mail:before {
  3441. content: "\f0e0";
  3442. }
  3443. i.icon.male.homosexual:before {
  3444. content: "\f227";
  3445. }
  3446. i.icon.man:before {
  3447. content: "\f222";
  3448. }
  3449. i.icon.marker:before {
  3450. content: "\f041";
  3451. }
  3452. i.icon.mars.alternate:before {
  3453. content: "\f229";
  3454. }
  3455. i.icon.mars.horizontal:before {
  3456. content: "\f22b";
  3457. }
  3458. i.icon.mars.vertical:before {
  3459. content: "\f22a";
  3460. }
  3461. i.icon.mastercard.card:before {
  3462. content: "\f1f1";
  3463. }
  3464. i.icon.mastercard:before {
  3465. content: "\f1f1";
  3466. }
  3467. i.icon.microsoft.edge:before {
  3468. content: "\f282";
  3469. }
  3470. i.icon.military:before {
  3471. content: "\f0fb";
  3472. }
  3473. i.icon.ms.edge:before {
  3474. content: "\f282";
  3475. }
  3476. i.icon.mute:before {
  3477. content: "\f131";
  3478. }
  3479. i.icon.new.pied.piper:before {
  3480. content: "\f2ae";
  3481. }
  3482. i.icon.non.binary.transgender:before {
  3483. content: "\f223";
  3484. }
  3485. i.icon.numbered.list:before {
  3486. content: "\f0cb";
  3487. }
  3488. i.icon.optinmonster:before {
  3489. content: "\f23c";
  3490. }
  3491. i.icon.options:before {
  3492. content: "\f1de";
  3493. }
  3494. i.icon.other.gender.horizontal:before {
  3495. content: "\f22b";
  3496. }
  3497. i.icon.other.gender.vertical:before {
  3498. content: "\f22a";
  3499. }
  3500. i.icon.other.gender:before {
  3501. content: "\f229";
  3502. }
  3503. i.icon.payment:before {
  3504. content: "\f09d";
  3505. }
  3506. i.icon.paypal.card:before {
  3507. content: "\f1f4";
  3508. }
  3509. i.icon.pencil.square:before {
  3510. content: "\f14b";
  3511. }
  3512. i.icon.photo:before {
  3513. content: "\f030";
  3514. }
  3515. i.icon.picture:before {
  3516. content: "\f03e";
  3517. }
  3518. i.icon.pie.chart:before {
  3519. content: "\f200";
  3520. }
  3521. i.icon.pie.graph:before {
  3522. content: "\f200";
  3523. }
  3524. i.icon.pied.piper.hat:before {
  3525. content: "\f2ae";
  3526. }
  3527. i.icon.pin:before {
  3528. content: "\f08d";
  3529. }
  3530. i.icon.plus.cart:before {
  3531. content: "\f217";
  3532. }
  3533. i.icon.pocket:before {
  3534. content: "\f265";
  3535. }
  3536. i.icon.point:before {
  3537. content: "\f041";
  3538. }
  3539. i.icon.pointing.down:before {
  3540. content: "\f0a7";
  3541. }
  3542. i.icon.pointing.left:before {
  3543. content: "\f0a5";
  3544. }
  3545. i.icon.pointing.right:before {
  3546. content: "\f0a4";
  3547. }
  3548. i.icon.pointing.up:before {
  3549. content: "\f0a6";
  3550. }
  3551. i.icon.pound:before {
  3552. content: "\f154";
  3553. }
  3554. i.icon.power.cord:before {
  3555. content: "\f1e6";
  3556. }
  3557. i.icon.power:before {
  3558. content: "\f011";
  3559. }
  3560. i.icon.privacy:before {
  3561. content: "\f084";
  3562. }
  3563. i.icon.r.circle:before {
  3564. content: "\f25d";
  3565. }
  3566. i.icon.rain:before {
  3567. content: "\f0e9";
  3568. }
  3569. i.icon.record:before {
  3570. content: "\f03d";
  3571. }
  3572. i.icon.refresh:before {
  3573. content: "\f021";
  3574. }
  3575. i.icon.remove.circle:before {
  3576. content: "\f057";
  3577. }
  3578. i.icon.remove.from.calendar:before {
  3579. content: "\f272";
  3580. }
  3581. i.icon.remove.user:before {
  3582. content: "\f235";
  3583. }
  3584. i.icon.remove:before {
  3585. content: "\f00d";
  3586. }
  3587. i.icon.repeat:before {
  3588. content: "\f01e";
  3589. }
  3590. i.icon.rmb:before {
  3591. content: "\f157";
  3592. }
  3593. i.icon.rouble:before {
  3594. content: "\f158";
  3595. }
  3596. i.icon.rub:before {
  3597. content: "\f158";
  3598. }
  3599. i.icon.ruble:before {
  3600. content: "\f158";
  3601. }
  3602. i.icon.rupee:before {
  3603. content: "\f156";
  3604. }
  3605. i.icon.s15:before {
  3606. content: "\f2cd";
  3607. }
  3608. i.icon.selected.radio:before {
  3609. content: "\f192";
  3610. }
  3611. i.icon.send:before {
  3612. content: "\f1d8";
  3613. }
  3614. i.icon.setting:before {
  3615. content: "\f013";
  3616. }
  3617. i.icon.settings:before {
  3618. content: "\f085";
  3619. }
  3620. i.icon.shekel:before {
  3621. content: "\f20b";
  3622. }
  3623. i.icon.sheqel:before {
  3624. content: "\f20b";
  3625. }
  3626. i.icon.shipping:before {
  3627. content: "\f0d1";
  3628. }
  3629. i.icon.shop:before {
  3630. content: "\f07a";
  3631. }
  3632. i.icon.shuffle:before {
  3633. content: "\f074";
  3634. }
  3635. i.icon.shutdown:before {
  3636. content: "\f011";
  3637. }
  3638. i.icon.sidebar:before {
  3639. content: "\f0c9";
  3640. }
  3641. i.icon.signing:before {
  3642. content: "\f2a7";
  3643. }
  3644. i.icon.signup:before {
  3645. content: "\f044";
  3646. }
  3647. i.icon.sliders:before {
  3648. content: "\f1de";
  3649. }
  3650. i.icon.soccer:before {
  3651. content: "\f1e3";
  3652. }
  3653. i.icon.sort.alphabet.ascending:before {
  3654. content: "\f15d";
  3655. }
  3656. i.icon.sort.alphabet.descending:before {
  3657. content: "\f15e";
  3658. }
  3659. i.icon.sort.ascending:before {
  3660. content: "\f0de";
  3661. }
  3662. i.icon.sort.content.ascending:before {
  3663. content: "\f160";
  3664. }
  3665. i.icon.sort.content.descending:before {
  3666. content: "\f161";
  3667. }
  3668. i.icon.sort.descending:before {
  3669. content: "\f0dd";
  3670. }
  3671. i.icon.sort.numeric.ascending:before {
  3672. content: "\f162";
  3673. }
  3674. i.icon.sort.numeric.descending:before {
  3675. content: "\f163";
  3676. }
  3677. i.icon.sound:before {
  3678. content: "\f025";
  3679. }
  3680. i.icon.spy:before {
  3681. content: "\f21b";
  3682. }
  3683. i.icon.stripe.card:before {
  3684. content: "\f1f5";
  3685. }
  3686. i.icon.student:before {
  3687. content: "\f19d";
  3688. }
  3689. i.icon.talk:before {
  3690. content: "\f27a";
  3691. }
  3692. i.icon.target:before {
  3693. content: "\f140";
  3694. }
  3695. i.icon.teletype:before {
  3696. content: "\f1e4";
  3697. }
  3698. i.icon.television:before {
  3699. content: "\f26c";
  3700. }
  3701. i.icon.text.cursor:before {
  3702. content: "\f246";
  3703. }
  3704. i.icon.text.telephone:before {
  3705. content: "\f1e4";
  3706. }
  3707. i.icon.theme.isle:before {
  3708. content: "\f2b2";
  3709. }
  3710. i.icon.theme:before {
  3711. content: "\f043";
  3712. }
  3713. i.icon.thermometer:before {
  3714. content: "\f2c7";
  3715. }
  3716. i.icon.thumb.tack:before {
  3717. content: "\f08d";
  3718. }
  3719. i.icon.time:before {
  3720. content: "\f017";
  3721. }
  3722. i.icon.tm:before {
  3723. content: "\f25c";
  3724. }
  3725. i.icon.toggle.down:before {
  3726. content: "\f150";
  3727. }
  3728. i.icon.toggle.left:before {
  3729. content: "\f191";
  3730. }
  3731. i.icon.toggle.right:before {
  3732. content: "\f152";
  3733. }
  3734. i.icon.toggle.up:before {
  3735. content: "\f151";
  3736. }
  3737. i.icon.translate:before {
  3738. content: "\f1ab";
  3739. }
  3740. i.icon.travel:before {
  3741. content: "\f0b1";
  3742. }
  3743. i.icon.treatment:before {
  3744. content: "\f0f1";
  3745. }
  3746. i.icon.triangle.down:before {
  3747. content: "\f0d7";
  3748. }
  3749. i.icon.triangle.left:before {
  3750. content: "\f0d9";
  3751. }
  3752. i.icon.triangle.right:before {
  3753. content: "\f0da";
  3754. }
  3755. i.icon.triangle.up:before {
  3756. content: "\f0d8";
  3757. }
  3758. i.icon.try:before {
  3759. content: "\f195";
  3760. }
  3761. i.icon.unhide:before {
  3762. content: "\f06e";
  3763. }
  3764. i.icon.unlinkify:before {
  3765. content: "\f127";
  3766. }
  3767. i.icon.unmute:before {
  3768. content: "\f130";
  3769. }
  3770. i.icon.usd:before {
  3771. content: "\f155";
  3772. }
  3773. i.icon.user.cancel:before {
  3774. content: "\f235";
  3775. }
  3776. i.icon.user.close:before {
  3777. content: "\f235";
  3778. }
  3779. i.icon.user.delete:before {
  3780. content: "\f235";
  3781. }
  3782. i.icon.user.x:before {
  3783. content: "\f235";
  3784. }
  3785. i.icon.vcard:before {
  3786. content: "\f2bb";
  3787. }
  3788. i.icon.video.camera:before {
  3789. content: "\f03d";
  3790. }
  3791. i.icon.video.play:before {
  3792. content: "\f144";
  3793. }
  3794. i.icon.visa.card:before {
  3795. content: "\f1f0";
  3796. }
  3797. i.icon.visa:before {
  3798. content: "\f1f0";
  3799. }
  3800. i.icon.volume.control.phone:before {
  3801. content: "\f2a0";
  3802. }
  3803. i.icon.wait:before {
  3804. content: "\f017";
  3805. }
  3806. i.icon.warning.circle:before {
  3807. content: "\f06a";
  3808. }
  3809. i.icon.warning.sign:before {
  3810. content: "\f071";
  3811. }
  3812. i.icon.warning:before {
  3813. content: "\f12a";
  3814. }
  3815. i.icon.wechat:before {
  3816. content: "\f1d7";
  3817. }
  3818. i.icon.wi-fi:before {
  3819. content: "\f1eb";
  3820. }
  3821. i.icon.wikipedia:before {
  3822. content: "\f266";
  3823. }
  3824. i.icon.winner:before {
  3825. content: "\f091";
  3826. }
  3827. i.icon.wizard:before {
  3828. content: "\f0d0";
  3829. }
  3830. i.icon.woman:before {
  3831. content: "\f221";
  3832. }
  3833. i.icon.won:before {
  3834. content: "\f159";
  3835. }
  3836. i.icon.wordpress.beginner:before {
  3837. content: "\f297";
  3838. }
  3839. i.icon.wordpress.forms:before {
  3840. content: "\f298";
  3841. }
  3842. i.icon.world:before {
  3843. content: "\f0ac";
  3844. }
  3845. i.icon.write.square:before {
  3846. content: "\f14b";
  3847. }
  3848. i.icon.x:before {
  3849. content: "\f00d";
  3850. }
  3851. i.icon.yc:before {
  3852. content: "\f23b";
  3853. }
  3854. i.icon.ycombinator:before {
  3855. content: "\f23b";
  3856. }
  3857. i.icon.yen:before {
  3858. content: "\f157";
  3859. }
  3860. i.icon.zip:before {
  3861. content: "\f187";
  3862. }
  3863. i.icon.zoom-in:before {
  3864. content: "\f00e";
  3865. }
  3866. i.icon.zoom-out:before {
  3867. content: "\f010";
  3868. }
  3869. i.icon.zoom:before {
  3870. content: "\f00e";
  3871. }
  3872. i.icon.bitbucket.square:before {
  3873. content: "\f171";
  3874. }
  3875. i.icon.checkmark.box:before {
  3876. content: "\f14a";
  3877. }
  3878. i.icon.circle.thin:before {
  3879. content: "\f111";
  3880. }
  3881. i.icon.cloud.download:before {
  3882. content: "\f381";
  3883. }
  3884. i.icon.cloud.upload:before {
  3885. content: "\f382";
  3886. }
  3887. i.icon.compose:before {
  3888. content: "\f303";
  3889. }
  3890. i.icon.conversation:before {
  3891. content: "\f086";
  3892. }
  3893. i.icon.credit.card.alternative:before {
  3894. content: "\f09d";
  3895. }
  3896. i.icon.currency:before {
  3897. content: "\f3d1";
  3898. }
  3899. i.icon.dashboard:before {
  3900. content: "\f3fd";
  3901. }
  3902. i.icon.diamond:before {
  3903. content: "\f3a5";
  3904. }
  3905. i.icon.disk:before {
  3906. content: "\f0a0";
  3907. }
  3908. i.icon.exchange:before {
  3909. content: "\f362";
  3910. }
  3911. i.icon.external.share:before {
  3912. content: "\f14d";
  3913. }
  3914. i.icon.external.square:before {
  3915. content: "\f360";
  3916. }
  3917. i.icon.external:before {
  3918. content: "\f35d";
  3919. }
  3920. i.icon.facebook.official:before {
  3921. content: "\f082";
  3922. }
  3923. i.icon.food:before {
  3924. content: "\f2e7";
  3925. }
  3926. i.icon.hourglass.zero:before {
  3927. content: "\f253";
  3928. }
  3929. i.icon.level.down:before {
  3930. content: "\f3be";
  3931. }
  3932. i.icon.level.up:before {
  3933. content: "\f3bf";
  3934. }
  3935. i.icon.logout:before {
  3936. content: "\f2f5";
  3937. }
  3938. i.icon.meanpath:before {
  3939. content: "\f0c8";
  3940. }
  3941. i.icon.money:before {
  3942. content: "\f3d1";
  3943. }
  3944. i.icon.move:before {
  3945. content: "\f0b2";
  3946. }
  3947. i.icon.pencil:before {
  3948. content: "\f303";
  3949. }
  3950. i.icon.protect:before {
  3951. content: "\f023";
  3952. }
  3953. i.icon.radio:before {
  3954. content: "\f192";
  3955. }
  3956. i.icon.remove.bookmark:before {
  3957. content: "\f02e";
  3958. }
  3959. i.icon.resize.horizontal:before {
  3960. content: "\f337";
  3961. }
  3962. i.icon.resize.vertical:before {
  3963. content: "\f338";
  3964. }
  3965. i.icon.sign-in:before {
  3966. content: "\f2f6";
  3967. }
  3968. i.icon.sign-out:before {
  3969. content: "\f2f5";
  3970. }
  3971. i.icon.spoon:before {
  3972. content: "\f2e5";
  3973. }
  3974. i.icon.star.half.empty:before {
  3975. content: "\f089";
  3976. }
  3977. i.icon.star.half.full:before {
  3978. content: "\f089";
  3979. }
  3980. i.icon.ticket:before {
  3981. content: "\f3ff";
  3982. }
  3983. i.icon.times.rectangle:before {
  3984. content: "\f410";
  3985. }
  3986. i.icon.write:before {
  3987. content: "\f303";
  3988. }
  3989. i.icon.youtube.play:before {
  3990. content: "\f167";
  3991. }
  3992. /*******************************
  3993. Outline Icons
  3994. *******************************/
  3995. /* Outline Icon */
  3996. /* Load & Define Icon Font */
  3997. @font-face {
  3998. font-family: 'outline-icons';
  3999. src: url("./../themes/default/assets/fonts/outline-icons.eot");
  4000. src: url("./../themes/default/assets/fonts/outline-icons.eot?#iefix") format('embedded-opentype'), url("./../themes/default/assets/fonts/outline-icons.woff2") format('woff2'), url("./../themes/default/assets/fonts/outline-icons.woff") format('woff'), url("./../themes/default/assets/fonts/outline-icons.ttf") format('truetype'), url("./../themes/default/assets/fonts/outline-icons.svg#icons") format('svg');
  4001. font-style: normal;
  4002. font-weight: normal;
  4003. font-variant: normal;
  4004. text-decoration: inherit;
  4005. text-transform: none;
  4006. }
  4007. i.icon.outline {
  4008. font-family: 'outline-icons';
  4009. }
  4010. /* Icon Definitions */
  4011. i.icon.address.book.outline:before {
  4012. content: "\f2b9";
  4013. }
  4014. i.icon.address.card.outline:before {
  4015. content: "\f2bb";
  4016. }
  4017. i.icon.arrow.alternate.circle.down.outline:before {
  4018. content: "\f358";
  4019. }
  4020. i.icon.arrow.alternate.circle.left.outline:before {
  4021. content: "\f359";
  4022. }
  4023. i.icon.arrow.alternate.circle.right.outline:before {
  4024. content: "\f35a";
  4025. }
  4026. i.icon.arrow.alternate.circle.up.outline:before {
  4027. content: "\f35b";
  4028. }
  4029. i.icon.bell.outline:before {
  4030. content: "\f0f3";
  4031. }
  4032. i.icon.bell.slash.outline:before {
  4033. content: "\f1f6";
  4034. }
  4035. i.icon.bookmark.outline:before {
  4036. content: "\f02e";
  4037. }
  4038. i.icon.building.outline:before {
  4039. content: "\f1ad";
  4040. }
  4041. i.icon.calendar.outline:before {
  4042. content: "\f133";
  4043. }
  4044. i.icon.calendar.alternate.outline:before {
  4045. content: "\f073";
  4046. }
  4047. i.icon.calendar.check.outline:before {
  4048. content: "\f274";
  4049. }
  4050. i.icon.calendar.minus.outline:before {
  4051. content: "\f272";
  4052. }
  4053. i.icon.calendar.plus.outline:before {
  4054. content: "\f271";
  4055. }
  4056. i.icon.calendar.times.outline:before {
  4057. content: "\f273";
  4058. }
  4059. i.icon.caret.square.down.outline:before {
  4060. content: "\f150";
  4061. }
  4062. i.icon.caret.square.left.outline:before {
  4063. content: "\f191";
  4064. }
  4065. i.icon.caret.square.right.outline:before {
  4066. content: "\f152";
  4067. }
  4068. i.icon.caret.square.up.outline:before {
  4069. content: "\f151";
  4070. }
  4071. i.icon.chart.bar.outline:before {
  4072. content: "\f080";
  4073. }
  4074. i.icon.check.circle.outline:before {
  4075. content: "\f058";
  4076. }
  4077. i.icon.check.square.outline:before {
  4078. content: "\f14a";
  4079. }
  4080. i.icon.circle.outline:before {
  4081. content: "\f111";
  4082. }
  4083. i.icon.clipboard.outline:before {
  4084. content: "\f328";
  4085. }
  4086. i.icon.clock.outline:before {
  4087. content: "\f017";
  4088. }
  4089. i.icon.clone.outline:before {
  4090. content: "\f24d";
  4091. }
  4092. i.icon.closed.captioning.outline:before {
  4093. content: "\f20a";
  4094. }
  4095. i.icon.comment.outline:before {
  4096. content: "\f075";
  4097. }
  4098. i.icon.comment.alternate.outline:before {
  4099. content: "\f27a";
  4100. }
  4101. i.icon.comments.outline:before {
  4102. content: "\f086";
  4103. }
  4104. i.icon.compass.outline:before {
  4105. content: "\f14e";
  4106. }
  4107. i.icon.copy.outline:before {
  4108. content: "\f0c5";
  4109. }
  4110. i.icon.copyright.outline:before {
  4111. content: "\f1f9";
  4112. }
  4113. i.icon.credit.card.outline:before {
  4114. content: "\f09d";
  4115. }
  4116. i.icon.dot.circle.outline:before {
  4117. content: "\f192";
  4118. }
  4119. i.icon.edit.outline:before {
  4120. content: "\f044";
  4121. }
  4122. i.icon.envelope.outline:before {
  4123. content: "\f0e0";
  4124. }
  4125. i.icon.envelope.open.outline:before {
  4126. content: "\f2b6";
  4127. }
  4128. i.icon.eye.slash.outline:before {
  4129. content: "\f070";
  4130. }
  4131. i.icon.file.outline:before {
  4132. content: "\f15b";
  4133. }
  4134. i.icon.file.alternate.outline:before {
  4135. content: "\f15c";
  4136. }
  4137. i.icon.file.archive.outline:before {
  4138. content: "\f1c6";
  4139. }
  4140. i.icon.file.audio.outline:before {
  4141. content: "\f1c7";
  4142. }
  4143. i.icon.file.code.outline:before {
  4144. content: "\f1c9";
  4145. }
  4146. i.icon.file.excel.outline:before {
  4147. content: "\f1c3";
  4148. }
  4149. i.icon.file.image.outline:before {
  4150. content: "\f1c5";
  4151. }
  4152. i.icon.file.pdf.outline:before {
  4153. content: "\f1c1";
  4154. }
  4155. i.icon.file.powerpoint.outline:before {
  4156. content: "\f1c4";
  4157. }
  4158. i.icon.file.video.outline:before {
  4159. content: "\f1c8";
  4160. }
  4161. i.icon.file.word.outline:before {
  4162. content: "\f1c2";
  4163. }
  4164. i.icon.flag.outline:before {
  4165. content: "\f024";
  4166. }
  4167. i.icon.folder.outline:before {
  4168. content: "\f07b";
  4169. }
  4170. i.icon.folder.open.outline:before {
  4171. content: "\f07c";
  4172. }
  4173. i.icon.frown.outline:before {
  4174. content: "\f119";
  4175. }
  4176. i.icon.futbol.outline:before {
  4177. content: "\f1e3";
  4178. }
  4179. i.icon.gem.outline:before {
  4180. content: "\f3a5";
  4181. }
  4182. i.icon.hand.lizard.outline:before {
  4183. content: "\f258";
  4184. }
  4185. i.icon.hand.paper.outline:before {
  4186. content: "\f256";
  4187. }
  4188. i.icon.hand.peace.outline:before {
  4189. content: "\f25b";
  4190. }
  4191. i.icon.hand.point.down.outline:before {
  4192. content: "\f0a7";
  4193. }
  4194. i.icon.hand.point.left.outline:before {
  4195. content: "\f0a5";
  4196. }
  4197. i.icon.hand.point.right.outline:before {
  4198. content: "\f0a4";
  4199. }
  4200. i.icon.hand.point.up.outline:before {
  4201. content: "\f0a6";
  4202. }
  4203. i.icon.hand.pointer.outline:before {
  4204. content: "\f25a";
  4205. }
  4206. i.icon.hand.rock.outline:before {
  4207. content: "\f255";
  4208. }
  4209. i.icon.hand.scissors.outline:before {
  4210. content: "\f257";
  4211. }
  4212. i.icon.hand.spock.outline:before {
  4213. content: "\f259";
  4214. }
  4215. i.icon.handshake.outline:before {
  4216. content: "\f2b5";
  4217. }
  4218. i.icon.hdd.outline:before {
  4219. content: "\f0a0";
  4220. }
  4221. i.icon.heart.outline:before {
  4222. content: "\f004";
  4223. }
  4224. i.icon.hospital.outline:before {
  4225. content: "\f0f8";
  4226. }
  4227. i.icon.hourglass.outline:before {
  4228. content: "\f254";
  4229. }
  4230. i.icon.id.badge.outline:before {
  4231. content: "\f2c1";
  4232. }
  4233. i.icon.id.card.outline:before {
  4234. content: "\f2c2";
  4235. }
  4236. i.icon.image.outline:before {
  4237. content: "\f03e";
  4238. }
  4239. i.icon.images.outline:before {
  4240. content: "\f302";
  4241. }
  4242. i.icon.keyboard.outline:before {
  4243. content: "\f11c";
  4244. }
  4245. i.icon.lemon.outline:before {
  4246. content: "\f094";
  4247. }
  4248. i.icon.life.ring.outline:before {
  4249. content: "\f1cd";
  4250. }
  4251. i.icon.lightbulb.outline:before {
  4252. content: "\f0eb";
  4253. }
  4254. i.icon.list.alternate.outline:before {
  4255. content: "\f022";
  4256. }
  4257. i.icon.map.outline:before {
  4258. content: "\f279";
  4259. }
  4260. i.icon.meh.outline:before {
  4261. content: "\f11a";
  4262. }
  4263. i.icon.minus.square.outline:before {
  4264. content: "\f146";
  4265. }
  4266. i.icon.money.bill.alternate.outline:before {
  4267. content: "\f3d1";
  4268. }
  4269. i.icon.moon.outline:before {
  4270. content: "\f186";
  4271. }
  4272. i.icon.newspaper.outline:before {
  4273. content: "\f1ea";
  4274. }
  4275. i.icon.object.group.outline:before {
  4276. content: "\f247";
  4277. }
  4278. i.icon.object.ungroup.outline:before {
  4279. content: "\f248";
  4280. }
  4281. i.icon.paper.plane.outline:before {
  4282. content: "\f1d8";
  4283. }
  4284. i.icon.pause.circle.outline:before {
  4285. content: "\f28b";
  4286. }
  4287. i.icon.play.circle.outline:before {
  4288. content: "\f144";
  4289. }
  4290. i.icon.plus.square.outline:before {
  4291. content: "\f0fe";
  4292. }
  4293. i.icon.question.circle.outline:before {
  4294. content: "\f059";
  4295. }
  4296. i.icon.registered.outline:before {
  4297. content: "\f25d";
  4298. }
  4299. i.icon.save.outline:before {
  4300. content: "\f0c7";
  4301. }
  4302. i.icon.share.square.outline:before {
  4303. content: "\f14d";
  4304. }
  4305. i.icon.smile.outline:before {
  4306. content: "\f118";
  4307. }
  4308. i.icon.snowflake.outline:before {
  4309. content: "\f2dc";
  4310. }
  4311. i.icon.square.outline:before {
  4312. content: "\f0c8";
  4313. }
  4314. i.icon.star.outline:before {
  4315. content: "\f005";
  4316. }
  4317. i.icon.star.half.outline:before {
  4318. content: "\f089";
  4319. }
  4320. i.icon.sticky.note.outline:before {
  4321. content: "\f249";
  4322. }
  4323. i.icon.stop.circle.outline:before {
  4324. content: "\f28d";
  4325. }
  4326. i.icon.sun.outline:before {
  4327. content: "\f185";
  4328. }
  4329. i.icon.thumbs.down.outline:before {
  4330. content: "\f165";
  4331. }
  4332. i.icon.thumbs.up.outline:before {
  4333. content: "\f164";
  4334. }
  4335. i.icon.times.circle.outline:before {
  4336. content: "\f057";
  4337. }
  4338. i.icon.trash.alternate.outline:before {
  4339. content: "\f2ed";
  4340. }
  4341. i.icon.user.outline:before {
  4342. content: "\f007";
  4343. }
  4344. i.icon.user.circle.outline:before {
  4345. content: "\f2bd";
  4346. }
  4347. i.icon.window.close.outline:before {
  4348. content: "\f410";
  4349. }
  4350. i.icon.window.maximize.outline:before {
  4351. content: "\f2d0";
  4352. }
  4353. i.icon.window.minimize.outline:before {
  4354. content: "\f2d1";
  4355. }
  4356. i.icon.window.restore.outline:before {
  4357. content: "\f2d2";
  4358. }
  4359. i.icon.disk.outline:before {
  4360. content: "\f369";
  4361. }
  4362. /* Outline Aliases */
  4363. i.icon.heart.empty,
  4364. i.icon.star.empty {
  4365. font-family: 'outline-icons';
  4366. }
  4367. i.icon.heart.empty:before {
  4368. content: "\f004";
  4369. }
  4370. i.icon.star.empty:before {
  4371. content: "\f089";
  4372. }
  4373. /*******************************
  4374. Brand Icons
  4375. *******************************/
  4376. /* Load & Define Brand Font */
  4377. @font-face {
  4378. font-family: 'brand-icons';
  4379. src: url("./../themes/default/assets/fonts/brand-icons.eot");
  4380. src: url("./../themes/default/assets/fonts/brand-icons.eot?#iefix") format('embedded-opentype'), url("./../themes/default/assets/fonts/brand-icons.woff2") format('woff2'), url("./../themes/default/assets/fonts/brand-icons.woff") format('woff'), url("./../themes/default/assets/fonts/brand-icons.ttf") format('truetype'), url("./../themes/default/assets/fonts/brand-icons.svg#icons") format('svg');
  4381. font-style: normal;
  4382. font-weight: normal;
  4383. font-variant: normal;
  4384. text-decoration: inherit;
  4385. text-transform: none;
  4386. }
  4387. /* Brand Icon Font Family */
  4388. i.icon.\35 00px,
  4389. i.icon.accessible.icon,
  4390. i.icon.accusoft,
  4391. i.icon.adn,
  4392. i.icon.adversal,
  4393. i.icon.affiliatetheme,
  4394. i.icon.algolia,
  4395. i.icon.amazon,
  4396. i.icon.amazon.pay,
  4397. i.icon.amilia,
  4398. i.icon.android,
  4399. i.icon.angellist,
  4400. i.icon.angrycreative,
  4401. i.icon.angular,
  4402. i.icon.app.store,
  4403. i.icon.app.store.ios,
  4404. i.icon.apper,
  4405. i.icon.apple,
  4406. i.icon.apple.pay,
  4407. i.icon.asymmetrik,
  4408. i.icon.audible,
  4409. i.icon.autoprefixer,
  4410. i.icon.avianex,
  4411. i.icon.aviato,
  4412. i.icon.aws,
  4413. i.icon.bandcamp,
  4414. i.icon.behance,
  4415. i.icon.behance.square,
  4416. i.icon.bimobject,
  4417. i.icon.bitbucket,
  4418. i.icon.bitcoin,
  4419. i.icon.bity,
  4420. i.icon.black.tie,
  4421. i.icon.blackberry,
  4422. i.icon.blogger,
  4423. i.icon.blogger.b,
  4424. i.icon.bluetooth,
  4425. i.icon.bluetooth.b,
  4426. i.icon.btc,
  4427. i.icon.buromobelexperte,
  4428. i.icon.buysellads,
  4429. i.icon.cc.amazon.pay,
  4430. i.icon.cc.amex,
  4431. i.icon.cc.apple.pay,
  4432. i.icon.cc.diners.club,
  4433. i.icon.cc.discover,
  4434. i.icon.cc.jcb,
  4435. i.icon.cc.mastercard,
  4436. i.icon.cc.paypal,
  4437. i.icon.cc.stripe,
  4438. i.icon.cc.visa,
  4439. i.icon.centercode,
  4440. i.icon.chrome,
  4441. i.icon.cloudscale,
  4442. i.icon.cloudsmith,
  4443. i.icon.cloudversify,
  4444. i.icon.codepen,
  4445. i.icon.codiepie,
  4446. i.icon.connectdevelop,
  4447. i.icon.contao,
  4448. i.icon.cpanel,
  4449. i.icon.creative.commons,
  4450. i.icon.css3,
  4451. i.icon.css3.alternate,
  4452. i.icon.cuttlefish,
  4453. i.icon.d.and.d,
  4454. i.icon.dashcube,
  4455. i.icon.delicious,
  4456. i.icon.deploydog,
  4457. i.icon.deskpro,
  4458. i.icon.deviantart,
  4459. i.icon.digg,
  4460. i.icon.digital.ocean,
  4461. i.icon.discord,
  4462. i.icon.discourse,
  4463. i.icon.dochub,
  4464. i.icon.docker,
  4465. i.icon.draft2digital,
  4466. i.icon.dribbble,
  4467. i.icon.dribbble.square,
  4468. i.icon.dropbox,
  4469. i.icon.drupal,
  4470. i.icon.dyalog,
  4471. i.icon.earlybirds,
  4472. i.icon.edge,
  4473. i.icon.elementor,
  4474. i.icon.ember,
  4475. i.icon.empire,
  4476. i.icon.envira,
  4477. i.icon.erlang,
  4478. i.icon.ethereum,
  4479. i.icon.etsy,
  4480. i.icon.expeditedssl,
  4481. i.icon.facebook,
  4482. i.icon.facebook.f,
  4483. i.icon.facebook.messenger,
  4484. i.icon.facebook.square,
  4485. i.icon.firefox,
  4486. i.icon.first.order,
  4487. i.icon.firstdraft,
  4488. i.icon.flickr,
  4489. i.icon.flipboard,
  4490. i.icon.fly,
  4491. i.icon.font.awesome,
  4492. i.icon.font.awesome.alternate,
  4493. i.icon.font.awesome.flag,
  4494. i.icon.fonticons,
  4495. i.icon.fonticons.fi,
  4496. i.icon.fort.awesome,
  4497. i.icon.fort.awesome.alternate,
  4498. i.icon.forumbee,
  4499. i.icon.foursquare,
  4500. i.icon.free.code.camp,
  4501. i.icon.freebsd,
  4502. i.icon.get.pocket,
  4503. i.icon.gg,
  4504. i.icon.gg.circle,
  4505. i.icon.git,
  4506. i.icon.git.square,
  4507. i.icon.github,
  4508. i.icon.github.alternate,
  4509. i.icon.github.square,
  4510. i.icon.gitkraken,
  4511. i.icon.gitlab,
  4512. i.icon.gitter,
  4513. i.icon.glide,
  4514. i.icon.glide.g,
  4515. i.icon.gofore,
  4516. i.icon.goodreads,
  4517. i.icon.goodreads.g,
  4518. i.icon.google,
  4519. i.icon.google.drive,
  4520. i.icon.google.play,
  4521. i.icon.google.plus,
  4522. i.icon.google.plus.g,
  4523. i.icon.google.plus.square,
  4524. i.icon.google.wallet,
  4525. i.icon.gratipay,
  4526. i.icon.grav,
  4527. i.icon.gripfire,
  4528. i.icon.grunt,
  4529. i.icon.gulp,
  4530. i.icon.hacker.news,
  4531. i.icon.hacker.news.square,
  4532. i.icon.hips,
  4533. i.icon.hire.a.helper,
  4534. i.icon.hooli,
  4535. i.icon.hotjar,
  4536. i.icon.houzz,
  4537. i.icon.html5,
  4538. i.icon.hubspot,
  4539. i.icon.imdb,
  4540. i.icon.instagram,
  4541. i.icon.internet.explorer,
  4542. i.icon.ioxhost,
  4543. i.icon.itunes,
  4544. i.icon.itunes.note,
  4545. i.icon.jenkins,
  4546. i.icon.joget,
  4547. i.icon.joomla,
  4548. i.icon.js,
  4549. i.icon.js.square,
  4550. i.icon.jsfiddle,
  4551. i.icon.keycdn,
  4552. i.icon.kickstarter,
  4553. i.icon.kickstarter.k,
  4554. i.icon.korvue,
  4555. i.icon.laravel,
  4556. i.icon.lastfm,
  4557. i.icon.lastfm.square,
  4558. i.icon.leanpub,
  4559. i.icon.less,
  4560. i.icon.linechat,
  4561. i.icon.linkedin,
  4562. i.icon.linkedin.alternate,
  4563. i.icon.linkedin.in,
  4564. i.icon.linode,
  4565. i.icon.linux,
  4566. i.icon.lyft,
  4567. i.icon.magento,
  4568. i.icon.maxcdn,
  4569. i.icon.medapps,
  4570. i.icon.medium,
  4571. i.icon.medium.m,
  4572. i.icon.medrt,
  4573. i.icon.meetup,
  4574. i.icon.microsoft,
  4575. i.icon.mix,
  4576. i.icon.mixcloud,
  4577. i.icon.mizuni,
  4578. i.icon.modx,
  4579. i.icon.monero,
  4580. i.icon.napster,
  4581. i.icon.nintendo.switch,
  4582. i.icon.node,
  4583. i.icon.node.js,
  4584. i.icon.npm,
  4585. i.icon.ns8,
  4586. i.icon.nutritionix,
  4587. i.icon.odnoklassniki,
  4588. i.icon.odnoklassniki.square,
  4589. i.icon.opencart,
  4590. i.icon.openid,
  4591. i.icon.opera,
  4592. i.icon.optin.monster,
  4593. i.icon.osi,
  4594. i.icon.page4,
  4595. i.icon.pagelines,
  4596. i.icon.palfed,
  4597. i.icon.patreon,
  4598. i.icon.paypal,
  4599. i.icon.periscope,
  4600. i.icon.phabricator,
  4601. i.icon.phoenix.framework,
  4602. i.icon.php,
  4603. i.icon.pied.piper,
  4604. i.icon.pied.piper.alternate,
  4605. i.icon.pied.piper.pp,
  4606. i.icon.pinterest,
  4607. i.icon.pinterest.p,
  4608. i.icon.pinterest.square,
  4609. i.icon.playstation,
  4610. i.icon.product.hunt,
  4611. i.icon.pushed,
  4612. i.icon.python,
  4613. i.icon.qq,
  4614. i.icon.quinscape,
  4615. i.icon.quora,
  4616. i.icon.ravelry,
  4617. i.icon.react,
  4618. i.icon.rebel,
  4619. i.icon.redriver,
  4620. i.icon.reddit,
  4621. i.icon.reddit.alien,
  4622. i.icon.reddit.square,
  4623. i.icon.rendact,
  4624. i.icon.renren,
  4625. i.icon.replyd,
  4626. i.icon.resolving,
  4627. i.icon.rocketchat,
  4628. i.icon.rockrms,
  4629. i.icon.safari,
  4630. i.icon.sass,
  4631. i.icon.schlix,
  4632. i.icon.scribd,
  4633. i.icon.searchengin,
  4634. i.icon.sellcast,
  4635. i.icon.sellsy,
  4636. i.icon.servicestack,
  4637. i.icon.shirtsinbulk,
  4638. i.icon.simplybuilt,
  4639. i.icon.sistrix,
  4640. i.icon.skyatlas,
  4641. i.icon.skype,
  4642. i.icon.slack,
  4643. i.icon.slack.hash,
  4644. i.icon.slideshare,
  4645. i.icon.snapchat,
  4646. i.icon.snapchat.ghost,
  4647. i.icon.snapchat.square,
  4648. i.icon.soundcloud,
  4649. i.icon.speakap,
  4650. i.icon.spotify,
  4651. i.icon.stack.exchange,
  4652. i.icon.stack.overflow,
  4653. i.icon.staylinked,
  4654. i.icon.steam,
  4655. i.icon.steam.square,
  4656. i.icon.steam.symbol,
  4657. i.icon.sticker.mule,
  4658. i.icon.strava,
  4659. i.icon.stripe,
  4660. i.icon.stripe.s,
  4661. i.icon.studiovinari,
  4662. i.icon.stumbleupon,
  4663. i.icon.stumbleupon.circle,
  4664. i.icon.superpowers,
  4665. i.icon.supple,
  4666. i.icon.telegram,
  4667. i.icon.telegram.plane,
  4668. i.icon.tencent.weibo,
  4669. i.icon.themeisle,
  4670. i.icon.trello,
  4671. i.icon.tripadvisor,
  4672. i.icon.tumblr,
  4673. i.icon.tumblr.square,
  4674. i.icon.twitch,
  4675. i.icon.twitter,
  4676. i.icon.twitter.square,
  4677. i.icon.typo3,
  4678. i.icon.uber,
  4679. i.icon.uikit,
  4680. i.icon.uniregistry,
  4681. i.icon.untappd,
  4682. i.icon.usb,
  4683. i.icon.ussunnah,
  4684. i.icon.vaadin,
  4685. i.icon.viacoin,
  4686. i.icon.viadeo,
  4687. i.icon.viadeo.square,
  4688. i.icon.viber,
  4689. i.icon.vimeo,
  4690. i.icon.vimeo.square,
  4691. i.icon.vimeo.v,
  4692. i.icon.vine,
  4693. i.icon.vk,
  4694. i.icon.vnv,
  4695. i.icon.vuejs,
  4696. i.icon.wechat,
  4697. i.icon.weibo,
  4698. i.icon.weixin,
  4699. i.icon.whatsapp,
  4700. i.icon.whatsapp.square,
  4701. i.icon.whmcs,
  4702. i.icon.wikipedia.w,
  4703. i.icon.windows,
  4704. i.icon.wordpress,
  4705. i.icon.wordpress.simple,
  4706. i.icon.wpbeginner,
  4707. i.icon.wpexplorer,
  4708. i.icon.wpforms,
  4709. i.icon.xbox,
  4710. i.icon.xing,
  4711. i.icon.xing.square,
  4712. i.icon.y.combinator,
  4713. i.icon.yahoo,
  4714. i.icon.yandex,
  4715. i.icon.yandex.international,
  4716. i.icon.yelp,
  4717. i.icon.yoast,
  4718. i.icon.youtube,
  4719. i.icon.youtube.square {
  4720. font-family: 'brand-icons';
  4721. }
  4722. /* Brand Icons Ideally Would Be Defined Here */
  4723. /*******************************
  4724. Site Overrides
  4725. *******************************/