├── bootstrap4-glyphicons ├── bootstrap-glyphicons.zip ├── fonts │ ├── fontawesome │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.ttf │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.ttf │ │ ├── fa-solid-900.woff │ │ ├── fa-solid-900.woff2 │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.woff │ │ └── fa-regular-400.woff2 │ └── glyphicons │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 ├── css │ ├── bootstrap-glyphicons.min.css │ └── bootstrap-glyphicons.css └── maps │ ├── glyphicons-fontawesome.min.css │ └── glyphicons-fontawesome.css ├── compilerconfig.json ├── bundleconfig.json ├── .gitignore ├── .hgignore ├── compilerconfig.json.defaults ├── bootstrap4-glyphicons.sln ├── bootstrap4-glyphicons.csproj ├── README.md └── LICENSE /bootstrap4-glyphicons/bootstrap-glyphicons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/bootstrap-glyphicons.zip -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.eot -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.ttf -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.eot -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.ttf -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.eot -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.ttf -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-solid-900.woff2 -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-brands-400.woff2 -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/fontawesome/fa-regular-400.woff2 -------------------------------------------------------------------------------- /compilerconfig.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "outputFile": "bootstrap4-glyphicons/maps/glyphicons-fontawesome.css", 4 | "inputFile": "bootstrap4-glyphicons/maps/glyphicons-fontawesome.less" 5 | } 6 | ] -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darkseal/bootstrap4-glyphicons/HEAD/bootstrap4-glyphicons/fonts/glyphicons/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /bundleconfig.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "outputFileName": "bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css", 4 | "inputFiles": [ 5 | "bootstrap4-glyphicons/css/bootstrap-glyphicons.css" 6 | ] 7 | } 8 | ] 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # use glob syntax 2 | syntax: glob 3 | 4 | wwwroot/app/** 5 | wwwroot/bin/** 6 | wwwroot/js/** 7 | wwwroot/scripts/** 8 | wwwroot/styles/** 9 | 10 | node_modules/** 11 | [Ss]cripts/[Aa]pp/*.js 12 | [Ss]cripts/[Aa]pp_old/*.js 13 | 14 | .tscache/** 15 | .vs/ 16 | 17 | [Mm]igrations/** 18 | 19 | *.mwb.bak # MySQL Workbench .BAK file 20 | *.dbmdl # VS2010 Database Projects cache file 21 | *.obj 22 | *.pdb 23 | *.user 24 | *.aps 25 | *.pch 26 | *.vspscc 27 | *.vssscc 28 | *_i.c 29 | *_p.c 30 | *.ncb 31 | *.suo 32 | *.tlb 33 | *.tlh 34 | *.bak 35 | *.[Cc]ache 36 | *.ilk 37 | *.log 38 | *.lib 39 | *.sbr 40 | *.scc 41 | *.DotSettings 42 | [Bb]in 43 | [Dd]ebug*/** 44 | obj/ 45 | [Rr]elease*/** 46 | _ReSharper*/** 47 | NDependOut/** 48 | packages/** 49 | [Tt]humbs.db 50 | [Tt]est[Rr]esult* 51 | [Bb]uild[Ll]og.* 52 | *.[Pp]ublish.xml 53 | *.resharper 54 | *.ncrunch* 55 | *.ndproj -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | # use glob syntax 2 | syntax: glob 3 | 4 | wwwroot/app/** 5 | wwwroot/bin/** 6 | wwwroot/js/** 7 | wwwroot/scripts/** 8 | wwwroot/styles/** 9 | wwwroot/dist/main-client.* 10 | ClientApp/dist/main-server.* 11 | 12 | node_modules/** 13 | [Ss]cripts/[Aa]pp/*.js 14 | [Ss]cripts/[Aa]pp_old/*.js 15 | 16 | [Mm]igrations/** 17 | 18 | .tscache/** 19 | .vs/ 20 | 21 | *.mwb.bak # MySQL Workbench .BAK file 22 | *.dbmdl # VS2010 Database Projects cache file 23 | *.obj 24 | *.pdb 25 | *.user 26 | *.aps 27 | *.pch 28 | *.vspscc 29 | *.vssscc 30 | *_i.c 31 | *_p.c 32 | *.ncb 33 | *.suo 34 | *.tlb 35 | *.tlh 36 | *.bak 37 | *.[Cc]ache 38 | *.ilk 39 | *.log 40 | *.lib 41 | *.sbr 42 | *.scc 43 | *.DotSettings 44 | [Bb]in 45 | [Dd]ebug*/** 46 | obj/ 47 | [Rr]elease*/** 48 | _ReSharper*/** 49 | NDependOut/** 50 | packages/** 51 | [Tt]humbs.db 52 | [Tt]est[Rr]esult* 53 | [Bb]uild[Ll]og.* 54 | *.[Pp]ublish.xml 55 | *.resharper 56 | *.ncrunch* 57 | *.ndproj -------------------------------------------------------------------------------- /compilerconfig.json.defaults: -------------------------------------------------------------------------------- 1 | { 2 | "compilers": { 3 | "less": { 4 | "autoPrefix": "", 5 | "cssComb": "none", 6 | "ieCompat": true, 7 | "strictMath": false, 8 | "strictUnits": false, 9 | "relativeUrls": true, 10 | "rootPath": "", 11 | "sourceMapRoot": "", 12 | "sourceMapBasePath": "", 13 | "sourceMap": false 14 | }, 15 | "sass": { 16 | "includePath": "", 17 | "indentType": "space", 18 | "indentWidth": 2, 19 | "outputStyle": "nested", 20 | "Precision": 5, 21 | "relativeUrls": true, 22 | "sourceMapRoot": "", 23 | "sourceMap": false 24 | }, 25 | "stylus": { 26 | "sourceMap": false 27 | }, 28 | "babel": { 29 | "sourceMap": false 30 | }, 31 | "coffeescript": { 32 | "bare": false, 33 | "runtimeMode": "node", 34 | "sourceMap": false 35 | } 36 | }, 37 | "minifiers": { 38 | "css": { 39 | "enabled": true, 40 | "termSemicolons": true, 41 | "gzip": false 42 | }, 43 | "javascript": { 44 | "enabled": true, 45 | "termSemicolons": true, 46 | "gzip": false 47 | } 48 | } 49 | } -------------------------------------------------------------------------------- /bootstrap4-glyphicons.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27130.2027 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bootstrap4-glyphicons", "bootstrap4-glyphicons.csproj", "{7AD4108B-F11E-4628-8794-38B1E049BD82}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {7AD4108B-F11E-4628-8794-38B1E049BD82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {7AD4108B-F11E-4628-8794-38B1E049BD82}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {7AD4108B-F11E-4628-8794-38B1E049BD82}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {7AD4108B-F11E-4628-8794-38B1E049BD82}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {352641B5-5EFF-44EE-A90F-0FD4D54FCCB0} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /bootstrap4-glyphicons.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Debug 4 | AnyCPU 5 | {7AD4108B-F11E-4628-8794-38B1E049BD82} 6 | Library 7 | false 8 | ClassLibrary 9 | v4.0 10 | 512 11 | 12 | 13 | true 14 | full 15 | false 16 | bin\Debug\ 17 | DEBUG;TRACE 18 | prompt 19 | 4 20 | 21 | 22 | pdbonly 23 | true 24 | bin\Release\ 25 | TRACE 26 | prompt 27 | 4 28 | 29 | 30 | bootstrap4_glyphicons 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | compilerconfig.json 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | bootstrap-glyphicons.css 72 | 73 | 74 | 75 | 76 | 77 | 78 | glyphicons-fontawesome.less 79 | 80 | 81 | glyphicons-fontawesome.css 82 | 83 | 84 | 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # bootstrap4-glyphicons 2 | 3 | How to use Glyphicons with Bootstrap 4 (without getting mad) 4 | 5 | For further info & samples, read the [official page](https://www.ryadel.com/en/bootstrap-3-glyphicons-halflings-set-bootstrap4-fontawesome/). 6 | 7 | ## Introduction 8 | 9 | If you stumbled upon this project you most likely already know Bootstrap, the award-winning and worldwide-renown open source toolkit for developing with HTML, CSS, and JS. As a matter of fact, you are probably struggling trying to switch from from Bootstrap 3 to Bootstrap 4. Among the many things that have changed (mostly summarized in the [official Migration guide](http://getbootstrap.com/docs/4.0/migration/)) there was the choice to drop the Glyphicons icon font. 10 | 11 | If you need icons, the Bootstrap team suggest one of the following alternatives: 12 | 13 | * the upstream version of [Glyphicons](https://glyphicons.com/) 14 | * [Octicons](https://octicons.github.com/) 15 | * [Font Awesome](https://fontawesome.com/) 16 | * Other alternatives mentioned in the [Extend page](https://getbootstrap.com/docs/4.0/extend/icons/) 17 | 18 | If you're migrating an existing website based on Bootstrap 3, the first option definitely seems the most viable one. However, the Glyphicons Basic set - the one available for free - does not cover all the icons which were available in Bootstrap, which open-source toolkit was granted with the permissions to use the Halflings set (as long as they provide a link and credits info). 19 | 20 | Now, since Bootstrap 4 doesn't ship the Halflings set anymore, if you want to use that set you might need to pay: if you don't want to, you are basically forced to migrate from Glyphicons to a viable open-source alternative, such as the aforementioned Octicons and Font Awesome - the latter being personal preference, as its free set is good enough for most projects. However, that will undoubtely require some major HTML code rewrite, because you'll have to perform a manual mapping from something like this: 21 | 22 | 23 | 24 | 25 | 26 | to something like this (in case of **FontAwesome**): 27 | 28 | 29 | 30 | 31 | 32 | ... and so on. Unfortunately, as you might see, the icon names might also be quite different, hence is not possible to search-and-replace them easily. 33 | 34 | 35 | ## Alternatives 36 | 37 | If you're building a brand new project, I strongly suggest to drop the Glyphicons package and to migrate to FontAwesome: not only you'll have more icons, but you'll also have the chance to seamlessly switch from Font icons to SVG icons, which is something that you will hardly ever regret (in case you don't know why, read [here](https://www.ianfeather.co.uk/ten-reasons-we-switched-from-an-icon-font-to-svg/)). 38 | 39 | However, if you're dealing with an existing project which makes an extensive use of the Glyphicons Halflings set, you can install this package containing two viables workaround. 40 | 41 | ## Installing 42 | 43 | This package can be used in two alternative ways: **Bootstrap 4+3** and **FontAwesome Mapping**. 44 | 45 | 46 | ### Method #1: Bootstrap 4+3 47 | 48 | This workaround leverages the fact that you can still use Bootstrap 3.x **in addition** to Bootstrap 4 without any issue of sort, as long as you only get only the "glyphicon part". You won't have any license issues, since you'll be actually using Bootstrap 3. 49 | 50 | To implement this workaround, install the package into your web site and add the following within the `` element: 51 | 52 | 53 | 54 | That's it. 55 | 56 | 57 | ### Method #2: FontAwesome Mapping 58 | 59 | Since any Glyphicon image has (more or less) their FontAwesome equivalent, we can map the various `glyphycons*` css classes to their `fa*` equivalent. This is the purpose of the file you can find in `/maps/glyphicons-fontawesome.less` , which will act as a transparent mapping bridge between **Glyphicon** and **FontAwesome**. 60 | 61 | To implement this workaround, install the package into your web site and add the following within the `` element: 62 | 63 | 64 | 65 | The only caveat here is that you'll have to use the font-based icons instead of the SVG alternative (see above), but if you're a Glyphicon user you won't suffer from that: there's a much higher chance that you won't like the "new" icons... If you feel like that, just implement the **Bootstrap 4+3** alternative instead. 66 | 67 | 68 | ## Authors 69 | 70 | * [Darkseal](https://github.com/Darkseal) 71 | 72 | 73 | ## License 74 | 75 | This project is licensed under the APACHE 2.0 License - see the [LICENSE.md](LICENSE.md) file for details 76 | 77 | -------------------------------------------------------------------------------- /bootstrap4-glyphicons/css/bootstrap-glyphicons.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2018 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | @font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons/glyphicons-halflings-regular.eot?');src:url('../fonts/glyphicons/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-euro:before,.glyphicon-eur:before{content:"€"}.glyphicon-minus:before{content:"−"}.glyphicon-cloud:before{content:"☁"}.glyphicon-envelope:before{content:"✉"}.glyphicon-pencil:before{content:"✏"}.glyphicon-glass:before{content:""}.glyphicon-music:before{content:""}.glyphicon-search:before{content:""}.glyphicon-heart:before{content:""}.glyphicon-star:before{content:""}.glyphicon-star-empty:before{content:""}.glyphicon-user:before{content:""}.glyphicon-film:before{content:""}.glyphicon-th-large:before{content:""}.glyphicon-th:before{content:""}.glyphicon-th-list:before{content:""}.glyphicon-ok:before{content:""}.glyphicon-remove:before{content:""}.glyphicon-zoom-in:before{content:""}.glyphicon-zoom-out:before{content:""}.glyphicon-off:before{content:""}.glyphicon-signal:before{content:""}.glyphicon-cog:before{content:""}.glyphicon-trash:before{content:""}.glyphicon-home:before{content:""}.glyphicon-file:before{content:""}.glyphicon-time:before{content:""}.glyphicon-road:before{content:""}.glyphicon-download-alt:before{content:""}.glyphicon-download:before{content:""}.glyphicon-upload:before{content:""}.glyphicon-inbox:before{content:""}.glyphicon-play-circle:before{content:""}.glyphicon-repeat:before{content:""}.glyphicon-refresh:before{content:""}.glyphicon-list-alt:before{content:""}.glyphicon-lock:before{content:""}.glyphicon-flag:before{content:""}.glyphicon-headphones:before{content:""}.glyphicon-volume-off:before{content:""}.glyphicon-volume-down:before{content:""}.glyphicon-volume-up:before{content:""}.glyphicon-qrcode:before{content:""}.glyphicon-barcode:before{content:""}.glyphicon-tag:before{content:""}.glyphicon-tags:before{content:""}.glyphicon-book:before{content:""}.glyphicon-bookmark:before{content:""}.glyphicon-print:before{content:""}.glyphicon-camera:before{content:""}.glyphicon-font:before{content:""}.glyphicon-bold:before{content:""}.glyphicon-italic:before{content:""}.glyphicon-text-height:before{content:""}.glyphicon-text-width:before{content:""}.glyphicon-align-left:before{content:""}.glyphicon-align-center:before{content:""}.glyphicon-align-right:before{content:""}.glyphicon-align-justify:before{content:""}.glyphicon-list:before{content:""}.glyphicon-indent-left:before{content:""}.glyphicon-indent-right:before{content:""}.glyphicon-facetime-video:before{content:""}.glyphicon-picture:before{content:""}.glyphicon-map-marker:before{content:""}.glyphicon-adjust:before{content:""}.glyphicon-tint:before{content:""}.glyphicon-edit:before{content:""}.glyphicon-share:before{content:""}.glyphicon-check:before{content:""}.glyphicon-move:before{content:""}.glyphicon-step-backward:before{content:""}.glyphicon-fast-backward:before{content:""}.glyphicon-backward:before{content:""}.glyphicon-play:before{content:""}.glyphicon-pause:before{content:""}.glyphicon-stop:before{content:""}.glyphicon-forward:before{content:""}.glyphicon-fast-forward:before{content:""}.glyphicon-step-forward:before{content:""}.glyphicon-eject:before{content:""}.glyphicon-chevron-left:before{content:""}.glyphicon-chevron-right:before{content:""}.glyphicon-plus-sign:before{content:""}.glyphicon-minus-sign:before{content:""}.glyphicon-remove-sign:before{content:""}.glyphicon-ok-sign:before{content:""}.glyphicon-question-sign:before{content:""}.glyphicon-info-sign:before{content:""}.glyphicon-screenshot:before{content:""}.glyphicon-remove-circle:before{content:""}.glyphicon-ok-circle:before{content:""}.glyphicon-ban-circle:before{content:""}.glyphicon-arrow-left:before{content:""}.glyphicon-arrow-right:before{content:""}.glyphicon-arrow-up:before{content:""}.glyphicon-arrow-down:before{content:""}.glyphicon-share-alt:before{content:""}.glyphicon-resize-full:before{content:""}.glyphicon-resize-small:before{content:""}.glyphicon-exclamation-sign:before{content:""}.glyphicon-gift:before{content:""}.glyphicon-leaf:before{content:""}.glyphicon-fire:before{content:""}.glyphicon-eye-open:before{content:""}.glyphicon-eye-close:before{content:""}.glyphicon-warning-sign:before{content:""}.glyphicon-plane:before{content:""}.glyphicon-calendar:before{content:""}.glyphicon-random:before{content:""}.glyphicon-comment:before{content:""}.glyphicon-magnet:before{content:""}.glyphicon-chevron-up:before{content:""}.glyphicon-chevron-down:before{content:""}.glyphicon-retweet:before{content:""}.glyphicon-shopping-cart:before{content:""}.glyphicon-folder-close:before{content:""}.glyphicon-folder-open:before{content:""}.glyphicon-resize-vertical:before{content:""}.glyphicon-resize-horizontal:before{content:""}.glyphicon-hdd:before{content:""}.glyphicon-bullhorn:before{content:""}.glyphicon-bell:before{content:""}.glyphicon-certificate:before{content:""}.glyphicon-thumbs-up:before{content:""}.glyphicon-thumbs-down:before{content:""}.glyphicon-hand-right:before{content:""}.glyphicon-hand-left:before{content:""}.glyphicon-hand-up:before{content:""}.glyphicon-hand-down:before{content:""}.glyphicon-circle-arrow-right:before{content:""}.glyphicon-circle-arrow-left:before{content:""}.glyphicon-circle-arrow-up:before{content:""}.glyphicon-circle-arrow-down:before{content:""}.glyphicon-globe:before{content:""}.glyphicon-wrench:before{content:""}.glyphicon-tasks:before{content:""}.glyphicon-filter:before{content:""}.glyphicon-briefcase:before{content:""}.glyphicon-fullscreen:before{content:""}.glyphicon-dashboard:before{content:""}.glyphicon-paperclip:before{content:""}.glyphicon-heart-empty:before{content:""}.glyphicon-link:before{content:""}.glyphicon-phone:before{content:""}.glyphicon-pushpin:before{content:""}.glyphicon-usd:before{content:""}.glyphicon-gbp:before{content:""}.glyphicon-sort:before{content:""}.glyphicon-sort-by-alphabet:before{content:""}.glyphicon-sort-by-alphabet-alt:before{content:""}.glyphicon-sort-by-order:before{content:""}.glyphicon-sort-by-order-alt:before{content:""}.glyphicon-sort-by-attributes:before{content:""}.glyphicon-sort-by-attributes-alt:before{content:""}.glyphicon-unchecked:before{content:""}.glyphicon-expand:before{content:""}.glyphicon-collapse-down:before{content:""}.glyphicon-collapse-up:before{content:""}.glyphicon-log-in:before{content:""}.glyphicon-flash:before{content:""}.glyphicon-log-out:before{content:""}.glyphicon-new-window:before{content:""}.glyphicon-record:before{content:""}.glyphicon-save:before{content:""}.glyphicon-open:before{content:""}.glyphicon-saved:before{content:""}.glyphicon-import:before{content:""}.glyphicon-export:before{content:""}.glyphicon-send:before{content:""}.glyphicon-floppy-disk:before{content:""}.glyphicon-floppy-saved:before{content:""}.glyphicon-floppy-remove:before{content:""}.glyphicon-floppy-save:before{content:""}.glyphicon-floppy-open:before{content:""}.glyphicon-credit-card:before{content:""}.glyphicon-transfer:before{content:""}.glyphicon-cutlery:before{content:""}.glyphicon-header:before{content:""}.glyphicon-compressed:before{content:""}.glyphicon-earphone:before{content:""}.glyphicon-phone-alt:before{content:""}.glyphicon-tower:before{content:""}.glyphicon-stats:before{content:""}.glyphicon-sd-video:before{content:""}.glyphicon-hd-video:before{content:""}.glyphicon-subtitles:before{content:""}.glyphicon-sound-stereo:before{content:""}.glyphicon-sound-dolby:before{content:""}.glyphicon-sound-5-1:before{content:""}.glyphicon-sound-6-1:before{content:""}.glyphicon-sound-7-1:before{content:""}.glyphicon-copyright-mark:before{content:""}.glyphicon-registration-mark:before{content:""}.glyphicon-cloud-download:before{content:""}.glyphicon-cloud-upload:before{content:""}.glyphicon-tree-conifer:before{content:""}.glyphicon-tree-deciduous:before{content:""}.glyphicon-cd:before{content:""}.glyphicon-save-file:before{content:""}.glyphicon-open-file:before{content:""}.glyphicon-level-up:before{content:""}.glyphicon-copy:before{content:""}.glyphicon-paste:before{content:""}.glyphicon-alert:before{content:""}.glyphicon-equalizer:before{content:""}.glyphicon-king:before{content:""}.glyphicon-queen:before{content:""}.glyphicon-pawn:before{content:""}.glyphicon-bishop:before{content:""}.glyphicon-knight:before{content:""}.glyphicon-baby-formula:before{content:""}.glyphicon-tent:before{content:"⛺"}.glyphicon-blackboard:before{content:""}.glyphicon-bed:before{content:""}.glyphicon-apple:before{content:""}.glyphicon-erase:before{content:""}.glyphicon-hourglass:before{content:"⌛"}.glyphicon-lamp:before{content:""}.glyphicon-duplicate:before{content:""}.glyphicon-piggy-bank:before{content:""}.glyphicon-scissors:before{content:""}.glyphicon-bitcoin:before{content:""}.glyphicon-btc:before{content:""}.glyphicon-xbt:before{content:""}.glyphicon-yen:before{content:"¥"}.glyphicon-jpy:before{content:"¥"}.glyphicon-ruble:before{content:"₽"}.glyphicon-rub:before{content:"₽"}.glyphicon-scale:before{content:""}.glyphicon-ice-lolly:before{content:""}.glyphicon-ice-lolly-tasted:before{content:""}.glyphicon-education:before{content:""}.glyphicon-option-horizontal:before{content:""}.glyphicon-option-vertical:before{content:""}.glyphicon-menu-hamburger:before{content:""}.glyphicon-modal-window:before{content:""}.glyphicon-oil:before{content:""}.glyphicon-grain:before{content:""}.glyphicon-sunglasses:before{content:""}.glyphicon-text-size:before{content:""}.glyphicon-text-color:before{content:""}.glyphicon-text-background:before{content:""}.glyphicon-object-align-top:before{content:""}.glyphicon-object-align-bottom:before{content:""}.glyphicon-object-align-horizontal:before{content:""}.glyphicon-object-align-left:before{content:""}.glyphicon-object-align-vertical:before{content:""}.glyphicon-object-align-right:before{content:""}.glyphicon-triangle-right:before{content:""}.glyphicon-triangle-left:before{content:""}.glyphicon-triangle-bottom:before{content:""}.glyphicon-triangle-top:before{content:""}.glyphicon-console:before{content:""}.glyphicon-superscript:before{content:""}.glyphicon-subscript:before{content:""}.glyphicon-menu-left:before{content:""}.glyphicon-menu-right:before{content:""}.glyphicon-menu-down:before{content:""}.glyphicon-menu-up:before{content:""} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /bootstrap4-glyphicons/css/bootstrap-glyphicons.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2018 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | @font-face { 8 | font-family: 'Glyphicons Halflings'; 9 | src: url('../fonts/glyphicons/glyphicons-halflings-regular.eot'); 10 | src: url('../fonts/glyphicons/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); 11 | } 12 | .glyphicon { 13 | position: relative; 14 | top: 1px; 15 | display: inline-block; 16 | font-family: 'Glyphicons Halflings'; 17 | font-style: normal; 18 | font-weight: normal; 19 | line-height: 1; 20 | -webkit-font-smoothing: antialiased; 21 | -moz-osx-font-smoothing: grayscale; 22 | } 23 | .glyphicon-asterisk:before { 24 | content: "\002a"; 25 | } 26 | .glyphicon-plus:before { 27 | content: "\002b"; 28 | } 29 | .glyphicon-euro:before, 30 | .glyphicon-eur:before { 31 | content: "\20ac"; 32 | } 33 | .glyphicon-minus:before { 34 | content: "\2212"; 35 | } 36 | .glyphicon-cloud:before { 37 | content: "\2601"; 38 | } 39 | .glyphicon-envelope:before { 40 | content: "\2709"; 41 | } 42 | .glyphicon-pencil:before { 43 | content: "\270f"; 44 | } 45 | .glyphicon-glass:before { 46 | content: "\e001"; 47 | } 48 | .glyphicon-music:before { 49 | content: "\e002"; 50 | } 51 | .glyphicon-search:before { 52 | content: "\e003"; 53 | } 54 | .glyphicon-heart:before { 55 | content: "\e005"; 56 | } 57 | .glyphicon-star:before { 58 | content: "\e006"; 59 | } 60 | .glyphicon-star-empty:before { 61 | content: "\e007"; 62 | } 63 | .glyphicon-user:before { 64 | content: "\e008"; 65 | } 66 | .glyphicon-film:before { 67 | content: "\e009"; 68 | } 69 | .glyphicon-th-large:before { 70 | content: "\e010"; 71 | } 72 | .glyphicon-th:before { 73 | content: "\e011"; 74 | } 75 | .glyphicon-th-list:before { 76 | content: "\e012"; 77 | } 78 | .glyphicon-ok:before { 79 | content: "\e013"; 80 | } 81 | .glyphicon-remove:before { 82 | content: "\e014"; 83 | } 84 | .glyphicon-zoom-in:before { 85 | content: "\e015"; 86 | } 87 | .glyphicon-zoom-out:before { 88 | content: "\e016"; 89 | } 90 | .glyphicon-off:before { 91 | content: "\e017"; 92 | } 93 | .glyphicon-signal:before { 94 | content: "\e018"; 95 | } 96 | .glyphicon-cog:before { 97 | content: "\e019"; 98 | } 99 | .glyphicon-trash:before { 100 | content: "\e020"; 101 | } 102 | .glyphicon-home:before { 103 | content: "\e021"; 104 | } 105 | .glyphicon-file:before { 106 | content: "\e022"; 107 | } 108 | .glyphicon-time:before { 109 | content: "\e023"; 110 | } 111 | .glyphicon-road:before { 112 | content: "\e024"; 113 | } 114 | .glyphicon-download-alt:before { 115 | content: "\e025"; 116 | } 117 | .glyphicon-download:before { 118 | content: "\e026"; 119 | } 120 | .glyphicon-upload:before { 121 | content: "\e027"; 122 | } 123 | .glyphicon-inbox:before { 124 | content: "\e028"; 125 | } 126 | .glyphicon-play-circle:before { 127 | content: "\e029"; 128 | } 129 | .glyphicon-repeat:before { 130 | content: "\e030"; 131 | } 132 | .glyphicon-refresh:before { 133 | content: "\e031"; 134 | } 135 | .glyphicon-list-alt:before { 136 | content: "\e032"; 137 | } 138 | .glyphicon-lock:before { 139 | content: "\e033"; 140 | } 141 | .glyphicon-flag:before { 142 | content: "\e034"; 143 | } 144 | .glyphicon-headphones:before { 145 | content: "\e035"; 146 | } 147 | .glyphicon-volume-off:before { 148 | content: "\e036"; 149 | } 150 | .glyphicon-volume-down:before { 151 | content: "\e037"; 152 | } 153 | .glyphicon-volume-up:before { 154 | content: "\e038"; 155 | } 156 | .glyphicon-qrcode:before { 157 | content: "\e039"; 158 | } 159 | .glyphicon-barcode:before { 160 | content: "\e040"; 161 | } 162 | .glyphicon-tag:before { 163 | content: "\e041"; 164 | } 165 | .glyphicon-tags:before { 166 | content: "\e042"; 167 | } 168 | .glyphicon-book:before { 169 | content: "\e043"; 170 | } 171 | .glyphicon-bookmark:before { 172 | content: "\e044"; 173 | } 174 | .glyphicon-print:before { 175 | content: "\e045"; 176 | } 177 | .glyphicon-camera:before { 178 | content: "\e046"; 179 | } 180 | .glyphicon-font:before { 181 | content: "\e047"; 182 | } 183 | .glyphicon-bold:before { 184 | content: "\e048"; 185 | } 186 | .glyphicon-italic:before { 187 | content: "\e049"; 188 | } 189 | .glyphicon-text-height:before { 190 | content: "\e050"; 191 | } 192 | .glyphicon-text-width:before { 193 | content: "\e051"; 194 | } 195 | .glyphicon-align-left:before { 196 | content: "\e052"; 197 | } 198 | .glyphicon-align-center:before { 199 | content: "\e053"; 200 | } 201 | .glyphicon-align-right:before { 202 | content: "\e054"; 203 | } 204 | .glyphicon-align-justify:before { 205 | content: "\e055"; 206 | } 207 | .glyphicon-list:before { 208 | content: "\e056"; 209 | } 210 | .glyphicon-indent-left:before { 211 | content: "\e057"; 212 | } 213 | .glyphicon-indent-right:before { 214 | content: "\e058"; 215 | } 216 | .glyphicon-facetime-video:before { 217 | content: "\e059"; 218 | } 219 | .glyphicon-picture:before { 220 | content: "\e060"; 221 | } 222 | .glyphicon-map-marker:before { 223 | content: "\e062"; 224 | } 225 | .glyphicon-adjust:before { 226 | content: "\e063"; 227 | } 228 | .glyphicon-tint:before { 229 | content: "\e064"; 230 | } 231 | .glyphicon-edit:before { 232 | content: "\e065"; 233 | } 234 | .glyphicon-share:before { 235 | content: "\e066"; 236 | } 237 | .glyphicon-check:before { 238 | content: "\e067"; 239 | } 240 | .glyphicon-move:before { 241 | content: "\e068"; 242 | } 243 | .glyphicon-step-backward:before { 244 | content: "\e069"; 245 | } 246 | .glyphicon-fast-backward:before { 247 | content: "\e070"; 248 | } 249 | .glyphicon-backward:before { 250 | content: "\e071"; 251 | } 252 | .glyphicon-play:before { 253 | content: "\e072"; 254 | } 255 | .glyphicon-pause:before { 256 | content: "\e073"; 257 | } 258 | .glyphicon-stop:before { 259 | content: "\e074"; 260 | } 261 | .glyphicon-forward:before { 262 | content: "\e075"; 263 | } 264 | .glyphicon-fast-forward:before { 265 | content: "\e076"; 266 | } 267 | .glyphicon-step-forward:before { 268 | content: "\e077"; 269 | } 270 | .glyphicon-eject:before { 271 | content: "\e078"; 272 | } 273 | .glyphicon-chevron-left:before { 274 | content: "\e079"; 275 | } 276 | .glyphicon-chevron-right:before { 277 | content: "\e080"; 278 | } 279 | .glyphicon-plus-sign:before { 280 | content: "\e081"; 281 | } 282 | .glyphicon-minus-sign:before { 283 | content: "\e082"; 284 | } 285 | .glyphicon-remove-sign:before { 286 | content: "\e083"; 287 | } 288 | .glyphicon-ok-sign:before { 289 | content: "\e084"; 290 | } 291 | .glyphicon-question-sign:before { 292 | content: "\e085"; 293 | } 294 | .glyphicon-info-sign:before { 295 | content: "\e086"; 296 | } 297 | .glyphicon-screenshot:before { 298 | content: "\e087"; 299 | } 300 | .glyphicon-remove-circle:before { 301 | content: "\e088"; 302 | } 303 | .glyphicon-ok-circle:before { 304 | content: "\e089"; 305 | } 306 | .glyphicon-ban-circle:before { 307 | content: "\e090"; 308 | } 309 | .glyphicon-arrow-left:before { 310 | content: "\e091"; 311 | } 312 | .glyphicon-arrow-right:before { 313 | content: "\e092"; 314 | } 315 | .glyphicon-arrow-up:before { 316 | content: "\e093"; 317 | } 318 | .glyphicon-arrow-down:before { 319 | content: "\e094"; 320 | } 321 | .glyphicon-share-alt:before { 322 | content: "\e095"; 323 | } 324 | .glyphicon-resize-full:before { 325 | content: "\e096"; 326 | } 327 | .glyphicon-resize-small:before { 328 | content: "\e097"; 329 | } 330 | .glyphicon-exclamation-sign:before { 331 | content: "\e101"; 332 | } 333 | .glyphicon-gift:before { 334 | content: "\e102"; 335 | } 336 | .glyphicon-leaf:before { 337 | content: "\e103"; 338 | } 339 | .glyphicon-fire:before { 340 | content: "\e104"; 341 | } 342 | .glyphicon-eye-open:before { 343 | content: "\e105"; 344 | } 345 | .glyphicon-eye-close:before { 346 | content: "\e106"; 347 | } 348 | .glyphicon-warning-sign:before { 349 | content: "\e107"; 350 | } 351 | .glyphicon-plane:before { 352 | content: "\e108"; 353 | } 354 | .glyphicon-calendar:before { 355 | content: "\e109"; 356 | } 357 | .glyphicon-random:before { 358 | content: "\e110"; 359 | } 360 | .glyphicon-comment:before { 361 | content: "\e111"; 362 | } 363 | .glyphicon-magnet:before { 364 | content: "\e112"; 365 | } 366 | .glyphicon-chevron-up:before { 367 | content: "\e113"; 368 | } 369 | .glyphicon-chevron-down:before { 370 | content: "\e114"; 371 | } 372 | .glyphicon-retweet:before { 373 | content: "\e115"; 374 | } 375 | .glyphicon-shopping-cart:before { 376 | content: "\e116"; 377 | } 378 | .glyphicon-folder-close:before { 379 | content: "\e117"; 380 | } 381 | .glyphicon-folder-open:before { 382 | content: "\e118"; 383 | } 384 | .glyphicon-resize-vertical:before { 385 | content: "\e119"; 386 | } 387 | .glyphicon-resize-horizontal:before { 388 | content: "\e120"; 389 | } 390 | .glyphicon-hdd:before { 391 | content: "\e121"; 392 | } 393 | .glyphicon-bullhorn:before { 394 | content: "\e122"; 395 | } 396 | .glyphicon-bell:before { 397 | content: "\e123"; 398 | } 399 | .glyphicon-certificate:before { 400 | content: "\e124"; 401 | } 402 | .glyphicon-thumbs-up:before { 403 | content: "\e125"; 404 | } 405 | .glyphicon-thumbs-down:before { 406 | content: "\e126"; 407 | } 408 | .glyphicon-hand-right:before { 409 | content: "\e127"; 410 | } 411 | .glyphicon-hand-left:before { 412 | content: "\e128"; 413 | } 414 | .glyphicon-hand-up:before { 415 | content: "\e129"; 416 | } 417 | .glyphicon-hand-down:before { 418 | content: "\e130"; 419 | } 420 | .glyphicon-circle-arrow-right:before { 421 | content: "\e131"; 422 | } 423 | .glyphicon-circle-arrow-left:before { 424 | content: "\e132"; 425 | } 426 | .glyphicon-circle-arrow-up:before { 427 | content: "\e133"; 428 | } 429 | .glyphicon-circle-arrow-down:before { 430 | content: "\e134"; 431 | } 432 | .glyphicon-globe:before { 433 | content: "\e135"; 434 | } 435 | .glyphicon-wrench:before { 436 | content: "\e136"; 437 | } 438 | .glyphicon-tasks:before { 439 | content: "\e137"; 440 | } 441 | .glyphicon-filter:before { 442 | content: "\e138"; 443 | } 444 | .glyphicon-briefcase:before { 445 | content: "\e139"; 446 | } 447 | .glyphicon-fullscreen:before { 448 | content: "\e140"; 449 | } 450 | .glyphicon-dashboard:before { 451 | content: "\e141"; 452 | } 453 | .glyphicon-paperclip:before { 454 | content: "\e142"; 455 | } 456 | .glyphicon-heart-empty:before { 457 | content: "\e143"; 458 | } 459 | .glyphicon-link:before { 460 | content: "\e144"; 461 | } 462 | .glyphicon-phone:before { 463 | content: "\e145"; 464 | } 465 | .glyphicon-pushpin:before { 466 | content: "\e146"; 467 | } 468 | .glyphicon-usd:before { 469 | content: "\e148"; 470 | } 471 | .glyphicon-gbp:before { 472 | content: "\e149"; 473 | } 474 | .glyphicon-sort:before { 475 | content: "\e150"; 476 | } 477 | .glyphicon-sort-by-alphabet:before { 478 | content: "\e151"; 479 | } 480 | .glyphicon-sort-by-alphabet-alt:before { 481 | content: "\e152"; 482 | } 483 | .glyphicon-sort-by-order:before { 484 | content: "\e153"; 485 | } 486 | .glyphicon-sort-by-order-alt:before { 487 | content: "\e154"; 488 | } 489 | .glyphicon-sort-by-attributes:before { 490 | content: "\e155"; 491 | } 492 | .glyphicon-sort-by-attributes-alt:before { 493 | content: "\e156"; 494 | } 495 | .glyphicon-unchecked:before { 496 | content: "\e157"; 497 | } 498 | .glyphicon-expand:before { 499 | content: "\e158"; 500 | } 501 | .glyphicon-collapse-down:before { 502 | content: "\e159"; 503 | } 504 | .glyphicon-collapse-up:before { 505 | content: "\e160"; 506 | } 507 | .glyphicon-log-in:before { 508 | content: "\e161"; 509 | } 510 | .glyphicon-flash:before { 511 | content: "\e162"; 512 | } 513 | .glyphicon-log-out:before { 514 | content: "\e163"; 515 | } 516 | .glyphicon-new-window:before { 517 | content: "\e164"; 518 | } 519 | .glyphicon-record:before { 520 | content: "\e165"; 521 | } 522 | .glyphicon-save:before { 523 | content: "\e166"; 524 | } 525 | .glyphicon-open:before { 526 | content: "\e167"; 527 | } 528 | .glyphicon-saved:before { 529 | content: "\e168"; 530 | } 531 | .glyphicon-import:before { 532 | content: "\e169"; 533 | } 534 | .glyphicon-export:before { 535 | content: "\e170"; 536 | } 537 | .glyphicon-send:before { 538 | content: "\e171"; 539 | } 540 | .glyphicon-floppy-disk:before { 541 | content: "\e172"; 542 | } 543 | .glyphicon-floppy-saved:before { 544 | content: "\e173"; 545 | } 546 | .glyphicon-floppy-remove:before { 547 | content: "\e174"; 548 | } 549 | .glyphicon-floppy-save:before { 550 | content: "\e175"; 551 | } 552 | .glyphicon-floppy-open:before { 553 | content: "\e176"; 554 | } 555 | .glyphicon-credit-card:before { 556 | content: "\e177"; 557 | } 558 | .glyphicon-transfer:before { 559 | content: "\e178"; 560 | } 561 | .glyphicon-cutlery:before { 562 | content: "\e179"; 563 | } 564 | .glyphicon-header:before { 565 | content: "\e180"; 566 | } 567 | .glyphicon-compressed:before { 568 | content: "\e181"; 569 | } 570 | .glyphicon-earphone:before { 571 | content: "\e182"; 572 | } 573 | .glyphicon-phone-alt:before { 574 | content: "\e183"; 575 | } 576 | .glyphicon-tower:before { 577 | content: "\e184"; 578 | } 579 | .glyphicon-stats:before { 580 | content: "\e185"; 581 | } 582 | .glyphicon-sd-video:before { 583 | content: "\e186"; 584 | } 585 | .glyphicon-hd-video:before { 586 | content: "\e187"; 587 | } 588 | .glyphicon-subtitles:before { 589 | content: "\e188"; 590 | } 591 | .glyphicon-sound-stereo:before { 592 | content: "\e189"; 593 | } 594 | .glyphicon-sound-dolby:before { 595 | content: "\e190"; 596 | } 597 | .glyphicon-sound-5-1:before { 598 | content: "\e191"; 599 | } 600 | .glyphicon-sound-6-1:before { 601 | content: "\e192"; 602 | } 603 | .glyphicon-sound-7-1:before { 604 | content: "\e193"; 605 | } 606 | .glyphicon-copyright-mark:before { 607 | content: "\e194"; 608 | } 609 | .glyphicon-registration-mark:before { 610 | content: "\e195"; 611 | } 612 | .glyphicon-cloud-download:before { 613 | content: "\e197"; 614 | } 615 | .glyphicon-cloud-upload:before { 616 | content: "\e198"; 617 | } 618 | .glyphicon-tree-conifer:before { 619 | content: "\e199"; 620 | } 621 | .glyphicon-tree-deciduous:before { 622 | content: "\e200"; 623 | } 624 | .glyphicon-cd:before { 625 | content: "\e201"; 626 | } 627 | .glyphicon-save-file:before { 628 | content: "\e202"; 629 | } 630 | .glyphicon-open-file:before { 631 | content: "\e203"; 632 | } 633 | .glyphicon-level-up:before { 634 | content: "\e204"; 635 | } 636 | .glyphicon-copy:before { 637 | content: "\e205"; 638 | } 639 | .glyphicon-paste:before { 640 | content: "\e206"; 641 | } 642 | .glyphicon-alert:before { 643 | content: "\e209"; 644 | } 645 | .glyphicon-equalizer:before { 646 | content: "\e210"; 647 | } 648 | .glyphicon-king:before { 649 | content: "\e211"; 650 | } 651 | .glyphicon-queen:before { 652 | content: "\e212"; 653 | } 654 | .glyphicon-pawn:before { 655 | content: "\e213"; 656 | } 657 | .glyphicon-bishop:before { 658 | content: "\e214"; 659 | } 660 | .glyphicon-knight:before { 661 | content: "\e215"; 662 | } 663 | .glyphicon-baby-formula:before { 664 | content: "\e216"; 665 | } 666 | .glyphicon-tent:before { 667 | content: "\26fa"; 668 | } 669 | .glyphicon-blackboard:before { 670 | content: "\e218"; 671 | } 672 | .glyphicon-bed:before { 673 | content: "\e219"; 674 | } 675 | .glyphicon-apple:before { 676 | content: "\f8ff"; 677 | } 678 | .glyphicon-erase:before { 679 | content: "\e221"; 680 | } 681 | .glyphicon-hourglass:before { 682 | content: "\231b"; 683 | } 684 | .glyphicon-lamp:before { 685 | content: "\e223"; 686 | } 687 | .glyphicon-duplicate:before { 688 | content: "\e224"; 689 | } 690 | .glyphicon-piggy-bank:before { 691 | content: "\e225"; 692 | } 693 | .glyphicon-scissors:before { 694 | content: "\e226"; 695 | } 696 | .glyphicon-bitcoin:before { 697 | content: "\e227"; 698 | } 699 | .glyphicon-btc:before { 700 | content: "\e227"; 701 | } 702 | .glyphicon-xbt:before { 703 | content: "\e227"; 704 | } 705 | .glyphicon-yen:before { 706 | content: "\00a5"; 707 | } 708 | .glyphicon-jpy:before { 709 | content: "\00a5"; 710 | } 711 | .glyphicon-ruble:before { 712 | content: "\20bd"; 713 | } 714 | .glyphicon-rub:before { 715 | content: "\20bd"; 716 | } 717 | .glyphicon-scale:before { 718 | content: "\e230"; 719 | } 720 | .glyphicon-ice-lolly:before { 721 | content: "\e231"; 722 | } 723 | .glyphicon-ice-lolly-tasted:before { 724 | content: "\e232"; 725 | } 726 | .glyphicon-education:before { 727 | content: "\e233"; 728 | } 729 | .glyphicon-option-horizontal:before { 730 | content: "\e234"; 731 | } 732 | .glyphicon-option-vertical:before { 733 | content: "\e235"; 734 | } 735 | .glyphicon-menu-hamburger:before { 736 | content: "\e236"; 737 | } 738 | .glyphicon-modal-window:before { 739 | content: "\e237"; 740 | } 741 | .glyphicon-oil:before { 742 | content: "\e238"; 743 | } 744 | .glyphicon-grain:before { 745 | content: "\e239"; 746 | } 747 | .glyphicon-sunglasses:before { 748 | content: "\e240"; 749 | } 750 | .glyphicon-text-size:before { 751 | content: "\e241"; 752 | } 753 | .glyphicon-text-color:before { 754 | content: "\e242"; 755 | } 756 | .glyphicon-text-background:before { 757 | content: "\e243"; 758 | } 759 | .glyphicon-object-align-top:before { 760 | content: "\e244"; 761 | } 762 | .glyphicon-object-align-bottom:before { 763 | content: "\e245"; 764 | } 765 | .glyphicon-object-align-horizontal:before { 766 | content: "\e246"; 767 | } 768 | .glyphicon-object-align-left:before { 769 | content: "\e247"; 770 | } 771 | .glyphicon-object-align-vertical:before { 772 | content: "\e248"; 773 | } 774 | .glyphicon-object-align-right:before { 775 | content: "\e249"; 776 | } 777 | .glyphicon-triangle-right:before { 778 | content: "\e250"; 779 | } 780 | .glyphicon-triangle-left:before { 781 | content: "\e251"; 782 | } 783 | .glyphicon-triangle-bottom:before { 784 | content: "\e252"; 785 | } 786 | .glyphicon-triangle-top:before { 787 | content: "\e253"; 788 | } 789 | .glyphicon-console:before { 790 | content: "\e254"; 791 | } 792 | .glyphicon-superscript:before { 793 | content: "\e255"; 794 | } 795 | .glyphicon-subscript:before { 796 | content: "\e256"; 797 | } 798 | .glyphicon-menu-left:before { 799 | content: "\e257"; 800 | } 801 | .glyphicon-menu-right:before { 802 | content: "\e258"; 803 | } 804 | .glyphicon-menu-down:before { 805 | content: "\e259"; 806 | } 807 | .glyphicon-menu-up:before { 808 | content: "\e260"; 809 | } 810 | -------------------------------------------------------------------------------- /bootstrap4-glyphicons/maps/glyphicons-fontawesome.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:'Font Awesome 5 Free';font-style:normal;font-weight:900;src:url("../fonts/fontawesome/fa-solid-900.eot");src:url("../fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"),url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype"),url("../fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg");}.glyphicon{font-family:'Font Awesome 5 Free';}.glyphicon.glyphicon-chevron-up::before{content:"";}.glyphicon.glyphicon-chevron-right::before{content:"";}.glyphicon.glyphicon-chevron-left::before{content:"";}.glyphicon.glyphicon-asterisk::before{content:"";}.glyphicon.glyphicon-plus::before{content:"";}.glyphicon.glyphicon-euro::before,.glyphicon.glyphicon-eur::before{content:"";}.glyphicon.glyphicon-minus::before{content:"";}.glyphicon.glyphicon-cloud::before{content:"";}.glyphicon.glyphicon-envelope::before{content:"";}.glyphicon.glyphicon-pencil::before{content:"";}.glyphicon.glyphicon-glass::before{content:"";}.glyphicon.glyphicon-music::before{content:"";}.glyphicon.glyphicon-search::before{content:"";}.glyphicon.glyphicon-heart::before{content:"";}.glyphicon.glyphicon-star::before{content:"";}.glyphicon.glyphicon-star-empty::before{content:"";}.glyphicon.glyphicon-user::before{content:"";}.glyphicon.glyphicon-film::before{content:"";}.glyphicon.glyphicon-th-large::before{content:"";}.glyphicon.glyphicon-th::before{content:"";}.glyphicon.glyphicon-th-list::before{content:"";}.glyphicon.glyphicon-ok::before{content:"";}.glyphicon.glyphicon-remove::before{content:"";}.glyphicon.glyphicon-zoom-in::before{content:"";}.glyphicon.glyphicon-zoom-out::before{content:"";}.glyphicon.glyphicon-off::before{content:"";}.glyphicon.glyphicon-signal::before{content:"";}.glyphicon.glyphicon-cog::before{content:"";}.glyphicon.glyphicon-trash::before{content:"";}.glyphicon.glyphicon-home::before{content:"";}.glyphicon.glyphicon-file::before{content:"";}.glyphicon.glyphicon-time::before{content:"";}.glyphicon.glyphicon-road::before{content:"";}.glyphicon.glyphicon-download-alt::before{content:"";}.glyphicon.glyphicon-download::before{content:"";}.glyphicon.glyphicon-upload::before{content:"";}.glyphicon.glyphicon-inbox::before{content:"";}.glyphicon.glyphicon-play-circle::before{content:"";}.glyphicon.glyphicon-repeat::before{content:"";}.glyphicon.glyphicon-refresh::before{content:"";}.glyphicon.glyphicon-list-alt::before{content:"";}.glyphicon.glyphicon-lock::before{content:"";}.glyphicon.glyphicon-flag::before{content:"";}.glyphicon.glyphicon-headphones::before{content:"";}.glyphicon.glyphicon-volume-off::before{content:"";}.glyphicon.glyphicon-volume-down::before{content:"";}.glyphicon.glyphicon-volume-up::before{content:"";}.glyphicon.glyphicon-qrcode::before{content:"";}.glyphicon.glyphicon-barcode::before{content:"";}.glyphicon.glyphicon-tag::before{content:"";}.glyphicon.glyphicon-tags::before{content:"";}.glyphicon.glyphicon-book::before{content:"";}.glyphicon.glyphicon-bookmark::before{content:"";}.glyphicon.glyphicon-print::before{content:"";}.glyphicon.glyphicon-camera::before{content:"";}.glyphicon.glyphicon-font::before{content:"";}.glyphicon.glyphicon-bold::before{content:"";}.glyphicon.glyphicon-italic::before{content:"";}.glyphicon.glyphicon-text-height::before{content:"";}.glyphicon.glyphicon-text-width::before{content:"";}.glyphicon.glyphicon-align-left::before{content:"";}.glyphicon.glyphicon-align-center::before{content:"";}.glyphicon.glyphicon-align-right::before{content:"";}.glyphicon.glyphicon-align-justify::before{content:"";}.glyphicon.glyphicon-list::before{content:"";}.glyphicon.glyphicon-indent-left::before{content:"";}.glyphicon.glyphicon-indent-right::before{content:"";}.glyphicon.glyphicon-facetime-video::before{content:"";}.glyphicon.glyphicon-picture::before{content:"";}.glyphicon.glyphicon-map-marker::before{content:"";}.glyphicon.glyphicon-adjust::before{content:"";}.glyphicon.glyphicon-tint::before{content:"";}.glyphicon.glyphicon-edit::before{content:"";}.glyphicon.glyphicon-share::before{content:"";}.glyphicon.glyphicon-check::before{content:"";}.glyphicon.glyphicon-move::before{content:"";}.glyphicon.glyphicon-step-backward::before{content:"";}.glyphicon.glyphicon-fast-backward::before{content:"";}.glyphicon.glyphicon-backward::before{content:"";}.glyphicon.glyphicon-play::before{content:"";}.glyphicon.glyphicon-pause::before{content:"";}.glyphicon.glyphicon-stop::before{content:"";}.glyphicon.glyphicon-forward::before{content:"";}.glyphicon.glyphicon-fast-forward::before{content:"";}.glyphicon.glyphicon-step-forward::before{content:"";}.glyphicon.glyphicon-eject::before{content:"";}.glyphicon.glyphicon-chevron-left::before{content:"";}.glyphicon.glyphicon-chevron-right::before{content:"";}.glyphicon.glyphicon-plus-sign::before{content:"";}.glyphicon.glyphicon-minus-sign::before{content:"";}.glyphicon.glyphicon-remove-sign::before{content:"";}.glyphicon.glyphicon-ok-sign::before{content:"";}.glyphicon.glyphicon-question-sign::before{content:"";}.glyphicon.glyphicon-info-sign::before{content:"";}.glyphicon.glyphicon-screenshot::before{content:"";}.glyphicon.glyphicon-remove-circle::before{content:"";}.glyphicon.glyphicon-ok-circle::before{content:"";}.glyphicon.glyphicon-ban-circle::before{content:"";}.glyphicon.glyphicon-arrow-left::before{content:"";}.glyphicon.glyphicon-arrow-right::before{content:"";}.glyphicon.glyphicon-arrow-up::before{content:"";}.glyphicon.glyphicon-arrow-down::before{content:"";}.glyphicon.glyphicon-share-alt::before{content:"";}.glyphicon.glyphicon-resize-full::before{content:"";}.glyphicon.glyphicon-resize-small::before{content:"";}.glyphicon.glyphicon-exclamation-sign::before{content:"";}.glyphicon.glyphicon-gift::before{content:"";}.glyphicon.glyphicon-leaf::before{content:"";}.glyphicon.glyphicon-fire::before{content:"";}.glyphicon.glyphicon-eye-open::before{content:"";}.glyphicon.glyphicon-eye-close::before{content:"";}.glyphicon.glyphicon-warning-sign::before{content:"";}.glyphicon.glyphicon-plane::before{content:"";}.glyphicon.glyphicon-calendar::before{content:"";}.glyphicon.glyphicon-random::before{content:"";}.glyphicon.glyphicon-comment::before{content:"";}.glyphicon.glyphicon-magnet::before{content:"";}.glyphicon.glyphicon-chevron-up::before{content:"";}.glyphicon.glyphicon-chevron-down::before{content:"";}.glyphicon.glyphicon-retweet::before{content:"";}.glyphicon.glyphicon-shopping-cart::before{content:"";}.glyphicon.glyphicon-folder-close::before{content:"";}.glyphicon.glyphicon-folder-open::before{content:"";}.glyphicon.glyphicon-resize-vertical::before{content:"";}.glyphicon.glyphicon-resize-horizontal::before{content:"";}.glyphicon.glyphicon-hdd::before{content:"";}.glyphicon.glyphicon-bullhorn::before{content:"";}.glyphicon.glyphicon-bell::before{content:"";}.glyphicon.glyphicon-certificate::before{content:"";}.glyphicon.glyphicon-thumbs-up::before{content:"";}.glyphicon.glyphicon-thumbs-down::before{content:"";}.glyphicon.glyphicon-hand-right::before{content:"";}.glyphicon.glyphicon-hand-left::before{content:"";}.glyphicon.glyphicon-hand-up::before{content:"";}.glyphicon.glyphicon-hand-down::before{content:"";}.glyphicon.glyphicon-circle-arrow-right::before{content:"";}.glyphicon.glyphicon-circle-arrow-left::before{content:"";}.glyphicon.glyphicon-circle-arrow-up::before{content:"";}.glyphicon.glyphicon-circle-arrow-down::before{content:"";}.glyphicon.glyphicon-globe::before{content:"";}.glyphicon.glyphicon-wrench::before{content:"";}.glyphicon.glyphicon-tasks::before{content:"";}.glyphicon.glyphicon-filter::before{content:"";}.glyphicon.glyphicon-briefcase::before{content:"";}.glyphicon.glyphicon-fullscreen::before{content:"";}.glyphicon.glyphicon-dashboard::before{content:"";}.glyphicon.glyphicon-paperclip::before{content:"";}.glyphicon.glyphicon-heart-empty::before{content:"";}.glyphicon.glyphicon-link::before{content:"";}.glyphicon.glyphicon-phone::before{content:"";}.glyphicon.glyphicon-pushpin::before{content:"";}.glyphicon.glyphicon-usd::before{content:"";}.glyphicon.glyphicon-gbp::before{content:"";}.glyphicon.glyphicon-sort::before{content:"";}.glyphicon.glyphicon-sort-by-alphabet::before{content:"";}.glyphicon.glyphicon-sort-by-alphabet-alt::before{content:"";}.glyphicon.glyphicon-sort-by-order::before{content:"";}.glyphicon.glyphicon-sort-by-order-alt::before{content:"";}.glyphicon.glyphicon-sort-by-attributes::before{content:"";}.glyphicon.glyphicon-sort-by-attributes-alt::before{content:"";}.glyphicon.glyphicon-unchecked::before{content:"";}.glyphicon.glyphicon-expand::before{content:"";}.glyphicon.glyphicon-collapse-down::before{content:"";}.glyphicon.glyphicon-collapse-up::before{content:"";}.glyphicon.glyphicon-log-in::before{content:"";}.glyphicon.glyphicon-flash::before{content:"";}.glyphicon.glyphicon-log-out::before{content:"";}.glyphicon.glyphicon-new-window::before{content:"";}.glyphicon.glyphicon-record::before{content:"";}.glyphicon.glyphicon-save::before{content:"";}.glyphicon.glyphicon-open::before{content:"";}.glyphicon.glyphicon-saved::before{content:"";}.glyphicon.glyphicon-import::before{content:"";}.glyphicon.glyphicon-export::before{content:"";}.glyphicon.glyphicon-send::before{content:"";}.glyphicon.glyphicon-floppy-disk::before{content:"";}.glyphicon.glyphicon-floppy-saved::before{content:"";}.glyphicon.glyphicon-floppy-remove::before{content:"";}.glyphicon.glyphicon-floppy-save::before{content:"";}.glyphicon.glyphicon-floppy-open::before{content:"";}.glyphicon.glyphicon-credit-card::before{content:"";}.glyphicon.glyphicon-transfer::before{content:"";}.glyphicon.glyphicon-cutlery::before{content:"";}.glyphicon.glyphicon-header::before{content:"";}.glyphicon.glyphicon-compressed::before{content:"";}.glyphicon.glyphicon-earphone::before{content:"";}.glyphicon.glyphicon-phone-alt::before{content:"";}.glyphicon.glyphicon-tower::before{content:"";}.glyphicon.glyphicon-stats::before{content:"";}.glyphicon.glyphicon-sd-video::before{content:"";}.glyphicon.glyphicon-hd-video::before{content:"";}.glyphicon.glyphicon-subtitles::before{content:"";}.glyphicon.glyphicon-sound-stereo::before{content:"";}.glyphicon.glyphicon-sound-dolby::before{content:"";}.glyphicon.glyphicon-sound-5-1::before{content:"";}.glyphicon.glyphicon-sound-6-1::before{content:"";}.glyphicon.glyphicon-sound-7-1::before{content:"";}.glyphicon.glyphicon-copyright-mark::before{content:"";}.glyphicon.glyphicon-registration-mark::before{content:"";}.glyphicon.glyphicon-cloud-download::before{content:"";}.glyphicon.glyphicon-cloud-upload::before{content:"";}.glyphicon.glyphicon-tree-conifer::before{content:"";}.glyphicon.glyphicon-tree-deciduous::before{content:"";}.glyphicon.glyphicon-cd::before{content:"";}.glyphicon.glyphicon-save-file::before{content:"";}.glyphicon.glyphicon-open-file::before{content:"";}.glyphicon.glyphicon-level-up::before{content:"";}.glyphicon.glyphicon-copy::before{content:"";}.glyphicon.glyphicon-paste::before{content:"";}.glyphicon.glyphicon-alert::before{content:"";}.glyphicon.glyphicon-equalizer::before{content:"";}.glyphicon.glyphicon-king::before{content:"";}.glyphicon.glyphicon-queen::before{content:"";}.glyphicon.glyphicon-pawn::before{content:"";}.glyphicon.glyphicon-bishop::before{content:"";}.glyphicon.glyphicon-knight::before{content:"";}.glyphicon.glyphicon-baby-formula::before{content:"";}.glyphicon.glyphicon-tent::before{content:"";}.glyphicon.glyphicon-blackboard::before{content:"";}.glyphicon.glyphicon-bed::before{content:"";}.glyphicon.glyphicon-apple::before{content:"";}.glyphicon.glyphicon-erase::before{content:"";}.glyphicon.glyphicon-hourglass::before{content:"";}.glyphicon.glyphicon-lamp::before{content:"";}.glyphicon.glyphicon-duplicate::before{content:"";}.glyphicon.glyphicon-piggy-bank::before{content:"";}.glyphicon.glyphicon-scissors::before{content:"";}.glyphicon.glyphicon-bitcoin::before{content:"";}.glyphicon.glyphicon-btc::before{content:"";}.glyphicon.glyphicon-xbt::before{content:"";}.glyphicon.glyphicon-yen::before{content:"";}.glyphicon.glyphicon-jpy::before{content:"";}.glyphicon.glyphicon-ruble::before{content:"";}.glyphicon.glyphicon-rub::before{content:"";}.glyphicon.glyphicon-scale::before{content:"";}.glyphicon.glyphicon-ice-lolly::before{content:"";}.glyphicon.glyphicon-ice-lolly-tasted::before{content:"";}.glyphicon.glyphicon-education::before{content:"";}.glyphicon.glyphicon-option-horizontal::before{content:"";}.glyphicon.glyphicon-option-vertical::before{content:"";}.glyphicon.glyphicon-menu-hamburger::before{content:"";}.glyphicon.glyphicon-modal-window::before{content:"";}.glyphicon.glyphicon-oil::before{content:"";}.glyphicon.glyphicon-grain::before{content:"";}.glyphicon.glyphicon-sunglasses::before{content:"";}.glyphicon.glyphicon-text-size::before{content:"";}.glyphicon.glyphicon-text-color::before{content:"";}.glyphicon.glyphicon-text-background::before{content:"";}.glyphicon.glyphicon-object-align-top::before{content:"";}.glyphicon.glyphicon-object-align-bottom::before{content:"";}.glyphicon.glyphicon-object-align-horizontal::before{content:"";}.glyphicon.glyphicon-object-align-left::before{content:"";}.glyphicon.glyphicon-object-align-vertical::before{content:"";}.glyphicon.glyphicon-object-align-right::before{content:"";}.glyphicon.glyphicon-triangle-right::before{content:"";}.glyphicon.glyphicon-triangle-left::before{content:"";}.glyphicon.glyphicon-triangle-bottom::before{content:"";}.glyphicon.glyphicon-triangle-top::before{content:"";}.glyphicon.glyphicon-console::before{content:"";}.glyphicon.glyphicon-superscript::before{content:"";}.glyphicon.glyphicon-subscript::before{content:"";}.glyphicon.glyphicon-menu-left::before{content:"";}.glyphicon.glyphicon-menu-right::before{content:"";}.glyphicon.glyphicon-menu-down::before{content:"";}.glyphicon.glyphicon-menu-up::before{content:"";}.glyphicon.glyphicon-transfer::before{content:"";}.fa-glass::before{content:"";}.fa-music::before{content:"";}.fa-search::before{content:"";}.fa-envelope-o::before{content:"";}.fa-heart::before{content:"";}.fa-star::before{content:"";}.fa-star-o::before{content:"";}.fa-user::before{content:"";}.fa-film::before{content:"";}.fa-th-large::before{content:"";}.fa-th::before{content:"";}.fa-th-list::before{content:"";}.fa-check::before{content:"";}.fa-remove::before,.fa-close::before,.fa-times::before{content:"";}.fa-search-plus::before{content:"";}.fa-search-minus::before{content:"";}.fa-power-off::before{content:"";}.fa-signal::before{content:"";}.fa-gear::before,.fa-cog::before{content:"";}.fa-trash-o::before{content:"";}.fa-home::before{content:"";}.fa-file-o::before{content:"";}.fa-clock-o::before{content:"";}.fa-road::before{content:"";}.fa-download::before{content:"";}.fa-arrow-circle-o-down::before{content:"";}.fa-arrow-circle-o-up::before{content:"";}.fa-inbox::before{content:"";}.fa-play-circle-o::before{content:"";}.fa-rotate-right::before,.fa-repeat::before{content:"";}.fa-refresh::before{content:"";}.fa-list-alt::before{content:"";}.fa-lock::before{content:"";}.fa-flag::before{content:"";}.fa-headphones::before{content:"";}.fa-volume-off::before{content:"";}.fa-volume-down::before{content:"";}.fa-volume-up::before{content:"";}.fa-qrcode::before{content:"";}.fa-barcode::before{content:"";}.fa-tag::before{content:"";}.fa-tags::before{content:"";}.fa-book::before{content:"";}.fa-bookmark::before{content:"";}.fa-print::before{content:"";}.fa-camera::before{content:"";}.fa-font::before{content:"";}.fa-bold::before{content:"";}.fa-italic::before{content:"";}.fa-text-height::before{content:"";}.fa-text-width::before{content:"";}.fa-align-left::before{content:"";}.fa-align-center::before{content:"";}.fa-align-right::before{content:"";}.fa-align-justify::before{content:"";}.fa-list::before{content:"";}.fa-dedent::before,.fa-outdent::before{content:"";}.fa-indent::before{content:"";}.fa-video-camera::before{content:"";}.fa-photo::before,.fa-image::before,.fa-picture-o::before{content:"";}.fa-pencil::before{content:"";}.fa-map-marker::before{content:"";}.fa-adjust::before{content:"";}.fa-tint::before{content:"";}.fa-edit::before,.fa-pencil-square-o::before{content:"";}.fa-share-square-o::before{content:"";}.fa-check-square-o::before{content:"";}.fa-arrows::before{content:"";}.fa-step-backward::before{content:"";}.fa-fast-backward::before{content:"";}.fa-backward::before{content:"";}.fa-play::before{content:"";}.fa-pause::before{content:"";}.fa-stop::before{content:"";}.fa-forward::before{content:"";}.fa-fast-forward::before{content:"";}.fa-step-forward::before{content:"";}.fa-eject::before{content:"";}.fa-chevron-left::before{content:"";}.fa-chevron-right::before{content:"";}.fa-plus-circle::before{content:"";}.fa-minus-circle::before{content:"";}.fa-times-circle::before{content:"";}.fa-check-circle::before{content:"";}.fa-question-circle::before{content:"";}.fa-info-circle::before{content:"";}.fa-crosshairs::before{content:"";}.fa-times-circle-o::before{content:"";}.fa-check-circle-o::before{content:"";}.fa-ban::before{content:"";}.fa-arrow-left::before{content:"";}.fa-arrow-right::before{content:"";}.fa-arrow-up::before{content:"";}.fa-arrow-down::before{content:"";}.fa-mail-forward::before,.fa-share::before{content:"";}.fa-expand::before{content:"";}.fa-compress::before{content:"";}.fa-plus::before{content:"";}.fa-minus::before{content:"";}.fa-asterisk::before{content:"";}.fa-exclamation-circle::before{content:"";}.fa-gift::before{content:"";}.fa-leaf::before{content:"";}.fa-fire::before{content:"";}.fa-eye::before{content:"";}.fa-eye-slash::before{content:"";}.fa-warning::before,.fa-exclamation-triangle::before{content:"";}.fa-plane::before{content:"";}.fa-calendar::before{content:"";}.fa-random::before{content:"";}.fa-comment::before{content:"";}.fa-magnet::before{content:"";}.fa-chevron-up::before{content:"";}.fa-chevron-down::before{content:"";}.fa-retweet::before{content:"";}.fa-shopping-cart::before{content:"";}.fa-folder::before{content:"";}.fa-folder-open::before{content:"";}.fa-arrows-v::before{content:"";}.fa-arrows-h::before{content:"";}.fa-bar-chart-o::before,.fa-bar-chart::before{content:"";}.fa-twitter-square::before{content:"";}.fa-facebook-square::before{content:"";}.fa-camera-retro::before{content:"";}.fa-key::before{content:"";}.fa-gears::before,.fa-cogs::before{content:"";}.fa-comments::before{content:"";}.fa-thumbs-o-up::before{content:"";}.fa-thumbs-o-down::before{content:"";}.fa-star-half::before{content:"";}.fa-heart-o::before{content:"";}.fa-sign-out::before{content:"";}.fa-linkedin-square::before{content:"";}.fa-thumb-tack::before{content:"";}.fa-external-link::before{content:"";}.fa-sign-in::before{content:"";}.fa-trophy::before{content:"";}.fa-github-square::before{content:"";}.fa-upload::before{content:"";}.fa-lemon-o::before{content:"";}.fa-phone::before{content:"";}.fa-square-o::before{content:"";}.fa-bookmark-o::before{content:"";}.fa-phone-square::before{content:"";}.fa-twitter::before{content:"";}.fa-facebook-f::before,.fa-facebook::before{content:"";}.fa-github::before{content:"";}.fa-unlock::before{content:"";}.fa-credit-card::before{content:"";}.fa-feed::before,.fa-rss::before{content:"";}.fa-hdd-o::before{content:"";}.fa-bullhorn::before{content:"";}.fa-bell::before{content:"";}.fa-certificate::before{content:"";}.fa-hand-o-right::before{content:"";}.fa-hand-o-left::before{content:"";}.fa-hand-o-up::before{content:"";}.fa-hand-o-down::before{content:"";}.fa-arrow-circle-left::before{content:"";}.fa-arrow-circle-right::before{content:"";}.fa-arrow-circle-up::before{content:"";}.fa-arrow-circle-down::before{content:"";}.fa-globe::before{content:"";}.fa-wrench::before{content:"";}.fa-tasks::before{content:"";}.fa-filter::before{content:"";}.fa-briefcase::before{content:"";}.fa-arrows-alt::before{content:"";}.fa-group::before,.fa-users::before{content:"";}.fa-chain::before,.fa-link::before{content:"";}.fa-cloud::before{content:"";}.fa-flask::before{content:"";}.fa-cut::before,.fa-scissors::before{content:"";}.fa-copy::before,.fa-files-o::before{content:"";}.fa-paperclip::before{content:"";}.fa-save::before,.fa-floppy-o::before{content:"";}.fa-square::before{content:"";}.fa-navicon::before,.fa-reorder::before,.fa-bars::before{content:"";}.fa-list-ul::before{content:"";}.fa-list-ol::before{content:"";}.fa-strikethrough::before{content:"";}.fa-underline::before{content:"";}.fa-table::before{content:"";}.fa-magic::before{content:"";}.fa-truck::before{content:"";}.fa-pinterest::before{content:"";}.fa-pinterest-square::before{content:"";}.fa-google-plus-square::before{content:"";}.fa-google-plus::before{content:"";}.fa-money::before{content:"";}.fa-caret-down::before{content:"";}.fa-caret-up::before{content:"";}.fa-caret-left::before{content:"";}.fa-caret-right::before{content:"";}.fa-columns::before{content:"";}.fa-unsorted::before,.fa-sort::before{content:"";}.fa-sort-down::before,.fa-sort-desc::before{content:"";}.fa-sort-up::before,.fa-sort-asc::before{content:"";}.fa-envelope::before{content:"";}.fa-linkedin::before{content:"";}.fa-rotate-left::before,.fa-undo::before{content:"";}.fa-legal::before,.fa-gavel::before{content:"";}.fa-dashboard::before,.fa-tachometer::before{content:"";}.fa-comment-o::before{content:"";}.fa-comments-o::before{content:"";}.fa-flash::before,.fa-bolt::before{content:"";}.fa-sitemap::before{content:"";}.fa-umbrella::before{content:"";}.fa-paste::before,.fa-clipboard::before{content:"";}.fa-lightbulb-o::before{content:"";}.fa-exchange::before{content:"";}.fa-cloud-download::before{content:"";}.fa-cloud-upload::before{content:"";}.fa-user-md::before{content:"";}.fa-stethoscope::before{content:"";}.fa-suitcase::before{content:"";}.fa-bell-o::before{content:"";}.fa-coffee::before{content:"";}.fa-cutlery::before{content:"";}.fa-file-text-o::before{content:"";}.fa-building-o::before{content:"";}.fa-hospital-o::before{content:"";}.fa-ambulance::before{content:"";}.fa-medkit::before{content:"";}.fa-fighter-jet::before{content:"";}.fa-beer::before{content:"";}.fa-h-square::before{content:"";}.fa-plus-square::before{content:"";}.fa-angle-double-left::before{content:"";}.fa-angle-double-right::before{content:"";}.fa-angle-double-up::before{content:"";}.fa-angle-double-down::before{content:"";}.fa-angle-left::before{content:"";}.fa-angle-right::before{content:"";}.fa-angle-up::before{content:"";}.fa-angle-down::before{content:"";}.fa-desktop::before{content:"";}.fa-laptop::before{content:"";}.fa-tablet::before{content:"";}.fa-mobile-phone::before,.fa-mobile::before{content:"";}.fa-circle-o::before{content:"";}.fa-quote-left::before{content:"";}.fa-quote-right::before{content:"";}.fa-spinner::before{content:"";}.fa-circle::before{content:"";}.fa-mail-reply::before,.fa-reply::before{content:"";}.fa-github-alt::before{content:"";}.fa-folder-o::before{content:"";}.fa-folder-open-o::before{content:"";}.fa-smile-o::before{content:"";}.fa-frown-o::before{content:"";}.fa-meh-o::before{content:"";}.fa-gamepad::before{content:"";}.fa-keyboard-o::before{content:"";}.fa-flag-o::before{content:"";}.fa-flag-checkered::before{content:"";}.fa-terminal::before{content:"";}.fa-code::before{content:"";}.fa-mail-reply-all::before,.fa-reply-all::before{content:"";}.fa-star-half-empty::before,.fa-star-half-full::before,.fa-star-half-o::before{content:"";}.fa-location-arrow::before{content:"";}.fa-crop::before{content:"";}.fa-code-fork::before{content:"";}.fa-unlink::before,.fa-chain-broken::before{content:"";}.fa-question::before{content:"";}.fa-info::before{content:"";}.fa-exclamation::before{content:"";}.fa-superscript::before{content:"";}.fa-subscript::before{content:"";}.fa-eraser::before{content:"";}.fa-puzzle-piece::before{content:"";}.fa-microphone::before{content:"";}.fa-microphone-slash::before{content:"";}.fa-shield::before{content:"";}.fa-calendar-o::before{content:"";}.fa-fire-extinguisher::before{content:"";}.fa-rocket::before{content:"";}.fa-maxcdn::before{content:"";}.fa-chevron-circle-left::before{content:"";}.fa-chevron-circle-right::before{content:"";}.fa-chevron-circle-up::before{content:"";}.fa-chevron-circle-down::before{content:"";}.fa-html5::before{content:"";}.fa-css3::before{content:"";}.fa-anchor::before{content:"";}.fa-unlock-alt::before{content:"";}.fa-bullseye::before{content:"";}.fa-ellipsis-h::before{content:"";}.fa-ellipsis-v::before{content:"";}.fa-rss-square::before{content:"";}.fa-play-circle::before{content:"";}.fa-ticket::before{content:"";}.fa-minus-square::before{content:"";}.fa-minus-square-o::before{content:"";}.fa-level-up::before{content:"";}.fa-level-down::before{content:"";}.fa-check-square::before{content:"";}.fa-pencil-square::before{content:"";}.fa-external-link-square::before{content:"";}.fa-share-square::before{content:"";}.fa-compass::before{content:"";}.fa-toggle-down::before,.fa-caret-square-o-down::before{content:"";}.fa-toggle-up::before,.fa-caret-square-o-up::before{content:"";}.fa-toggle-right::before,.fa-caret-square-o-right::before{content:"";}.fa-euro::before,.fa-eur::before{content:"";}.fa-gbp::before{content:"";}.fa-dollar::before,.fa-usd::before{content:"";}.fa-rupee::before,.fa-inr::before{content:"";}.fa-cny::before,.fa-rmb::before,.fa-yen::before,.fa-jpy::before{content:"";}.fa-ruble::before,.fa-rouble::before,.fa-rub::before{content:"";}.fa-won::before,.fa-krw::before{content:"";}.fa-bitcoin::before,.fa-btc::before{content:"";}.fa-file::before{content:"";}.fa-file-text::before{content:"";}.fa-sort-alpha-asc::before{content:"";}.fa-sort-alpha-desc::before{content:"";}.fa-sort-amount-asc::before{content:"";}.fa-sort-amount-desc::before{content:"";}.fa-sort-numeric-asc::before{content:"";}.fa-sort-numeric-desc::before{content:"";}.fa-thumbs-up::before{content:"";}.fa-thumbs-down::before{content:"";}.fa-youtube-square::before{content:"";}.fa-youtube::before{content:"";}.fa-xing::before{content:"";}.fa-xing-square::before{content:"";}.fa-youtube-play::before{content:"";}.fa-dropbox::before{content:"";}.fa-stack-overflow::before{content:"";}.fa-instagram::before{content:"";}.fa-flickr::before{content:"";}.fa-adn::before{content:"";}.fa-bitbucket::before{content:"";}.fa-bitbucket-square::before{content:"";}.fa-tumblr::before{content:"";}.fa-tumblr-square::before{content:"";}.fa-long-arrow-down::before{content:"";}.fa-long-arrow-up::before{content:"";}.fa-long-arrow-left::before{content:"";}.fa-long-arrow-right::before{content:"";}.fa-apple::before{content:"";}.fa-windows::before{content:"";}.fa-android::before{content:"";}.fa-linux::before{content:"";}.fa-dribbble::before{content:"";}.fa-skype::before{content:"";}.fa-foursquare::before{content:"";}.fa-trello::before{content:"";}.fa-female::before{content:"";}.fa-male::before{content:"";}.fa-gittip::before,.fa-gratipay::before{content:"";}.fa-sun-o::before{content:"";}.fa-moon-o::before{content:"";}.fa-archive::before{content:"";}.fa-bug::before{content:"";}.fa-vk::before{content:"";}.fa-weibo::before{content:"";}.fa-renren::before{content:"";}.fa-pagelines::before{content:"";}.fa-stack-exchange::before{content:"";}.fa-arrow-circle-o-right::before{content:"";}.fa-arrow-circle-o-left::before{content:"";}.fa-toggle-left::before,.fa-caret-square-o-left::before{content:"";}.fa-dot-circle-o::before{content:"";}.fa-wheelchair::before{content:"";}.fa-vimeo-square::before{content:"";}.fa-turkish-lira::before,.fa-try::before{content:"";}.fa-plus-square-o::before{content:"";}.fa-space-shuttle::before{content:"";}.fa-slack::before{content:"";}.fa-envelope-square::before{content:"";}.fa-wordpress::before{content:"";}.fa-openid::before{content:"";}.fa-institution::before,.fa-bank::before,.fa-university::before{content:"";}.fa-mortar-board::before,.fa-graduation-cap::before{content:"";}.fa-yahoo::before{content:"";}.fa-google::before{content:"";}.fa-reddit::before{content:"";}.fa-reddit-square::before{content:"";}.fa-stumbleupon-circle::before{content:"";}.fa-stumbleupon::before{content:"";}.fa-delicious::before{content:"";}.fa-digg::before{content:"";}.fa-pied-piper-pp::before{content:"";}.fa-pied-piper-alt::before{content:"";}.fa-drupal::before{content:"";}.fa-joomla::before{content:"";}.fa-language::before{content:"";}.fa-fax::before{content:"";}.fa-building::before{content:"";}.fa-child::before{content:"";}.fa-paw::before{content:"";}.fa-spoon::before{content:"";}.fa-cube::before{content:"";}.fa-cubes::before{content:"";}.fa-behance::before{content:"";}.fa-behance-square::before{content:"";}.fa-steam::before{content:"";}.fa-steam-square::before{content:"";}.fa-recycle::before{content:"";}.fa-automobile::before,.fa-car::before{content:"";}.fa-cab::before,.fa-taxi::before{content:"";}.fa-tree::before{content:"";}.fa-spotify::before{content:"";}.fa-deviantart::before{content:"";}.fa-soundcloud::before{content:"";}.fa-database::before{content:"";}.fa-file-pdf-o::before{content:"";}.fa-file-word-o::before{content:"";}.fa-file-excel-o::before{content:"";}.fa-file-powerpoint-o::before{content:"";}.fa-file-photo-o::before,.fa-file-picture-o::before,.fa-file-image-o::before{content:"";}.fa-file-zip-o::before,.fa-file-archive-o::before{content:"";}.fa-file-sound-o::before,.fa-file-audio-o::before{content:"";}.fa-file-movie-o::before,.fa-file-video-o::before{content:"";}.fa-file-code-o::before{content:"";}.fa-vine::before{content:"";}.fa-codepen::before{content:"";}.fa-jsfiddle::before{content:"";}.fa-life-bouy::before,.fa-life-buoy::before,.fa-life-saver::before,.fa-support::before,.fa-life-ring::before{content:"";}.fa-circle-o-notch::before{content:"";}.fa-ra::before,.fa-resistance::before,.fa-rebel::before{content:"";}.fa-ge::before,.fa-empire::before{content:"";}.fa-git-square::before{content:"";}.fa-git::before{content:"";}.fa-y-combinator-square::before,.fa-yc-square::before,.fa-hacker-news::before{content:"";}.fa-tencent-weibo::before{content:"";}.fa-qq::before{content:"";}.fa-wechat::before,.fa-weixin::before{content:"";}.fa-send::before,.fa-paper-plane::before{content:"";}.fa-send-o::before,.fa-paper-plane-o::before{content:"";}.fa-history::before{content:"";}.fa-circle-thin::before{content:"";}.fa-header::before{content:"";}.fa-paragraph::before{content:"";}.fa-sliders::before{content:"";}.fa-share-alt::before{content:"";}.fa-share-alt-square::before{content:"";}.fa-bomb::before{content:"";}.fa-soccer-ball-o::before,.fa-futbol-o::before{content:"";}.fa-tty::before{content:"";}.fa-binoculars::before{content:"";}.fa-plug::before{content:"";}.fa-slideshare::before{content:"";}.fa-twitch::before{content:"";}.fa-yelp::before{content:"";}.fa-newspaper-o::before{content:"";}.fa-wifi::before{content:"";}.fa-calculator::before{content:"";}.fa-paypal::before{content:"";}.fa-google-wallet::before{content:"";}.fa-cc-visa::before{content:"";}.fa-cc-mastercard::before{content:"";}.fa-cc-discover::before{content:"";}.fa-cc-amex::before{content:"";}.fa-cc-paypal::before{content:"";}.fa-cc-stripe::before{content:"";}.fa-bell-slash::before{content:"";}.fa-bell-slash-o::before{content:"";}.fa-trash::before{content:"";}.fa-copyright::before{content:"";}.fa-at::before{content:"";}.fa-eyedropper::before{content:"";}.fa-paint-brush::before{content:"";}.fa-birthday-cake::before{content:"";}.fa-area-chart::before{content:"";}.fa-pie-chart::before{content:"";}.fa-line-chart::before{content:"";}.fa-lastfm::before{content:"";}.fa-lastfm-square::before{content:"";}.fa-toggle-off::before{content:"";}.fa-toggle-on::before{content:"";}.fa-bicycle::before{content:"";}.fa-bus::before{content:"";}.fa-ioxhost::before{content:"";}.fa-angellist::before{content:"";}.fa-cc::before{content:"";}.fa-shekel::before,.fa-sheqel::before,.fa-ils::before{content:"";}.fa-meanpath::before{content:"";}.fa-buysellads::before{content:"";}.fa-connectdevelop::before{content:"";}.fa-dashcube::before{content:"";}.fa-forumbee::before{content:"";}.fa-leanpub::before{content:"";}.fa-sellsy::before{content:"";}.fa-shirtsinbulk::before{content:"";}.fa-simplybuilt::before{content:"";}.fa-skyatlas::before{content:"";}.fa-cart-plus::before{content:"";}.fa-cart-arrow-down::before{content:"";}.fa-diamond::before{content:"";}.fa-ship::before{content:"";}.fa-user-secret::before{content:"";}.fa-motorcycle::before{content:"";}.fa-street-view::before{content:"";}.fa-heartbeat::before{content:"";}.fa-venus::before{content:"";}.fa-mars::before{content:"";}.fa-mercury::before{content:"";}.fa-intersex::before,.fa-transgender::before{content:"";}.fa-transgender-alt::before{content:"";}.fa-venus-double::before{content:"";}.fa-mars-double::before{content:"";}.fa-venus-mars::before{content:"";}.fa-mars-stroke::before{content:"";}.fa-mars-stroke-v::before{content:"";}.fa-mars-stroke-h::before{content:"";}.fa-neuter::before{content:"";}.fa-genderless::before{content:"";}.fa-facebook-official::before{content:"";}.fa-pinterest-p::before{content:"";}.fa-whatsapp::before{content:"";}.fa-server::before{content:"";}.fa-user-plus::before{content:"";}.fa-user-times::before{content:"";}.fa-hotel::before,.fa-bed::before{content:"";}.fa-viacoin::before{content:"";}.fa-train::before{content:"";}.fa-subway::before{content:"";}.fa-medium::before{content:"";}.fa-yc::before,.fa-y-combinator::before{content:"";}.fa-optin-monster::before{content:"";}.fa-opencart::before{content:"";}.fa-expeditedssl::before{content:"";}.fa-battery-4::before,.fa-battery::before,.fa-battery-full::before{content:"";}.fa-battery-3::before,.fa-battery-three-quarters::before{content:"";}.fa-battery-2::before,.fa-battery-half::before{content:"";}.fa-battery-1::before,.fa-battery-quarter::before{content:"";}.fa-battery-0::before,.fa-battery-empty::before{content:"";}.fa-mouse-pointer::before{content:"";}.fa-i-cursor::before{content:"";}.fa-object-group::before{content:"";}.fa-object-ungroup::before{content:"";}.fa-sticky-note::before{content:"";}.fa-sticky-note-o::before{content:"";}.fa-cc-jcb::before{content:"";}.fa-cc-diners-club::before{content:"";}.fa-clone::before{content:"";}.fa-balance-scale::before{content:"";}.fa-hourglass-o::before{content:"";}.fa-hourglass-1::before,.fa-hourglass-start::before{content:"";}.fa-hourglass-2::before,.fa-hourglass-half::before{content:"";}.fa-hourglass-3::before,.fa-hourglass-end::before{content:"";}.fa-hourglass::before{content:"";}.fa-hand-grab-o::before,.fa-hand-rock-o::before{content:"";}.fa-hand-stop-o::before,.fa-hand-paper-o::before{content:"";}.fa-hand-scissors-o::before{content:"";}.fa-hand-lizard-o::before{content:"";}.fa-hand-spock-o::before{content:"";}.fa-hand-pointer-o::before{content:"";}.fa-hand-peace-o::before{content:"";}.fa-trademark::before{content:"";}.fa-registered::before{content:"";}.fa-creative-commons::before{content:"";}.fa-gg::before{content:"";}.fa-gg-circle::before{content:"";}.fa-tripadvisor::before{content:"";}.fa-odnoklassniki::before{content:"";}.fa-odnoklassniki-square::before{content:"";}.fa-get-pocket::before{content:"";}.fa-wikipedia-w::before{content:"";}.fa-safari::before{content:"";}.fa-chrome::before{content:"";}.fa-firefox::before{content:"";}.fa-opera::before{content:"";}.fa-internet-explorer::before{content:"";}.fa-tv::before,.fa-television::before{content:"";}.fa-contao::before{content:"";}.fa-500px::before{content:"";}.fa-amazon::before{content:"";}.fa-calendar-plus-o::before{content:"";}.fa-calendar-minus-o::before{content:"";}.fa-calendar-times-o::before{content:"";}.fa-calendar-check-o::before{content:"";}.fa-industry::before{content:"";}.fa-map-pin::before{content:"";}.fa-map-signs::before{content:"";}.fa-map-o::before{content:"";}.fa-map::before{content:"";}.fa-commenting::before{content:"";}.fa-commenting-o::before{content:"";}.fa-houzz::before{content:"";}.fa-vimeo::before{content:"";}.fa-black-tie::before{content:"";}.fa-fonticons::before{content:"";}.fa-reddit-alien::before{content:"";}.fa-edge::before{content:"";}.fa-credit-card-alt::before{content:"";}.fa-codiepie::before{content:"";}.fa-modx::before{content:"";}.fa-fort-awesome::before{content:"";}.fa-usb::before{content:"";}.fa-product-hunt::before{content:"";}.fa-mixcloud::before{content:"";}.fa-scribd::before{content:"";}.fa-pause-circle::before{content:"";}.fa-pause-circle-o::before{content:"";}.fa-stop-circle::before{content:"";}.fa-stop-circle-o::before{content:"";}.fa-shopping-bag::before{content:"";}.fa-shopping-basket::before{content:"";}.fa-hashtag::before{content:"";}.fa-bluetooth::before{content:"";}.fa-bluetooth-b::before{content:"";}.fa-percent::before{content:"";}.fa-gitlab::before{content:"";}.fa-wpbeginner::before{content:"";}.fa-wpforms::before{content:"";}.fa-envira::before{content:"";}.fa-universal-access::before{content:"";}.fa-wheelchair-alt::before{content:"";}.fa-question-circle-o::before{content:"";}.fa-blind::before{content:"";}.fa-audio-description::before{content:"";}.fa-volume-control-phone::before{content:"";}.fa-braille::before{content:"";}.fa-assistive-listening-systems::before{content:"";}.fa-asl-interpreting::before,.fa-american-sign-language-interpreting::before{content:"";}.fa-deafness::before,.fa-hard-of-hearing::before,.fa-deaf::before{content:"";}.fa-glide::before{content:"";}.fa-glide-g::before{content:"";}.fa-signing::before,.fa-sign-language::before{content:"";}.fa-low-vision::before{content:"";}.fa-viadeo::before{content:"";}.fa-viadeo-square::before{content:"";}.fa-snapchat::before{content:"";}.fa-snapchat-ghost::before{content:"";}.fa-snapchat-square::before{content:"";}.fa-pied-piper::before{content:"";}.fa-first-order::before{content:"";}.fa-yoast::before{content:"";}.fa-themeisle::before{content:"";}.fa-google-plus-circle::before,.fa-google-plus-official::before{content:"";}.fa-fa::before,.fa-font-awesome::before{content:"";}.fa-handshake-o::before{content:"";}.fa-envelope-open::before{content:"";}.fa-envelope-open-o::before{content:"";}.fa-linode::before{content:"";}.fa-address-book::before{content:"";}.fa-address-book-o::before{content:"";}.fa-vcard::before,.fa-address-card::before{content:"";}.fa-vcard-o::before,.fa-address-card-o::before{content:"";}.fa-user-circle::before{content:"";}.fa-user-circle-o::before{content:"";}.fa-user-o::before{content:"";}.fa-id-badge::before{content:"";}.fa-drivers-license::before,.fa-id-card::before{content:"";}.fa-drivers-license-o::before,.fa-id-card-o::before{content:"";}.fa-quora::before{content:"";}.fa-free-code-camp::before{content:"";}.fa-telegram::before{content:"";}.fa-thermometer-4::before,.fa-thermometer::before,.fa-thermometer-full::before{content:"";}.fa-thermometer-3::before,.fa-thermometer-three-quarters::before{content:"";}.fa-thermometer-2::before,.fa-thermometer-half::before{content:"";}.fa-thermometer-1::before,.fa-thermometer-quarter::before{content:"";}.fa-thermometer-0::before,.fa-thermometer-empty::before{content:"";}.fa-shower::before{content:"";}.fa-bathtub::before,.fa-s15::before,.fa-bath::before{content:"";}.fa-podcast::before{content:"";}.fa-window-maximize::before{content:"";}.fa-window-minimize::before{content:"";}.fa-window-restore::before{content:"";}.fa-times-rectangle::before,.fa-window-close::before{content:"";}.fa-times-rectangle-o::before,.fa-window-close-o::before{content:"";}.fa-bandcamp::before{content:"";}.fa-grav::before{content:"";}.fa-etsy::before{content:"";}.fa-imdb::before{content:"";}.fa-ravelry::before{content:"";}.fa-eercast::before{content:"";}.fa-microchip::before{content:"";}.fa-snowflake-o::before{content:"";}.fa-superpowers::before{content:"";}.fa-wpexplorer::before{content:"";}.fa-meetup::before{content:"";} -------------------------------------------------------------------------------- /bootstrap4-glyphicons/maps/glyphicons-fontawesome.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Font Awesome 5 Free'; 3 | font-style: normal; 4 | font-weight: 900; 5 | src: url("../fonts/fontawesome/fa-solid-900.eot"); 6 | src: url("../fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("../fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("../fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg"); 7 | } 8 | .glyphicon { 9 | font-family: 'Font Awesome 5 Free'; 10 | } 11 | .glyphicon.glyphicon-chevron-up::before { 12 | content: "\f077"; 13 | } 14 | .glyphicon.glyphicon-chevron-right::before { 15 | content: "\f054"; 16 | } 17 | .glyphicon.glyphicon-chevron-left::before { 18 | content: "\f053"; 19 | } 20 | .glyphicon.glyphicon-asterisk::before { 21 | content: "\f069"; 22 | } 23 | .glyphicon.glyphicon-plus::before { 24 | content: "\f067"; 25 | } 26 | .glyphicon.glyphicon-euro::before, 27 | .glyphicon.glyphicon-eur::before { 28 | content: "\f153"; 29 | } 30 | .glyphicon.glyphicon-minus::before { 31 | content: "\f068"; 32 | } 33 | .glyphicon.glyphicon-cloud::before { 34 | content: "\f0c2"; 35 | } 36 | .glyphicon.glyphicon-envelope::before { 37 | content: "\f0e0"; 38 | } 39 | .glyphicon.glyphicon-pencil::before { 40 | content: "\f040"; 41 | } 42 | .glyphicon.glyphicon-glass::before { 43 | content: "\f000"; 44 | } 45 | .glyphicon.glyphicon-music::before { 46 | content: "\f001"; 47 | } 48 | .glyphicon.glyphicon-search::before { 49 | content: "\f002"; 50 | } 51 | .glyphicon.glyphicon-heart::before { 52 | content: "\f004"; 53 | } 54 | .glyphicon.glyphicon-star::before { 55 | content: "\f005"; 56 | } 57 | .glyphicon.glyphicon-star-empty::before { 58 | content: "\f006"; 59 | } 60 | .glyphicon.glyphicon-user::before { 61 | content: "\f007"; 62 | } 63 | .glyphicon.glyphicon-film::before { 64 | content: "\f008"; 65 | } 66 | .glyphicon.glyphicon-th-large::before { 67 | content: "\f009"; 68 | } 69 | .glyphicon.glyphicon-th::before { 70 | content: "\f00a"; 71 | } 72 | .glyphicon.glyphicon-th-list::before { 73 | content: "\f00b"; 74 | } 75 | .glyphicon.glyphicon-ok::before { 76 | content: "\f00c"; 77 | } 78 | .glyphicon.glyphicon-remove::before { 79 | content: "\f00d"; 80 | } 81 | .glyphicon.glyphicon-zoom-in::before { 82 | content: "\f00e"; 83 | } 84 | .glyphicon.glyphicon-zoom-out::before { 85 | content: "\f010"; 86 | } 87 | .glyphicon.glyphicon-off::before { 88 | content: "\f011"; 89 | } 90 | .glyphicon.glyphicon-signal::before { 91 | content: "\f012"; 92 | } 93 | .glyphicon.glyphicon-cog::before { 94 | content: "\f013"; 95 | } 96 | .glyphicon.glyphicon-trash::before { 97 | content: "\f1f8"; 98 | } 99 | .glyphicon.glyphicon-home::before { 100 | content: "\f015"; 101 | } 102 | .glyphicon.glyphicon-file::before { 103 | content: "\f15b"; 104 | } 105 | .glyphicon.glyphicon-time::before { 106 | content: "\f017"; 107 | } 108 | .glyphicon.glyphicon-road::before { 109 | content: "\f018"; 110 | } 111 | .glyphicon.glyphicon-download-alt::before { 112 | content: "\f0ed"; 113 | } 114 | .glyphicon.glyphicon-download::before { 115 | content: "\f019"; 116 | } 117 | .glyphicon.glyphicon-upload::before { 118 | content: "\f093"; 119 | } 120 | .glyphicon.glyphicon-inbox::before { 121 | content: "\f01c"; 122 | } 123 | .glyphicon.glyphicon-play-circle::before { 124 | content: "\f144"; 125 | } 126 | .glyphicon.glyphicon-repeat::before { 127 | content: "\f01e"; 128 | } 129 | .glyphicon.glyphicon-refresh::before { 130 | content: "\f021"; 131 | } 132 | .glyphicon.glyphicon-list-alt::before { 133 | content: "\f022"; 134 | } 135 | .glyphicon.glyphicon-lock::before { 136 | content: "\f023"; 137 | } 138 | .glyphicon.glyphicon-flag::before { 139 | content: "\f024"; 140 | } 141 | .glyphicon.glyphicon-headphones::before { 142 | content: "\f025"; 143 | } 144 | .glyphicon.glyphicon-volume-off::before { 145 | content: "\f026"; 146 | } 147 | .glyphicon.glyphicon-volume-down::before { 148 | content: "\f027"; 149 | } 150 | .glyphicon.glyphicon-volume-up::before { 151 | content: "\f028"; 152 | } 153 | .glyphicon.glyphicon-qrcode::before { 154 | content: "\f029"; 155 | } 156 | .glyphicon.glyphicon-barcode::before { 157 | content: "\f02a"; 158 | } 159 | .glyphicon.glyphicon-tag::before { 160 | content: "\f02b"; 161 | } 162 | .glyphicon.glyphicon-tags::before { 163 | content: "\f02c"; 164 | } 165 | .glyphicon.glyphicon-book::before { 166 | content: "\f02d"; 167 | } 168 | .glyphicon.glyphicon-bookmark::before { 169 | content: "\f02e"; 170 | } 171 | .glyphicon.glyphicon-print::before { 172 | content: "\f02f"; 173 | } 174 | .glyphicon.glyphicon-camera::before { 175 | content: "\f030"; 176 | } 177 | .glyphicon.glyphicon-font::before { 178 | content: "\f031"; 179 | } 180 | .glyphicon.glyphicon-bold::before { 181 | content: "\f032"; 182 | } 183 | .glyphicon.glyphicon-italic::before { 184 | content: "\f033"; 185 | } 186 | .glyphicon.glyphicon-text-height::before { 187 | content: "\f034"; 188 | } 189 | .glyphicon.glyphicon-text-width::before { 190 | content: "\f035"; 191 | } 192 | .glyphicon.glyphicon-align-left::before { 193 | content: "\f036"; 194 | } 195 | .glyphicon.glyphicon-align-center::before { 196 | content: "\f037"; 197 | } 198 | .glyphicon.glyphicon-align-right::before { 199 | content: "\f038"; 200 | } 201 | .glyphicon.glyphicon-align-justify::before { 202 | content: "\f039"; 203 | } 204 | .glyphicon.glyphicon-list::before { 205 | content: "\f03a"; 206 | } 207 | .glyphicon.glyphicon-indent-left::before { 208 | content: "\f03c"; 209 | } 210 | .glyphicon.glyphicon-indent-right::before { 211 | content: "\f03b"; 212 | } 213 | .glyphicon.glyphicon-facetime-video::before { 214 | content: "\f03d"; 215 | } 216 | .glyphicon.glyphicon-picture::before { 217 | content: "\f03e"; 218 | } 219 | .glyphicon.glyphicon-map-marker::before { 220 | content: "\f041"; 221 | } 222 | .glyphicon.glyphicon-adjust::before { 223 | content: "\f042"; 224 | } 225 | .glyphicon.glyphicon-tint::before { 226 | content: "\f043"; 227 | } 228 | .glyphicon.glyphicon-edit::before { 229 | content: "\f044"; 230 | } 231 | .glyphicon.glyphicon-share::before { 232 | content: "\f064"; 233 | } 234 | .glyphicon.glyphicon-check::before { 235 | content: "\f00c"; 236 | } 237 | .glyphicon.glyphicon-move::before { 238 | content: "\f047"; 239 | } 240 | .glyphicon.glyphicon-step-backward::before { 241 | content: "\f048"; 242 | } 243 | .glyphicon.glyphicon-fast-backward::before { 244 | content: "\f049"; 245 | } 246 | .glyphicon.glyphicon-backward::before { 247 | content: "\f04a"; 248 | } 249 | .glyphicon.glyphicon-play::before { 250 | content: "\f04b"; 251 | } 252 | .glyphicon.glyphicon-pause::before { 253 | content: "\f04c"; 254 | } 255 | .glyphicon.glyphicon-stop::before { 256 | content: "\f04d"; 257 | } 258 | .glyphicon.glyphicon-forward::before { 259 | content: "\f04e"; 260 | } 261 | .glyphicon.glyphicon-fast-forward::before { 262 | content: "\f050"; 263 | } 264 | .glyphicon.glyphicon-step-forward::before { 265 | content: "\f051"; 266 | } 267 | .glyphicon.glyphicon-eject::before { 268 | content: "\f052"; 269 | } 270 | .glyphicon.glyphicon-chevron-left::before { 271 | content: "\f053"; 272 | } 273 | .glyphicon.glyphicon-chevron-right::before { 274 | content: "\f054"; 275 | } 276 | .glyphicon.glyphicon-plus-sign::before { 277 | content: "\f055"; 278 | } 279 | .glyphicon.glyphicon-minus-sign::before { 280 | content: "\f056"; 281 | } 282 | .glyphicon.glyphicon-remove-sign::before { 283 | content: "\f057"; 284 | } 285 | .glyphicon.glyphicon-ok-sign::before { 286 | content: "\f058"; 287 | } 288 | .glyphicon.glyphicon-question-sign::before { 289 | content: "\f059"; 290 | } 291 | .glyphicon.glyphicon-info-sign::before { 292 | content: "\f05a"; 293 | } 294 | .glyphicon.glyphicon-screenshot::before { 295 | content: "\f05b"; 296 | } 297 | .glyphicon.glyphicon-remove-circle::before { 298 | content: "\f057"; 299 | } 300 | .glyphicon.glyphicon-ok-circle::before { 301 | content: "\f058"; 302 | } 303 | .glyphicon.glyphicon-ban-circle::before { 304 | content: "\f05e"; 305 | } 306 | .glyphicon.glyphicon-arrow-left::before { 307 | content: "\f060"; 308 | } 309 | .glyphicon.glyphicon-arrow-right::before { 310 | content: "\f061"; 311 | } 312 | .glyphicon.glyphicon-arrow-up::before { 313 | content: "\f062"; 314 | } 315 | .glyphicon.glyphicon-arrow-down::before { 316 | content: "\f063"; 317 | } 318 | .glyphicon.glyphicon-share-alt::before { 319 | content: "\f1e0"; 320 | } 321 | .glyphicon.glyphicon-resize-full::before { 322 | content: "\f065"; 323 | } 324 | .glyphicon.glyphicon-resize-small::before { 325 | content: "\f066"; 326 | } 327 | .glyphicon.glyphicon-exclamation-sign::before { 328 | content: "\f06a"; 329 | } 330 | .glyphicon.glyphicon-gift::before { 331 | content: "\f06b"; 332 | } 333 | .glyphicon.glyphicon-leaf::before { 334 | content: "\f06c"; 335 | } 336 | .glyphicon.glyphicon-fire::before { 337 | content: "\f06d"; 338 | } 339 | .glyphicon.glyphicon-eye-open::before { 340 | content: "\f06e"; 341 | } 342 | .glyphicon.glyphicon-eye-close::before { 343 | content: "\f070"; 344 | } 345 | .glyphicon.glyphicon-warning-sign::before { 346 | content: "\f071"; 347 | } 348 | .glyphicon.glyphicon-plane::before { 349 | content: "\f072"; 350 | } 351 | .glyphicon.glyphicon-calendar::before { 352 | content: "\f073"; 353 | } 354 | .glyphicon.glyphicon-random::before { 355 | content: "\f074"; 356 | } 357 | .glyphicon.glyphicon-comment::before { 358 | content: "\f075"; 359 | } 360 | .glyphicon.glyphicon-magnet::before { 361 | content: "\f076"; 362 | } 363 | .glyphicon.glyphicon-chevron-up::before { 364 | content: "\f077"; 365 | } 366 | .glyphicon.glyphicon-chevron-down::before { 367 | content: "\f078"; 368 | } 369 | .glyphicon.glyphicon-retweet::before { 370 | content: "\f079"; 371 | } 372 | .glyphicon.glyphicon-shopping-cart::before { 373 | content: "\f07a"; 374 | } 375 | .glyphicon.glyphicon-folder-close::before { 376 | content: "\f07b"; 377 | } 378 | .glyphicon.glyphicon-folder-open::before { 379 | content: "\f07c"; 380 | } 381 | .glyphicon.glyphicon-resize-vertical::before { 382 | content: "\f07d"; 383 | } 384 | .glyphicon.glyphicon-resize-horizontal::before { 385 | content: "\f07e"; 386 | } 387 | .glyphicon.glyphicon-hdd::before { 388 | content: "\f0a0"; 389 | } 390 | .glyphicon.glyphicon-bullhorn::before { 391 | content: "\f0a1"; 392 | } 393 | .glyphicon.glyphicon-bell::before { 394 | content: "\f0f3"; 395 | } 396 | .glyphicon.glyphicon-certificate::before { 397 | content: "\f0a3"; 398 | } 399 | .glyphicon.glyphicon-thumbs-up::before { 400 | content: "\f164"; 401 | } 402 | .glyphicon.glyphicon-thumbs-down::before { 403 | content: "\f165"; 404 | } 405 | .glyphicon.glyphicon-hand-right::before { 406 | content: "\f0a4"; 407 | } 408 | .glyphicon.glyphicon-hand-left::before { 409 | content: "\f0a5"; 410 | } 411 | .glyphicon.glyphicon-hand-up::before { 412 | content: "\f0a6"; 413 | } 414 | .glyphicon.glyphicon-hand-down::before { 415 | content: "\f0a7"; 416 | } 417 | .glyphicon.glyphicon-circle-arrow-right::before { 418 | content: "\f0a9"; 419 | } 420 | .glyphicon.glyphicon-circle-arrow-left::before { 421 | content: "\f0a8"; 422 | } 423 | .glyphicon.glyphicon-circle-arrow-up::before { 424 | content: "\f0aa"; 425 | } 426 | .glyphicon.glyphicon-circle-arrow-down::before { 427 | content: "\f0ab"; 428 | } 429 | .glyphicon.glyphicon-globe::before { 430 | content: "\f0ac"; 431 | } 432 | .glyphicon.glyphicon-wrench::before { 433 | content: "\f0ad"; 434 | } 435 | .glyphicon.glyphicon-tasks::before { 436 | content: "\f0ae"; 437 | } 438 | .glyphicon.glyphicon-filter::before { 439 | content: "\f0b0"; 440 | } 441 | .glyphicon.glyphicon-briefcase::before { 442 | content: "\f0b1"; 443 | } 444 | .glyphicon.glyphicon-fullscreen::before { 445 | content: "\f065"; 446 | } 447 | .glyphicon.glyphicon-dashboard::before { 448 | content: "\f0e4"; 449 | } 450 | .glyphicon.glyphicon-paperclip::before { 451 | content: "\f0c6"; 452 | } 453 | .glyphicon.glyphicon-heart-empty::before { 454 | content: "\f08a"; 455 | } 456 | .glyphicon.glyphicon-link::before { 457 | content: "\f0c1"; 458 | } 459 | .glyphicon.glyphicon-phone::before { 460 | content: "\f095"; 461 | } 462 | .glyphicon.glyphicon-pushpin::before { 463 | content: "\f08d"; 464 | } 465 | .glyphicon.glyphicon-usd::before { 466 | content: "\f155"; 467 | } 468 | .glyphicon.glyphicon-gbp::before { 469 | content: "\f154"; 470 | } 471 | .glyphicon.glyphicon-sort::before { 472 | content: "\f0dc"; 473 | } 474 | .glyphicon.glyphicon-sort-by-alphabet::before { 475 | content: "\f15d"; 476 | } 477 | .glyphicon.glyphicon-sort-by-alphabet-alt::before { 478 | content: "\f15e"; 479 | } 480 | .glyphicon.glyphicon-sort-by-order::before { 481 | content: "\f162"; 482 | } 483 | .glyphicon.glyphicon-sort-by-order-alt::before { 484 | content: "\f163"; 485 | } 486 | .glyphicon.glyphicon-sort-by-attributes::before { 487 | content: "\f160"; 488 | } 489 | .glyphicon.glyphicon-sort-by-attributes-alt::before { 490 | content: "\f161"; 491 | } 492 | .glyphicon.glyphicon-unchecked::before { 493 | content: "\f096"; 494 | } 495 | .glyphicon.glyphicon-expand::before { 496 | content: "\f152"; 497 | } 498 | .glyphicon.glyphicon-collapse-down::before { 499 | content: "\f150"; 500 | } 501 | .glyphicon.glyphicon-collapse-up::before { 502 | content: "\f151"; 503 | } 504 | .glyphicon.glyphicon-log-in::before { 505 | content: "\f090"; 506 | } 507 | .glyphicon.glyphicon-flash::before { 508 | content: "\f0e7"; 509 | } 510 | .glyphicon.glyphicon-log-out::before { 511 | content: "\f08b"; 512 | } 513 | .glyphicon.glyphicon-new-window::before { 514 | content: "\f08e"; 515 | } 516 | .glyphicon.glyphicon-record::before { 517 | content: "\f192"; 518 | } 519 | .glyphicon.glyphicon-save::before { 520 | content: "\f0c7"; 521 | } 522 | .glyphicon.glyphicon-open::before { 523 | content: "\f093"; 524 | } 525 | .glyphicon.glyphicon-saved::before { 526 | content: "\f00c"; 527 | } 528 | .glyphicon.glyphicon-import::before { 529 | content: "\f093"; 530 | } 531 | .glyphicon.glyphicon-export::before { 532 | content: "\f019"; 533 | } 534 | .glyphicon.glyphicon-send::before { 535 | content: "\f1d9"; 536 | } 537 | .glyphicon.glyphicon-floppy-disk::before { 538 | content: "\f0c7"; 539 | } 540 | .glyphicon.glyphicon-floppy-saved::before { 541 | content: "\f00c"; 542 | } 543 | .glyphicon.glyphicon-floppy-remove::before { 544 | content: "\f00d"; 545 | } 546 | .glyphicon.glyphicon-floppy-save::before { 547 | content: "\f019"; 548 | } 549 | .glyphicon.glyphicon-floppy-open::before { 550 | content: "\f093"; 551 | } 552 | .glyphicon.glyphicon-credit-card::before { 553 | content: "\f09d"; 554 | } 555 | .glyphicon.glyphicon-transfer::before { 556 | content: "\f0ec"; 557 | } 558 | .glyphicon.glyphicon-cutlery::before { 559 | content: "\f0f5"; 560 | } 561 | .glyphicon.glyphicon-header::before { 562 | content: "\f1dc"; 563 | } 564 | .glyphicon.glyphicon-compressed::before { 565 | content: "\f1c6"; 566 | } 567 | .glyphicon.glyphicon-earphone::before { 568 | content: "\f095"; 569 | } 570 | .glyphicon.glyphicon-phone-alt::before { 571 | content: "\f098"; 572 | } 573 | .glyphicon.glyphicon-tower::before { 574 | content: "\f1ad"; 575 | } 576 | .glyphicon.glyphicon-stats::before { 577 | content: "\f080"; 578 | } 579 | .glyphicon.glyphicon-sd-video::before { 580 | content: "\f008"; 581 | } 582 | .glyphicon.glyphicon-hd-video::before { 583 | content: "\f008"; 584 | } 585 | .glyphicon.glyphicon-subtitles::before { 586 | content: "\f20a"; 587 | } 588 | .glyphicon.glyphicon-sound-stereo::before { 589 | content: "\f001"; 590 | } 591 | .glyphicon.glyphicon-sound-dolby::before { 592 | content: "\f001"; 593 | } 594 | .glyphicon.glyphicon-sound-5-1::before { 595 | content: "\f001"; 596 | } 597 | .glyphicon.glyphicon-sound-6-1::before { 598 | content: "\f001"; 599 | } 600 | .glyphicon.glyphicon-sound-7-1::before { 601 | content: "\f001"; 602 | } 603 | .glyphicon.glyphicon-copyright-mark::before { 604 | content: "\f1f9"; 605 | } 606 | .glyphicon.glyphicon-registration-mark::before { 607 | content: "\f25d"; 608 | } 609 | .glyphicon.glyphicon-cloud-download::before { 610 | content: "\f0ed"; 611 | } 612 | .glyphicon.glyphicon-cloud-upload::before { 613 | content: "\f0ee"; 614 | } 615 | .glyphicon.glyphicon-tree-conifer::before { 616 | content: "\f1bb"; 617 | } 618 | .glyphicon.glyphicon-tree-deciduous::before { 619 | content: "\f1bb"; 620 | } 621 | .glyphicon.glyphicon-cd::before { 622 | content: "\f192"; 623 | } 624 | .glyphicon.glyphicon-save-file::before { 625 | content: "\f0c7"; 626 | } 627 | .glyphicon.glyphicon-open-file::before { 628 | content: "\f115"; 629 | } 630 | .glyphicon.glyphicon-level-up::before { 631 | content: "\f148"; 632 | } 633 | .glyphicon.glyphicon-copy::before { 634 | content: "\f0c5"; 635 | } 636 | .glyphicon.glyphicon-paste::before { 637 | content: "\f0ea"; 638 | } 639 | .glyphicon.glyphicon-alert::before { 640 | content: "\f071"; 641 | } 642 | .glyphicon.glyphicon-equalizer::before { 643 | content: "\f080"; 644 | } 645 | .glyphicon.glyphicon-king::before { 646 | content: "\f128"; 647 | } 648 | .glyphicon.glyphicon-queen::before { 649 | content: "\f128"; 650 | } 651 | .glyphicon.glyphicon-pawn::before { 652 | content: "\f128"; 653 | } 654 | .glyphicon.glyphicon-bishop::before { 655 | content: "\f128"; 656 | } 657 | .glyphicon.glyphicon-knight::before { 658 | content: "\f128"; 659 | } 660 | .glyphicon.glyphicon-baby-formula::before { 661 | content: "\f128"; 662 | } 663 | .glyphicon.glyphicon-tent::before { 664 | content: "\f128"; 665 | } 666 | .glyphicon.glyphicon-blackboard::before { 667 | content: "\f128"; 668 | } 669 | .glyphicon.glyphicon-bed::before { 670 | content: "\f236"; 671 | } 672 | .glyphicon.glyphicon-apple::before { 673 | content: "\f179"; 674 | } 675 | .glyphicon.glyphicon-erase::before { 676 | content: "\f12d"; 677 | } 678 | .glyphicon.glyphicon-hourglass::before { 679 | content: "\f254"; 680 | } 681 | .glyphicon.glyphicon-lamp::before { 682 | content: "\f0eb"; 683 | } 684 | .glyphicon.glyphicon-duplicate::before { 685 | content: "\f0c5"; 686 | } 687 | .glyphicon.glyphicon-piggy-bank::before { 688 | content: "\f0d6"; 689 | } 690 | .glyphicon.glyphicon-scissors::before { 691 | content: "\f0c4"; 692 | } 693 | .glyphicon.glyphicon-bitcoin::before { 694 | content: "\f15a"; 695 | } 696 | .glyphicon.glyphicon-btc::before { 697 | content: "\f15a"; 698 | } 699 | .glyphicon.glyphicon-xbt::before { 700 | content: "\f15a"; 701 | } 702 | .glyphicon.glyphicon-yen::before { 703 | content: "\f157"; 704 | } 705 | .glyphicon.glyphicon-jpy::before { 706 | content: "\f157"; 707 | } 708 | .glyphicon.glyphicon-ruble::before { 709 | content: "\f158"; 710 | } 711 | .glyphicon.glyphicon-rub::before { 712 | content: "\f158"; 713 | } 714 | .glyphicon.glyphicon-scale::before { 715 | content: "\f24e"; 716 | } 717 | .glyphicon.glyphicon-ice-lolly::before { 718 | content: "\f128"; 719 | } 720 | .glyphicon.glyphicon-ice-lolly-tasted::before { 721 | content: "\f128"; 722 | } 723 | .glyphicon.glyphicon-education::before { 724 | content: "\f19d"; 725 | } 726 | .glyphicon.glyphicon-option-horizontal::before { 727 | content: "\f141"; 728 | } 729 | .glyphicon.glyphicon-option-vertical::before { 730 | content: "\f142"; 731 | } 732 | .glyphicon.glyphicon-menu-hamburger::before { 733 | content: "\f0c9"; 734 | } 735 | .glyphicon.glyphicon-modal-window::before { 736 | content: "\f128"; 737 | } 738 | .glyphicon.glyphicon-oil::before { 739 | content: "\f128"; 740 | } 741 | .glyphicon.glyphicon-grain::before { 742 | content: "\f128"; 743 | } 744 | .glyphicon.glyphicon-sunglasses::before { 745 | content: "\f128"; 746 | } 747 | .glyphicon.glyphicon-text-size::before { 748 | content: "\f031"; 749 | } 750 | .glyphicon.glyphicon-text-color::before { 751 | content: "\f031"; 752 | } 753 | .glyphicon.glyphicon-text-background::before { 754 | content: "\f031"; 755 | } 756 | .glyphicon.glyphicon-object-align-top::before { 757 | content: "\f128"; 758 | } 759 | .glyphicon.glyphicon-object-align-bottom::before { 760 | content: "\f128"; 761 | } 762 | .glyphicon.glyphicon-object-align-horizontal::before { 763 | content: "\f128"; 764 | } 765 | .glyphicon.glyphicon-object-align-left::before { 766 | content: "\f128"; 767 | } 768 | .glyphicon.glyphicon-object-align-vertical::before { 769 | content: "\f128"; 770 | } 771 | .glyphicon.glyphicon-object-align-right::before { 772 | content: "\f128"; 773 | } 774 | .glyphicon.glyphicon-triangle-right::before { 775 | content: "\f0da"; 776 | } 777 | .glyphicon.glyphicon-triangle-left::before { 778 | content: "\f0d9"; 779 | } 780 | .glyphicon.glyphicon-triangle-bottom::before { 781 | content: "\f0d7"; 782 | } 783 | .glyphicon.glyphicon-triangle-top::before { 784 | content: "\f0d8"; 785 | } 786 | .glyphicon.glyphicon-console::before { 787 | content: "\f120"; 788 | } 789 | .glyphicon.glyphicon-superscript::before { 790 | content: "\f12b"; 791 | } 792 | .glyphicon.glyphicon-subscript::before { 793 | content: "\f12c"; 794 | } 795 | .glyphicon.glyphicon-menu-left::before { 796 | content: "\f053"; 797 | } 798 | .glyphicon.glyphicon-menu-right::before { 799 | content: "\f054"; 800 | } 801 | .glyphicon.glyphicon-menu-down::before { 802 | content: "\f078"; 803 | } 804 | .glyphicon.glyphicon-menu-up::before { 805 | content: "\f077"; 806 | } 807 | .glyphicon.glyphicon-transfer::before { 808 | content: "\f0ec"; 809 | } 810 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 811 | readers do not read off random characters that represent icons */ 812 | .fa-glass::before { 813 | content: "\f000"; 814 | } 815 | .fa-music::before { 816 | content: "\f001"; 817 | } 818 | .fa-search::before { 819 | content: "\f002"; 820 | } 821 | .fa-envelope-o::before { 822 | content: "\f003"; 823 | } 824 | .fa-heart::before { 825 | content: "\f004"; 826 | } 827 | .fa-star::before { 828 | content: "\f005"; 829 | } 830 | .fa-star-o::before { 831 | content: "\f006"; 832 | } 833 | .fa-user::before { 834 | content: "\f007"; 835 | } 836 | .fa-film::before { 837 | content: "\f008"; 838 | } 839 | .fa-th-large::before { 840 | content: "\f009"; 841 | } 842 | .fa-th::before { 843 | content: "\f00a"; 844 | } 845 | .fa-th-list::before { 846 | content: "\f00b"; 847 | } 848 | .fa-check::before { 849 | content: "\f00c"; 850 | } 851 | .fa-remove::before, 852 | .fa-close::before, 853 | .fa-times::before { 854 | content: "\f00d"; 855 | } 856 | .fa-search-plus::before { 857 | content: "\f00e"; 858 | } 859 | .fa-search-minus::before { 860 | content: "\f010"; 861 | } 862 | .fa-power-off::before { 863 | content: "\f011"; 864 | } 865 | .fa-signal::before { 866 | content: "\f012"; 867 | } 868 | .fa-gear::before, 869 | .fa-cog::before { 870 | content: "\f013"; 871 | } 872 | .fa-trash-o::before { 873 | content: "\f014"; 874 | } 875 | .fa-home::before { 876 | content: "\f015"; 877 | } 878 | .fa-file-o::before { 879 | content: "\f016"; 880 | } 881 | .fa-clock-o::before { 882 | content: "\f017"; 883 | } 884 | .fa-road::before { 885 | content: "\f018"; 886 | } 887 | .fa-download::before { 888 | content: "\f019"; 889 | } 890 | .fa-arrow-circle-o-down::before { 891 | content: "\f01a"; 892 | } 893 | .fa-arrow-circle-o-up::before { 894 | content: "\f01b"; 895 | } 896 | .fa-inbox::before { 897 | content: "\f01c"; 898 | } 899 | .fa-play-circle-o::before { 900 | content: "\f01d"; 901 | } 902 | .fa-rotate-right::before, 903 | .fa-repeat::before { 904 | content: "\f01e"; 905 | } 906 | .fa-refresh::before { 907 | content: "\f021"; 908 | } 909 | .fa-list-alt::before { 910 | content: "\f022"; 911 | } 912 | .fa-lock::before { 913 | content: "\f023"; 914 | } 915 | .fa-flag::before { 916 | content: "\f024"; 917 | } 918 | .fa-headphones::before { 919 | content: "\f025"; 920 | } 921 | .fa-volume-off::before { 922 | content: "\f026"; 923 | } 924 | .fa-volume-down::before { 925 | content: "\f027"; 926 | } 927 | .fa-volume-up::before { 928 | content: "\f028"; 929 | } 930 | .fa-qrcode::before { 931 | content: "\f029"; 932 | } 933 | .fa-barcode::before { 934 | content: "\f02a"; 935 | } 936 | .fa-tag::before { 937 | content: "\f02b"; 938 | } 939 | .fa-tags::before { 940 | content: "\f02c"; 941 | } 942 | .fa-book::before { 943 | content: "\f02d"; 944 | } 945 | .fa-bookmark::before { 946 | content: "\f02e"; 947 | } 948 | .fa-print::before { 949 | content: "\f02f"; 950 | } 951 | .fa-camera::before { 952 | content: "\f030"; 953 | } 954 | .fa-font::before { 955 | content: "\f031"; 956 | } 957 | .fa-bold::before { 958 | content: "\f032"; 959 | } 960 | .fa-italic::before { 961 | content: "\f033"; 962 | } 963 | .fa-text-height::before { 964 | content: "\f034"; 965 | } 966 | .fa-text-width::before { 967 | content: "\f035"; 968 | } 969 | .fa-align-left::before { 970 | content: "\f036"; 971 | } 972 | .fa-align-center::before { 973 | content: "\f037"; 974 | } 975 | .fa-align-right::before { 976 | content: "\f038"; 977 | } 978 | .fa-align-justify::before { 979 | content: "\f039"; 980 | } 981 | .fa-list::before { 982 | content: "\f03a"; 983 | } 984 | .fa-dedent::before, 985 | .fa-outdent::before { 986 | content: "\f03b"; 987 | } 988 | .fa-indent::before { 989 | content: "\f03c"; 990 | } 991 | .fa-video-camera::before { 992 | content: "\f03d"; 993 | } 994 | .fa-photo::before, 995 | .fa-image::before, 996 | .fa-picture-o::before { 997 | content: "\f03e"; 998 | } 999 | .fa-pencil::before { 1000 | content: "\f040"; 1001 | } 1002 | .fa-map-marker::before { 1003 | content: "\f041"; 1004 | } 1005 | .fa-adjust::before { 1006 | content: "\f042"; 1007 | } 1008 | .fa-tint::before { 1009 | content: "\f043"; 1010 | } 1011 | .fa-edit::before, 1012 | .fa-pencil-square-o::before { 1013 | content: "\f044"; 1014 | } 1015 | .fa-share-square-o::before { 1016 | content: "\f045"; 1017 | } 1018 | .fa-check-square-o::before { 1019 | content: "\f046"; 1020 | } 1021 | .fa-arrows::before { 1022 | content: "\f047"; 1023 | } 1024 | .fa-step-backward::before { 1025 | content: "\f048"; 1026 | } 1027 | .fa-fast-backward::before { 1028 | content: "\f049"; 1029 | } 1030 | .fa-backward::before { 1031 | content: "\f04a"; 1032 | } 1033 | .fa-play::before { 1034 | content: "\f04b"; 1035 | } 1036 | .fa-pause::before { 1037 | content: "\f04c"; 1038 | } 1039 | .fa-stop::before { 1040 | content: "\f04d"; 1041 | } 1042 | .fa-forward::before { 1043 | content: "\f04e"; 1044 | } 1045 | .fa-fast-forward::before { 1046 | content: "\f050"; 1047 | } 1048 | .fa-step-forward::before { 1049 | content: "\f051"; 1050 | } 1051 | .fa-eject::before { 1052 | content: "\f052"; 1053 | } 1054 | .fa-chevron-left::before { 1055 | content: "\f053"; 1056 | } 1057 | .fa-chevron-right::before { 1058 | content: "\f054"; 1059 | } 1060 | .fa-plus-circle::before { 1061 | content: "\f055"; 1062 | } 1063 | .fa-minus-circle::before { 1064 | content: "\f056"; 1065 | } 1066 | .fa-times-circle::before { 1067 | content: "\f057"; 1068 | } 1069 | .fa-check-circle::before { 1070 | content: "\f058"; 1071 | } 1072 | .fa-question-circle::before { 1073 | content: "\f059"; 1074 | } 1075 | .fa-info-circle::before { 1076 | content: "\f05a"; 1077 | } 1078 | .fa-crosshairs::before { 1079 | content: "\f05b"; 1080 | } 1081 | .fa-times-circle-o::before { 1082 | content: "\f05c"; 1083 | } 1084 | .fa-check-circle-o::before { 1085 | content: "\f05d"; 1086 | } 1087 | .fa-ban::before { 1088 | content: "\f05e"; 1089 | } 1090 | .fa-arrow-left::before { 1091 | content: "\f060"; 1092 | } 1093 | .fa-arrow-right::before { 1094 | content: "\f061"; 1095 | } 1096 | .fa-arrow-up::before { 1097 | content: "\f062"; 1098 | } 1099 | .fa-arrow-down::before { 1100 | content: "\f063"; 1101 | } 1102 | .fa-mail-forward::before, 1103 | .fa-share::before { 1104 | content: "\f064"; 1105 | } 1106 | .fa-expand::before { 1107 | content: "\f065"; 1108 | } 1109 | .fa-compress::before { 1110 | content: "\f066"; 1111 | } 1112 | .fa-plus::before { 1113 | content: "\f067"; 1114 | } 1115 | .fa-minus::before { 1116 | content: "\f068"; 1117 | } 1118 | .fa-asterisk::before { 1119 | content: "\f069"; 1120 | } 1121 | .fa-exclamation-circle::before { 1122 | content: "\f06a"; 1123 | } 1124 | .fa-gift::before { 1125 | content: "\f06b"; 1126 | } 1127 | .fa-leaf::before { 1128 | content: "\f06c"; 1129 | } 1130 | .fa-fire::before { 1131 | content: "\f06d"; 1132 | } 1133 | .fa-eye::before { 1134 | content: "\f06e"; 1135 | } 1136 | .fa-eye-slash::before { 1137 | content: "\f070"; 1138 | } 1139 | .fa-warning::before, 1140 | .fa-exclamation-triangle::before { 1141 | content: "\f071"; 1142 | } 1143 | .fa-plane::before { 1144 | content: "\f072"; 1145 | } 1146 | .fa-calendar::before { 1147 | content: "\f073"; 1148 | } 1149 | .fa-random::before { 1150 | content: "\f074"; 1151 | } 1152 | .fa-comment::before { 1153 | content: "\f075"; 1154 | } 1155 | .fa-magnet::before { 1156 | content: "\f076"; 1157 | } 1158 | .fa-chevron-up::before { 1159 | content: "\f077"; 1160 | } 1161 | .fa-chevron-down::before { 1162 | content: "\f078"; 1163 | } 1164 | .fa-retweet::before { 1165 | content: "\f079"; 1166 | } 1167 | .fa-shopping-cart::before { 1168 | content: "\f07a"; 1169 | } 1170 | .fa-folder::before { 1171 | content: "\f07b"; 1172 | } 1173 | .fa-folder-open::before { 1174 | content: "\f07c"; 1175 | } 1176 | .fa-arrows-v::before { 1177 | content: "\f07d"; 1178 | } 1179 | .fa-arrows-h::before { 1180 | content: "\f07e"; 1181 | } 1182 | .fa-bar-chart-o::before, 1183 | .fa-bar-chart::before { 1184 | content: "\f080"; 1185 | } 1186 | .fa-twitter-square::before { 1187 | content: "\f081"; 1188 | } 1189 | .fa-facebook-square::before { 1190 | content: "\f082"; 1191 | } 1192 | .fa-camera-retro::before { 1193 | content: "\f083"; 1194 | } 1195 | .fa-key::before { 1196 | content: "\f084"; 1197 | } 1198 | .fa-gears::before, 1199 | .fa-cogs::before { 1200 | content: "\f085"; 1201 | } 1202 | .fa-comments::before { 1203 | content: "\f086"; 1204 | } 1205 | .fa-thumbs-o-up::before { 1206 | content: "\f087"; 1207 | } 1208 | .fa-thumbs-o-down::before { 1209 | content: "\f088"; 1210 | } 1211 | .fa-star-half::before { 1212 | content: "\f089"; 1213 | } 1214 | .fa-heart-o::before { 1215 | content: "\f08a"; 1216 | } 1217 | .fa-sign-out::before { 1218 | content: "\f08b"; 1219 | } 1220 | .fa-linkedin-square::before { 1221 | content: "\f08c"; 1222 | } 1223 | .fa-thumb-tack::before { 1224 | content: "\f08d"; 1225 | } 1226 | .fa-external-link::before { 1227 | content: "\f08e"; 1228 | } 1229 | .fa-sign-in::before { 1230 | content: "\f090"; 1231 | } 1232 | .fa-trophy::before { 1233 | content: "\f091"; 1234 | } 1235 | .fa-github-square::before { 1236 | content: "\f092"; 1237 | } 1238 | .fa-upload::before { 1239 | content: "\f093"; 1240 | } 1241 | .fa-lemon-o::before { 1242 | content: "\f094"; 1243 | } 1244 | .fa-phone::before { 1245 | content: "\f095"; 1246 | } 1247 | .fa-square-o::before { 1248 | content: "\f096"; 1249 | } 1250 | .fa-bookmark-o::before { 1251 | content: "\f097"; 1252 | } 1253 | .fa-phone-square::before { 1254 | content: "\f098"; 1255 | } 1256 | .fa-twitter::before { 1257 | content: "\f099"; 1258 | } 1259 | .fa-facebook-f::before, 1260 | .fa-facebook::before { 1261 | content: "\f09a"; 1262 | } 1263 | .fa-github::before { 1264 | content: "\f09b"; 1265 | } 1266 | .fa-unlock::before { 1267 | content: "\f09c"; 1268 | } 1269 | .fa-credit-card::before { 1270 | content: "\f09d"; 1271 | } 1272 | .fa-feed::before, 1273 | .fa-rss::before { 1274 | content: "\f09e"; 1275 | } 1276 | .fa-hdd-o::before { 1277 | content: "\f0a0"; 1278 | } 1279 | .fa-bullhorn::before { 1280 | content: "\f0a1"; 1281 | } 1282 | .fa-bell::before { 1283 | content: "\f0f3"; 1284 | } 1285 | .fa-certificate::before { 1286 | content: "\f0a3"; 1287 | } 1288 | .fa-hand-o-right::before { 1289 | content: "\f0a4"; 1290 | } 1291 | .fa-hand-o-left::before { 1292 | content: "\f0a5"; 1293 | } 1294 | .fa-hand-o-up::before { 1295 | content: "\f0a6"; 1296 | } 1297 | .fa-hand-o-down::before { 1298 | content: "\f0a7"; 1299 | } 1300 | .fa-arrow-circle-left::before { 1301 | content: "\f0a8"; 1302 | } 1303 | .fa-arrow-circle-right::before { 1304 | content: "\f0a9"; 1305 | } 1306 | .fa-arrow-circle-up::before { 1307 | content: "\f0aa"; 1308 | } 1309 | .fa-arrow-circle-down::before { 1310 | content: "\f0ab"; 1311 | } 1312 | .fa-globe::before { 1313 | content: "\f0ac"; 1314 | } 1315 | .fa-wrench::before { 1316 | content: "\f0ad"; 1317 | } 1318 | .fa-tasks::before { 1319 | content: "\f0ae"; 1320 | } 1321 | .fa-filter::before { 1322 | content: "\f0b0"; 1323 | } 1324 | .fa-briefcase::before { 1325 | content: "\f0b1"; 1326 | } 1327 | .fa-arrows-alt::before { 1328 | content: "\f0b2"; 1329 | } 1330 | .fa-group::before, 1331 | .fa-users::before { 1332 | content: "\f0c0"; 1333 | } 1334 | .fa-chain::before, 1335 | .fa-link::before { 1336 | content: "\f0c1"; 1337 | } 1338 | .fa-cloud::before { 1339 | content: "\f0c2"; 1340 | } 1341 | .fa-flask::before { 1342 | content: "\f0c3"; 1343 | } 1344 | .fa-cut::before, 1345 | .fa-scissors::before { 1346 | content: "\f0c4"; 1347 | } 1348 | .fa-copy::before, 1349 | .fa-files-o::before { 1350 | content: "\f0c5"; 1351 | } 1352 | .fa-paperclip::before { 1353 | content: "\f0c6"; 1354 | } 1355 | .fa-save::before, 1356 | .fa-floppy-o::before { 1357 | content: "\f0c7"; 1358 | } 1359 | .fa-square::before { 1360 | content: "\f0c8"; 1361 | } 1362 | .fa-navicon::before, 1363 | .fa-reorder::before, 1364 | .fa-bars::before { 1365 | content: "\f0c9"; 1366 | } 1367 | .fa-list-ul::before { 1368 | content: "\f0ca"; 1369 | } 1370 | .fa-list-ol::before { 1371 | content: "\f0cb"; 1372 | } 1373 | .fa-strikethrough::before { 1374 | content: "\f0cc"; 1375 | } 1376 | .fa-underline::before { 1377 | content: "\f0cd"; 1378 | } 1379 | .fa-table::before { 1380 | content: "\f0ce"; 1381 | } 1382 | .fa-magic::before { 1383 | content: "\f0d0"; 1384 | } 1385 | .fa-truck::before { 1386 | content: "\f0d1"; 1387 | } 1388 | .fa-pinterest::before { 1389 | content: "\f0d2"; 1390 | } 1391 | .fa-pinterest-square::before { 1392 | content: "\f0d3"; 1393 | } 1394 | .fa-google-plus-square::before { 1395 | content: "\f0d4"; 1396 | } 1397 | .fa-google-plus::before { 1398 | content: "\f0d5"; 1399 | } 1400 | .fa-money::before { 1401 | content: "\f0d6"; 1402 | } 1403 | .fa-caret-down::before { 1404 | content: "\f0d7"; 1405 | } 1406 | .fa-caret-up::before { 1407 | content: "\f0d8"; 1408 | } 1409 | .fa-caret-left::before { 1410 | content: "\f0d9"; 1411 | } 1412 | .fa-caret-right::before { 1413 | content: "\f0da"; 1414 | } 1415 | .fa-columns::before { 1416 | content: "\f0db"; 1417 | } 1418 | .fa-unsorted::before, 1419 | .fa-sort::before { 1420 | content: "\f0dc"; 1421 | } 1422 | .fa-sort-down::before, 1423 | .fa-sort-desc::before { 1424 | content: "\f0dd"; 1425 | } 1426 | .fa-sort-up::before, 1427 | .fa-sort-asc::before { 1428 | content: "\f0de"; 1429 | } 1430 | .fa-envelope::before { 1431 | content: "\f0e0"; 1432 | } 1433 | .fa-linkedin::before { 1434 | content: "\f0e1"; 1435 | } 1436 | .fa-rotate-left::before, 1437 | .fa-undo::before { 1438 | content: "\f0e2"; 1439 | } 1440 | .fa-legal::before, 1441 | .fa-gavel::before { 1442 | content: "\f0e3"; 1443 | } 1444 | .fa-dashboard::before, 1445 | .fa-tachometer::before { 1446 | content: "\f0e4"; 1447 | } 1448 | .fa-comment-o::before { 1449 | content: "\f0e5"; 1450 | } 1451 | .fa-comments-o::before { 1452 | content: "\f0e6"; 1453 | } 1454 | .fa-flash::before, 1455 | .fa-bolt::before { 1456 | content: "\f0e7"; 1457 | } 1458 | .fa-sitemap::before { 1459 | content: "\f0e8"; 1460 | } 1461 | .fa-umbrella::before { 1462 | content: "\f0e9"; 1463 | } 1464 | .fa-paste::before, 1465 | .fa-clipboard::before { 1466 | content: "\f0ea"; 1467 | } 1468 | .fa-lightbulb-o::before { 1469 | content: "\f0eb"; 1470 | } 1471 | .fa-exchange::before { 1472 | content: "\f0ec"; 1473 | } 1474 | .fa-cloud-download::before { 1475 | content: "\f0ed"; 1476 | } 1477 | .fa-cloud-upload::before { 1478 | content: "\f0ee"; 1479 | } 1480 | .fa-user-md::before { 1481 | content: "\f0f0"; 1482 | } 1483 | .fa-stethoscope::before { 1484 | content: "\f0f1"; 1485 | } 1486 | .fa-suitcase::before { 1487 | content: "\f0f2"; 1488 | } 1489 | .fa-bell-o::before { 1490 | content: "\f0a2"; 1491 | } 1492 | .fa-coffee::before { 1493 | content: "\f0f4"; 1494 | } 1495 | .fa-cutlery::before { 1496 | content: "\f0f5"; 1497 | } 1498 | .fa-file-text-o::before { 1499 | content: "\f0f6"; 1500 | } 1501 | .fa-building-o::before { 1502 | content: "\f0f7"; 1503 | } 1504 | .fa-hospital-o::before { 1505 | content: "\f0f8"; 1506 | } 1507 | .fa-ambulance::before { 1508 | content: "\f0f9"; 1509 | } 1510 | .fa-medkit::before { 1511 | content: "\f0fa"; 1512 | } 1513 | .fa-fighter-jet::before { 1514 | content: "\f0fb"; 1515 | } 1516 | .fa-beer::before { 1517 | content: "\f0fc"; 1518 | } 1519 | .fa-h-square::before { 1520 | content: "\f0fd"; 1521 | } 1522 | .fa-plus-square::before { 1523 | content: "\f0fe"; 1524 | } 1525 | .fa-angle-double-left::before { 1526 | content: "\f100"; 1527 | } 1528 | .fa-angle-double-right::before { 1529 | content: "\f101"; 1530 | } 1531 | .fa-angle-double-up::before { 1532 | content: "\f102"; 1533 | } 1534 | .fa-angle-double-down::before { 1535 | content: "\f103"; 1536 | } 1537 | .fa-angle-left::before { 1538 | content: "\f104"; 1539 | } 1540 | .fa-angle-right::before { 1541 | content: "\f105"; 1542 | } 1543 | .fa-angle-up::before { 1544 | content: "\f106"; 1545 | } 1546 | .fa-angle-down::before { 1547 | content: "\f107"; 1548 | } 1549 | .fa-desktop::before { 1550 | content: "\f108"; 1551 | } 1552 | .fa-laptop::before { 1553 | content: "\f109"; 1554 | } 1555 | .fa-tablet::before { 1556 | content: "\f10a"; 1557 | } 1558 | .fa-mobile-phone::before, 1559 | .fa-mobile::before { 1560 | content: "\f10b"; 1561 | } 1562 | .fa-circle-o::before { 1563 | content: "\f10c"; 1564 | } 1565 | .fa-quote-left::before { 1566 | content: "\f10d"; 1567 | } 1568 | .fa-quote-right::before { 1569 | content: "\f10e"; 1570 | } 1571 | .fa-spinner::before { 1572 | content: "\f110"; 1573 | } 1574 | .fa-circle::before { 1575 | content: "\f111"; 1576 | } 1577 | .fa-mail-reply::before, 1578 | .fa-reply::before { 1579 | content: "\f112"; 1580 | } 1581 | .fa-github-alt::before { 1582 | content: "\f113"; 1583 | } 1584 | .fa-folder-o::before { 1585 | content: "\f114"; 1586 | } 1587 | .fa-folder-open-o::before { 1588 | content: "\f115"; 1589 | } 1590 | .fa-smile-o::before { 1591 | content: "\f118"; 1592 | } 1593 | .fa-frown-o::before { 1594 | content: "\f119"; 1595 | } 1596 | .fa-meh-o::before { 1597 | content: "\f11a"; 1598 | } 1599 | .fa-gamepad::before { 1600 | content: "\f11b"; 1601 | } 1602 | .fa-keyboard-o::before { 1603 | content: "\f11c"; 1604 | } 1605 | .fa-flag-o::before { 1606 | content: "\f11d"; 1607 | } 1608 | .fa-flag-checkered::before { 1609 | content: "\f11e"; 1610 | } 1611 | .fa-terminal::before { 1612 | content: "\f120"; 1613 | } 1614 | .fa-code::before { 1615 | content: "\f121"; 1616 | } 1617 | .fa-mail-reply-all::before, 1618 | .fa-reply-all::before { 1619 | content: "\f122"; 1620 | } 1621 | .fa-star-half-empty::before, 1622 | .fa-star-half-full::before, 1623 | .fa-star-half-o::before { 1624 | content: "\f123"; 1625 | } 1626 | .fa-location-arrow::before { 1627 | content: "\f124"; 1628 | } 1629 | .fa-crop::before { 1630 | content: "\f125"; 1631 | } 1632 | .fa-code-fork::before { 1633 | content: "\f126"; 1634 | } 1635 | .fa-unlink::before, 1636 | .fa-chain-broken::before { 1637 | content: "\f127"; 1638 | } 1639 | .fa-question::before { 1640 | content: "\f128"; 1641 | } 1642 | .fa-info::before { 1643 | content: "\f129"; 1644 | } 1645 | .fa-exclamation::before { 1646 | content: "\f12a"; 1647 | } 1648 | .fa-superscript::before { 1649 | content: "\f12b"; 1650 | } 1651 | .fa-subscript::before { 1652 | content: "\f12c"; 1653 | } 1654 | .fa-eraser::before { 1655 | content: "\f12d"; 1656 | } 1657 | .fa-puzzle-piece::before { 1658 | content: "\f12e"; 1659 | } 1660 | .fa-microphone::before { 1661 | content: "\f130"; 1662 | } 1663 | .fa-microphone-slash::before { 1664 | content: "\f131"; 1665 | } 1666 | .fa-shield::before { 1667 | content: "\f132"; 1668 | } 1669 | .fa-calendar-o::before { 1670 | content: "\f133"; 1671 | } 1672 | .fa-fire-extinguisher::before { 1673 | content: "\f134"; 1674 | } 1675 | .fa-rocket::before { 1676 | content: "\f135"; 1677 | } 1678 | .fa-maxcdn::before { 1679 | content: "\f136"; 1680 | } 1681 | .fa-chevron-circle-left::before { 1682 | content: "\f137"; 1683 | } 1684 | .fa-chevron-circle-right::before { 1685 | content: "\f138"; 1686 | } 1687 | .fa-chevron-circle-up::before { 1688 | content: "\f139"; 1689 | } 1690 | .fa-chevron-circle-down::before { 1691 | content: "\f13a"; 1692 | } 1693 | .fa-html5::before { 1694 | content: "\f13b"; 1695 | } 1696 | .fa-css3::before { 1697 | content: "\f13c"; 1698 | } 1699 | .fa-anchor::before { 1700 | content: "\f13d"; 1701 | } 1702 | .fa-unlock-alt::before { 1703 | content: "\f13e"; 1704 | } 1705 | .fa-bullseye::before { 1706 | content: "\f140"; 1707 | } 1708 | .fa-ellipsis-h::before { 1709 | content: "\f141"; 1710 | } 1711 | .fa-ellipsis-v::before { 1712 | content: "\f142"; 1713 | } 1714 | .fa-rss-square::before { 1715 | content: "\f143"; 1716 | } 1717 | .fa-play-circle::before { 1718 | content: "\f144"; 1719 | } 1720 | .fa-ticket::before { 1721 | content: "\f145"; 1722 | } 1723 | .fa-minus-square::before { 1724 | content: "\f146"; 1725 | } 1726 | .fa-minus-square-o::before { 1727 | content: "\f147"; 1728 | } 1729 | .fa-level-up::before { 1730 | content: "\f148"; 1731 | } 1732 | .fa-level-down::before { 1733 | content: "\f149"; 1734 | } 1735 | .fa-check-square::before { 1736 | content: "\f14a"; 1737 | } 1738 | .fa-pencil-square::before { 1739 | content: "\f14b"; 1740 | } 1741 | .fa-external-link-square::before { 1742 | content: "\f14c"; 1743 | } 1744 | .fa-share-square::before { 1745 | content: "\f14d"; 1746 | } 1747 | .fa-compass::before { 1748 | content: "\f14e"; 1749 | } 1750 | .fa-toggle-down::before, 1751 | .fa-caret-square-o-down::before { 1752 | content: "\f150"; 1753 | } 1754 | .fa-toggle-up::before, 1755 | .fa-caret-square-o-up::before { 1756 | content: "\f151"; 1757 | } 1758 | .fa-toggle-right::before, 1759 | .fa-caret-square-o-right::before { 1760 | content: "\f152"; 1761 | } 1762 | .fa-euro::before, 1763 | .fa-eur::before { 1764 | content: "\f153"; 1765 | } 1766 | .fa-gbp::before { 1767 | content: "\f154"; 1768 | } 1769 | .fa-dollar::before, 1770 | .fa-usd::before { 1771 | content: "\f155"; 1772 | } 1773 | .fa-rupee::before, 1774 | .fa-inr::before { 1775 | content: "\f156"; 1776 | } 1777 | .fa-cny::before, 1778 | .fa-rmb::before, 1779 | .fa-yen::before, 1780 | .fa-jpy::before { 1781 | content: "\f157"; 1782 | } 1783 | .fa-ruble::before, 1784 | .fa-rouble::before, 1785 | .fa-rub::before { 1786 | content: "\f158"; 1787 | } 1788 | .fa-won::before, 1789 | .fa-krw::before { 1790 | content: "\f159"; 1791 | } 1792 | .fa-bitcoin::before, 1793 | .fa-btc::before { 1794 | content: "\f15a"; 1795 | } 1796 | .fa-file::before { 1797 | content: "\f15b"; 1798 | } 1799 | .fa-file-text::before { 1800 | content: "\f15c"; 1801 | } 1802 | .fa-sort-alpha-asc::before { 1803 | content: "\f15d"; 1804 | } 1805 | .fa-sort-alpha-desc::before { 1806 | content: "\f15e"; 1807 | } 1808 | .fa-sort-amount-asc::before { 1809 | content: "\f160"; 1810 | } 1811 | .fa-sort-amount-desc::before { 1812 | content: "\f161"; 1813 | } 1814 | .fa-sort-numeric-asc::before { 1815 | content: "\f162"; 1816 | } 1817 | .fa-sort-numeric-desc::before { 1818 | content: "\f163"; 1819 | } 1820 | .fa-thumbs-up::before { 1821 | content: "\f164"; 1822 | } 1823 | .fa-thumbs-down::before { 1824 | content: "\f165"; 1825 | } 1826 | .fa-youtube-square::before { 1827 | content: "\f166"; 1828 | } 1829 | .fa-youtube::before { 1830 | content: "\f167"; 1831 | } 1832 | .fa-xing::before { 1833 | content: "\f168"; 1834 | } 1835 | .fa-xing-square::before { 1836 | content: "\f169"; 1837 | } 1838 | .fa-youtube-play::before { 1839 | content: "\f16a"; 1840 | } 1841 | .fa-dropbox::before { 1842 | content: "\f16b"; 1843 | } 1844 | .fa-stack-overflow::before { 1845 | content: "\f16c"; 1846 | } 1847 | .fa-instagram::before { 1848 | content: "\f16d"; 1849 | } 1850 | .fa-flickr::before { 1851 | content: "\f16e"; 1852 | } 1853 | .fa-adn::before { 1854 | content: "\f170"; 1855 | } 1856 | .fa-bitbucket::before { 1857 | content: "\f171"; 1858 | } 1859 | .fa-bitbucket-square::before { 1860 | content: "\f172"; 1861 | } 1862 | .fa-tumblr::before { 1863 | content: "\f173"; 1864 | } 1865 | .fa-tumblr-square::before { 1866 | content: "\f174"; 1867 | } 1868 | .fa-long-arrow-down::before { 1869 | content: "\f175"; 1870 | } 1871 | .fa-long-arrow-up::before { 1872 | content: "\f176"; 1873 | } 1874 | .fa-long-arrow-left::before { 1875 | content: "\f177"; 1876 | } 1877 | .fa-long-arrow-right::before { 1878 | content: "\f178"; 1879 | } 1880 | .fa-apple::before { 1881 | content: "\f179"; 1882 | } 1883 | .fa-windows::before { 1884 | content: "\f17a"; 1885 | } 1886 | .fa-android::before { 1887 | content: "\f17b"; 1888 | } 1889 | .fa-linux::before { 1890 | content: "\f17c"; 1891 | } 1892 | .fa-dribbble::before { 1893 | content: "\f17d"; 1894 | } 1895 | .fa-skype::before { 1896 | content: "\f17e"; 1897 | } 1898 | .fa-foursquare::before { 1899 | content: "\f180"; 1900 | } 1901 | .fa-trello::before { 1902 | content: "\f181"; 1903 | } 1904 | .fa-female::before { 1905 | content: "\f182"; 1906 | } 1907 | .fa-male::before { 1908 | content: "\f183"; 1909 | } 1910 | .fa-gittip::before, 1911 | .fa-gratipay::before { 1912 | content: "\f184"; 1913 | } 1914 | .fa-sun-o::before { 1915 | content: "\f185"; 1916 | } 1917 | .fa-moon-o::before { 1918 | content: "\f186"; 1919 | } 1920 | .fa-archive::before { 1921 | content: "\f187"; 1922 | } 1923 | .fa-bug::before { 1924 | content: "\f188"; 1925 | } 1926 | .fa-vk::before { 1927 | content: "\f189"; 1928 | } 1929 | .fa-weibo::before { 1930 | content: "\f18a"; 1931 | } 1932 | .fa-renren::before { 1933 | content: "\f18b"; 1934 | } 1935 | .fa-pagelines::before { 1936 | content: "\f18c"; 1937 | } 1938 | .fa-stack-exchange::before { 1939 | content: "\f18d"; 1940 | } 1941 | .fa-arrow-circle-o-right::before { 1942 | content: "\f18e"; 1943 | } 1944 | .fa-arrow-circle-o-left::before { 1945 | content: "\f190"; 1946 | } 1947 | .fa-toggle-left::before, 1948 | .fa-caret-square-o-left::before { 1949 | content: "\f191"; 1950 | } 1951 | .fa-dot-circle-o::before { 1952 | content: "\f192"; 1953 | } 1954 | .fa-wheelchair::before { 1955 | content: "\f193"; 1956 | } 1957 | .fa-vimeo-square::before { 1958 | content: "\f194"; 1959 | } 1960 | .fa-turkish-lira::before, 1961 | .fa-try::before { 1962 | content: "\f195"; 1963 | } 1964 | .fa-plus-square-o::before { 1965 | content: "\f196"; 1966 | } 1967 | .fa-space-shuttle::before { 1968 | content: "\f197"; 1969 | } 1970 | .fa-slack::before { 1971 | content: "\f198"; 1972 | } 1973 | .fa-envelope-square::before { 1974 | content: "\f199"; 1975 | } 1976 | .fa-wordpress::before { 1977 | content: "\f19a"; 1978 | } 1979 | .fa-openid::before { 1980 | content: "\f19b"; 1981 | } 1982 | .fa-institution::before, 1983 | .fa-bank::before, 1984 | .fa-university::before { 1985 | content: "\f19c"; 1986 | } 1987 | .fa-mortar-board::before, 1988 | .fa-graduation-cap::before { 1989 | content: "\f19d"; 1990 | } 1991 | .fa-yahoo::before { 1992 | content: "\f19e"; 1993 | } 1994 | .fa-google::before { 1995 | content: "\f1a0"; 1996 | } 1997 | .fa-reddit::before { 1998 | content: "\f1a1"; 1999 | } 2000 | .fa-reddit-square::before { 2001 | content: "\f1a2"; 2002 | } 2003 | .fa-stumbleupon-circle::before { 2004 | content: "\f1a3"; 2005 | } 2006 | .fa-stumbleupon::before { 2007 | content: "\f1a4"; 2008 | } 2009 | .fa-delicious::before { 2010 | content: "\f1a5"; 2011 | } 2012 | .fa-digg::before { 2013 | content: "\f1a6"; 2014 | } 2015 | .fa-pied-piper-pp::before { 2016 | content: "\f1a7"; 2017 | } 2018 | .fa-pied-piper-alt::before { 2019 | content: "\f1a8"; 2020 | } 2021 | .fa-drupal::before { 2022 | content: "\f1a9"; 2023 | } 2024 | .fa-joomla::before { 2025 | content: "\f1aa"; 2026 | } 2027 | .fa-language::before { 2028 | content: "\f1ab"; 2029 | } 2030 | .fa-fax::before { 2031 | content: "\f1ac"; 2032 | } 2033 | .fa-building::before { 2034 | content: "\f1ad"; 2035 | } 2036 | .fa-child::before { 2037 | content: "\f1ae"; 2038 | } 2039 | .fa-paw::before { 2040 | content: "\f1b0"; 2041 | } 2042 | .fa-spoon::before { 2043 | content: "\f1b1"; 2044 | } 2045 | .fa-cube::before { 2046 | content: "\f1b2"; 2047 | } 2048 | .fa-cubes::before { 2049 | content: "\f1b3"; 2050 | } 2051 | .fa-behance::before { 2052 | content: "\f1b4"; 2053 | } 2054 | .fa-behance-square::before { 2055 | content: "\f1b5"; 2056 | } 2057 | .fa-steam::before { 2058 | content: "\f1b6"; 2059 | } 2060 | .fa-steam-square::before { 2061 | content: "\f1b7"; 2062 | } 2063 | .fa-recycle::before { 2064 | content: "\f1b8"; 2065 | } 2066 | .fa-automobile::before, 2067 | .fa-car::before { 2068 | content: "\f1b9"; 2069 | } 2070 | .fa-cab::before, 2071 | .fa-taxi::before { 2072 | content: "\f1ba"; 2073 | } 2074 | .fa-tree::before { 2075 | content: "\f1bb"; 2076 | } 2077 | .fa-spotify::before { 2078 | content: "\f1bc"; 2079 | } 2080 | .fa-deviantart::before { 2081 | content: "\f1bd"; 2082 | } 2083 | .fa-soundcloud::before { 2084 | content: "\f1be"; 2085 | } 2086 | .fa-database::before { 2087 | content: "\f1c0"; 2088 | } 2089 | .fa-file-pdf-o::before { 2090 | content: "\f1c1"; 2091 | } 2092 | .fa-file-word-o::before { 2093 | content: "\f1c2"; 2094 | } 2095 | .fa-file-excel-o::before { 2096 | content: "\f1c3"; 2097 | } 2098 | .fa-file-powerpoint-o::before { 2099 | content: "\f1c4"; 2100 | } 2101 | .fa-file-photo-o::before, 2102 | .fa-file-picture-o::before, 2103 | .fa-file-image-o::before { 2104 | content: "\f1c5"; 2105 | } 2106 | .fa-file-zip-o::before, 2107 | .fa-file-archive-o::before { 2108 | content: "\f1c6"; 2109 | } 2110 | .fa-file-sound-o::before, 2111 | .fa-file-audio-o::before { 2112 | content: "\f1c7"; 2113 | } 2114 | .fa-file-movie-o::before, 2115 | .fa-file-video-o::before { 2116 | content: "\f1c8"; 2117 | } 2118 | .fa-file-code-o::before { 2119 | content: "\f1c9"; 2120 | } 2121 | .fa-vine::before { 2122 | content: "\f1ca"; 2123 | } 2124 | .fa-codepen::before { 2125 | content: "\f1cb"; 2126 | } 2127 | .fa-jsfiddle::before { 2128 | content: "\f1cc"; 2129 | } 2130 | .fa-life-bouy::before, 2131 | .fa-life-buoy::before, 2132 | .fa-life-saver::before, 2133 | .fa-support::before, 2134 | .fa-life-ring::before { 2135 | content: "\f1cd"; 2136 | } 2137 | .fa-circle-o-notch::before { 2138 | content: "\f1ce"; 2139 | } 2140 | .fa-ra::before, 2141 | .fa-resistance::before, 2142 | .fa-rebel::before { 2143 | content: "\f1d0"; 2144 | } 2145 | .fa-ge::before, 2146 | .fa-empire::before { 2147 | content: "\f1d1"; 2148 | } 2149 | .fa-git-square::before { 2150 | content: "\f1d2"; 2151 | } 2152 | .fa-git::before { 2153 | content: "\f1d3"; 2154 | } 2155 | .fa-y-combinator-square::before, 2156 | .fa-yc-square::before, 2157 | .fa-hacker-news::before { 2158 | content: "\f1d4"; 2159 | } 2160 | .fa-tencent-weibo::before { 2161 | content: "\f1d5"; 2162 | } 2163 | .fa-qq::before { 2164 | content: "\f1d6"; 2165 | } 2166 | .fa-wechat::before, 2167 | .fa-weixin::before { 2168 | content: "\f1d7"; 2169 | } 2170 | .fa-send::before, 2171 | .fa-paper-plane::before { 2172 | content: "\f1d8"; 2173 | } 2174 | .fa-send-o::before, 2175 | .fa-paper-plane-o::before { 2176 | content: "\f1d9"; 2177 | } 2178 | .fa-history::before { 2179 | content: "\f1da"; 2180 | } 2181 | .fa-circle-thin::before { 2182 | content: "\f1db"; 2183 | } 2184 | .fa-header::before { 2185 | content: "\f1dc"; 2186 | } 2187 | .fa-paragraph::before { 2188 | content: "\f1dd"; 2189 | } 2190 | .fa-sliders::before { 2191 | content: "\f1de"; 2192 | } 2193 | .fa-share-alt::before { 2194 | content: "\f1e0"; 2195 | } 2196 | .fa-share-alt-square::before { 2197 | content: "\f1e1"; 2198 | } 2199 | .fa-bomb::before { 2200 | content: "\f1e2"; 2201 | } 2202 | .fa-soccer-ball-o::before, 2203 | .fa-futbol-o::before { 2204 | content: "\f1e3"; 2205 | } 2206 | .fa-tty::before { 2207 | content: "\f1e4"; 2208 | } 2209 | .fa-binoculars::before { 2210 | content: "\f1e5"; 2211 | } 2212 | .fa-plug::before { 2213 | content: "\f1e6"; 2214 | } 2215 | .fa-slideshare::before { 2216 | content: "\f1e7"; 2217 | } 2218 | .fa-twitch::before { 2219 | content: "\f1e8"; 2220 | } 2221 | .fa-yelp::before { 2222 | content: "\f1e9"; 2223 | } 2224 | .fa-newspaper-o::before { 2225 | content: "\f1ea"; 2226 | } 2227 | .fa-wifi::before { 2228 | content: "\f1eb"; 2229 | } 2230 | .fa-calculator::before { 2231 | content: "\f1ec"; 2232 | } 2233 | .fa-paypal::before { 2234 | content: "\f1ed"; 2235 | } 2236 | .fa-google-wallet::before { 2237 | content: "\f1ee"; 2238 | } 2239 | .fa-cc-visa::before { 2240 | content: "\f1f0"; 2241 | } 2242 | .fa-cc-mastercard::before { 2243 | content: "\f1f1"; 2244 | } 2245 | .fa-cc-discover::before { 2246 | content: "\f1f2"; 2247 | } 2248 | .fa-cc-amex::before { 2249 | content: "\f1f3"; 2250 | } 2251 | .fa-cc-paypal::before { 2252 | content: "\f1f4"; 2253 | } 2254 | .fa-cc-stripe::before { 2255 | content: "\f1f5"; 2256 | } 2257 | .fa-bell-slash::before { 2258 | content: "\f1f6"; 2259 | } 2260 | .fa-bell-slash-o::before { 2261 | content: "\f1f7"; 2262 | } 2263 | .fa-trash::before { 2264 | content: "\f1f8"; 2265 | } 2266 | .fa-copyright::before { 2267 | content: "\f1f9"; 2268 | } 2269 | .fa-at::before { 2270 | content: "\f1fa"; 2271 | } 2272 | .fa-eyedropper::before { 2273 | content: "\f1fb"; 2274 | } 2275 | .fa-paint-brush::before { 2276 | content: "\f1fc"; 2277 | } 2278 | .fa-birthday-cake::before { 2279 | content: "\f1fd"; 2280 | } 2281 | .fa-area-chart::before { 2282 | content: "\f1fe"; 2283 | } 2284 | .fa-pie-chart::before { 2285 | content: "\f200"; 2286 | } 2287 | .fa-line-chart::before { 2288 | content: "\f201"; 2289 | } 2290 | .fa-lastfm::before { 2291 | content: "\f202"; 2292 | } 2293 | .fa-lastfm-square::before { 2294 | content: "\f203"; 2295 | } 2296 | .fa-toggle-off::before { 2297 | content: "\f204"; 2298 | } 2299 | .fa-toggle-on::before { 2300 | content: "\f205"; 2301 | } 2302 | .fa-bicycle::before { 2303 | content: "\f206"; 2304 | } 2305 | .fa-bus::before { 2306 | content: "\f207"; 2307 | } 2308 | .fa-ioxhost::before { 2309 | content: "\f208"; 2310 | } 2311 | .fa-angellist::before { 2312 | content: "\f209"; 2313 | } 2314 | .fa-cc::before { 2315 | content: "\f20a"; 2316 | } 2317 | .fa-shekel::before, 2318 | .fa-sheqel::before, 2319 | .fa-ils::before { 2320 | content: "\f20b"; 2321 | } 2322 | .fa-meanpath::before { 2323 | content: "\f20c"; 2324 | } 2325 | .fa-buysellads::before { 2326 | content: "\f20d"; 2327 | } 2328 | .fa-connectdevelop::before { 2329 | content: "\f20e"; 2330 | } 2331 | .fa-dashcube::before { 2332 | content: "\f210"; 2333 | } 2334 | .fa-forumbee::before { 2335 | content: "\f211"; 2336 | } 2337 | .fa-leanpub::before { 2338 | content: "\f212"; 2339 | } 2340 | .fa-sellsy::before { 2341 | content: "\f213"; 2342 | } 2343 | .fa-shirtsinbulk::before { 2344 | content: "\f214"; 2345 | } 2346 | .fa-simplybuilt::before { 2347 | content: "\f215"; 2348 | } 2349 | .fa-skyatlas::before { 2350 | content: "\f216"; 2351 | } 2352 | .fa-cart-plus::before { 2353 | content: "\f217"; 2354 | } 2355 | .fa-cart-arrow-down::before { 2356 | content: "\f218"; 2357 | } 2358 | .fa-diamond::before { 2359 | content: "\f219"; 2360 | } 2361 | .fa-ship::before { 2362 | content: "\f21a"; 2363 | } 2364 | .fa-user-secret::before { 2365 | content: "\f21b"; 2366 | } 2367 | .fa-motorcycle::before { 2368 | content: "\f21c"; 2369 | } 2370 | .fa-street-view::before { 2371 | content: "\f21d"; 2372 | } 2373 | .fa-heartbeat::before { 2374 | content: "\f21e"; 2375 | } 2376 | .fa-venus::before { 2377 | content: "\f221"; 2378 | } 2379 | .fa-mars::before { 2380 | content: "\f222"; 2381 | } 2382 | .fa-mercury::before { 2383 | content: "\f223"; 2384 | } 2385 | .fa-intersex::before, 2386 | .fa-transgender::before { 2387 | content: "\f224"; 2388 | } 2389 | .fa-transgender-alt::before { 2390 | content: "\f225"; 2391 | } 2392 | .fa-venus-double::before { 2393 | content: "\f226"; 2394 | } 2395 | .fa-mars-double::before { 2396 | content: "\f227"; 2397 | } 2398 | .fa-venus-mars::before { 2399 | content: "\f228"; 2400 | } 2401 | .fa-mars-stroke::before { 2402 | content: "\f229"; 2403 | } 2404 | .fa-mars-stroke-v::before { 2405 | content: "\f22a"; 2406 | } 2407 | .fa-mars-stroke-h::before { 2408 | content: "\f22b"; 2409 | } 2410 | .fa-neuter::before { 2411 | content: "\f22c"; 2412 | } 2413 | .fa-genderless::before { 2414 | content: "\f22d"; 2415 | } 2416 | .fa-facebook-official::before { 2417 | content: "\f230"; 2418 | } 2419 | .fa-pinterest-p::before { 2420 | content: "\f231"; 2421 | } 2422 | .fa-whatsapp::before { 2423 | content: "\f232"; 2424 | } 2425 | .fa-server::before { 2426 | content: "\f233"; 2427 | } 2428 | .fa-user-plus::before { 2429 | content: "\f234"; 2430 | } 2431 | .fa-user-times::before { 2432 | content: "\f235"; 2433 | } 2434 | .fa-hotel::before, 2435 | .fa-bed::before { 2436 | content: "\f236"; 2437 | } 2438 | .fa-viacoin::before { 2439 | content: "\f237"; 2440 | } 2441 | .fa-train::before { 2442 | content: "\f238"; 2443 | } 2444 | .fa-subway::before { 2445 | content: "\f239"; 2446 | } 2447 | .fa-medium::before { 2448 | content: "\f23a"; 2449 | } 2450 | .fa-yc::before, 2451 | .fa-y-combinator::before { 2452 | content: "\f23b"; 2453 | } 2454 | .fa-optin-monster::before { 2455 | content: "\f23c"; 2456 | } 2457 | .fa-opencart::before { 2458 | content: "\f23d"; 2459 | } 2460 | .fa-expeditedssl::before { 2461 | content: "\f23e"; 2462 | } 2463 | .fa-battery-4::before, 2464 | .fa-battery::before, 2465 | .fa-battery-full::before { 2466 | content: "\f240"; 2467 | } 2468 | .fa-battery-3::before, 2469 | .fa-battery-three-quarters::before { 2470 | content: "\f241"; 2471 | } 2472 | .fa-battery-2::before, 2473 | .fa-battery-half::before { 2474 | content: "\f242"; 2475 | } 2476 | .fa-battery-1::before, 2477 | .fa-battery-quarter::before { 2478 | content: "\f243"; 2479 | } 2480 | .fa-battery-0::before, 2481 | .fa-battery-empty::before { 2482 | content: "\f244"; 2483 | } 2484 | .fa-mouse-pointer::before { 2485 | content: "\f245"; 2486 | } 2487 | .fa-i-cursor::before { 2488 | content: "\f246"; 2489 | } 2490 | .fa-object-group::before { 2491 | content: "\f247"; 2492 | } 2493 | .fa-object-ungroup::before { 2494 | content: "\f248"; 2495 | } 2496 | .fa-sticky-note::before { 2497 | content: "\f249"; 2498 | } 2499 | .fa-sticky-note-o::before { 2500 | content: "\f24a"; 2501 | } 2502 | .fa-cc-jcb::before { 2503 | content: "\f24b"; 2504 | } 2505 | .fa-cc-diners-club::before { 2506 | content: "\f24c"; 2507 | } 2508 | .fa-clone::before { 2509 | content: "\f24d"; 2510 | } 2511 | .fa-balance-scale::before { 2512 | content: "\f24e"; 2513 | } 2514 | .fa-hourglass-o::before { 2515 | content: "\f250"; 2516 | } 2517 | .fa-hourglass-1::before, 2518 | .fa-hourglass-start::before { 2519 | content: "\f251"; 2520 | } 2521 | .fa-hourglass-2::before, 2522 | .fa-hourglass-half::before { 2523 | content: "\f252"; 2524 | } 2525 | .fa-hourglass-3::before, 2526 | .fa-hourglass-end::before { 2527 | content: "\f253"; 2528 | } 2529 | .fa-hourglass::before { 2530 | content: "\f254"; 2531 | } 2532 | .fa-hand-grab-o::before, 2533 | .fa-hand-rock-o::before { 2534 | content: "\f255"; 2535 | } 2536 | .fa-hand-stop-o::before, 2537 | .fa-hand-paper-o::before { 2538 | content: "\f256"; 2539 | } 2540 | .fa-hand-scissors-o::before { 2541 | content: "\f257"; 2542 | } 2543 | .fa-hand-lizard-o::before { 2544 | content: "\f258"; 2545 | } 2546 | .fa-hand-spock-o::before { 2547 | content: "\f259"; 2548 | } 2549 | .fa-hand-pointer-o::before { 2550 | content: "\f25a"; 2551 | } 2552 | .fa-hand-peace-o::before { 2553 | content: "\f25b"; 2554 | } 2555 | .fa-trademark::before { 2556 | content: "\f25c"; 2557 | } 2558 | .fa-registered::before { 2559 | content: "\f25d"; 2560 | } 2561 | .fa-creative-commons::before { 2562 | content: "\f25e"; 2563 | } 2564 | .fa-gg::before { 2565 | content: "\f260"; 2566 | } 2567 | .fa-gg-circle::before { 2568 | content: "\f261"; 2569 | } 2570 | .fa-tripadvisor::before { 2571 | content: "\f262"; 2572 | } 2573 | .fa-odnoklassniki::before { 2574 | content: "\f263"; 2575 | } 2576 | .fa-odnoklassniki-square::before { 2577 | content: "\f264"; 2578 | } 2579 | .fa-get-pocket::before { 2580 | content: "\f265"; 2581 | } 2582 | .fa-wikipedia-w::before { 2583 | content: "\f266"; 2584 | } 2585 | .fa-safari::before { 2586 | content: "\f267"; 2587 | } 2588 | .fa-chrome::before { 2589 | content: "\f268"; 2590 | } 2591 | .fa-firefox::before { 2592 | content: "\f269"; 2593 | } 2594 | .fa-opera::before { 2595 | content: "\f26a"; 2596 | } 2597 | .fa-internet-explorer::before { 2598 | content: "\f26b"; 2599 | } 2600 | .fa-tv::before, 2601 | .fa-television::before { 2602 | content: "\f26c"; 2603 | } 2604 | .fa-contao::before { 2605 | content: "\f26d"; 2606 | } 2607 | .fa-500px::before { 2608 | content: "\f26e"; 2609 | } 2610 | .fa-amazon::before { 2611 | content: "\f270"; 2612 | } 2613 | .fa-calendar-plus-o::before { 2614 | content: "\f271"; 2615 | } 2616 | .fa-calendar-minus-o::before { 2617 | content: "\f272"; 2618 | } 2619 | .fa-calendar-times-o::before { 2620 | content: "\f273"; 2621 | } 2622 | .fa-calendar-check-o::before { 2623 | content: "\f274"; 2624 | } 2625 | .fa-industry::before { 2626 | content: "\f275"; 2627 | } 2628 | .fa-map-pin::before { 2629 | content: "\f276"; 2630 | } 2631 | .fa-map-signs::before { 2632 | content: "\f277"; 2633 | } 2634 | .fa-map-o::before { 2635 | content: "\f278"; 2636 | } 2637 | .fa-map::before { 2638 | content: "\f279"; 2639 | } 2640 | .fa-commenting::before { 2641 | content: "\f27a"; 2642 | } 2643 | .fa-commenting-o::before { 2644 | content: "\f27b"; 2645 | } 2646 | .fa-houzz::before { 2647 | content: "\f27c"; 2648 | } 2649 | .fa-vimeo::before { 2650 | content: "\f27d"; 2651 | } 2652 | .fa-black-tie::before { 2653 | content: "\f27e"; 2654 | } 2655 | .fa-fonticons::before { 2656 | content: "\f280"; 2657 | } 2658 | .fa-reddit-alien::before { 2659 | content: "\f281"; 2660 | } 2661 | .fa-edge::before { 2662 | content: "\f282"; 2663 | } 2664 | .fa-credit-card-alt::before { 2665 | content: "\f283"; 2666 | } 2667 | .fa-codiepie::before { 2668 | content: "\f284"; 2669 | } 2670 | .fa-modx::before { 2671 | content: "\f285"; 2672 | } 2673 | .fa-fort-awesome::before { 2674 | content: "\f286"; 2675 | } 2676 | .fa-usb::before { 2677 | content: "\f287"; 2678 | } 2679 | .fa-product-hunt::before { 2680 | content: "\f288"; 2681 | } 2682 | .fa-mixcloud::before { 2683 | content: "\f289"; 2684 | } 2685 | .fa-scribd::before { 2686 | content: "\f28a"; 2687 | } 2688 | .fa-pause-circle::before { 2689 | content: "\f28b"; 2690 | } 2691 | .fa-pause-circle-o::before { 2692 | content: "\f28c"; 2693 | } 2694 | .fa-stop-circle::before { 2695 | content: "\f28d"; 2696 | } 2697 | .fa-stop-circle-o::before { 2698 | content: "\f28e"; 2699 | } 2700 | .fa-shopping-bag::before { 2701 | content: "\f290"; 2702 | } 2703 | .fa-shopping-basket::before { 2704 | content: "\f291"; 2705 | } 2706 | .fa-hashtag::before { 2707 | content: "\f292"; 2708 | } 2709 | .fa-bluetooth::before { 2710 | content: "\f293"; 2711 | } 2712 | .fa-bluetooth-b::before { 2713 | content: "\f294"; 2714 | } 2715 | .fa-percent::before { 2716 | content: "\f295"; 2717 | } 2718 | .fa-gitlab::before { 2719 | content: "\f296"; 2720 | } 2721 | .fa-wpbeginner::before { 2722 | content: "\f297"; 2723 | } 2724 | .fa-wpforms::before { 2725 | content: "\f298"; 2726 | } 2727 | .fa-envira::before { 2728 | content: "\f299"; 2729 | } 2730 | .fa-universal-access::before { 2731 | content: "\f29a"; 2732 | } 2733 | .fa-wheelchair-alt::before { 2734 | content: "\f29b"; 2735 | } 2736 | .fa-question-circle-o::before { 2737 | content: "\f29c"; 2738 | } 2739 | .fa-blind::before { 2740 | content: "\f29d"; 2741 | } 2742 | .fa-audio-description::before { 2743 | content: "\f29e"; 2744 | } 2745 | .fa-volume-control-phone::before { 2746 | content: "\f2a0"; 2747 | } 2748 | .fa-braille::before { 2749 | content: "\f2a1"; 2750 | } 2751 | .fa-assistive-listening-systems::before { 2752 | content: "\f2a2"; 2753 | } 2754 | .fa-asl-interpreting::before, 2755 | .fa-american-sign-language-interpreting::before { 2756 | content: "\f2a3"; 2757 | } 2758 | .fa-deafness::before, 2759 | .fa-hard-of-hearing::before, 2760 | .fa-deaf::before { 2761 | content: "\f2a4"; 2762 | } 2763 | .fa-glide::before { 2764 | content: "\f2a5"; 2765 | } 2766 | .fa-glide-g::before { 2767 | content: "\f2a6"; 2768 | } 2769 | .fa-signing::before, 2770 | .fa-sign-language::before { 2771 | content: "\f2a7"; 2772 | } 2773 | .fa-low-vision::before { 2774 | content: "\f2a8"; 2775 | } 2776 | .fa-viadeo::before { 2777 | content: "\f2a9"; 2778 | } 2779 | .fa-viadeo-square::before { 2780 | content: "\f2aa"; 2781 | } 2782 | .fa-snapchat::before { 2783 | content: "\f2ab"; 2784 | } 2785 | .fa-snapchat-ghost::before { 2786 | content: "\f2ac"; 2787 | } 2788 | .fa-snapchat-square::before { 2789 | content: "\f2ad"; 2790 | } 2791 | .fa-pied-piper::before { 2792 | content: "\f2ae"; 2793 | } 2794 | .fa-first-order::before { 2795 | content: "\f2b0"; 2796 | } 2797 | .fa-yoast::before { 2798 | content: "\f2b1"; 2799 | } 2800 | .fa-themeisle::before { 2801 | content: "\f2b2"; 2802 | } 2803 | .fa-google-plus-circle::before, 2804 | .fa-google-plus-official::before { 2805 | content: "\f2b3"; 2806 | } 2807 | .fa-fa::before, 2808 | .fa-font-awesome::before { 2809 | content: "\f2b4"; 2810 | } 2811 | .fa-handshake-o::before { 2812 | content: "\f2b5"; 2813 | } 2814 | .fa-envelope-open::before { 2815 | content: "\f2b6"; 2816 | } 2817 | .fa-envelope-open-o::before { 2818 | content: "\f2b7"; 2819 | } 2820 | .fa-linode::before { 2821 | content: "\f2b8"; 2822 | } 2823 | .fa-address-book::before { 2824 | content: "\f2b9"; 2825 | } 2826 | .fa-address-book-o::before { 2827 | content: "\f2ba"; 2828 | } 2829 | .fa-vcard::before, 2830 | .fa-address-card::before { 2831 | content: "\f2bb"; 2832 | } 2833 | .fa-vcard-o::before, 2834 | .fa-address-card-o::before { 2835 | content: "\f2bc"; 2836 | } 2837 | .fa-user-circle::before { 2838 | content: "\f2bd"; 2839 | } 2840 | .fa-user-circle-o::before { 2841 | content: "\f2be"; 2842 | } 2843 | .fa-user-o::before { 2844 | content: "\f2c0"; 2845 | } 2846 | .fa-id-badge::before { 2847 | content: "\f2c1"; 2848 | } 2849 | .fa-drivers-license::before, 2850 | .fa-id-card::before { 2851 | content: "\f2c2"; 2852 | } 2853 | .fa-drivers-license-o::before, 2854 | .fa-id-card-o::before { 2855 | content: "\f2c3"; 2856 | } 2857 | .fa-quora::before { 2858 | content: "\f2c4"; 2859 | } 2860 | .fa-free-code-camp::before { 2861 | content: "\f2c5"; 2862 | } 2863 | .fa-telegram::before { 2864 | content: "\f2c6"; 2865 | } 2866 | .fa-thermometer-4::before, 2867 | .fa-thermometer::before, 2868 | .fa-thermometer-full::before { 2869 | content: "\f2c7"; 2870 | } 2871 | .fa-thermometer-3::before, 2872 | .fa-thermometer-three-quarters::before { 2873 | content: "\f2c8"; 2874 | } 2875 | .fa-thermometer-2::before, 2876 | .fa-thermometer-half::before { 2877 | content: "\f2c9"; 2878 | } 2879 | .fa-thermometer-1::before, 2880 | .fa-thermometer-quarter::before { 2881 | content: "\f2ca"; 2882 | } 2883 | .fa-thermometer-0::before, 2884 | .fa-thermometer-empty::before { 2885 | content: "\f2cb"; 2886 | } 2887 | .fa-shower::before { 2888 | content: "\f2cc"; 2889 | } 2890 | .fa-bathtub::before, 2891 | .fa-s15::before, 2892 | .fa-bath::before { 2893 | content: "\f2cd"; 2894 | } 2895 | .fa-podcast::before { 2896 | content: "\f2ce"; 2897 | } 2898 | .fa-window-maximize::before { 2899 | content: "\f2d0"; 2900 | } 2901 | .fa-window-minimize::before { 2902 | content: "\f2d1"; 2903 | } 2904 | .fa-window-restore::before { 2905 | content: "\f2d2"; 2906 | } 2907 | .fa-times-rectangle::before, 2908 | .fa-window-close::before { 2909 | content: "\f2d3"; 2910 | } 2911 | .fa-times-rectangle-o::before, 2912 | .fa-window-close-o::before { 2913 | content: "\f2d4"; 2914 | } 2915 | .fa-bandcamp::before { 2916 | content: "\f2d5"; 2917 | } 2918 | .fa-grav::before { 2919 | content: "\f2d6"; 2920 | } 2921 | .fa-etsy::before { 2922 | content: "\f2d7"; 2923 | } 2924 | .fa-imdb::before { 2925 | content: "\f2d8"; 2926 | } 2927 | .fa-ravelry::before { 2928 | content: "\f2d9"; 2929 | } 2930 | .fa-eercast::before { 2931 | content: "\f2da"; 2932 | } 2933 | .fa-microchip::before { 2934 | content: "\f2db"; 2935 | } 2936 | .fa-snowflake-o::before { 2937 | content: "\f2dc"; 2938 | } 2939 | .fa-superpowers::before { 2940 | content: "\f2dd"; 2941 | } 2942 | .fa-wpexplorer::before { 2943 | content: "\f2de"; 2944 | } 2945 | .fa-meetup::before { 2946 | content: "\f2e0"; 2947 | } --------------------------------------------------------------------------------