/*
 * font-awesome-legacy-compat.css
 * Maximal practical Font Awesome compatibility bridge for PrestaShop/AngarTheme.
 *
 * Load order:
 * 1) font-awesome-4.7.0.min.css loads early from the theme
 * 2) normal PrestaShop/theme/module CSS loads
 * 3) THIS file loads LAST
 *
 * Covers:
 * - Font Awesome 4 syntax:       fa fa-angle-down
 * - Old PrestaShop syntax:       icon-angle-down
 * - Mixed module syntax:         fa fa-angle-down cbp-submenu-aindicator
 * - FA5/FA6 wrapper syntax ONLY when the icon exists in FA4:
 *                                fas fa-search, far fa-user, fab fa-twitter
 * - Selected modern missing icons using CSS/SVG fallback:
 *                                fab fa-x-twitter, fa-brands fa-x-twitter
 *
 * Important:
 * This file cannot magically create every FA5/FA6 glyph from the FA4 font.
 * FA6-only icons need SVG fallback or a real FA6 asset. x-twitter is included below.
 */

/* Global Font Awesome base protection */
.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.icon,
.fa:before,
.fas:before,
.far:before,
.fab:before,
.fa-solid:before,
.fa-regular:before,
.fa-brands:before,
.icon:before,
[class^="fa-"],
[class*=" fa-"],
[class^="fa-"]:before,
[class*=" fa-"]:before,
[class^="icon-"],
[class*=" icon-"],
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: never;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa,
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.icon,
[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  line-height: 1;
}

/* Font Awesome 5/6 sizing helpers sometimes used by modules */
.fa-xs { font-size: .75em; }
.fa-sm { font-size: .875em; }
.fa-lg { font-size: 1.33333333em; line-height: .75em; vertical-align: -15%; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }
.fa-fw { width: 1.28571429em; text-align: center; }

/* Font Awesome 5/6 fixed-width/list helpers */
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li { position: relative; }
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center;
}

/* Animations compatible with FA4/FA5 modules */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}
@keyframes fa-spin {
  0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); transform: rotate(359deg); }
}

/* Rotation / flip helpers */
.fa-rotate-90 { transform: rotate(90deg); }
.fa-rotate-180 { transform: rotate(180deg); }
.fa-rotate-270 { transform: rotate(270deg); }
.fa-flip-horizontal { transform: scale(-1, 1); }
.fa-flip-vertical { transform: scale(1, -1); }

/* Border / pull helpers */
.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em currentColor;
  border-radius: .1em;
}
.fa-pull-left, .pull-left { float: left; }
.fa-pull-right, .pull-right { float: right; }
.fa.fa-pull-left, .fas.fa-pull-left, .far.fa-pull-left, .fab.fa-pull-left { margin-right: .3em; }
.fa.fa-pull-right, .fas.fa-pull-right, .far.fa-pull-right, .fab.fa-pull-right { margin-left: .3em; }

/* Stack helpers */
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x { line-height: inherit; }
.fa-stack-2x { font-size: 2em; }
.fa-inverse { color: #fff; }

/* IQIT / CBP megamenu submenu indicators */
.cbp-submenu-aindicator.fa,
.cbp-submenu-aindicator.fas,
.cbp-submenu-aindicator.far,
.cbp-submenu-aindicator.fab,
.cbp-submenu-aindicator.fa-solid,
.cbp-submenu-aindicator.fa-regular,
.cbp-submenu-aindicator.fa-brands,
.cbp-submenu-aindicator[class*="icon-"],
.cbp-submenu-aindicator.fa:before,
.cbp-submenu-aindicator.fas:before,
.cbp-submenu-aindicator.far:before,
.cbp-submenu-aindicator.fab:before,
.cbp-submenu-aindicator.fa-solid:before,
.cbp-submenu-aindicator.fa-regular:before,
.cbp-submenu-aindicator.fa-brands:before,
.cbp-submenu-aindicator[class*="icon-"]:before {
  font-family: FontAwesome !important;
  font-style: normal !important;
  font-weight: normal !important;
  visibility: visible;
  opacity: 1;
}

/* If IQIT is configured to hide arrows, this class intentionally hides them.
   Disable the option in IQIT back office if you want submenu arrows visible. */
.cbp-hrmenu.cbp-submenu-notarrowed .cbp-submenu-aindicator {
  display: none !important;
}

/* Modern FA6-only X/Twitter fallback.
   FA4 does not contain x-twitter, so this uses an inline SVG mask. */
.fa-x-twitter,
.fab.fa-x-twitter,
.fa-brands.fa-x-twitter {
  display: inline-block !important;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.125em;
}

.fa-x-twitter:before,
.fab.fa-x-twitter:before,
.fa-brands.fa-x-twitter:before {
  content: "" !important;
  display: inline-block !important;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  vertical-align: -0.125em;
  font-family: inherit !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42l255.3 333.8z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42l255.3 333.8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Complete FA4 mapping layer for fa-*, fas/far/fab wrappers, fa-solid/fa-regular/fa-brands wrappers, and icon-* legacy aliases */
.fa-500px:before,
.fa.fa-500px:before,
.fas.fa-500px:before,
.far.fa-500px:before,
.fab.fa-500px:before,
.fa-solid.fa-500px:before,
.fa-regular.fa-500px:before,
.fa-brands.fa-500px:before,
.icon-500px:before,
.icon.icon-500px:before { content: "\f26e" !important; }

.fa-address-book:before,
.fa.fa-address-book:before,
.fas.fa-address-book:before,
.far.fa-address-book:before,
.fab.fa-address-book:before,
.fa-solid.fa-address-book:before,
.fa-regular.fa-address-book:before,
.fa-brands.fa-address-book:before,
.icon-address-book:before,
.icon.icon-address-book:before { content: "\f2b9" !important; }

.fa-address-book-o:before,
.fa.fa-address-book-o:before,
.fas.fa-address-book-o:before,
.far.fa-address-book-o:before,
.fab.fa-address-book-o:before,
.fa-solid.fa-address-book-o:before,
.fa-regular.fa-address-book-o:before,
.fa-brands.fa-address-book-o:before,
.icon-address-book-o:before,
.icon.icon-address-book-o:before { content: "\f2ba" !important; }

.fa-address-card:before,
.fa.fa-address-card:before,
.fas.fa-address-card:before,
.far.fa-address-card:before,
.fab.fa-address-card:before,
.fa-solid.fa-address-card:before,
.fa-regular.fa-address-card:before,
.fa-brands.fa-address-card:before,
.icon-address-card:before,
.icon.icon-address-card:before { content: "\f2bb" !important; }

.fa-address-card-o:before,
.fa.fa-address-card-o:before,
.fas.fa-address-card-o:before,
.far.fa-address-card-o:before,
.fab.fa-address-card-o:before,
.fa-solid.fa-address-card-o:before,
.fa-regular.fa-address-card-o:before,
.fa-brands.fa-address-card-o:before,
.icon-address-card-o:before,
.icon.icon-address-card-o:before { content: "\f2bc" !important; }

.fa-adjust:before,
.fa.fa-adjust:before,
.fas.fa-adjust:before,
.far.fa-adjust:before,
.fab.fa-adjust:before,
.fa-solid.fa-adjust:before,
.fa-regular.fa-adjust:before,
.fa-brands.fa-adjust:before,
.icon-adjust:before,
.icon.icon-adjust:before { content: "\f042" !important; }

.fa-adn:before,
.fa.fa-adn:before,
.fas.fa-adn:before,
.far.fa-adn:before,
.fab.fa-adn:before,
.fa-solid.fa-adn:before,
.fa-regular.fa-adn:before,
.fa-brands.fa-adn:before,
.icon-adn:before,
.icon.icon-adn:before { content: "\f170" !important; }

.fa-align-center:before,
.fa.fa-align-center:before,
.fas.fa-align-center:before,
.far.fa-align-center:before,
.fab.fa-align-center:before,
.fa-solid.fa-align-center:before,
.fa-regular.fa-align-center:before,
.fa-brands.fa-align-center:before,
.icon-align-center:before,
.icon.icon-align-center:before { content: "\f037" !important; }

.fa-align-justify:before,
.fa.fa-align-justify:before,
.fas.fa-align-justify:before,
.far.fa-align-justify:before,
.fab.fa-align-justify:before,
.fa-solid.fa-align-justify:before,
.fa-regular.fa-align-justify:before,
.fa-brands.fa-align-justify:before,
.icon-align-justify:before,
.icon.icon-align-justify:before { content: "\f039" !important; }

.fa-align-left:before,
.fa.fa-align-left:before,
.fas.fa-align-left:before,
.far.fa-align-left:before,
.fab.fa-align-left:before,
.fa-solid.fa-align-left:before,
.fa-regular.fa-align-left:before,
.fa-brands.fa-align-left:before,
.icon-align-left:before,
.icon.icon-align-left:before { content: "\f036" !important; }

.fa-align-right:before,
.fa.fa-align-right:before,
.fas.fa-align-right:before,
.far.fa-align-right:before,
.fab.fa-align-right:before,
.fa-solid.fa-align-right:before,
.fa-regular.fa-align-right:before,
.fa-brands.fa-align-right:before,
.icon-align-right:before,
.icon.icon-align-right:before { content: "\f038" !important; }

.fa-amazon:before,
.fa.fa-amazon:before,
.fas.fa-amazon:before,
.far.fa-amazon:before,
.fab.fa-amazon:before,
.fa-solid.fa-amazon:before,
.fa-regular.fa-amazon:before,
.fa-brands.fa-amazon:before,
.icon-amazon:before,
.icon.icon-amazon:before { content: "\f270" !important; }

.fa-ambulance:before,
.fa.fa-ambulance:before,
.fas.fa-ambulance:before,
.far.fa-ambulance:before,
.fab.fa-ambulance:before,
.fa-solid.fa-ambulance:before,
.fa-regular.fa-ambulance:before,
.fa-brands.fa-ambulance:before,
.icon-ambulance:before,
.icon.icon-ambulance:before { content: "\f0f9" !important; }

.fa-american-sign-language-interpreting:before,
.fa.fa-american-sign-language-interpreting:before,
.fas.fa-american-sign-language-interpreting:before,
.far.fa-american-sign-language-interpreting:before,
.fab.fa-american-sign-language-interpreting:before,
.fa-solid.fa-american-sign-language-interpreting:before,
.fa-regular.fa-american-sign-language-interpreting:before,
.fa-brands.fa-american-sign-language-interpreting:before,
.icon-american-sign-language-interpreting:before,
.icon.icon-american-sign-language-interpreting:before { content: "\f2a3" !important; }

.fa-anchor:before,
.fa.fa-anchor:before,
.fas.fa-anchor:before,
.far.fa-anchor:before,
.fab.fa-anchor:before,
.fa-solid.fa-anchor:before,
.fa-regular.fa-anchor:before,
.fa-brands.fa-anchor:before,
.icon-anchor:before,
.icon.icon-anchor:before { content: "\f13d" !important; }

.fa-android:before,
.fa.fa-android:before,
.fas.fa-android:before,
.far.fa-android:before,
.fab.fa-android:before,
.fa-solid.fa-android:before,
.fa-regular.fa-android:before,
.fa-brands.fa-android:before,
.icon-android:before,
.icon.icon-android:before { content: "\f17b" !important; }

.fa-angellist:before,
.fa.fa-angellist:before,
.fas.fa-angellist:before,
.far.fa-angellist:before,
.fab.fa-angellist:before,
.fa-solid.fa-angellist:before,
.fa-regular.fa-angellist:before,
.fa-brands.fa-angellist:before,
.icon-angellist:before,
.icon.icon-angellist:before { content: "\f209" !important; }

.fa-angle-double-down:before,
.fa.fa-angle-double-down:before,
.fas.fa-angle-double-down:before,
.far.fa-angle-double-down:before,
.fab.fa-angle-double-down:before,
.fa-solid.fa-angle-double-down:before,
.fa-regular.fa-angle-double-down:before,
.fa-brands.fa-angle-double-down:before,
.icon-angle-double-down:before,
.icon.icon-angle-double-down:before { content: "\f103" !important; }

.fa-angle-double-left:before,
.fa.fa-angle-double-left:before,
.fas.fa-angle-double-left:before,
.far.fa-angle-double-left:before,
.fab.fa-angle-double-left:before,
.fa-solid.fa-angle-double-left:before,
.fa-regular.fa-angle-double-left:before,
.fa-brands.fa-angle-double-left:before,
.icon-angle-double-left:before,
.icon.icon-angle-double-left:before { content: "\f100" !important; }

.fa-angle-double-right:before,
.fa.fa-angle-double-right:before,
.fas.fa-angle-double-right:before,
.far.fa-angle-double-right:before,
.fab.fa-angle-double-right:before,
.fa-solid.fa-angle-double-right:before,
.fa-regular.fa-angle-double-right:before,
.fa-brands.fa-angle-double-right:before,
.icon-angle-double-right:before,
.icon.icon-angle-double-right:before { content: "\f101" !important; }

.fa-angle-double-up:before,
.fa.fa-angle-double-up:before,
.fas.fa-angle-double-up:before,
.far.fa-angle-double-up:before,
.fab.fa-angle-double-up:before,
.fa-solid.fa-angle-double-up:before,
.fa-regular.fa-angle-double-up:before,
.fa-brands.fa-angle-double-up:before,
.icon-angle-double-up:before,
.icon.icon-angle-double-up:before { content: "\f102" !important; }

.fa-angle-down:before,
.fa.fa-angle-down:before,
.fas.fa-angle-down:before,
.far.fa-angle-down:before,
.fab.fa-angle-down:before,
.fa-solid.fa-angle-down:before,
.fa-regular.fa-angle-down:before,
.fa-brands.fa-angle-down:before,
.icon-angle-down:before,
.icon.icon-angle-down:before { content: "\f107" !important; }

.fa-angle-left:before,
.fa.fa-angle-left:before,
.fas.fa-angle-left:before,
.far.fa-angle-left:before,
.fab.fa-angle-left:before,
.fa-solid.fa-angle-left:before,
.fa-regular.fa-angle-left:before,
.fa-brands.fa-angle-left:before,
.icon-angle-left:before,
.icon.icon-angle-left:before { content: "\f104" !important; }

.fa-angle-right:before,
.fa.fa-angle-right:before,
.fas.fa-angle-right:before,
.far.fa-angle-right:before,
.fab.fa-angle-right:before,
.fa-solid.fa-angle-right:before,
.fa-regular.fa-angle-right:before,
.fa-brands.fa-angle-right:before,
.icon-angle-right:before,
.icon.icon-angle-right:before { content: "\f105" !important; }

.fa-angle-up:before,
.fa.fa-angle-up:before,
.fas.fa-angle-up:before,
.far.fa-angle-up:before,
.fab.fa-angle-up:before,
.fa-solid.fa-angle-up:before,
.fa-regular.fa-angle-up:before,
.fa-brands.fa-angle-up:before,
.icon-angle-up:before,
.icon.icon-angle-up:before { content: "\f106" !important; }

.fa-apple:before,
.fa.fa-apple:before,
.fas.fa-apple:before,
.far.fa-apple:before,
.fab.fa-apple:before,
.fa-solid.fa-apple:before,
.fa-regular.fa-apple:before,
.fa-brands.fa-apple:before,
.icon-apple:before,
.icon.icon-apple:before { content: "\f179" !important; }

.fa-archive:before,
.fa.fa-archive:before,
.fas.fa-archive:before,
.far.fa-archive:before,
.fab.fa-archive:before,
.fa-solid.fa-archive:before,
.fa-regular.fa-archive:before,
.fa-brands.fa-archive:before,
.icon-archive:before,
.icon.icon-archive:before { content: "\f187" !important; }

.fa-area-chart:before,
.fa.fa-area-chart:before,
.fas.fa-area-chart:before,
.far.fa-area-chart:before,
.fab.fa-area-chart:before,
.fa-solid.fa-area-chart:before,
.fa-regular.fa-area-chart:before,
.fa-brands.fa-area-chart:before,
.icon-area-chart:before,
.icon.icon-area-chart:before { content: "\f1fe" !important; }

.fa-arrow-circle-down:before,
.fa.fa-arrow-circle-down:before,
.fas.fa-arrow-circle-down:before,
.far.fa-arrow-circle-down:before,
.fab.fa-arrow-circle-down:before,
.fa-solid.fa-arrow-circle-down:before,
.fa-regular.fa-arrow-circle-down:before,
.fa-brands.fa-arrow-circle-down:before,
.icon-arrow-circle-down:before,
.icon.icon-arrow-circle-down:before { content: "\f0ab" !important; }

.fa-arrow-circle-left:before,
.fa.fa-arrow-circle-left:before,
.fas.fa-arrow-circle-left:before,
.far.fa-arrow-circle-left:before,
.fab.fa-arrow-circle-left:before,
.fa-solid.fa-arrow-circle-left:before,
.fa-regular.fa-arrow-circle-left:before,
.fa-brands.fa-arrow-circle-left:before,
.icon-arrow-circle-left:before,
.icon.icon-arrow-circle-left:before { content: "\f0a8" !important; }

.fa-arrow-circle-o-down:before,
.fa.fa-arrow-circle-o-down:before,
.fas.fa-arrow-circle-o-down:before,
.far.fa-arrow-circle-o-down:before,
.fab.fa-arrow-circle-o-down:before,
.fa-solid.fa-arrow-circle-o-down:before,
.fa-regular.fa-arrow-circle-o-down:before,
.fa-brands.fa-arrow-circle-o-down:before,
.icon-arrow-circle-o-down:before,
.icon.icon-arrow-circle-o-down:before { content: "\f01a" !important; }

.fa-arrow-circle-o-left:before,
.fa.fa-arrow-circle-o-left:before,
.fas.fa-arrow-circle-o-left:before,
.far.fa-arrow-circle-o-left:before,
.fab.fa-arrow-circle-o-left:before,
.fa-solid.fa-arrow-circle-o-left:before,
.fa-regular.fa-arrow-circle-o-left:before,
.fa-brands.fa-arrow-circle-o-left:before,
.icon-arrow-circle-o-left:before,
.icon.icon-arrow-circle-o-left:before { content: "\f190" !important; }

.fa-arrow-circle-o-right:before,
.fa.fa-arrow-circle-o-right:before,
.fas.fa-arrow-circle-o-right:before,
.far.fa-arrow-circle-o-right:before,
.fab.fa-arrow-circle-o-right:before,
.fa-solid.fa-arrow-circle-o-right:before,
.fa-regular.fa-arrow-circle-o-right:before,
.fa-brands.fa-arrow-circle-o-right:before,
.icon-arrow-circle-o-right:before,
.icon.icon-arrow-circle-o-right:before { content: "\f18e" !important; }

.fa-arrow-circle-o-up:before,
.fa.fa-arrow-circle-o-up:before,
.fas.fa-arrow-circle-o-up:before,
.far.fa-arrow-circle-o-up:before,
.fab.fa-arrow-circle-o-up:before,
.fa-solid.fa-arrow-circle-o-up:before,
.fa-regular.fa-arrow-circle-o-up:before,
.fa-brands.fa-arrow-circle-o-up:before,
.icon-arrow-circle-o-up:before,
.icon.icon-arrow-circle-o-up:before { content: "\f01b" !important; }

.fa-arrow-circle-right:before,
.fa.fa-arrow-circle-right:before,
.fas.fa-arrow-circle-right:before,
.far.fa-arrow-circle-right:before,
.fab.fa-arrow-circle-right:before,
.fa-solid.fa-arrow-circle-right:before,
.fa-regular.fa-arrow-circle-right:before,
.fa-brands.fa-arrow-circle-right:before,
.icon-arrow-circle-right:before,
.icon.icon-arrow-circle-right:before { content: "\f0a9" !important; }

.fa-arrow-circle-up:before,
.fa.fa-arrow-circle-up:before,
.fas.fa-arrow-circle-up:before,
.far.fa-arrow-circle-up:before,
.fab.fa-arrow-circle-up:before,
.fa-solid.fa-arrow-circle-up:before,
.fa-regular.fa-arrow-circle-up:before,
.fa-brands.fa-arrow-circle-up:before,
.icon-arrow-circle-up:before,
.icon.icon-arrow-circle-up:before { content: "\f0aa" !important; }

.fa-arrow-down:before,
.fa.fa-arrow-down:before,
.fas.fa-arrow-down:before,
.far.fa-arrow-down:before,
.fab.fa-arrow-down:before,
.fa-solid.fa-arrow-down:before,
.fa-regular.fa-arrow-down:before,
.fa-brands.fa-arrow-down:before,
.icon-arrow-down:before,
.icon.icon-arrow-down:before { content: "\f063" !important; }

.fa-arrow-left:before,
.fa.fa-arrow-left:before,
.fas.fa-arrow-left:before,
.far.fa-arrow-left:before,
.fab.fa-arrow-left:before,
.fa-solid.fa-arrow-left:before,
.fa-regular.fa-arrow-left:before,
.fa-brands.fa-arrow-left:before,
.icon-arrow-left:before,
.icon.icon-arrow-left:before { content: "\f060" !important; }

.fa-arrow-right:before,
.fa.fa-arrow-right:before,
.fas.fa-arrow-right:before,
.far.fa-arrow-right:before,
.fab.fa-arrow-right:before,
.fa-solid.fa-arrow-right:before,
.fa-regular.fa-arrow-right:before,
.fa-brands.fa-arrow-right:before,
.icon-arrow-right:before,
.icon.icon-arrow-right:before { content: "\f061" !important; }

.fa-arrow-up:before,
.fa.fa-arrow-up:before,
.fas.fa-arrow-up:before,
.far.fa-arrow-up:before,
.fab.fa-arrow-up:before,
.fa-solid.fa-arrow-up:before,
.fa-regular.fa-arrow-up:before,
.fa-brands.fa-arrow-up:before,
.icon-arrow-up:before,
.icon.icon-arrow-up:before { content: "\f062" !important; }

.fa-arrows:before,
.fa.fa-arrows:before,
.fas.fa-arrows:before,
.far.fa-arrows:before,
.fab.fa-arrows:before,
.fa-solid.fa-arrows:before,
.fa-regular.fa-arrows:before,
.fa-brands.fa-arrows:before,
.icon-arrows:before,
.icon.icon-arrows:before { content: "\f047" !important; }

.fa-arrows-alt:before,
.fa.fa-arrows-alt:before,
.fas.fa-arrows-alt:before,
.far.fa-arrows-alt:before,
.fab.fa-arrows-alt:before,
.fa-solid.fa-arrows-alt:before,
.fa-regular.fa-arrows-alt:before,
.fa-brands.fa-arrows-alt:before,
.icon-arrows-alt:before,
.icon.icon-arrows-alt:before { content: "\f0b2" !important; }

.fa-arrows-h:before,
.fa.fa-arrows-h:before,
.fas.fa-arrows-h:before,
.far.fa-arrows-h:before,
.fab.fa-arrows-h:before,
.fa-solid.fa-arrows-h:before,
.fa-regular.fa-arrows-h:before,
.fa-brands.fa-arrows-h:before,
.icon-arrows-h:before,
.icon.icon-arrows-h:before { content: "\f07e" !important; }

.fa-arrows-v:before,
.fa.fa-arrows-v:before,
.fas.fa-arrows-v:before,
.far.fa-arrows-v:before,
.fab.fa-arrows-v:before,
.fa-solid.fa-arrows-v:before,
.fa-regular.fa-arrows-v:before,
.fa-brands.fa-arrows-v:before,
.icon-arrows-v:before,
.icon.icon-arrows-v:before { content: "\f07d" !important; }

.fa-asl-interpreting:before,
.fa.fa-asl-interpreting:before,
.fas.fa-asl-interpreting:before,
.far.fa-asl-interpreting:before,
.fab.fa-asl-interpreting:before,
.fa-solid.fa-asl-interpreting:before,
.fa-regular.fa-asl-interpreting:before,
.fa-brands.fa-asl-interpreting:before,
.icon-asl-interpreting:before,
.icon.icon-asl-interpreting:before { content: "\f2a3" !important; }

.fa-assistive-listening-systems:before,
.fa.fa-assistive-listening-systems:before,
.fas.fa-assistive-listening-systems:before,
.far.fa-assistive-listening-systems:before,
.fab.fa-assistive-listening-systems:before,
.fa-solid.fa-assistive-listening-systems:before,
.fa-regular.fa-assistive-listening-systems:before,
.fa-brands.fa-assistive-listening-systems:before,
.icon-assistive-listening-systems:before,
.icon.icon-assistive-listening-systems:before { content: "\f2a2" !important; }

.fa-asterisk:before,
.fa.fa-asterisk:before,
.fas.fa-asterisk:before,
.far.fa-asterisk:before,
.fab.fa-asterisk:before,
.fa-solid.fa-asterisk:before,
.fa-regular.fa-asterisk:before,
.fa-brands.fa-asterisk:before,
.icon-asterisk:before,
.icon.icon-asterisk:before { content: "\f069" !important; }

.fa-at:before,
.fa.fa-at:before,
.fas.fa-at:before,
.far.fa-at:before,
.fab.fa-at:before,
.fa-solid.fa-at:before,
.fa-regular.fa-at:before,
.fa-brands.fa-at:before,
.icon-at:before,
.icon.icon-at:before { content: "\f1fa" !important; }

.fa-audio-description:before,
.fa.fa-audio-description:before,
.fas.fa-audio-description:before,
.far.fa-audio-description:before,
.fab.fa-audio-description:before,
.fa-solid.fa-audio-description:before,
.fa-regular.fa-audio-description:before,
.fa-brands.fa-audio-description:before,
.icon-audio-description:before,
.icon.icon-audio-description:before { content: "\f29e" !important; }

.fa-automobile:before,
.fa.fa-automobile:before,
.fas.fa-automobile:before,
.far.fa-automobile:before,
.fab.fa-automobile:before,
.fa-solid.fa-automobile:before,
.fa-regular.fa-automobile:before,
.fa-brands.fa-automobile:before,
.icon-automobile:before,
.icon.icon-automobile:before { content: "\f1b9" !important; }

.fa-backward:before,
.fa.fa-backward:before,
.fas.fa-backward:before,
.far.fa-backward:before,
.fab.fa-backward:before,
.fa-solid.fa-backward:before,
.fa-regular.fa-backward:before,
.fa-brands.fa-backward:before,
.icon-backward:before,
.icon.icon-backward:before { content: "\f04a" !important; }

.fa-balance-scale:before,
.fa.fa-balance-scale:before,
.fas.fa-balance-scale:before,
.far.fa-balance-scale:before,
.fab.fa-balance-scale:before,
.fa-solid.fa-balance-scale:before,
.fa-regular.fa-balance-scale:before,
.fa-brands.fa-balance-scale:before,
.icon-balance-scale:before,
.icon.icon-balance-scale:before { content: "\f24e" !important; }

.fa-ban:before,
.fa.fa-ban:before,
.fas.fa-ban:before,
.far.fa-ban:before,
.fab.fa-ban:before,
.fa-solid.fa-ban:before,
.fa-regular.fa-ban:before,
.fa-brands.fa-ban:before,
.icon-ban:before,
.icon.icon-ban:before { content: "\f05e" !important; }

.fa-bandcamp:before,
.fa.fa-bandcamp:before,
.fas.fa-bandcamp:before,
.far.fa-bandcamp:before,
.fab.fa-bandcamp:before,
.fa-solid.fa-bandcamp:before,
.fa-regular.fa-bandcamp:before,
.fa-brands.fa-bandcamp:before,
.icon-bandcamp:before,
.icon.icon-bandcamp:before { content: "\f2d5" !important; }

.fa-bank:before,
.fa.fa-bank:before,
.fas.fa-bank:before,
.far.fa-bank:before,
.fab.fa-bank:before,
.fa-solid.fa-bank:before,
.fa-regular.fa-bank:before,
.fa-brands.fa-bank:before,
.icon-bank:before,
.icon.icon-bank:before { content: "\f19c" !important; }

.fa-bar-chart:before,
.fa.fa-bar-chart:before,
.fas.fa-bar-chart:before,
.far.fa-bar-chart:before,
.fab.fa-bar-chart:before,
.fa-solid.fa-bar-chart:before,
.fa-regular.fa-bar-chart:before,
.fa-brands.fa-bar-chart:before,
.icon-bar-chart:before,
.icon.icon-bar-chart:before { content: "\f080" !important; }

.fa-bar-chart-o:before,
.fa.fa-bar-chart-o:before,
.fas.fa-bar-chart-o:before,
.far.fa-bar-chart-o:before,
.fab.fa-bar-chart-o:before,
.fa-solid.fa-bar-chart-o:before,
.fa-regular.fa-bar-chart-o:before,
.fa-brands.fa-bar-chart-o:before,
.icon-bar-chart-o:before,
.icon.icon-bar-chart-o:before { content: "\f080" !important; }

.fa-barcode:before,
.fa.fa-barcode:before,
.fas.fa-barcode:before,
.far.fa-barcode:before,
.fab.fa-barcode:before,
.fa-solid.fa-barcode:before,
.fa-regular.fa-barcode:before,
.fa-brands.fa-barcode:before,
.icon-barcode:before,
.icon.icon-barcode:before { content: "\f02a" !important; }

.fa-bars:before,
.fa.fa-bars:before,
.fas.fa-bars:before,
.far.fa-bars:before,
.fab.fa-bars:before,
.fa-solid.fa-bars:before,
.fa-regular.fa-bars:before,
.fa-brands.fa-bars:before,
.icon-bars:before,
.icon.icon-bars:before { content: "\f0c9" !important; }

.fa-bath:before,
.fa.fa-bath:before,
.fas.fa-bath:before,
.far.fa-bath:before,
.fab.fa-bath:before,
.fa-solid.fa-bath:before,
.fa-regular.fa-bath:before,
.fa-brands.fa-bath:before,
.icon-bath:before,
.icon.icon-bath:before { content: "\f2cd" !important; }

.fa-bathtub:before,
.fa.fa-bathtub:before,
.fas.fa-bathtub:before,
.far.fa-bathtub:before,
.fab.fa-bathtub:before,
.fa-solid.fa-bathtub:before,
.fa-regular.fa-bathtub:before,
.fa-brands.fa-bathtub:before,
.icon-bathtub:before,
.icon.icon-bathtub:before { content: "\f2cd" !important; }

.fa-battery:before,
.fa.fa-battery:before,
.fas.fa-battery:before,
.far.fa-battery:before,
.fab.fa-battery:before,
.fa-solid.fa-battery:before,
.fa-regular.fa-battery:before,
.fa-brands.fa-battery:before,
.icon-battery:before,
.icon.icon-battery:before { content: "\f240" !important; }

.fa-battery-0:before,
.fa.fa-battery-0:before,
.fas.fa-battery-0:before,
.far.fa-battery-0:before,
.fab.fa-battery-0:before,
.fa-solid.fa-battery-0:before,
.fa-regular.fa-battery-0:before,
.fa-brands.fa-battery-0:before,
.icon-battery-0:before,
.icon.icon-battery-0:before { content: "\f244" !important; }

.fa-battery-1:before,
.fa.fa-battery-1:before,
.fas.fa-battery-1:before,
.far.fa-battery-1:before,
.fab.fa-battery-1:before,
.fa-solid.fa-battery-1:before,
.fa-regular.fa-battery-1:before,
.fa-brands.fa-battery-1:before,
.icon-battery-1:before,
.icon.icon-battery-1:before { content: "\f243" !important; }

.fa-battery-2:before,
.fa.fa-battery-2:before,
.fas.fa-battery-2:before,
.far.fa-battery-2:before,
.fab.fa-battery-2:before,
.fa-solid.fa-battery-2:before,
.fa-regular.fa-battery-2:before,
.fa-brands.fa-battery-2:before,
.icon-battery-2:before,
.icon.icon-battery-2:before { content: "\f242" !important; }

.fa-battery-3:before,
.fa.fa-battery-3:before,
.fas.fa-battery-3:before,
.far.fa-battery-3:before,
.fab.fa-battery-3:before,
.fa-solid.fa-battery-3:before,
.fa-regular.fa-battery-3:before,
.fa-brands.fa-battery-3:before,
.icon-battery-3:before,
.icon.icon-battery-3:before { content: "\f241" !important; }

.fa-battery-4:before,
.fa.fa-battery-4:before,
.fas.fa-battery-4:before,
.far.fa-battery-4:before,
.fab.fa-battery-4:before,
.fa-solid.fa-battery-4:before,
.fa-regular.fa-battery-4:before,
.fa-brands.fa-battery-4:before,
.icon-battery-4:before,
.icon.icon-battery-4:before { content: "\f240" !important; }

.fa-battery-empty:before,
.fa.fa-battery-empty:before,
.fas.fa-battery-empty:before,
.far.fa-battery-empty:before,
.fab.fa-battery-empty:before,
.fa-solid.fa-battery-empty:before,
.fa-regular.fa-battery-empty:before,
.fa-brands.fa-battery-empty:before,
.icon-battery-empty:before,
.icon.icon-battery-empty:before { content: "\f244" !important; }

.fa-battery-full:before,
.fa.fa-battery-full:before,
.fas.fa-battery-full:before,
.far.fa-battery-full:before,
.fab.fa-battery-full:before,
.fa-solid.fa-battery-full:before,
.fa-regular.fa-battery-full:before,
.fa-brands.fa-battery-full:before,
.icon-battery-full:before,
.icon.icon-battery-full:before { content: "\f240" !important; }

.fa-battery-half:before,
.fa.fa-battery-half:before,
.fas.fa-battery-half:before,
.far.fa-battery-half:before,
.fab.fa-battery-half:before,
.fa-solid.fa-battery-half:before,
.fa-regular.fa-battery-half:before,
.fa-brands.fa-battery-half:before,
.icon-battery-half:before,
.icon.icon-battery-half:before { content: "\f242" !important; }

.fa-battery-quarter:before,
.fa.fa-battery-quarter:before,
.fas.fa-battery-quarter:before,
.far.fa-battery-quarter:before,
.fab.fa-battery-quarter:before,
.fa-solid.fa-battery-quarter:before,
.fa-regular.fa-battery-quarter:before,
.fa-brands.fa-battery-quarter:before,
.icon-battery-quarter:before,
.icon.icon-battery-quarter:before { content: "\f243" !important; }

.fa-battery-three-quarters:before,
.fa.fa-battery-three-quarters:before,
.fas.fa-battery-three-quarters:before,
.far.fa-battery-three-quarters:before,
.fab.fa-battery-three-quarters:before,
.fa-solid.fa-battery-three-quarters:before,
.fa-regular.fa-battery-three-quarters:before,
.fa-brands.fa-battery-three-quarters:before,
.icon-battery-three-quarters:before,
.icon.icon-battery-three-quarters:before { content: "\f241" !important; }

.fa-bed:before,
.fa.fa-bed:before,
.fas.fa-bed:before,
.far.fa-bed:before,
.fab.fa-bed:before,
.fa-solid.fa-bed:before,
.fa-regular.fa-bed:before,
.fa-brands.fa-bed:before,
.icon-bed:before,
.icon.icon-bed:before { content: "\f236" !important; }

.fa-beer:before,
.fa.fa-beer:before,
.fas.fa-beer:before,
.far.fa-beer:before,
.fab.fa-beer:before,
.fa-solid.fa-beer:before,
.fa-regular.fa-beer:before,
.fa-brands.fa-beer:before,
.icon-beer:before,
.icon.icon-beer:before { content: "\f0fc" !important; }

.fa-behance:before,
.fa.fa-behance:before,
.fas.fa-behance:before,
.far.fa-behance:before,
.fab.fa-behance:before,
.fa-solid.fa-behance:before,
.fa-regular.fa-behance:before,
.fa-brands.fa-behance:before,
.icon-behance:before,
.icon.icon-behance:before { content: "\f1b4" !important; }

.fa-behance-square:before,
.fa.fa-behance-square:before,
.fas.fa-behance-square:before,
.far.fa-behance-square:before,
.fab.fa-behance-square:before,
.fa-solid.fa-behance-square:before,
.fa-regular.fa-behance-square:before,
.fa-brands.fa-behance-square:before,
.icon-behance-square:before,
.icon.icon-behance-square:before { content: "\f1b5" !important; }

.fa-bell:before,
.fa.fa-bell:before,
.fas.fa-bell:before,
.far.fa-bell:before,
.fab.fa-bell:before,
.fa-solid.fa-bell:before,
.fa-regular.fa-bell:before,
.fa-brands.fa-bell:before,
.icon-bell:before,
.icon.icon-bell:before { content: "\f0f3" !important; }

.fa-bell-o:before,
.fa.fa-bell-o:before,
.fas.fa-bell-o:before,
.far.fa-bell-o:before,
.fab.fa-bell-o:before,
.fa-solid.fa-bell-o:before,
.fa-regular.fa-bell-o:before,
.fa-brands.fa-bell-o:before,
.icon-bell-o:before,
.icon.icon-bell-o:before { content: "\f0a2" !important; }

.fa-bell-slash:before,
.fa.fa-bell-slash:before,
.fas.fa-bell-slash:before,
.far.fa-bell-slash:before,
.fab.fa-bell-slash:before,
.fa-solid.fa-bell-slash:before,
.fa-regular.fa-bell-slash:before,
.fa-brands.fa-bell-slash:before,
.icon-bell-slash:before,
.icon.icon-bell-slash:before { content: "\f1f6" !important; }

.fa-bell-slash-o:before,
.fa.fa-bell-slash-o:before,
.fas.fa-bell-slash-o:before,
.far.fa-bell-slash-o:before,
.fab.fa-bell-slash-o:before,
.fa-solid.fa-bell-slash-o:before,
.fa-regular.fa-bell-slash-o:before,
.fa-brands.fa-bell-slash-o:before,
.icon-bell-slash-o:before,
.icon.icon-bell-slash-o:before { content: "\f1f7" !important; }

.fa-bicycle:before,
.fa.fa-bicycle:before,
.fas.fa-bicycle:before,
.far.fa-bicycle:before,
.fab.fa-bicycle:before,
.fa-solid.fa-bicycle:before,
.fa-regular.fa-bicycle:before,
.fa-brands.fa-bicycle:before,
.icon-bicycle:before,
.icon.icon-bicycle:before { content: "\f206" !important; }

.fa-binoculars:before,
.fa.fa-binoculars:before,
.fas.fa-binoculars:before,
.far.fa-binoculars:before,
.fab.fa-binoculars:before,
.fa-solid.fa-binoculars:before,
.fa-regular.fa-binoculars:before,
.fa-brands.fa-binoculars:before,
.icon-binoculars:before,
.icon.icon-binoculars:before { content: "\f1e5" !important; }

.fa-birthday-cake:before,
.fa.fa-birthday-cake:before,
.fas.fa-birthday-cake:before,
.far.fa-birthday-cake:before,
.fab.fa-birthday-cake:before,
.fa-solid.fa-birthday-cake:before,
.fa-regular.fa-birthday-cake:before,
.fa-brands.fa-birthday-cake:before,
.icon-birthday-cake:before,
.icon.icon-birthday-cake:before { content: "\f1fd" !important; }

.fa-bitbucket:before,
.fa.fa-bitbucket:before,
.fas.fa-bitbucket:before,
.far.fa-bitbucket:before,
.fab.fa-bitbucket:before,
.fa-solid.fa-bitbucket:before,
.fa-regular.fa-bitbucket:before,
.fa-brands.fa-bitbucket:before,
.icon-bitbucket:before,
.icon.icon-bitbucket:before { content: "\f171" !important; }

.fa-bitbucket-square:before,
.fa.fa-bitbucket-square:before,
.fas.fa-bitbucket-square:before,
.far.fa-bitbucket-square:before,
.fab.fa-bitbucket-square:before,
.fa-solid.fa-bitbucket-square:before,
.fa-regular.fa-bitbucket-square:before,
.fa-brands.fa-bitbucket-square:before,
.icon-bitbucket-square:before,
.icon.icon-bitbucket-square:before { content: "\f172" !important; }

.fa-bitcoin:before,
.fa.fa-bitcoin:before,
.fas.fa-bitcoin:before,
.far.fa-bitcoin:before,
.fab.fa-bitcoin:before,
.fa-solid.fa-bitcoin:before,
.fa-regular.fa-bitcoin:before,
.fa-brands.fa-bitcoin:before,
.icon-bitcoin:before,
.icon.icon-bitcoin:before { content: "\f15a" !important; }

.fa-black-tie:before,
.fa.fa-black-tie:before,
.fas.fa-black-tie:before,
.far.fa-black-tie:before,
.fab.fa-black-tie:before,
.fa-solid.fa-black-tie:before,
.fa-regular.fa-black-tie:before,
.fa-brands.fa-black-tie:before,
.icon-black-tie:before,
.icon.icon-black-tie:before { content: "\f27e" !important; }

.fa-blind:before,
.fa.fa-blind:before,
.fas.fa-blind:before,
.far.fa-blind:before,
.fab.fa-blind:before,
.fa-solid.fa-blind:before,
.fa-regular.fa-blind:before,
.fa-brands.fa-blind:before,
.icon-blind:before,
.icon.icon-blind:before { content: "\f29d" !important; }

.fa-bluetooth:before,
.fa.fa-bluetooth:before,
.fas.fa-bluetooth:before,
.far.fa-bluetooth:before,
.fab.fa-bluetooth:before,
.fa-solid.fa-bluetooth:before,
.fa-regular.fa-bluetooth:before,
.fa-brands.fa-bluetooth:before,
.icon-bluetooth:before,
.icon.icon-bluetooth:before { content: "\f293" !important; }

.fa-bluetooth-b:before,
.fa.fa-bluetooth-b:before,
.fas.fa-bluetooth-b:before,
.far.fa-bluetooth-b:before,
.fab.fa-bluetooth-b:before,
.fa-solid.fa-bluetooth-b:before,
.fa-regular.fa-bluetooth-b:before,
.fa-brands.fa-bluetooth-b:before,
.icon-bluetooth-b:before,
.icon.icon-bluetooth-b:before { content: "\f294" !important; }

.fa-bold:before,
.fa.fa-bold:before,
.fas.fa-bold:before,
.far.fa-bold:before,
.fab.fa-bold:before,
.fa-solid.fa-bold:before,
.fa-regular.fa-bold:before,
.fa-brands.fa-bold:before,
.icon-bold:before,
.icon.icon-bold:before { content: "\f032" !important; }

.fa-bolt:before,
.fa.fa-bolt:before,
.fas.fa-bolt:before,
.far.fa-bolt:before,
.fab.fa-bolt:before,
.fa-solid.fa-bolt:before,
.fa-regular.fa-bolt:before,
.fa-brands.fa-bolt:before,
.icon-bolt:before,
.icon.icon-bolt:before { content: "\f0e7" !important; }

.fa-bomb:before,
.fa.fa-bomb:before,
.fas.fa-bomb:before,
.far.fa-bomb:before,
.fab.fa-bomb:before,
.fa-solid.fa-bomb:before,
.fa-regular.fa-bomb:before,
.fa-brands.fa-bomb:before,
.icon-bomb:before,
.icon.icon-bomb:before { content: "\f1e2" !important; }

.fa-book:before,
.fa.fa-book:before,
.fas.fa-book:before,
.far.fa-book:before,
.fab.fa-book:before,
.fa-solid.fa-book:before,
.fa-regular.fa-book:before,
.fa-brands.fa-book:before,
.icon-book:before,
.icon.icon-book:before { content: "\f02d" !important; }

.fa-bookmark:before,
.fa.fa-bookmark:before,
.fas.fa-bookmark:before,
.far.fa-bookmark:before,
.fab.fa-bookmark:before,
.fa-solid.fa-bookmark:before,
.fa-regular.fa-bookmark:before,
.fa-brands.fa-bookmark:before,
.icon-bookmark:before,
.icon.icon-bookmark:before { content: "\f02e" !important; }

.fa-bookmark-o:before,
.fa.fa-bookmark-o:before,
.fas.fa-bookmark-o:before,
.far.fa-bookmark-o:before,
.fab.fa-bookmark-o:before,
.fa-solid.fa-bookmark-o:before,
.fa-regular.fa-bookmark-o:before,
.fa-brands.fa-bookmark-o:before,
.icon-bookmark-o:before,
.icon.icon-bookmark-o:before { content: "\f097" !important; }

.fa-braille:before,
.fa.fa-braille:before,
.fas.fa-braille:before,
.far.fa-braille:before,
.fab.fa-braille:before,
.fa-solid.fa-braille:before,
.fa-regular.fa-braille:before,
.fa-brands.fa-braille:before,
.icon-braille:before,
.icon.icon-braille:before { content: "\f2a1" !important; }

.fa-briefcase:before,
.fa.fa-briefcase:before,
.fas.fa-briefcase:before,
.far.fa-briefcase:before,
.fab.fa-briefcase:before,
.fa-solid.fa-briefcase:before,
.fa-regular.fa-briefcase:before,
.fa-brands.fa-briefcase:before,
.icon-briefcase:before,
.icon.icon-briefcase:before { content: "\f0b1" !important; }

.fa-btc:before,
.fa.fa-btc:before,
.fas.fa-btc:before,
.far.fa-btc:before,
.fab.fa-btc:before,
.fa-solid.fa-btc:before,
.fa-regular.fa-btc:before,
.fa-brands.fa-btc:before,
.icon-btc:before,
.icon.icon-btc:before { content: "\f15a" !important; }

.fa-bug:before,
.fa.fa-bug:before,
.fas.fa-bug:before,
.far.fa-bug:before,
.fab.fa-bug:before,
.fa-solid.fa-bug:before,
.fa-regular.fa-bug:before,
.fa-brands.fa-bug:before,
.icon-bug:before,
.icon.icon-bug:before { content: "\f188" !important; }

.fa-building:before,
.fa.fa-building:before,
.fas.fa-building:before,
.far.fa-building:before,
.fab.fa-building:before,
.fa-solid.fa-building:before,
.fa-regular.fa-building:before,
.fa-brands.fa-building:before,
.icon-building:before,
.icon.icon-building:before { content: "\f1ad" !important; }

.fa-building-o:before,
.fa.fa-building-o:before,
.fas.fa-building-o:before,
.far.fa-building-o:before,
.fab.fa-building-o:before,
.fa-solid.fa-building-o:before,
.fa-regular.fa-building-o:before,
.fa-brands.fa-building-o:before,
.icon-building-o:before,
.icon.icon-building-o:before { content: "\f0f7" !important; }

.fa-bullhorn:before,
.fa.fa-bullhorn:before,
.fas.fa-bullhorn:before,
.far.fa-bullhorn:before,
.fab.fa-bullhorn:before,
.fa-solid.fa-bullhorn:before,
.fa-regular.fa-bullhorn:before,
.fa-brands.fa-bullhorn:before,
.icon-bullhorn:before,
.icon.icon-bullhorn:before { content: "\f0a1" !important; }

.fa-bullseye:before,
.fa.fa-bullseye:before,
.fas.fa-bullseye:before,
.far.fa-bullseye:before,
.fab.fa-bullseye:before,
.fa-solid.fa-bullseye:before,
.fa-regular.fa-bullseye:before,
.fa-brands.fa-bullseye:before,
.icon-bullseye:before,
.icon.icon-bullseye:before { content: "\f140" !important; }

.fa-bus:before,
.fa.fa-bus:before,
.fas.fa-bus:before,
.far.fa-bus:before,
.fab.fa-bus:before,
.fa-solid.fa-bus:before,
.fa-regular.fa-bus:before,
.fa-brands.fa-bus:before,
.icon-bus:before,
.icon.icon-bus:before { content: "\f207" !important; }

.fa-buysellads:before,
.fa.fa-buysellads:before,
.fas.fa-buysellads:before,
.far.fa-buysellads:before,
.fab.fa-buysellads:before,
.fa-solid.fa-buysellads:before,
.fa-regular.fa-buysellads:before,
.fa-brands.fa-buysellads:before,
.icon-buysellads:before,
.icon.icon-buysellads:before { content: "\f20d" !important; }

.fa-cab:before,
.fa.fa-cab:before,
.fas.fa-cab:before,
.far.fa-cab:before,
.fab.fa-cab:before,
.fa-solid.fa-cab:before,
.fa-regular.fa-cab:before,
.fa-brands.fa-cab:before,
.icon-cab:before,
.icon.icon-cab:before { content: "\f1ba" !important; }

.fa-calculator:before,
.fa.fa-calculator:before,
.fas.fa-calculator:before,
.far.fa-calculator:before,
.fab.fa-calculator:before,
.fa-solid.fa-calculator:before,
.fa-regular.fa-calculator:before,
.fa-brands.fa-calculator:before,
.icon-calculator:before,
.icon.icon-calculator:before { content: "\f1ec" !important; }

.fa-calendar:before,
.fa.fa-calendar:before,
.fas.fa-calendar:before,
.far.fa-calendar:before,
.fab.fa-calendar:before,
.fa-solid.fa-calendar:before,
.fa-regular.fa-calendar:before,
.fa-brands.fa-calendar:before,
.icon-calendar:before,
.icon.icon-calendar:before { content: "\f073" !important; }

.fa-calendar-check-o:before,
.fa.fa-calendar-check-o:before,
.fas.fa-calendar-check-o:before,
.far.fa-calendar-check-o:before,
.fab.fa-calendar-check-o:before,
.fa-solid.fa-calendar-check-o:before,
.fa-regular.fa-calendar-check-o:before,
.fa-brands.fa-calendar-check-o:before,
.icon-calendar-check-o:before,
.icon.icon-calendar-check-o:before { content: "\f274" !important; }

.fa-calendar-minus-o:before,
.fa.fa-calendar-minus-o:before,
.fas.fa-calendar-minus-o:before,
.far.fa-calendar-minus-o:before,
.fab.fa-calendar-minus-o:before,
.fa-solid.fa-calendar-minus-o:before,
.fa-regular.fa-calendar-minus-o:before,
.fa-brands.fa-calendar-minus-o:before,
.icon-calendar-minus-o:before,
.icon.icon-calendar-minus-o:before { content: "\f272" !important; }

.fa-calendar-o:before,
.fa.fa-calendar-o:before,
.fas.fa-calendar-o:before,
.far.fa-calendar-o:before,
.fab.fa-calendar-o:before,
.fa-solid.fa-calendar-o:before,
.fa-regular.fa-calendar-o:before,
.fa-brands.fa-calendar-o:before,
.icon-calendar-o:before,
.icon.icon-calendar-o:before { content: "\f133" !important; }

.fa-calendar-plus-o:before,
.fa.fa-calendar-plus-o:before,
.fas.fa-calendar-plus-o:before,
.far.fa-calendar-plus-o:before,
.fab.fa-calendar-plus-o:before,
.fa-solid.fa-calendar-plus-o:before,
.fa-regular.fa-calendar-plus-o:before,
.fa-brands.fa-calendar-plus-o:before,
.icon-calendar-plus-o:before,
.icon.icon-calendar-plus-o:before { content: "\f271" !important; }

.fa-calendar-times-o:before,
.fa.fa-calendar-times-o:before,
.fas.fa-calendar-times-o:before,
.far.fa-calendar-times-o:before,
.fab.fa-calendar-times-o:before,
.fa-solid.fa-calendar-times-o:before,
.fa-regular.fa-calendar-times-o:before,
.fa-brands.fa-calendar-times-o:before,
.icon-calendar-times-o:before,
.icon.icon-calendar-times-o:before { content: "\f273" !important; }

.fa-camera:before,
.fa.fa-camera:before,
.fas.fa-camera:before,
.far.fa-camera:before,
.fab.fa-camera:before,
.fa-solid.fa-camera:before,
.fa-regular.fa-camera:before,
.fa-brands.fa-camera:before,
.icon-camera:before,
.icon.icon-camera:before { content: "\f030" !important; }

.fa-camera-retro:before,
.fa.fa-camera-retro:before,
.fas.fa-camera-retro:before,
.far.fa-camera-retro:before,
.fab.fa-camera-retro:before,
.fa-solid.fa-camera-retro:before,
.fa-regular.fa-camera-retro:before,
.fa-brands.fa-camera-retro:before,
.icon-camera-retro:before,
.icon.icon-camera-retro:before { content: "\f083" !important; }

.fa-car:before,
.fa.fa-car:before,
.fas.fa-car:before,
.far.fa-car:before,
.fab.fa-car:before,
.fa-solid.fa-car:before,
.fa-regular.fa-car:before,
.fa-brands.fa-car:before,
.icon-car:before,
.icon.icon-car:before { content: "\f1b9" !important; }

.fa-caret-down:before,
.fa.fa-caret-down:before,
.fas.fa-caret-down:before,
.far.fa-caret-down:before,
.fab.fa-caret-down:before,
.fa-solid.fa-caret-down:before,
.fa-regular.fa-caret-down:before,
.fa-brands.fa-caret-down:before,
.icon-caret-down:before,
.icon.icon-caret-down:before { content: "\f0d7" !important; }

.fa-caret-left:before,
.fa.fa-caret-left:before,
.fas.fa-caret-left:before,
.far.fa-caret-left:before,
.fab.fa-caret-left:before,
.fa-solid.fa-caret-left:before,
.fa-regular.fa-caret-left:before,
.fa-brands.fa-caret-left:before,
.icon-caret-left:before,
.icon.icon-caret-left:before { content: "\f0d9" !important; }

.fa-caret-right:before,
.fa.fa-caret-right:before,
.fas.fa-caret-right:before,
.far.fa-caret-right:before,
.fab.fa-caret-right:before,
.fa-solid.fa-caret-right:before,
.fa-regular.fa-caret-right:before,
.fa-brands.fa-caret-right:before,
.icon-caret-right:before,
.icon.icon-caret-right:before { content: "\f0da" !important; }

.fa-caret-square-o-down:before,
.fa.fa-caret-square-o-down:before,
.fas.fa-caret-square-o-down:before,
.far.fa-caret-square-o-down:before,
.fab.fa-caret-square-o-down:before,
.fa-solid.fa-caret-square-o-down:before,
.fa-regular.fa-caret-square-o-down:before,
.fa-brands.fa-caret-square-o-down:before,
.icon-caret-square-o-down:before,
.icon.icon-caret-square-o-down:before { content: "\f150" !important; }

.fa-caret-square-o-left:before,
.fa.fa-caret-square-o-left:before,
.fas.fa-caret-square-o-left:before,
.far.fa-caret-square-o-left:before,
.fab.fa-caret-square-o-left:before,
.fa-solid.fa-caret-square-o-left:before,
.fa-regular.fa-caret-square-o-left:before,
.fa-brands.fa-caret-square-o-left:before,
.icon-caret-square-o-left:before,
.icon.icon-caret-square-o-left:before { content: "\f191" !important; }

.fa-caret-square-o-right:before,
.fa.fa-caret-square-o-right:before,
.fas.fa-caret-square-o-right:before,
.far.fa-caret-square-o-right:before,
.fab.fa-caret-square-o-right:before,
.fa-solid.fa-caret-square-o-right:before,
.fa-regular.fa-caret-square-o-right:before,
.fa-brands.fa-caret-square-o-right:before,
.icon-caret-square-o-right:before,
.icon.icon-caret-square-o-right:before { content: "\f152" !important; }

.fa-caret-square-o-up:before,
.fa.fa-caret-square-o-up:before,
.fas.fa-caret-square-o-up:before,
.far.fa-caret-square-o-up:before,
.fab.fa-caret-square-o-up:before,
.fa-solid.fa-caret-square-o-up:before,
.fa-regular.fa-caret-square-o-up:before,
.fa-brands.fa-caret-square-o-up:before,
.icon-caret-square-o-up:before,
.icon.icon-caret-square-o-up:before { content: "\f151" !important; }

.fa-caret-up:before,
.fa.fa-caret-up:before,
.fas.fa-caret-up:before,
.far.fa-caret-up:before,
.fab.fa-caret-up:before,
.fa-solid.fa-caret-up:before,
.fa-regular.fa-caret-up:before,
.fa-brands.fa-caret-up:before,
.icon-caret-up:before,
.icon.icon-caret-up:before { content: "\f0d8" !important; }

.fa-cart:before,
.fa.fa-cart:before,
.fas.fa-cart:before,
.far.fa-cart:before,
.fab.fa-cart:before,
.fa-solid.fa-cart:before,
.fa-regular.fa-cart:before,
.fa-brands.fa-cart:before,
.icon-cart:before,
.icon.icon-cart:before { content: "\f07a" !important; }

.fa-cart-arrow-down:before,
.fa.fa-cart-arrow-down:before,
.fas.fa-cart-arrow-down:before,
.far.fa-cart-arrow-down:before,
.fab.fa-cart-arrow-down:before,
.fa-solid.fa-cart-arrow-down:before,
.fa-regular.fa-cart-arrow-down:before,
.fa-brands.fa-cart-arrow-down:before,
.icon-cart-arrow-down:before,
.icon.icon-cart-arrow-down:before { content: "\f218" !important; }

.fa-cart-plus:before,
.fa.fa-cart-plus:before,
.fas.fa-cart-plus:before,
.far.fa-cart-plus:before,
.fab.fa-cart-plus:before,
.fa-solid.fa-cart-plus:before,
.fa-regular.fa-cart-plus:before,
.fa-brands.fa-cart-plus:before,
.icon-cart-plus:before,
.icon.icon-cart-plus:before { content: "\f217" !important; }

.fa-cc:before,
.fa.fa-cc:before,
.fas.fa-cc:before,
.far.fa-cc:before,
.fab.fa-cc:before,
.fa-solid.fa-cc:before,
.fa-regular.fa-cc:before,
.fa-brands.fa-cc:before,
.icon-cc:before,
.icon.icon-cc:before { content: "\f20a" !important; }

.fa-cc-amex:before,
.fa.fa-cc-amex:before,
.fas.fa-cc-amex:before,
.far.fa-cc-amex:before,
.fab.fa-cc-amex:before,
.fa-solid.fa-cc-amex:before,
.fa-regular.fa-cc-amex:before,
.fa-brands.fa-cc-amex:before,
.icon-cc-amex:before,
.icon.icon-cc-amex:before { content: "\f1f3" !important; }

.fa-cc-diners-club:before,
.fa.fa-cc-diners-club:before,
.fas.fa-cc-diners-club:before,
.far.fa-cc-diners-club:before,
.fab.fa-cc-diners-club:before,
.fa-solid.fa-cc-diners-club:before,
.fa-regular.fa-cc-diners-club:before,
.fa-brands.fa-cc-diners-club:before,
.icon-cc-diners-club:before,
.icon.icon-cc-diners-club:before { content: "\f24c" !important; }

.fa-cc-discover:before,
.fa.fa-cc-discover:before,
.fas.fa-cc-discover:before,
.far.fa-cc-discover:before,
.fab.fa-cc-discover:before,
.fa-solid.fa-cc-discover:before,
.fa-regular.fa-cc-discover:before,
.fa-brands.fa-cc-discover:before,
.icon-cc-discover:before,
.icon.icon-cc-discover:before { content: "\f1f2" !important; }

.fa-cc-jcb:before,
.fa.fa-cc-jcb:before,
.fas.fa-cc-jcb:before,
.far.fa-cc-jcb:before,
.fab.fa-cc-jcb:before,
.fa-solid.fa-cc-jcb:before,
.fa-regular.fa-cc-jcb:before,
.fa-brands.fa-cc-jcb:before,
.icon-cc-jcb:before,
.icon.icon-cc-jcb:before { content: "\f24b" !important; }

.fa-cc-mastercard:before,
.fa.fa-cc-mastercard:before,
.fas.fa-cc-mastercard:before,
.far.fa-cc-mastercard:before,
.fab.fa-cc-mastercard:before,
.fa-solid.fa-cc-mastercard:before,
.fa-regular.fa-cc-mastercard:before,
.fa-brands.fa-cc-mastercard:before,
.icon-cc-mastercard:before,
.icon.icon-cc-mastercard:before { content: "\f1f1" !important; }

.fa-cc-paypal:before,
.fa.fa-cc-paypal:before,
.fas.fa-cc-paypal:before,
.far.fa-cc-paypal:before,
.fab.fa-cc-paypal:before,
.fa-solid.fa-cc-paypal:before,
.fa-regular.fa-cc-paypal:before,
.fa-brands.fa-cc-paypal:before,
.icon-cc-paypal:before,
.icon.icon-cc-paypal:before { content: "\f1f4" !important; }

.fa-cc-stripe:before,
.fa.fa-cc-stripe:before,
.fas.fa-cc-stripe:before,
.far.fa-cc-stripe:before,
.fab.fa-cc-stripe:before,
.fa-solid.fa-cc-stripe:before,
.fa-regular.fa-cc-stripe:before,
.fa-brands.fa-cc-stripe:before,
.icon-cc-stripe:before,
.icon.icon-cc-stripe:before { content: "\f1f5" !important; }

.fa-cc-visa:before,
.fa.fa-cc-visa:before,
.fas.fa-cc-visa:before,
.far.fa-cc-visa:before,
.fab.fa-cc-visa:before,
.fa-solid.fa-cc-visa:before,
.fa-regular.fa-cc-visa:before,
.fa-brands.fa-cc-visa:before,
.icon-cc-visa:before,
.icon.icon-cc-visa:before { content: "\f1f0" !important; }

.fa-certificate:before,
.fa.fa-certificate:before,
.fas.fa-certificate:before,
.far.fa-certificate:before,
.fab.fa-certificate:before,
.fa-solid.fa-certificate:before,
.fa-regular.fa-certificate:before,
.fa-brands.fa-certificate:before,
.icon-certificate:before,
.icon.icon-certificate:before { content: "\f0a3" !important; }

.fa-chain:before,
.fa.fa-chain:before,
.fas.fa-chain:before,
.far.fa-chain:before,
.fab.fa-chain:before,
.fa-solid.fa-chain:before,
.fa-regular.fa-chain:before,
.fa-brands.fa-chain:before,
.icon-chain:before,
.icon.icon-chain:before { content: "\f0c1" !important; }

.fa-chain-broken:before,
.fa.fa-chain-broken:before,
.fas.fa-chain-broken:before,
.far.fa-chain-broken:before,
.fab.fa-chain-broken:before,
.fa-solid.fa-chain-broken:before,
.fa-regular.fa-chain-broken:before,
.fa-brands.fa-chain-broken:before,
.icon-chain-broken:before,
.icon.icon-chain-broken:before { content: "\f127" !important; }

.fa-check:before,
.fa.fa-check:before,
.fas.fa-check:before,
.far.fa-check:before,
.fab.fa-check:before,
.fa-solid.fa-check:before,
.fa-regular.fa-check:before,
.fa-brands.fa-check:before,
.icon-check:before,
.icon.icon-check:before { content: "\f00c" !important; }

.fa-check-circle:before,
.fa.fa-check-circle:before,
.fas.fa-check-circle:before,
.far.fa-check-circle:before,
.fab.fa-check-circle:before,
.fa-solid.fa-check-circle:before,
.fa-regular.fa-check-circle:before,
.fa-brands.fa-check-circle:before,
.icon-check-circle:before,
.icon.icon-check-circle:before { content: "\f058" !important; }

.fa-check-circle-o:before,
.fa.fa-check-circle-o:before,
.fas.fa-check-circle-o:before,
.far.fa-check-circle-o:before,
.fab.fa-check-circle-o:before,
.fa-solid.fa-check-circle-o:before,
.fa-regular.fa-check-circle-o:before,
.fa-brands.fa-check-circle-o:before,
.icon-check-circle-o:before,
.icon.icon-check-circle-o:before { content: "\f05d" !important; }

.fa-check-square:before,
.fa.fa-check-square:before,
.fas.fa-check-square:before,
.far.fa-check-square:before,
.fab.fa-check-square:before,
.fa-solid.fa-check-square:before,
.fa-regular.fa-check-square:before,
.fa-brands.fa-check-square:before,
.icon-check-square:before,
.icon.icon-check-square:before { content: "\f14a" !important; }

.fa-check-square-o:before,
.fa.fa-check-square-o:before,
.fas.fa-check-square-o:before,
.far.fa-check-square-o:before,
.fab.fa-check-square-o:before,
.fa-solid.fa-check-square-o:before,
.fa-regular.fa-check-square-o:before,
.fa-brands.fa-check-square-o:before,
.icon-check-square-o:before,
.icon.icon-check-square-o:before { content: "\f046" !important; }

.fa-chevron-circle-down:before,
.fa.fa-chevron-circle-down:before,
.fas.fa-chevron-circle-down:before,
.far.fa-chevron-circle-down:before,
.fab.fa-chevron-circle-down:before,
.fa-solid.fa-chevron-circle-down:before,
.fa-regular.fa-chevron-circle-down:before,
.fa-brands.fa-chevron-circle-down:before,
.icon-chevron-circle-down:before,
.icon.icon-chevron-circle-down:before { content: "\f13a" !important; }

.fa-chevron-circle-left:before,
.fa.fa-chevron-circle-left:before,
.fas.fa-chevron-circle-left:before,
.far.fa-chevron-circle-left:before,
.fab.fa-chevron-circle-left:before,
.fa-solid.fa-chevron-circle-left:before,
.fa-regular.fa-chevron-circle-left:before,
.fa-brands.fa-chevron-circle-left:before,
.icon-chevron-circle-left:before,
.icon.icon-chevron-circle-left:before { content: "\f137" !important; }

.fa-chevron-circle-right:before,
.fa.fa-chevron-circle-right:before,
.fas.fa-chevron-circle-right:before,
.far.fa-chevron-circle-right:before,
.fab.fa-chevron-circle-right:before,
.fa-solid.fa-chevron-circle-right:before,
.fa-regular.fa-chevron-circle-right:before,
.fa-brands.fa-chevron-circle-right:before,
.icon-chevron-circle-right:before,
.icon.icon-chevron-circle-right:before { content: "\f138" !important; }

.fa-chevron-circle-up:before,
.fa.fa-chevron-circle-up:before,
.fas.fa-chevron-circle-up:before,
.far.fa-chevron-circle-up:before,
.fab.fa-chevron-circle-up:before,
.fa-solid.fa-chevron-circle-up:before,
.fa-regular.fa-chevron-circle-up:before,
.fa-brands.fa-chevron-circle-up:before,
.icon-chevron-circle-up:before,
.icon.icon-chevron-circle-up:before { content: "\f139" !important; }

.fa-chevron-down:before,
.fa.fa-chevron-down:before,
.fas.fa-chevron-down:before,
.far.fa-chevron-down:before,
.fab.fa-chevron-down:before,
.fa-solid.fa-chevron-down:before,
.fa-regular.fa-chevron-down:before,
.fa-brands.fa-chevron-down:before,
.icon-chevron-down:before,
.icon.icon-chevron-down:before { content: "\f078" !important; }

.fa-chevron-left:before,
.fa.fa-chevron-left:before,
.fas.fa-chevron-left:before,
.far.fa-chevron-left:before,
.fab.fa-chevron-left:before,
.fa-solid.fa-chevron-left:before,
.fa-regular.fa-chevron-left:before,
.fa-brands.fa-chevron-left:before,
.icon-chevron-left:before,
.icon.icon-chevron-left:before { content: "\f053" !important; }

.fa-chevron-right:before,
.fa.fa-chevron-right:before,
.fas.fa-chevron-right:before,
.far.fa-chevron-right:before,
.fab.fa-chevron-right:before,
.fa-solid.fa-chevron-right:before,
.fa-regular.fa-chevron-right:before,
.fa-brands.fa-chevron-right:before,
.icon-chevron-right:before,
.icon.icon-chevron-right:before { content: "\f054" !important; }

.fa-chevron-up:before,
.fa.fa-chevron-up:before,
.fas.fa-chevron-up:before,
.far.fa-chevron-up:before,
.fab.fa-chevron-up:before,
.fa-solid.fa-chevron-up:before,
.fa-regular.fa-chevron-up:before,
.fa-brands.fa-chevron-up:before,
.icon-chevron-up:before,
.icon.icon-chevron-up:before { content: "\f077" !important; }

.fa-child:before,
.fa.fa-child:before,
.fas.fa-child:before,
.far.fa-child:before,
.fab.fa-child:before,
.fa-solid.fa-child:before,
.fa-regular.fa-child:before,
.fa-brands.fa-child:before,
.icon-child:before,
.icon.icon-child:before { content: "\f1ae" !important; }

.fa-chrome:before,
.fa.fa-chrome:before,
.fas.fa-chrome:before,
.far.fa-chrome:before,
.fab.fa-chrome:before,
.fa-solid.fa-chrome:before,
.fa-regular.fa-chrome:before,
.fa-brands.fa-chrome:before,
.icon-chrome:before,
.icon.icon-chrome:before { content: "\f268" !important; }

.fa-circle:before,
.fa.fa-circle:before,
.fas.fa-circle:before,
.far.fa-circle:before,
.fab.fa-circle:before,
.fa-solid.fa-circle:before,
.fa-regular.fa-circle:before,
.fa-brands.fa-circle:before,
.icon-circle:before,
.icon.icon-circle:before { content: "\f111" !important; }

.fa-circle-o:before,
.fa.fa-circle-o:before,
.fas.fa-circle-o:before,
.far.fa-circle-o:before,
.fab.fa-circle-o:before,
.fa-solid.fa-circle-o:before,
.fa-regular.fa-circle-o:before,
.fa-brands.fa-circle-o:before,
.icon-circle-o:before,
.icon.icon-circle-o:before { content: "\f10c" !important; }

.fa-circle-o-notch:before,
.fa.fa-circle-o-notch:before,
.fas.fa-circle-o-notch:before,
.far.fa-circle-o-notch:before,
.fab.fa-circle-o-notch:before,
.fa-solid.fa-circle-o-notch:before,
.fa-regular.fa-circle-o-notch:before,
.fa-brands.fa-circle-o-notch:before,
.icon-circle-o-notch:before,
.icon.icon-circle-o-notch:before { content: "\f1ce" !important; }

.fa-circle-thin:before,
.fa.fa-circle-thin:before,
.fas.fa-circle-thin:before,
.far.fa-circle-thin:before,
.fab.fa-circle-thin:before,
.fa-solid.fa-circle-thin:before,
.fa-regular.fa-circle-thin:before,
.fa-brands.fa-circle-thin:before,
.icon-circle-thin:before,
.icon.icon-circle-thin:before { content: "\f1db" !important; }

.fa-clipboard:before,
.fa.fa-clipboard:before,
.fas.fa-clipboard:before,
.far.fa-clipboard:before,
.fab.fa-clipboard:before,
.fa-solid.fa-clipboard:before,
.fa-regular.fa-clipboard:before,
.fa-brands.fa-clipboard:before,
.icon-clipboard:before,
.icon.icon-clipboard:before { content: "\f0ea" !important; }

.fa-clock-o:before,
.fa.fa-clock-o:before,
.fas.fa-clock-o:before,
.far.fa-clock-o:before,
.fab.fa-clock-o:before,
.fa-solid.fa-clock-o:before,
.fa-regular.fa-clock-o:before,
.fa-brands.fa-clock-o:before,
.icon-clock-o:before,
.icon.icon-clock-o:before { content: "\f017" !important; }

.fa-clone:before,
.fa.fa-clone:before,
.fas.fa-clone:before,
.far.fa-clone:before,
.fab.fa-clone:before,
.fa-solid.fa-clone:before,
.fa-regular.fa-clone:before,
.fa-brands.fa-clone:before,
.icon-clone:before,
.icon.icon-clone:before { content: "\f24d" !important; }

.fa-close:before,
.fa.fa-close:before,
.fas.fa-close:before,
.far.fa-close:before,
.fab.fa-close:before,
.fa-solid.fa-close:before,
.fa-regular.fa-close:before,
.fa-brands.fa-close:before,
.icon-close:before,
.icon.icon-close:before { content: "\f00d" !important; }

.fa-cloud:before,
.fa.fa-cloud:before,
.fas.fa-cloud:before,
.far.fa-cloud:before,
.fab.fa-cloud:before,
.fa-solid.fa-cloud:before,
.fa-regular.fa-cloud:before,
.fa-brands.fa-cloud:before,
.icon-cloud:before,
.icon.icon-cloud:before { content: "\f0c2" !important; }

.fa-cloud-download:before,
.fa.fa-cloud-download:before,
.fas.fa-cloud-download:before,
.far.fa-cloud-download:before,
.fab.fa-cloud-download:before,
.fa-solid.fa-cloud-download:before,
.fa-regular.fa-cloud-download:before,
.fa-brands.fa-cloud-download:before,
.icon-cloud-download:before,
.icon.icon-cloud-download:before { content: "\f0ed" !important; }

.fa-cloud-upload:before,
.fa.fa-cloud-upload:before,
.fas.fa-cloud-upload:before,
.far.fa-cloud-upload:before,
.fab.fa-cloud-upload:before,
.fa-solid.fa-cloud-upload:before,
.fa-regular.fa-cloud-upload:before,
.fa-brands.fa-cloud-upload:before,
.icon-cloud-upload:before,
.icon.icon-cloud-upload:before { content: "\f0ee" !important; }

.fa-cny:before,
.fa.fa-cny:before,
.fas.fa-cny:before,
.far.fa-cny:before,
.fab.fa-cny:before,
.fa-solid.fa-cny:before,
.fa-regular.fa-cny:before,
.fa-brands.fa-cny:before,
.icon-cny:before,
.icon.icon-cny:before { content: "\f157" !important; }

.fa-code:before,
.fa.fa-code:before,
.fas.fa-code:before,
.far.fa-code:before,
.fab.fa-code:before,
.fa-solid.fa-code:before,
.fa-regular.fa-code:before,
.fa-brands.fa-code:before,
.icon-code:before,
.icon.icon-code:before { content: "\f121" !important; }

.fa-code-fork:before,
.fa.fa-code-fork:before,
.fas.fa-code-fork:before,
.far.fa-code-fork:before,
.fab.fa-code-fork:before,
.fa-solid.fa-code-fork:before,
.fa-regular.fa-code-fork:before,
.fa-brands.fa-code-fork:before,
.icon-code-fork:before,
.icon.icon-code-fork:before { content: "\f126" !important; }

.fa-codepen:before,
.fa.fa-codepen:before,
.fas.fa-codepen:before,
.far.fa-codepen:before,
.fab.fa-codepen:before,
.fa-solid.fa-codepen:before,
.fa-regular.fa-codepen:before,
.fa-brands.fa-codepen:before,
.icon-codepen:before,
.icon.icon-codepen:before { content: "\f1cb" !important; }

.fa-codiepie:before,
.fa.fa-codiepie:before,
.fas.fa-codiepie:before,
.far.fa-codiepie:before,
.fab.fa-codiepie:before,
.fa-solid.fa-codiepie:before,
.fa-regular.fa-codiepie:before,
.fa-brands.fa-codiepie:before,
.icon-codiepie:before,
.icon.icon-codiepie:before { content: "\f284" !important; }

.fa-coffee:before,
.fa.fa-coffee:before,
.fas.fa-coffee:before,
.far.fa-coffee:before,
.fab.fa-coffee:before,
.fa-solid.fa-coffee:before,
.fa-regular.fa-coffee:before,
.fa-brands.fa-coffee:before,
.icon-coffee:before,
.icon.icon-coffee:before { content: "\f0f4" !important; }

.fa-cog:before,
.fa.fa-cog:before,
.fas.fa-cog:before,
.far.fa-cog:before,
.fab.fa-cog:before,
.fa-solid.fa-cog:before,
.fa-regular.fa-cog:before,
.fa-brands.fa-cog:before,
.icon-cog:before,
.icon.icon-cog:before { content: "\f013" !important; }

.fa-cogs:before,
.fa.fa-cogs:before,
.fas.fa-cogs:before,
.far.fa-cogs:before,
.fab.fa-cogs:before,
.fa-solid.fa-cogs:before,
.fa-regular.fa-cogs:before,
.fa-brands.fa-cogs:before,
.icon-cogs:before,
.icon.icon-cogs:before { content: "\f085" !important; }

.fa-columns:before,
.fa.fa-columns:before,
.fas.fa-columns:before,
.far.fa-columns:before,
.fab.fa-columns:before,
.fa-solid.fa-columns:before,
.fa-regular.fa-columns:before,
.fa-brands.fa-columns:before,
.icon-columns:before,
.icon.icon-columns:before { content: "\f0db" !important; }

.fa-comment:before,
.fa.fa-comment:before,
.fas.fa-comment:before,
.far.fa-comment:before,
.fab.fa-comment:before,
.fa-solid.fa-comment:before,
.fa-regular.fa-comment:before,
.fa-brands.fa-comment:before,
.icon-comment:before,
.icon.icon-comment:before { content: "\f075" !important; }

.fa-comment-o:before,
.fa.fa-comment-o:before,
.fas.fa-comment-o:before,
.far.fa-comment-o:before,
.fab.fa-comment-o:before,
.fa-solid.fa-comment-o:before,
.fa-regular.fa-comment-o:before,
.fa-brands.fa-comment-o:before,
.icon-comment-o:before,
.icon.icon-comment-o:before { content: "\f0e5" !important; }

.fa-commenting:before,
.fa.fa-commenting:before,
.fas.fa-commenting:before,
.far.fa-commenting:before,
.fab.fa-commenting:before,
.fa-solid.fa-commenting:before,
.fa-regular.fa-commenting:before,
.fa-brands.fa-commenting:before,
.icon-commenting:before,
.icon.icon-commenting:before { content: "\f27a" !important; }

.fa-commenting-o:before,
.fa.fa-commenting-o:before,
.fas.fa-commenting-o:before,
.far.fa-commenting-o:before,
.fab.fa-commenting-o:before,
.fa-solid.fa-commenting-o:before,
.fa-regular.fa-commenting-o:before,
.fa-brands.fa-commenting-o:before,
.icon-commenting-o:before,
.icon.icon-commenting-o:before { content: "\f27b" !important; }

.fa-comments:before,
.fa.fa-comments:before,
.fas.fa-comments:before,
.far.fa-comments:before,
.fab.fa-comments:before,
.fa-solid.fa-comments:before,
.fa-regular.fa-comments:before,
.fa-brands.fa-comments:before,
.icon-comments:before,
.icon.icon-comments:before { content: "\f086" !important; }

.fa-comments-o:before,
.fa.fa-comments-o:before,
.fas.fa-comments-o:before,
.far.fa-comments-o:before,
.fab.fa-comments-o:before,
.fa-solid.fa-comments-o:before,
.fa-regular.fa-comments-o:before,
.fa-brands.fa-comments-o:before,
.icon-comments-o:before,
.icon.icon-comments-o:before { content: "\f0e6" !important; }

.fa-compass:before,
.fa.fa-compass:before,
.fas.fa-compass:before,
.far.fa-compass:before,
.fab.fa-compass:before,
.fa-solid.fa-compass:before,
.fa-regular.fa-compass:before,
.fa-brands.fa-compass:before,
.icon-compass:before,
.icon.icon-compass:before { content: "\f14e" !important; }

.fa-compress:before,
.fa.fa-compress:before,
.fas.fa-compress:before,
.far.fa-compress:before,
.fab.fa-compress:before,
.fa-solid.fa-compress:before,
.fa-regular.fa-compress:before,
.fa-brands.fa-compress:before,
.icon-compress:before,
.icon.icon-compress:before { content: "\f066" !important; }

.fa-connectdevelop:before,
.fa.fa-connectdevelop:before,
.fas.fa-connectdevelop:before,
.far.fa-connectdevelop:before,
.fab.fa-connectdevelop:before,
.fa-solid.fa-connectdevelop:before,
.fa-regular.fa-connectdevelop:before,
.fa-brands.fa-connectdevelop:before,
.icon-connectdevelop:before,
.icon.icon-connectdevelop:before { content: "\f20e" !important; }

.fa-contao:before,
.fa.fa-contao:before,
.fas.fa-contao:before,
.far.fa-contao:before,
.fab.fa-contao:before,
.fa-solid.fa-contao:before,
.fa-regular.fa-contao:before,
.fa-brands.fa-contao:before,
.icon-contao:before,
.icon.icon-contao:before { content: "\f26d" !important; }

.fa-copy:before,
.fa.fa-copy:before,
.fas.fa-copy:before,
.far.fa-copy:before,
.fab.fa-copy:before,
.fa-solid.fa-copy:before,
.fa-regular.fa-copy:before,
.fa-brands.fa-copy:before,
.icon-copy:before,
.icon.icon-copy:before { content: "\f0c5" !important; }

.fa-copyright:before,
.fa.fa-copyright:before,
.fas.fa-copyright:before,
.far.fa-copyright:before,
.fab.fa-copyright:before,
.fa-solid.fa-copyright:before,
.fa-regular.fa-copyright:before,
.fa-brands.fa-copyright:before,
.icon-copyright:before,
.icon.icon-copyright:before { content: "\f1f9" !important; }

.fa-creative-commons:before,
.fa.fa-creative-commons:before,
.fas.fa-creative-commons:before,
.far.fa-creative-commons:before,
.fab.fa-creative-commons:before,
.fa-solid.fa-creative-commons:before,
.fa-regular.fa-creative-commons:before,
.fa-brands.fa-creative-commons:before,
.icon-creative-commons:before,
.icon.icon-creative-commons:before { content: "\f25e" !important; }

.fa-credit-card:before,
.fa.fa-credit-card:before,
.fas.fa-credit-card:before,
.far.fa-credit-card:before,
.fab.fa-credit-card:before,
.fa-solid.fa-credit-card:before,
.fa-regular.fa-credit-card:before,
.fa-brands.fa-credit-card:before,
.icon-credit-card:before,
.icon.icon-credit-card:before { content: "\f09d" !important; }

.fa-credit-card-alt:before,
.fa.fa-credit-card-alt:before,
.fas.fa-credit-card-alt:before,
.far.fa-credit-card-alt:before,
.fab.fa-credit-card-alt:before,
.fa-solid.fa-credit-card-alt:before,
.fa-regular.fa-credit-card-alt:before,
.fa-brands.fa-credit-card-alt:before,
.icon-credit-card-alt:before,
.icon.icon-credit-card-alt:before { content: "\f283" !important; }

.fa-crop:before,
.fa.fa-crop:before,
.fas.fa-crop:before,
.far.fa-crop:before,
.fab.fa-crop:before,
.fa-solid.fa-crop:before,
.fa-regular.fa-crop:before,
.fa-brands.fa-crop:before,
.icon-crop:before,
.icon.icon-crop:before { content: "\f125" !important; }

.fa-crosshairs:before,
.fa.fa-crosshairs:before,
.fas.fa-crosshairs:before,
.far.fa-crosshairs:before,
.fab.fa-crosshairs:before,
.fa-solid.fa-crosshairs:before,
.fa-regular.fa-crosshairs:before,
.fa-brands.fa-crosshairs:before,
.icon-crosshairs:before,
.icon.icon-crosshairs:before { content: "\f05b" !important; }

.fa-css3:before,
.fa.fa-css3:before,
.fas.fa-css3:before,
.far.fa-css3:before,
.fab.fa-css3:before,
.fa-solid.fa-css3:before,
.fa-regular.fa-css3:before,
.fa-brands.fa-css3:before,
.icon-css3:before,
.icon.icon-css3:before { content: "\f13c" !important; }

.fa-cube:before,
.fa.fa-cube:before,
.fas.fa-cube:before,
.far.fa-cube:before,
.fab.fa-cube:before,
.fa-solid.fa-cube:before,
.fa-regular.fa-cube:before,
.fa-brands.fa-cube:before,
.icon-cube:before,
.icon.icon-cube:before { content: "\f1b2" !important; }

.fa-cubes:before,
.fa.fa-cubes:before,
.fas.fa-cubes:before,
.far.fa-cubes:before,
.fab.fa-cubes:before,
.fa-solid.fa-cubes:before,
.fa-regular.fa-cubes:before,
.fa-brands.fa-cubes:before,
.icon-cubes:before,
.icon.icon-cubes:before { content: "\f1b3" !important; }

.fa-cut:before,
.fa.fa-cut:before,
.fas.fa-cut:before,
.far.fa-cut:before,
.fab.fa-cut:before,
.fa-solid.fa-cut:before,
.fa-regular.fa-cut:before,
.fa-brands.fa-cut:before,
.icon-cut:before,
.icon.icon-cut:before { content: "\f0c4" !important; }

.fa-cutlery:before,
.fa.fa-cutlery:before,
.fas.fa-cutlery:before,
.far.fa-cutlery:before,
.fab.fa-cutlery:before,
.fa-solid.fa-cutlery:before,
.fa-regular.fa-cutlery:before,
.fa-brands.fa-cutlery:before,
.icon-cutlery:before,
.icon.icon-cutlery:before { content: "\f0f5" !important; }

.fa-dashboard:before,
.fa.fa-dashboard:before,
.fas.fa-dashboard:before,
.far.fa-dashboard:before,
.fab.fa-dashboard:before,
.fa-solid.fa-dashboard:before,
.fa-regular.fa-dashboard:before,
.fa-brands.fa-dashboard:before,
.icon-dashboard:before,
.icon.icon-dashboard:before { content: "\f0e4" !important; }

.fa-dashcube:before,
.fa.fa-dashcube:before,
.fas.fa-dashcube:before,
.far.fa-dashcube:before,
.fab.fa-dashcube:before,
.fa-solid.fa-dashcube:before,
.fa-regular.fa-dashcube:before,
.fa-brands.fa-dashcube:before,
.icon-dashcube:before,
.icon.icon-dashcube:before { content: "\f210" !important; }

.fa-database:before,
.fa.fa-database:before,
.fas.fa-database:before,
.far.fa-database:before,
.fab.fa-database:before,
.fa-solid.fa-database:before,
.fa-regular.fa-database:before,
.fa-brands.fa-database:before,
.icon-database:before,
.icon.icon-database:before { content: "\f1c0" !important; }

.fa-deaf:before,
.fa.fa-deaf:before,
.fas.fa-deaf:before,
.far.fa-deaf:before,
.fab.fa-deaf:before,
.fa-solid.fa-deaf:before,
.fa-regular.fa-deaf:before,
.fa-brands.fa-deaf:before,
.icon-deaf:before,
.icon.icon-deaf:before { content: "\f2a4" !important; }

.fa-deafness:before,
.fa.fa-deafness:before,
.fas.fa-deafness:before,
.far.fa-deafness:before,
.fab.fa-deafness:before,
.fa-solid.fa-deafness:before,
.fa-regular.fa-deafness:before,
.fa-brands.fa-deafness:before,
.icon-deafness:before,
.icon.icon-deafness:before { content: "\f2a4" !important; }

.fa-dedent:before,
.fa.fa-dedent:before,
.fas.fa-dedent:before,
.far.fa-dedent:before,
.fab.fa-dedent:before,
.fa-solid.fa-dedent:before,
.fa-regular.fa-dedent:before,
.fa-brands.fa-dedent:before,
.icon-dedent:before,
.icon.icon-dedent:before { content: "\f03b" !important; }

.fa-delicious:before,
.fa.fa-delicious:before,
.fas.fa-delicious:before,
.far.fa-delicious:before,
.fab.fa-delicious:before,
.fa-solid.fa-delicious:before,
.fa-regular.fa-delicious:before,
.fa-brands.fa-delicious:before,
.icon-delicious:before,
.icon.icon-delicious:before { content: "\f1a5" !important; }

.fa-desktop:before,
.fa.fa-desktop:before,
.fas.fa-desktop:before,
.far.fa-desktop:before,
.fab.fa-desktop:before,
.fa-solid.fa-desktop:before,
.fa-regular.fa-desktop:before,
.fa-brands.fa-desktop:before,
.icon-desktop:before,
.icon.icon-desktop:before { content: "\f108" !important; }

.fa-deviantart:before,
.fa.fa-deviantart:before,
.fas.fa-deviantart:before,
.far.fa-deviantart:before,
.fab.fa-deviantart:before,
.fa-solid.fa-deviantart:before,
.fa-regular.fa-deviantart:before,
.fa-brands.fa-deviantart:before,
.icon-deviantart:before,
.icon.icon-deviantart:before { content: "\f1bd" !important; }

.fa-diamond:before,
.fa.fa-diamond:before,
.fas.fa-diamond:before,
.far.fa-diamond:before,
.fab.fa-diamond:before,
.fa-solid.fa-diamond:before,
.fa-regular.fa-diamond:before,
.fa-brands.fa-diamond:before,
.icon-diamond:before,
.icon.icon-diamond:before { content: "\f219" !important; }

.fa-digg:before,
.fa.fa-digg:before,
.fas.fa-digg:before,
.far.fa-digg:before,
.fab.fa-digg:before,
.fa-solid.fa-digg:before,
.fa-regular.fa-digg:before,
.fa-brands.fa-digg:before,
.icon-digg:before,
.icon.icon-digg:before { content: "\f1a6" !important; }

.fa-dollar:before,
.fa.fa-dollar:before,
.fas.fa-dollar:before,
.far.fa-dollar:before,
.fab.fa-dollar:before,
.fa-solid.fa-dollar:before,
.fa-regular.fa-dollar:before,
.fa-brands.fa-dollar:before,
.icon-dollar:before,
.icon.icon-dollar:before { content: "\f155" !important; }

.fa-dot-circle-o:before,
.fa.fa-dot-circle-o:before,
.fas.fa-dot-circle-o:before,
.far.fa-dot-circle-o:before,
.fab.fa-dot-circle-o:before,
.fa-solid.fa-dot-circle-o:before,
.fa-regular.fa-dot-circle-o:before,
.fa-brands.fa-dot-circle-o:before,
.icon-dot-circle-o:before,
.icon.icon-dot-circle-o:before { content: "\f192" !important; }

.fa-download:before,
.fa.fa-download:before,
.fas.fa-download:before,
.far.fa-download:before,
.fab.fa-download:before,
.fa-solid.fa-download:before,
.fa-regular.fa-download:before,
.fa-brands.fa-download:before,
.icon-download:before,
.icon.icon-download:before { content: "\f019" !important; }

.fa-dribbble:before,
.fa.fa-dribbble:before,
.fas.fa-dribbble:before,
.far.fa-dribbble:before,
.fab.fa-dribbble:before,
.fa-solid.fa-dribbble:before,
.fa-regular.fa-dribbble:before,
.fa-brands.fa-dribbble:before,
.icon-dribbble:before,
.icon.icon-dribbble:before { content: "\f17d" !important; }

.fa-drivers-license:before,
.fa.fa-drivers-license:before,
.fas.fa-drivers-license:before,
.far.fa-drivers-license:before,
.fab.fa-drivers-license:before,
.fa-solid.fa-drivers-license:before,
.fa-regular.fa-drivers-license:before,
.fa-brands.fa-drivers-license:before,
.icon-drivers-license:before,
.icon.icon-drivers-license:before { content: "\f2c2" !important; }

.fa-drivers-license-o:before,
.fa.fa-drivers-license-o:before,
.fas.fa-drivers-license-o:before,
.far.fa-drivers-license-o:before,
.fab.fa-drivers-license-o:before,
.fa-solid.fa-drivers-license-o:before,
.fa-regular.fa-drivers-license-o:before,
.fa-brands.fa-drivers-license-o:before,
.icon-drivers-license-o:before,
.icon.icon-drivers-license-o:before { content: "\f2c3" !important; }

.fa-dropbox:before,
.fa.fa-dropbox:before,
.fas.fa-dropbox:before,
.far.fa-dropbox:before,
.fab.fa-dropbox:before,
.fa-solid.fa-dropbox:before,
.fa-regular.fa-dropbox:before,
.fa-brands.fa-dropbox:before,
.icon-dropbox:before,
.icon.icon-dropbox:before { content: "\f16b" !important; }

.fa-drupal:before,
.fa.fa-drupal:before,
.fas.fa-drupal:before,
.far.fa-drupal:before,
.fab.fa-drupal:before,
.fa-solid.fa-drupal:before,
.fa-regular.fa-drupal:before,
.fa-brands.fa-drupal:before,
.icon-drupal:before,
.icon.icon-drupal:before { content: "\f1a9" !important; }

.fa-edge:before,
.fa.fa-edge:before,
.fas.fa-edge:before,
.far.fa-edge:before,
.fab.fa-edge:before,
.fa-solid.fa-edge:before,
.fa-regular.fa-edge:before,
.fa-brands.fa-edge:before,
.icon-edge:before,
.icon.icon-edge:before { content: "\f282" !important; }

.fa-edit:before,
.fa.fa-edit:before,
.fas.fa-edit:before,
.far.fa-edit:before,
.fab.fa-edit:before,
.fa-solid.fa-edit:before,
.fa-regular.fa-edit:before,
.fa-brands.fa-edit:before,
.icon-edit:before,
.icon.icon-edit:before { content: "\f044" !important; }

.fa-eercast:before,
.fa.fa-eercast:before,
.fas.fa-eercast:before,
.far.fa-eercast:before,
.fab.fa-eercast:before,
.fa-solid.fa-eercast:before,
.fa-regular.fa-eercast:before,
.fa-brands.fa-eercast:before,
.icon-eercast:before,
.icon.icon-eercast:before { content: "\f2da" !important; }

.fa-eject:before,
.fa.fa-eject:before,
.fas.fa-eject:before,
.far.fa-eject:before,
.fab.fa-eject:before,
.fa-solid.fa-eject:before,
.fa-regular.fa-eject:before,
.fa-brands.fa-eject:before,
.icon-eject:before,
.icon.icon-eject:before { content: "\f052" !important; }

.fa-ellipsis-h:before,
.fa.fa-ellipsis-h:before,
.fas.fa-ellipsis-h:before,
.far.fa-ellipsis-h:before,
.fab.fa-ellipsis-h:before,
.fa-solid.fa-ellipsis-h:before,
.fa-regular.fa-ellipsis-h:before,
.fa-brands.fa-ellipsis-h:before,
.icon-ellipsis-h:before,
.icon.icon-ellipsis-h:before { content: "\f141" !important; }

.fa-ellipsis-v:before,
.fa.fa-ellipsis-v:before,
.fas.fa-ellipsis-v:before,
.far.fa-ellipsis-v:before,
.fab.fa-ellipsis-v:before,
.fa-solid.fa-ellipsis-v:before,
.fa-regular.fa-ellipsis-v:before,
.fa-brands.fa-ellipsis-v:before,
.icon-ellipsis-v:before,
.icon.icon-ellipsis-v:before { content: "\f142" !important; }

.fa-empire:before,
.fa.fa-empire:before,
.fas.fa-empire:before,
.far.fa-empire:before,
.fab.fa-empire:before,
.fa-solid.fa-empire:before,
.fa-regular.fa-empire:before,
.fa-brands.fa-empire:before,
.icon-empire:before,
.icon.icon-empire:before { content: "\f1d1" !important; }

.fa-envelope:before,
.fa.fa-envelope:before,
.fas.fa-envelope:before,
.far.fa-envelope:before,
.fab.fa-envelope:before,
.fa-solid.fa-envelope:before,
.fa-regular.fa-envelope:before,
.fa-brands.fa-envelope:before,
.icon-envelope:before,
.icon.icon-envelope:before { content: "\f0e0" !important; }

.fa-envelope-o:before,
.fa.fa-envelope-o:before,
.fas.fa-envelope-o:before,
.far.fa-envelope-o:before,
.fab.fa-envelope-o:before,
.fa-solid.fa-envelope-o:before,
.fa-regular.fa-envelope-o:before,
.fa-brands.fa-envelope-o:before,
.icon-envelope-o:before,
.icon.icon-envelope-o:before { content: "\f003" !important; }

.fa-envelope-open:before,
.fa.fa-envelope-open:before,
.fas.fa-envelope-open:before,
.far.fa-envelope-open:before,
.fab.fa-envelope-open:before,
.fa-solid.fa-envelope-open:before,
.fa-regular.fa-envelope-open:before,
.fa-brands.fa-envelope-open:before,
.icon-envelope-open:before,
.icon.icon-envelope-open:before { content: "\f2b6" !important; }

.fa-envelope-open-o:before,
.fa.fa-envelope-open-o:before,
.fas.fa-envelope-open-o:before,
.far.fa-envelope-open-o:before,
.fab.fa-envelope-open-o:before,
.fa-solid.fa-envelope-open-o:before,
.fa-regular.fa-envelope-open-o:before,
.fa-brands.fa-envelope-open-o:before,
.icon-envelope-open-o:before,
.icon.icon-envelope-open-o:before { content: "\f2b7" !important; }

.fa-envelope-square:before,
.fa.fa-envelope-square:before,
.fas.fa-envelope-square:before,
.far.fa-envelope-square:before,
.fab.fa-envelope-square:before,
.fa-solid.fa-envelope-square:before,
.fa-regular.fa-envelope-square:before,
.fa-brands.fa-envelope-square:before,
.icon-envelope-square:before,
.icon.icon-envelope-square:before { content: "\f199" !important; }

.fa-envira:before,
.fa.fa-envira:before,
.fas.fa-envira:before,
.far.fa-envira:before,
.fab.fa-envira:before,
.fa-solid.fa-envira:before,
.fa-regular.fa-envira:before,
.fa-brands.fa-envira:before,
.icon-envira:before,
.icon.icon-envira:before { content: "\f299" !important; }

.fa-eraser:before,
.fa.fa-eraser:before,
.fas.fa-eraser:before,
.far.fa-eraser:before,
.fab.fa-eraser:before,
.fa-solid.fa-eraser:before,
.fa-regular.fa-eraser:before,
.fa-brands.fa-eraser:before,
.icon-eraser:before,
.icon.icon-eraser:before { content: "\f12d" !important; }

.fa-etsy:before,
.fa.fa-etsy:before,
.fas.fa-etsy:before,
.far.fa-etsy:before,
.fab.fa-etsy:before,
.fa-solid.fa-etsy:before,
.fa-regular.fa-etsy:before,
.fa-brands.fa-etsy:before,
.icon-etsy:before,
.icon.icon-etsy:before { content: "\f2d7" !important; }

.fa-eur:before,
.fa.fa-eur:before,
.fas.fa-eur:before,
.far.fa-eur:before,
.fab.fa-eur:before,
.fa-solid.fa-eur:before,
.fa-regular.fa-eur:before,
.fa-brands.fa-eur:before,
.icon-eur:before,
.icon.icon-eur:before { content: "\f153" !important; }

.fa-euro:before,
.fa.fa-euro:before,
.fas.fa-euro:before,
.far.fa-euro:before,
.fab.fa-euro:before,
.fa-solid.fa-euro:before,
.fa-regular.fa-euro:before,
.fa-brands.fa-euro:before,
.icon-euro:before,
.icon.icon-euro:before { content: "\f153" !important; }

.fa-exchange:before,
.fa.fa-exchange:before,
.fas.fa-exchange:before,
.far.fa-exchange:before,
.fab.fa-exchange:before,
.fa-solid.fa-exchange:before,
.fa-regular.fa-exchange:before,
.fa-brands.fa-exchange:before,
.icon-exchange:before,
.icon.icon-exchange:before { content: "\f0ec" !important; }

.fa-exclamation:before,
.fa.fa-exclamation:before,
.fas.fa-exclamation:before,
.far.fa-exclamation:before,
.fab.fa-exclamation:before,
.fa-solid.fa-exclamation:before,
.fa-regular.fa-exclamation:before,
.fa-brands.fa-exclamation:before,
.icon-exclamation:before,
.icon.icon-exclamation:before { content: "\f12a" !important; }

.fa-exclamation-circle:before,
.fa.fa-exclamation-circle:before,
.fas.fa-exclamation-circle:before,
.far.fa-exclamation-circle:before,
.fab.fa-exclamation-circle:before,
.fa-solid.fa-exclamation-circle:before,
.fa-regular.fa-exclamation-circle:before,
.fa-brands.fa-exclamation-circle:before,
.icon-exclamation-circle:before,
.icon.icon-exclamation-circle:before { content: "\f06a" !important; }

.fa-exclamation-triangle:before,
.fa.fa-exclamation-triangle:before,
.fas.fa-exclamation-triangle:before,
.far.fa-exclamation-triangle:before,
.fab.fa-exclamation-triangle:before,
.fa-solid.fa-exclamation-triangle:before,
.fa-regular.fa-exclamation-triangle:before,
.fa-brands.fa-exclamation-triangle:before,
.icon-exclamation-triangle:before,
.icon.icon-exclamation-triangle:before { content: "\f071" !important; }

.fa-expand:before,
.fa.fa-expand:before,
.fas.fa-expand:before,
.far.fa-expand:before,
.fab.fa-expand:before,
.fa-solid.fa-expand:before,
.fa-regular.fa-expand:before,
.fa-brands.fa-expand:before,
.icon-expand:before,
.icon.icon-expand:before { content: "\f065" !important; }

.fa-expeditedssl:before,
.fa.fa-expeditedssl:before,
.fas.fa-expeditedssl:before,
.far.fa-expeditedssl:before,
.fab.fa-expeditedssl:before,
.fa-solid.fa-expeditedssl:before,
.fa-regular.fa-expeditedssl:before,
.fa-brands.fa-expeditedssl:before,
.icon-expeditedssl:before,
.icon.icon-expeditedssl:before { content: "\f23e" !important; }

.fa-external-link:before,
.fa.fa-external-link:before,
.fas.fa-external-link:before,
.far.fa-external-link:before,
.fab.fa-external-link:before,
.fa-solid.fa-external-link:before,
.fa-regular.fa-external-link:before,
.fa-brands.fa-external-link:before,
.icon-external-link:before,
.icon.icon-external-link:before { content: "\f08e" !important; }

.fa-external-link-square:before,
.fa.fa-external-link-square:before,
.fas.fa-external-link-square:before,
.far.fa-external-link-square:before,
.fab.fa-external-link-square:before,
.fa-solid.fa-external-link-square:before,
.fa-regular.fa-external-link-square:before,
.fa-brands.fa-external-link-square:before,
.icon-external-link-square:before,
.icon.icon-external-link-square:before { content: "\f14c" !important; }

.fa-eye:before,
.fa.fa-eye:before,
.fas.fa-eye:before,
.far.fa-eye:before,
.fab.fa-eye:before,
.fa-solid.fa-eye:before,
.fa-regular.fa-eye:before,
.fa-brands.fa-eye:before,
.icon-eye:before,
.icon.icon-eye:before { content: "\f06e" !important; }

.fa-eye-slash:before,
.fa.fa-eye-slash:before,
.fas.fa-eye-slash:before,
.far.fa-eye-slash:before,
.fab.fa-eye-slash:before,
.fa-solid.fa-eye-slash:before,
.fa-regular.fa-eye-slash:before,
.fa-brands.fa-eye-slash:before,
.icon-eye-slash:before,
.icon.icon-eye-slash:before { content: "\f070" !important; }

.fa-eyedropper:before,
.fa.fa-eyedropper:before,
.fas.fa-eyedropper:before,
.far.fa-eyedropper:before,
.fab.fa-eyedropper:before,
.fa-solid.fa-eyedropper:before,
.fa-regular.fa-eyedropper:before,
.fa-brands.fa-eyedropper:before,
.icon-eyedropper:before,
.icon.icon-eyedropper:before { content: "\f1fb" !important; }

.fa-fa:before,
.fa.fa-fa:before,
.fas.fa-fa:before,
.far.fa-fa:before,
.fab.fa-fa:before,
.fa-solid.fa-fa:before,
.fa-regular.fa-fa:before,
.fa-brands.fa-fa:before,
.icon-fa:before,
.icon.icon-fa:before { content: "\f2b4" !important; }

.fa-facebook:before,
.fa.fa-facebook:before,
.fas.fa-facebook:before,
.far.fa-facebook:before,
.fab.fa-facebook:before,
.fa-solid.fa-facebook:before,
.fa-regular.fa-facebook:before,
.fa-brands.fa-facebook:before,
.icon-facebook:before,
.icon.icon-facebook:before { content: "\f09a" !important; }

.fa-facebook-f:before,
.fa.fa-facebook-f:before,
.fas.fa-facebook-f:before,
.far.fa-facebook-f:before,
.fab.fa-facebook-f:before,
.fa-solid.fa-facebook-f:before,
.fa-regular.fa-facebook-f:before,
.fa-brands.fa-facebook-f:before,
.icon-facebook-f:before,
.icon.icon-facebook-f:before { content: "\f09a" !important; }

.fa-facebook-official:before,
.fa.fa-facebook-official:before,
.fas.fa-facebook-official:before,
.far.fa-facebook-official:before,
.fab.fa-facebook-official:before,
.fa-solid.fa-facebook-official:before,
.fa-regular.fa-facebook-official:before,
.fa-brands.fa-facebook-official:before,
.icon-facebook-official:before,
.icon.icon-facebook-official:before { content: "\f230" !important; }

.fa-facebook-square:before,
.fa.fa-facebook-square:before,
.fas.fa-facebook-square:before,
.far.fa-facebook-square:before,
.fab.fa-facebook-square:before,
.fa-solid.fa-facebook-square:before,
.fa-regular.fa-facebook-square:before,
.fa-brands.fa-facebook-square:before,
.icon-facebook-square:before,
.icon.icon-facebook-square:before { content: "\f082" !important; }

.fa-fast-backward:before,
.fa.fa-fast-backward:before,
.fas.fa-fast-backward:before,
.far.fa-fast-backward:before,
.fab.fa-fast-backward:before,
.fa-solid.fa-fast-backward:before,
.fa-regular.fa-fast-backward:before,
.fa-brands.fa-fast-backward:before,
.icon-fast-backward:before,
.icon.icon-fast-backward:before { content: "\f049" !important; }

.fa-fast-forward:before,
.fa.fa-fast-forward:before,
.fas.fa-fast-forward:before,
.far.fa-fast-forward:before,
.fab.fa-fast-forward:before,
.fa-solid.fa-fast-forward:before,
.fa-regular.fa-fast-forward:before,
.fa-brands.fa-fast-forward:before,
.icon-fast-forward:before,
.icon.icon-fast-forward:before { content: "\f050" !important; }

.fa-fax:before,
.fa.fa-fax:before,
.fas.fa-fax:before,
.far.fa-fax:before,
.fab.fa-fax:before,
.fa-solid.fa-fax:before,
.fa-regular.fa-fax:before,
.fa-brands.fa-fax:before,
.icon-fax:before,
.icon.icon-fax:before { content: "\f1ac" !important; }

.fa-feed:before,
.fa.fa-feed:before,
.fas.fa-feed:before,
.far.fa-feed:before,
.fab.fa-feed:before,
.fa-solid.fa-feed:before,
.fa-regular.fa-feed:before,
.fa-brands.fa-feed:before,
.icon-feed:before,
.icon.icon-feed:before { content: "\f09e" !important; }

.fa-female:before,
.fa.fa-female:before,
.fas.fa-female:before,
.far.fa-female:before,
.fab.fa-female:before,
.fa-solid.fa-female:before,
.fa-regular.fa-female:before,
.fa-brands.fa-female:before,
.icon-female:before,
.icon.icon-female:before { content: "\f182" !important; }

.fa-fighter-jet:before,
.fa.fa-fighter-jet:before,
.fas.fa-fighter-jet:before,
.far.fa-fighter-jet:before,
.fab.fa-fighter-jet:before,
.fa-solid.fa-fighter-jet:before,
.fa-regular.fa-fighter-jet:before,
.fa-brands.fa-fighter-jet:before,
.icon-fighter-jet:before,
.icon.icon-fighter-jet:before { content: "\f0fb" !important; }

.fa-file:before,
.fa.fa-file:before,
.fas.fa-file:before,
.far.fa-file:before,
.fab.fa-file:before,
.fa-solid.fa-file:before,
.fa-regular.fa-file:before,
.fa-brands.fa-file:before,
.icon-file:before,
.icon.icon-file:before { content: "\f15b" !important; }

.fa-file-archive-o:before,
.fa.fa-file-archive-o:before,
.fas.fa-file-archive-o:before,
.far.fa-file-archive-o:before,
.fab.fa-file-archive-o:before,
.fa-solid.fa-file-archive-o:before,
.fa-regular.fa-file-archive-o:before,
.fa-brands.fa-file-archive-o:before,
.icon-file-archive-o:before,
.icon.icon-file-archive-o:before { content: "\f1c6" !important; }

.fa-file-audio-o:before,
.fa.fa-file-audio-o:before,
.fas.fa-file-audio-o:before,
.far.fa-file-audio-o:before,
.fab.fa-file-audio-o:before,
.fa-solid.fa-file-audio-o:before,
.fa-regular.fa-file-audio-o:before,
.fa-brands.fa-file-audio-o:before,
.icon-file-audio-o:before,
.icon.icon-file-audio-o:before { content: "\f1c7" !important; }

.fa-file-code-o:before,
.fa.fa-file-code-o:before,
.fas.fa-file-code-o:before,
.far.fa-file-code-o:before,
.fab.fa-file-code-o:before,
.fa-solid.fa-file-code-o:before,
.fa-regular.fa-file-code-o:before,
.fa-brands.fa-file-code-o:before,
.icon-file-code-o:before,
.icon.icon-file-code-o:before { content: "\f1c9" !important; }

.fa-file-excel-o:before,
.fa.fa-file-excel-o:before,
.fas.fa-file-excel-o:before,
.far.fa-file-excel-o:before,
.fab.fa-file-excel-o:before,
.fa-solid.fa-file-excel-o:before,
.fa-regular.fa-file-excel-o:before,
.fa-brands.fa-file-excel-o:before,
.icon-file-excel-o:before,
.icon.icon-file-excel-o:before { content: "\f1c3" !important; }

.fa-file-image-o:before,
.fa.fa-file-image-o:before,
.fas.fa-file-image-o:before,
.far.fa-file-image-o:before,
.fab.fa-file-image-o:before,
.fa-solid.fa-file-image-o:before,
.fa-regular.fa-file-image-o:before,
.fa-brands.fa-file-image-o:before,
.icon-file-image-o:before,
.icon.icon-file-image-o:before { content: "\f1c5" !important; }

.fa-file-movie-o:before,
.fa.fa-file-movie-o:before,
.fas.fa-file-movie-o:before,
.far.fa-file-movie-o:before,
.fab.fa-file-movie-o:before,
.fa-solid.fa-file-movie-o:before,
.fa-regular.fa-file-movie-o:before,
.fa-brands.fa-file-movie-o:before,
.icon-file-movie-o:before,
.icon.icon-file-movie-o:before { content: "\f1c8" !important; }

.fa-file-o:before,
.fa.fa-file-o:before,
.fas.fa-file-o:before,
.far.fa-file-o:before,
.fab.fa-file-o:before,
.fa-solid.fa-file-o:before,
.fa-regular.fa-file-o:before,
.fa-brands.fa-file-o:before,
.icon-file-o:before,
.icon.icon-file-o:before { content: "\f016" !important; }

.fa-file-pdf-o:before,
.fa.fa-file-pdf-o:before,
.fas.fa-file-pdf-o:before,
.far.fa-file-pdf-o:before,
.fab.fa-file-pdf-o:before,
.fa-solid.fa-file-pdf-o:before,
.fa-regular.fa-file-pdf-o:before,
.fa-brands.fa-file-pdf-o:before,
.icon-file-pdf-o:before,
.icon.icon-file-pdf-o:before { content: "\f1c1" !important; }

.fa-file-photo-o:before,
.fa.fa-file-photo-o:before,
.fas.fa-file-photo-o:before,
.far.fa-file-photo-o:before,
.fab.fa-file-photo-o:before,
.fa-solid.fa-file-photo-o:before,
.fa-regular.fa-file-photo-o:before,
.fa-brands.fa-file-photo-o:before,
.icon-file-photo-o:before,
.icon.icon-file-photo-o:before { content: "\f1c5" !important; }

.fa-file-picture-o:before,
.fa.fa-file-picture-o:before,
.fas.fa-file-picture-o:before,
.far.fa-file-picture-o:before,
.fab.fa-file-picture-o:before,
.fa-solid.fa-file-picture-o:before,
.fa-regular.fa-file-picture-o:before,
.fa-brands.fa-file-picture-o:before,
.icon-file-picture-o:before,
.icon.icon-file-picture-o:before { content: "\f1c5" !important; }

.fa-file-powerpoint-o:before,
.fa.fa-file-powerpoint-o:before,
.fas.fa-file-powerpoint-o:before,
.far.fa-file-powerpoint-o:before,
.fab.fa-file-powerpoint-o:before,
.fa-solid.fa-file-powerpoint-o:before,
.fa-regular.fa-file-powerpoint-o:before,
.fa-brands.fa-file-powerpoint-o:before,
.icon-file-powerpoint-o:before,
.icon.icon-file-powerpoint-o:before { content: "\f1c4" !important; }

.fa-file-sound-o:before,
.fa.fa-file-sound-o:before,
.fas.fa-file-sound-o:before,
.far.fa-file-sound-o:before,
.fab.fa-file-sound-o:before,
.fa-solid.fa-file-sound-o:before,
.fa-regular.fa-file-sound-o:before,
.fa-brands.fa-file-sound-o:before,
.icon-file-sound-o:before,
.icon.icon-file-sound-o:before { content: "\f1c7" !important; }

.fa-file-text:before,
.fa.fa-file-text:before,
.fas.fa-file-text:before,
.far.fa-file-text:before,
.fab.fa-file-text:before,
.fa-solid.fa-file-text:before,
.fa-regular.fa-file-text:before,
.fa-brands.fa-file-text:before,
.icon-file-text:before,
.icon.icon-file-text:before { content: "\f15c" !important; }

.fa-file-text-o:before,
.fa.fa-file-text-o:before,
.fas.fa-file-text-o:before,
.far.fa-file-text-o:before,
.fab.fa-file-text-o:before,
.fa-solid.fa-file-text-o:before,
.fa-regular.fa-file-text-o:before,
.fa-brands.fa-file-text-o:before,
.icon-file-text-o:before,
.icon.icon-file-text-o:before { content: "\f0f6" !important; }

.fa-file-video-o:before,
.fa.fa-file-video-o:before,
.fas.fa-file-video-o:before,
.far.fa-file-video-o:before,
.fab.fa-file-video-o:before,
.fa-solid.fa-file-video-o:before,
.fa-regular.fa-file-video-o:before,
.fa-brands.fa-file-video-o:before,
.icon-file-video-o:before,
.icon.icon-file-video-o:before { content: "\f1c8" !important; }

.fa-file-word-o:before,
.fa.fa-file-word-o:before,
.fas.fa-file-word-o:before,
.far.fa-file-word-o:before,
.fab.fa-file-word-o:before,
.fa-solid.fa-file-word-o:before,
.fa-regular.fa-file-word-o:before,
.fa-brands.fa-file-word-o:before,
.icon-file-word-o:before,
.icon.icon-file-word-o:before { content: "\f1c2" !important; }

.fa-file-zip-o:before,
.fa.fa-file-zip-o:before,
.fas.fa-file-zip-o:before,
.far.fa-file-zip-o:before,
.fab.fa-file-zip-o:before,
.fa-solid.fa-file-zip-o:before,
.fa-regular.fa-file-zip-o:before,
.fa-brands.fa-file-zip-o:before,
.icon-file-zip-o:before,
.icon.icon-file-zip-o:before { content: "\f1c6" !important; }

.fa-files-o:before,
.fa.fa-files-o:before,
.fas.fa-files-o:before,
.far.fa-files-o:before,
.fab.fa-files-o:before,
.fa-solid.fa-files-o:before,
.fa-regular.fa-files-o:before,
.fa-brands.fa-files-o:before,
.icon-files-o:before,
.icon.icon-files-o:before { content: "\f0c5" !important; }

.fa-film:before,
.fa.fa-film:before,
.fas.fa-film:before,
.far.fa-film:before,
.fab.fa-film:before,
.fa-solid.fa-film:before,
.fa-regular.fa-film:before,
.fa-brands.fa-film:before,
.icon-film:before,
.icon.icon-film:before { content: "\f008" !important; }

.fa-filter:before,
.fa.fa-filter:before,
.fas.fa-filter:before,
.far.fa-filter:before,
.fab.fa-filter:before,
.fa-solid.fa-filter:before,
.fa-regular.fa-filter:before,
.fa-brands.fa-filter:before,
.icon-filter:before,
.icon.icon-filter:before { content: "\f0b0" !important; }

.fa-fire:before,
.fa.fa-fire:before,
.fas.fa-fire:before,
.far.fa-fire:before,
.fab.fa-fire:before,
.fa-solid.fa-fire:before,
.fa-regular.fa-fire:before,
.fa-brands.fa-fire:before,
.icon-fire:before,
.icon.icon-fire:before { content: "\f06d" !important; }

.fa-fire-extinguisher:before,
.fa.fa-fire-extinguisher:before,
.fas.fa-fire-extinguisher:before,
.far.fa-fire-extinguisher:before,
.fab.fa-fire-extinguisher:before,
.fa-solid.fa-fire-extinguisher:before,
.fa-regular.fa-fire-extinguisher:before,
.fa-brands.fa-fire-extinguisher:before,
.icon-fire-extinguisher:before,
.icon.icon-fire-extinguisher:before { content: "\f134" !important; }

.fa-firefox:before,
.fa.fa-firefox:before,
.fas.fa-firefox:before,
.far.fa-firefox:before,
.fab.fa-firefox:before,
.fa-solid.fa-firefox:before,
.fa-regular.fa-firefox:before,
.fa-brands.fa-firefox:before,
.icon-firefox:before,
.icon.icon-firefox:before { content: "\f269" !important; }

.fa-first-order:before,
.fa.fa-first-order:before,
.fas.fa-first-order:before,
.far.fa-first-order:before,
.fab.fa-first-order:before,
.fa-solid.fa-first-order:before,
.fa-regular.fa-first-order:before,
.fa-brands.fa-first-order:before,
.icon-first-order:before,
.icon.icon-first-order:before { content: "\f2b0" !important; }

.fa-flag:before,
.fa.fa-flag:before,
.fas.fa-flag:before,
.far.fa-flag:before,
.fab.fa-flag:before,
.fa-solid.fa-flag:before,
.fa-regular.fa-flag:before,
.fa-brands.fa-flag:before,
.icon-flag:before,
.icon.icon-flag:before { content: "\f024" !important; }

.fa-flag-checkered:before,
.fa.fa-flag-checkered:before,
.fas.fa-flag-checkered:before,
.far.fa-flag-checkered:before,
.fab.fa-flag-checkered:before,
.fa-solid.fa-flag-checkered:before,
.fa-regular.fa-flag-checkered:before,
.fa-brands.fa-flag-checkered:before,
.icon-flag-checkered:before,
.icon.icon-flag-checkered:before { content: "\f11e" !important; }

.fa-flag-o:before,
.fa.fa-flag-o:before,
.fas.fa-flag-o:before,
.far.fa-flag-o:before,
.fab.fa-flag-o:before,
.fa-solid.fa-flag-o:before,
.fa-regular.fa-flag-o:before,
.fa-brands.fa-flag-o:before,
.icon-flag-o:before,
.icon.icon-flag-o:before { content: "\f11d" !important; }

.fa-flash:before,
.fa.fa-flash:before,
.fas.fa-flash:before,
.far.fa-flash:before,
.fab.fa-flash:before,
.fa-solid.fa-flash:before,
.fa-regular.fa-flash:before,
.fa-brands.fa-flash:before,
.icon-flash:before,
.icon.icon-flash:before { content: "\f0e7" !important; }

.fa-flask:before,
.fa.fa-flask:before,
.fas.fa-flask:before,
.far.fa-flask:before,
.fab.fa-flask:before,
.fa-solid.fa-flask:before,
.fa-regular.fa-flask:before,
.fa-brands.fa-flask:before,
.icon-flask:before,
.icon.icon-flask:before { content: "\f0c3" !important; }

.fa-flickr:before,
.fa.fa-flickr:before,
.fas.fa-flickr:before,
.far.fa-flickr:before,
.fab.fa-flickr:before,
.fa-solid.fa-flickr:before,
.fa-regular.fa-flickr:before,
.fa-brands.fa-flickr:before,
.icon-flickr:before,
.icon.icon-flickr:before { content: "\f16e" !important; }

.fa-floppy-o:before,
.fa.fa-floppy-o:before,
.fas.fa-floppy-o:before,
.far.fa-floppy-o:before,
.fab.fa-floppy-o:before,
.fa-solid.fa-floppy-o:before,
.fa-regular.fa-floppy-o:before,
.fa-brands.fa-floppy-o:before,
.icon-floppy-o:before,
.icon.icon-floppy-o:before { content: "\f0c7" !important; }

.fa-folder:before,
.fa.fa-folder:before,
.fas.fa-folder:before,
.far.fa-folder:before,
.fab.fa-folder:before,
.fa-solid.fa-folder:before,
.fa-regular.fa-folder:before,
.fa-brands.fa-folder:before,
.icon-folder:before,
.icon.icon-folder:before { content: "\f07b" !important; }

.fa-folder-o:before,
.fa.fa-folder-o:before,
.fas.fa-folder-o:before,
.far.fa-folder-o:before,
.fab.fa-folder-o:before,
.fa-solid.fa-folder-o:before,
.fa-regular.fa-folder-o:before,
.fa-brands.fa-folder-o:before,
.icon-folder-o:before,
.icon.icon-folder-o:before { content: "\f114" !important; }

.fa-folder-open:before,
.fa.fa-folder-open:before,
.fas.fa-folder-open:before,
.far.fa-folder-open:before,
.fab.fa-folder-open:before,
.fa-solid.fa-folder-open:before,
.fa-regular.fa-folder-open:before,
.fa-brands.fa-folder-open:before,
.icon-folder-open:before,
.icon.icon-folder-open:before { content: "\f07c" !important; }

.fa-folder-open-o:before,
.fa.fa-folder-open-o:before,
.fas.fa-folder-open-o:before,
.far.fa-folder-open-o:before,
.fab.fa-folder-open-o:before,
.fa-solid.fa-folder-open-o:before,
.fa-regular.fa-folder-open-o:before,
.fa-brands.fa-folder-open-o:before,
.icon-folder-open-o:before,
.icon.icon-folder-open-o:before { content: "\f115" !important; }

.fa-font:before,
.fa.fa-font:before,
.fas.fa-font:before,
.far.fa-font:before,
.fab.fa-font:before,
.fa-solid.fa-font:before,
.fa-regular.fa-font:before,
.fa-brands.fa-font:before,
.icon-font:before,
.icon.icon-font:before { content: "\f031" !important; }

.fa-font-awesome:before,
.fa.fa-font-awesome:before,
.fas.fa-font-awesome:before,
.far.fa-font-awesome:before,
.fab.fa-font-awesome:before,
.fa-solid.fa-font-awesome:before,
.fa-regular.fa-font-awesome:before,
.fa-brands.fa-font-awesome:before,
.icon-font-awesome:before,
.icon.icon-font-awesome:before { content: "\f2b4" !important; }

.fa-fonticons:before,
.fa.fa-fonticons:before,
.fas.fa-fonticons:before,
.far.fa-fonticons:before,
.fab.fa-fonticons:before,
.fa-solid.fa-fonticons:before,
.fa-regular.fa-fonticons:before,
.fa-brands.fa-fonticons:before,
.icon-fonticons:before,
.icon.icon-fonticons:before { content: "\f280" !important; }

.fa-fort-awesome:before,
.fa.fa-fort-awesome:before,
.fas.fa-fort-awesome:before,
.far.fa-fort-awesome:before,
.fab.fa-fort-awesome:before,
.fa-solid.fa-fort-awesome:before,
.fa-regular.fa-fort-awesome:before,
.fa-brands.fa-fort-awesome:before,
.icon-fort-awesome:before,
.icon.icon-fort-awesome:before { content: "\f286" !important; }

.fa-forumbee:before,
.fa.fa-forumbee:before,
.fas.fa-forumbee:before,
.far.fa-forumbee:before,
.fab.fa-forumbee:before,
.fa-solid.fa-forumbee:before,
.fa-regular.fa-forumbee:before,
.fa-brands.fa-forumbee:before,
.icon-forumbee:before,
.icon.icon-forumbee:before { content: "\f211" !important; }

.fa-forward:before,
.fa.fa-forward:before,
.fas.fa-forward:before,
.far.fa-forward:before,
.fab.fa-forward:before,
.fa-solid.fa-forward:before,
.fa-regular.fa-forward:before,
.fa-brands.fa-forward:before,
.icon-forward:before,
.icon.icon-forward:before { content: "\f04e" !important; }

.fa-foursquare:before,
.fa.fa-foursquare:before,
.fas.fa-foursquare:before,
.far.fa-foursquare:before,
.fab.fa-foursquare:before,
.fa-solid.fa-foursquare:before,
.fa-regular.fa-foursquare:before,
.fa-brands.fa-foursquare:before,
.icon-foursquare:before,
.icon.icon-foursquare:before { content: "\f180" !important; }

.fa-free-code-camp:before,
.fa.fa-free-code-camp:before,
.fas.fa-free-code-camp:before,
.far.fa-free-code-camp:before,
.fab.fa-free-code-camp:before,
.fa-solid.fa-free-code-camp:before,
.fa-regular.fa-free-code-camp:before,
.fa-brands.fa-free-code-camp:before,
.icon-free-code-camp:before,
.icon.icon-free-code-camp:before { content: "\f2c5" !important; }

.fa-frown-o:before,
.fa.fa-frown-o:before,
.fas.fa-frown-o:before,
.far.fa-frown-o:before,
.fab.fa-frown-o:before,
.fa-solid.fa-frown-o:before,
.fa-regular.fa-frown-o:before,
.fa-brands.fa-frown-o:before,
.icon-frown-o:before,
.icon.icon-frown-o:before { content: "\f119" !important; }

.fa-futbol-o:before,
.fa.fa-futbol-o:before,
.fas.fa-futbol-o:before,
.far.fa-futbol-o:before,
.fab.fa-futbol-o:before,
.fa-solid.fa-futbol-o:before,
.fa-regular.fa-futbol-o:before,
.fa-brands.fa-futbol-o:before,
.icon-futbol-o:before,
.icon.icon-futbol-o:before { content: "\f1e3" !important; }

.fa-gamepad:before,
.fa.fa-gamepad:before,
.fas.fa-gamepad:before,
.far.fa-gamepad:before,
.fab.fa-gamepad:before,
.fa-solid.fa-gamepad:before,
.fa-regular.fa-gamepad:before,
.fa-brands.fa-gamepad:before,
.icon-gamepad:before,
.icon.icon-gamepad:before { content: "\f11b" !important; }

.fa-gavel:before,
.fa.fa-gavel:before,
.fas.fa-gavel:before,
.far.fa-gavel:before,
.fab.fa-gavel:before,
.fa-solid.fa-gavel:before,
.fa-regular.fa-gavel:before,
.fa-brands.fa-gavel:before,
.icon-gavel:before,
.icon.icon-gavel:before { content: "\f0e3" !important; }

.fa-gbp:before,
.fa.fa-gbp:before,
.fas.fa-gbp:before,
.far.fa-gbp:before,
.fab.fa-gbp:before,
.fa-solid.fa-gbp:before,
.fa-regular.fa-gbp:before,
.fa-brands.fa-gbp:before,
.icon-gbp:before,
.icon.icon-gbp:before { content: "\f154" !important; }

.fa-ge:before,
.fa.fa-ge:before,
.fas.fa-ge:before,
.far.fa-ge:before,
.fab.fa-ge:before,
.fa-solid.fa-ge:before,
.fa-regular.fa-ge:before,
.fa-brands.fa-ge:before,
.icon-ge:before,
.icon.icon-ge:before { content: "\f1d1" !important; }

.fa-gear:before,
.fa.fa-gear:before,
.fas.fa-gear:before,
.far.fa-gear:before,
.fab.fa-gear:before,
.fa-solid.fa-gear:before,
.fa-regular.fa-gear:before,
.fa-brands.fa-gear:before,
.icon-gear:before,
.icon.icon-gear:before { content: "\f013" !important; }

.fa-gears:before,
.fa.fa-gears:before,
.fas.fa-gears:before,
.far.fa-gears:before,
.fab.fa-gears:before,
.fa-solid.fa-gears:before,
.fa-regular.fa-gears:before,
.fa-brands.fa-gears:before,
.icon-gears:before,
.icon.icon-gears:before { content: "\f085" !important; }

.fa-genderless:before,
.fa.fa-genderless:before,
.fas.fa-genderless:before,
.far.fa-genderless:before,
.fab.fa-genderless:before,
.fa-solid.fa-genderless:before,
.fa-regular.fa-genderless:before,
.fa-brands.fa-genderless:before,
.icon-genderless:before,
.icon.icon-genderless:before { content: "\f22d" !important; }

.fa-get-pocket:before,
.fa.fa-get-pocket:before,
.fas.fa-get-pocket:before,
.far.fa-get-pocket:before,
.fab.fa-get-pocket:before,
.fa-solid.fa-get-pocket:before,
.fa-regular.fa-get-pocket:before,
.fa-brands.fa-get-pocket:before,
.icon-get-pocket:before,
.icon.icon-get-pocket:before { content: "\f265" !important; }

.fa-gg:before,
.fa.fa-gg:before,
.fas.fa-gg:before,
.far.fa-gg:before,
.fab.fa-gg:before,
.fa-solid.fa-gg:before,
.fa-regular.fa-gg:before,
.fa-brands.fa-gg:before,
.icon-gg:before,
.icon.icon-gg:before { content: "\f260" !important; }

.fa-gg-circle:before,
.fa.fa-gg-circle:before,
.fas.fa-gg-circle:before,
.far.fa-gg-circle:before,
.fab.fa-gg-circle:before,
.fa-solid.fa-gg-circle:before,
.fa-regular.fa-gg-circle:before,
.fa-brands.fa-gg-circle:before,
.icon-gg-circle:before,
.icon.icon-gg-circle:before { content: "\f261" !important; }

.fa-gift:before,
.fa.fa-gift:before,
.fas.fa-gift:before,
.far.fa-gift:before,
.fab.fa-gift:before,
.fa-solid.fa-gift:before,
.fa-regular.fa-gift:before,
.fa-brands.fa-gift:before,
.icon-gift:before,
.icon.icon-gift:before { content: "\f06b" !important; }

.fa-git:before,
.fa.fa-git:before,
.fas.fa-git:before,
.far.fa-git:before,
.fab.fa-git:before,
.fa-solid.fa-git:before,
.fa-regular.fa-git:before,
.fa-brands.fa-git:before,
.icon-git:before,
.icon.icon-git:before { content: "\f1d3" !important; }

.fa-git-square:before,
.fa.fa-git-square:before,
.fas.fa-git-square:before,
.far.fa-git-square:before,
.fab.fa-git-square:before,
.fa-solid.fa-git-square:before,
.fa-regular.fa-git-square:before,
.fa-brands.fa-git-square:before,
.icon-git-square:before,
.icon.icon-git-square:before { content: "\f1d2" !important; }

.fa-github:before,
.fa.fa-github:before,
.fas.fa-github:before,
.far.fa-github:before,
.fab.fa-github:before,
.fa-solid.fa-github:before,
.fa-regular.fa-github:before,
.fa-brands.fa-github:before,
.icon-github:before,
.icon.icon-github:before { content: "\f09b" !important; }

.fa-github-alt:before,
.fa.fa-github-alt:before,
.fas.fa-github-alt:before,
.far.fa-github-alt:before,
.fab.fa-github-alt:before,
.fa-solid.fa-github-alt:before,
.fa-regular.fa-github-alt:before,
.fa-brands.fa-github-alt:before,
.icon-github-alt:before,
.icon.icon-github-alt:before { content: "\f113" !important; }

.fa-github-square:before,
.fa.fa-github-square:before,
.fas.fa-github-square:before,
.far.fa-github-square:before,
.fab.fa-github-square:before,
.fa-solid.fa-github-square:before,
.fa-regular.fa-github-square:before,
.fa-brands.fa-github-square:before,
.icon-github-square:before,
.icon.icon-github-square:before { content: "\f092" !important; }

.fa-gitlab:before,
.fa.fa-gitlab:before,
.fas.fa-gitlab:before,
.far.fa-gitlab:before,
.fab.fa-gitlab:before,
.fa-solid.fa-gitlab:before,
.fa-regular.fa-gitlab:before,
.fa-brands.fa-gitlab:before,
.icon-gitlab:before,
.icon.icon-gitlab:before { content: "\f296" !important; }

.fa-gittip:before,
.fa.fa-gittip:before,
.fas.fa-gittip:before,
.far.fa-gittip:before,
.fab.fa-gittip:before,
.fa-solid.fa-gittip:before,
.fa-regular.fa-gittip:before,
.fa-brands.fa-gittip:before,
.icon-gittip:before,
.icon.icon-gittip:before { content: "\f184" !important; }

.fa-glass:before,
.fa.fa-glass:before,
.fas.fa-glass:before,
.far.fa-glass:before,
.fab.fa-glass:before,
.fa-solid.fa-glass:before,
.fa-regular.fa-glass:before,
.fa-brands.fa-glass:before,
.icon-glass:before,
.icon.icon-glass:before { content: "\f000" !important; }

.fa-glide:before,
.fa.fa-glide:before,
.fas.fa-glide:before,
.far.fa-glide:before,
.fab.fa-glide:before,
.fa-solid.fa-glide:before,
.fa-regular.fa-glide:before,
.fa-brands.fa-glide:before,
.icon-glide:before,
.icon.icon-glide:before { content: "\f2a5" !important; }

.fa-glide-g:before,
.fa.fa-glide-g:before,
.fas.fa-glide-g:before,
.far.fa-glide-g:before,
.fab.fa-glide-g:before,
.fa-solid.fa-glide-g:before,
.fa-regular.fa-glide-g:before,
.fa-brands.fa-glide-g:before,
.icon-glide-g:before,
.icon.icon-glide-g:before { content: "\f2a6" !important; }

.fa-globe:before,
.fa.fa-globe:before,
.fas.fa-globe:before,
.far.fa-globe:before,
.fab.fa-globe:before,
.fa-solid.fa-globe:before,
.fa-regular.fa-globe:before,
.fa-brands.fa-globe:before,
.icon-globe:before,
.icon.icon-globe:before { content: "\f0ac" !important; }

.fa-google:before,
.fa.fa-google:before,
.fas.fa-google:before,
.far.fa-google:before,
.fab.fa-google:before,
.fa-solid.fa-google:before,
.fa-regular.fa-google:before,
.fa-brands.fa-google:before,
.icon-google:before,
.icon.icon-google:before { content: "\f1a0" !important; }

.fa-google-plus:before,
.fa.fa-google-plus:before,
.fas.fa-google-plus:before,
.far.fa-google-plus:before,
.fab.fa-google-plus:before,
.fa-solid.fa-google-plus:before,
.fa-regular.fa-google-plus:before,
.fa-brands.fa-google-plus:before,
.icon-google-plus:before,
.icon.icon-google-plus:before { content: "\f0d5" !important; }

.fa-google-plus-circle:before,
.fa.fa-google-plus-circle:before,
.fas.fa-google-plus-circle:before,
.far.fa-google-plus-circle:before,
.fab.fa-google-plus-circle:before,
.fa-solid.fa-google-plus-circle:before,
.fa-regular.fa-google-plus-circle:before,
.fa-brands.fa-google-plus-circle:before,
.icon-google-plus-circle:before,
.icon.icon-google-plus-circle:before { content: "\f2b3" !important; }

.fa-google-plus-official:before,
.fa.fa-google-plus-official:before,
.fas.fa-google-plus-official:before,
.far.fa-google-plus-official:before,
.fab.fa-google-plus-official:before,
.fa-solid.fa-google-plus-official:before,
.fa-regular.fa-google-plus-official:before,
.fa-brands.fa-google-plus-official:before,
.icon-google-plus-official:before,
.icon.icon-google-plus-official:before { content: "\f2b3" !important; }

.fa-google-plus-square:before,
.fa.fa-google-plus-square:before,
.fas.fa-google-plus-square:before,
.far.fa-google-plus-square:before,
.fab.fa-google-plus-square:before,
.fa-solid.fa-google-plus-square:before,
.fa-regular.fa-google-plus-square:before,
.fa-brands.fa-google-plus-square:before,
.icon-google-plus-square:before,
.icon.icon-google-plus-square:before { content: "\f0d4" !important; }

.fa-google-wallet:before,
.fa.fa-google-wallet:before,
.fas.fa-google-wallet:before,
.far.fa-google-wallet:before,
.fab.fa-google-wallet:before,
.fa-solid.fa-google-wallet:before,
.fa-regular.fa-google-wallet:before,
.fa-brands.fa-google-wallet:before,
.icon-google-wallet:before,
.icon.icon-google-wallet:before { content: "\f1ee" !important; }

.fa-graduation-cap:before,
.fa.fa-graduation-cap:before,
.fas.fa-graduation-cap:before,
.far.fa-graduation-cap:before,
.fab.fa-graduation-cap:before,
.fa-solid.fa-graduation-cap:before,
.fa-regular.fa-graduation-cap:before,
.fa-brands.fa-graduation-cap:before,
.icon-graduation-cap:before,
.icon.icon-graduation-cap:before { content: "\f19d" !important; }

.fa-gratipay:before,
.fa.fa-gratipay:before,
.fas.fa-gratipay:before,
.far.fa-gratipay:before,
.fab.fa-gratipay:before,
.fa-solid.fa-gratipay:before,
.fa-regular.fa-gratipay:before,
.fa-brands.fa-gratipay:before,
.icon-gratipay:before,
.icon.icon-gratipay:before { content: "\f184" !important; }

.fa-grav:before,
.fa.fa-grav:before,
.fas.fa-grav:before,
.far.fa-grav:before,
.fab.fa-grav:before,
.fa-solid.fa-grav:before,
.fa-regular.fa-grav:before,
.fa-brands.fa-grav:before,
.icon-grav:before,
.icon.icon-grav:before { content: "\f2d6" !important; }

.fa-group:before,
.fa.fa-group:before,
.fas.fa-group:before,
.far.fa-group:before,
.fab.fa-group:before,
.fa-solid.fa-group:before,
.fa-regular.fa-group:before,
.fa-brands.fa-group:before,
.icon-group:before,
.icon.icon-group:before { content: "\f0c0" !important; }

.fa-h-square:before,
.fa.fa-h-square:before,
.fas.fa-h-square:before,
.far.fa-h-square:before,
.fab.fa-h-square:before,
.fa-solid.fa-h-square:before,
.fa-regular.fa-h-square:before,
.fa-brands.fa-h-square:before,
.icon-h-square:before,
.icon.icon-h-square:before { content: "\f0fd" !important; }

.fa-hacker-news:before,
.fa.fa-hacker-news:before,
.fas.fa-hacker-news:before,
.far.fa-hacker-news:before,
.fab.fa-hacker-news:before,
.fa-solid.fa-hacker-news:before,
.fa-regular.fa-hacker-news:before,
.fa-brands.fa-hacker-news:before,
.icon-hacker-news:before,
.icon.icon-hacker-news:before { content: "\f1d4" !important; }

.fa-hand-grab-o:before,
.fa.fa-hand-grab-o:before,
.fas.fa-hand-grab-o:before,
.far.fa-hand-grab-o:before,
.fab.fa-hand-grab-o:before,
.fa-solid.fa-hand-grab-o:before,
.fa-regular.fa-hand-grab-o:before,
.fa-brands.fa-hand-grab-o:before,
.icon-hand-grab-o:before,
.icon.icon-hand-grab-o:before { content: "\f255" !important; }

.fa-hand-lizard-o:before,
.fa.fa-hand-lizard-o:before,
.fas.fa-hand-lizard-o:before,
.far.fa-hand-lizard-o:before,
.fab.fa-hand-lizard-o:before,
.fa-solid.fa-hand-lizard-o:before,
.fa-regular.fa-hand-lizard-o:before,
.fa-brands.fa-hand-lizard-o:before,
.icon-hand-lizard-o:before,
.icon.icon-hand-lizard-o:before { content: "\f258" !important; }

.fa-hand-o-down:before,
.fa.fa-hand-o-down:before,
.fas.fa-hand-o-down:before,
.far.fa-hand-o-down:before,
.fab.fa-hand-o-down:before,
.fa-solid.fa-hand-o-down:before,
.fa-regular.fa-hand-o-down:before,
.fa-brands.fa-hand-o-down:before,
.icon-hand-o-down:before,
.icon.icon-hand-o-down:before { content: "\f0a7" !important; }

.fa-hand-o-left:before,
.fa.fa-hand-o-left:before,
.fas.fa-hand-o-left:before,
.far.fa-hand-o-left:before,
.fab.fa-hand-o-left:before,
.fa-solid.fa-hand-o-left:before,
.fa-regular.fa-hand-o-left:before,
.fa-brands.fa-hand-o-left:before,
.icon-hand-o-left:before,
.icon.icon-hand-o-left:before { content: "\f0a5" !important; }

.fa-hand-o-right:before,
.fa.fa-hand-o-right:before,
.fas.fa-hand-o-right:before,
.far.fa-hand-o-right:before,
.fab.fa-hand-o-right:before,
.fa-solid.fa-hand-o-right:before,
.fa-regular.fa-hand-o-right:before,
.fa-brands.fa-hand-o-right:before,
.icon-hand-o-right:before,
.icon.icon-hand-o-right:before { content: "\f0a4" !important; }

.fa-hand-o-up:before,
.fa.fa-hand-o-up:before,
.fas.fa-hand-o-up:before,
.far.fa-hand-o-up:before,
.fab.fa-hand-o-up:before,
.fa-solid.fa-hand-o-up:before,
.fa-regular.fa-hand-o-up:before,
.fa-brands.fa-hand-o-up:before,
.icon-hand-o-up:before,
.icon.icon-hand-o-up:before { content: "\f0a6" !important; }

.fa-hand-paper-o:before,
.fa.fa-hand-paper-o:before,
.fas.fa-hand-paper-o:before,
.far.fa-hand-paper-o:before,
.fab.fa-hand-paper-o:before,
.fa-solid.fa-hand-paper-o:before,
.fa-regular.fa-hand-paper-o:before,
.fa-brands.fa-hand-paper-o:before,
.icon-hand-paper-o:before,
.icon.icon-hand-paper-o:before { content: "\f256" !important; }

.fa-hand-peace-o:before,
.fa.fa-hand-peace-o:before,
.fas.fa-hand-peace-o:before,
.far.fa-hand-peace-o:before,
.fab.fa-hand-peace-o:before,
.fa-solid.fa-hand-peace-o:before,
.fa-regular.fa-hand-peace-o:before,
.fa-brands.fa-hand-peace-o:before,
.icon-hand-peace-o:before,
.icon.icon-hand-peace-o:before { content: "\f25b" !important; }

.fa-hand-pointer-o:before,
.fa.fa-hand-pointer-o:before,
.fas.fa-hand-pointer-o:before,
.far.fa-hand-pointer-o:before,
.fab.fa-hand-pointer-o:before,
.fa-solid.fa-hand-pointer-o:before,
.fa-regular.fa-hand-pointer-o:before,
.fa-brands.fa-hand-pointer-o:before,
.icon-hand-pointer-o:before,
.icon.icon-hand-pointer-o:before { content: "\f25a" !important; }

.fa-hand-rock-o:before,
.fa.fa-hand-rock-o:before,
.fas.fa-hand-rock-o:before,
.far.fa-hand-rock-o:before,
.fab.fa-hand-rock-o:before,
.fa-solid.fa-hand-rock-o:before,
.fa-regular.fa-hand-rock-o:before,
.fa-brands.fa-hand-rock-o:before,
.icon-hand-rock-o:before,
.icon.icon-hand-rock-o:before { content: "\f255" !important; }

.fa-hand-scissors-o:before,
.fa.fa-hand-scissors-o:before,
.fas.fa-hand-scissors-o:before,
.far.fa-hand-scissors-o:before,
.fab.fa-hand-scissors-o:before,
.fa-solid.fa-hand-scissors-o:before,
.fa-regular.fa-hand-scissors-o:before,
.fa-brands.fa-hand-scissors-o:before,
.icon-hand-scissors-o:before,
.icon.icon-hand-scissors-o:before { content: "\f257" !important; }

.fa-hand-spock-o:before,
.fa.fa-hand-spock-o:before,
.fas.fa-hand-spock-o:before,
.far.fa-hand-spock-o:before,
.fab.fa-hand-spock-o:before,
.fa-solid.fa-hand-spock-o:before,
.fa-regular.fa-hand-spock-o:before,
.fa-brands.fa-hand-spock-o:before,
.icon-hand-spock-o:before,
.icon.icon-hand-spock-o:before { content: "\f259" !important; }

.fa-hand-stop-o:before,
.fa.fa-hand-stop-o:before,
.fas.fa-hand-stop-o:before,
.far.fa-hand-stop-o:before,
.fab.fa-hand-stop-o:before,
.fa-solid.fa-hand-stop-o:before,
.fa-regular.fa-hand-stop-o:before,
.fa-brands.fa-hand-stop-o:before,
.icon-hand-stop-o:before,
.icon.icon-hand-stop-o:before { content: "\f256" !important; }

.fa-handshake-o:before,
.fa.fa-handshake-o:before,
.fas.fa-handshake-o:before,
.far.fa-handshake-o:before,
.fab.fa-handshake-o:before,
.fa-solid.fa-handshake-o:before,
.fa-regular.fa-handshake-o:before,
.fa-brands.fa-handshake-o:before,
.icon-handshake-o:before,
.icon.icon-handshake-o:before { content: "\f2b5" !important; }

.fa-hard-of-hearing:before,
.fa.fa-hard-of-hearing:before,
.fas.fa-hard-of-hearing:before,
.far.fa-hard-of-hearing:before,
.fab.fa-hard-of-hearing:before,
.fa-solid.fa-hard-of-hearing:before,
.fa-regular.fa-hard-of-hearing:before,
.fa-brands.fa-hard-of-hearing:before,
.icon-hard-of-hearing:before,
.icon.icon-hard-of-hearing:before { content: "\f2a4" !important; }

.fa-hashtag:before,
.fa.fa-hashtag:before,
.fas.fa-hashtag:before,
.far.fa-hashtag:before,
.fab.fa-hashtag:before,
.fa-solid.fa-hashtag:before,
.fa-regular.fa-hashtag:before,
.fa-brands.fa-hashtag:before,
.icon-hashtag:before,
.icon.icon-hashtag:before { content: "\f292" !important; }

.fa-hdd-o:before,
.fa.fa-hdd-o:before,
.fas.fa-hdd-o:before,
.far.fa-hdd-o:before,
.fab.fa-hdd-o:before,
.fa-solid.fa-hdd-o:before,
.fa-regular.fa-hdd-o:before,
.fa-brands.fa-hdd-o:before,
.icon-hdd-o:before,
.icon.icon-hdd-o:before { content: "\f0a0" !important; }

.fa-header:before,
.fa.fa-header:before,
.fas.fa-header:before,
.far.fa-header:before,
.fab.fa-header:before,
.fa-solid.fa-header:before,
.fa-regular.fa-header:before,
.fa-brands.fa-header:before,
.icon-header:before,
.icon.icon-header:before { content: "\f1dc" !important; }

.fa-headphones:before,
.fa.fa-headphones:before,
.fas.fa-headphones:before,
.far.fa-headphones:before,
.fab.fa-headphones:before,
.fa-solid.fa-headphones:before,
.fa-regular.fa-headphones:before,
.fa-brands.fa-headphones:before,
.icon-headphones:before,
.icon.icon-headphones:before { content: "\f025" !important; }

.fa-heart:before,
.fa.fa-heart:before,
.fas.fa-heart:before,
.far.fa-heart:before,
.fab.fa-heart:before,
.fa-solid.fa-heart:before,
.fa-regular.fa-heart:before,
.fa-brands.fa-heart:before,
.icon-heart:before,
.icon.icon-heart:before { content: "\f004" !important; }

.fa-heart-o:before,
.fa.fa-heart-o:before,
.fas.fa-heart-o:before,
.far.fa-heart-o:before,
.fab.fa-heart-o:before,
.fa-solid.fa-heart-o:before,
.fa-regular.fa-heart-o:before,
.fa-brands.fa-heart-o:before,
.icon-heart-o:before,
.icon.icon-heart-o:before { content: "\f08a" !important; }

.fa-heartbeat:before,
.fa.fa-heartbeat:before,
.fas.fa-heartbeat:before,
.far.fa-heartbeat:before,
.fab.fa-heartbeat:before,
.fa-solid.fa-heartbeat:before,
.fa-regular.fa-heartbeat:before,
.fa-brands.fa-heartbeat:before,
.icon-heartbeat:before,
.icon.icon-heartbeat:before { content: "\f21e" !important; }

.fa-history:before,
.fa.fa-history:before,
.fas.fa-history:before,
.far.fa-history:before,
.fab.fa-history:before,
.fa-solid.fa-history:before,
.fa-regular.fa-history:before,
.fa-brands.fa-history:before,
.icon-history:before,
.icon.icon-history:before { content: "\f1da" !important; }

.fa-home:before,
.fa.fa-home:before,
.fas.fa-home:before,
.far.fa-home:before,
.fab.fa-home:before,
.fa-solid.fa-home:before,
.fa-regular.fa-home:before,
.fa-brands.fa-home:before,
.icon-home:before,
.icon.icon-home:before { content: "\f015" !important; }

.fa-hospital-o:before,
.fa.fa-hospital-o:before,
.fas.fa-hospital-o:before,
.far.fa-hospital-o:before,
.fab.fa-hospital-o:before,
.fa-solid.fa-hospital-o:before,
.fa-regular.fa-hospital-o:before,
.fa-brands.fa-hospital-o:before,
.icon-hospital-o:before,
.icon.icon-hospital-o:before { content: "\f0f8" !important; }

.fa-hotel:before,
.fa.fa-hotel:before,
.fas.fa-hotel:before,
.far.fa-hotel:before,
.fab.fa-hotel:before,
.fa-solid.fa-hotel:before,
.fa-regular.fa-hotel:before,
.fa-brands.fa-hotel:before,
.icon-hotel:before,
.icon.icon-hotel:before { content: "\f236" !important; }

.fa-hourglass:before,
.fa.fa-hourglass:before,
.fas.fa-hourglass:before,
.far.fa-hourglass:before,
.fab.fa-hourglass:before,
.fa-solid.fa-hourglass:before,
.fa-regular.fa-hourglass:before,
.fa-brands.fa-hourglass:before,
.icon-hourglass:before,
.icon.icon-hourglass:before { content: "\f254" !important; }

.fa-hourglass-1:before,
.fa.fa-hourglass-1:before,
.fas.fa-hourglass-1:before,
.far.fa-hourglass-1:before,
.fab.fa-hourglass-1:before,
.fa-solid.fa-hourglass-1:before,
.fa-regular.fa-hourglass-1:before,
.fa-brands.fa-hourglass-1:before,
.icon-hourglass-1:before,
.icon.icon-hourglass-1:before { content: "\f251" !important; }

.fa-hourglass-2:before,
.fa.fa-hourglass-2:before,
.fas.fa-hourglass-2:before,
.far.fa-hourglass-2:before,
.fab.fa-hourglass-2:before,
.fa-solid.fa-hourglass-2:before,
.fa-regular.fa-hourglass-2:before,
.fa-brands.fa-hourglass-2:before,
.icon-hourglass-2:before,
.icon.icon-hourglass-2:before { content: "\f252" !important; }

.fa-hourglass-3:before,
.fa.fa-hourglass-3:before,
.fas.fa-hourglass-3:before,
.far.fa-hourglass-3:before,
.fab.fa-hourglass-3:before,
.fa-solid.fa-hourglass-3:before,
.fa-regular.fa-hourglass-3:before,
.fa-brands.fa-hourglass-3:before,
.icon-hourglass-3:before,
.icon.icon-hourglass-3:before { content: "\f253" !important; }

.fa-hourglass-end:before,
.fa.fa-hourglass-end:before,
.fas.fa-hourglass-end:before,
.far.fa-hourglass-end:before,
.fab.fa-hourglass-end:before,
.fa-solid.fa-hourglass-end:before,
.fa-regular.fa-hourglass-end:before,
.fa-brands.fa-hourglass-end:before,
.icon-hourglass-end:before,
.icon.icon-hourglass-end:before { content: "\f253" !important; }

.fa-hourglass-half:before,
.fa.fa-hourglass-half:before,
.fas.fa-hourglass-half:before,
.far.fa-hourglass-half:before,
.fab.fa-hourglass-half:before,
.fa-solid.fa-hourglass-half:before,
.fa-regular.fa-hourglass-half:before,
.fa-brands.fa-hourglass-half:before,
.icon-hourglass-half:before,
.icon.icon-hourglass-half:before { content: "\f252" !important; }

.fa-hourglass-o:before,
.fa.fa-hourglass-o:before,
.fas.fa-hourglass-o:before,
.far.fa-hourglass-o:before,
.fab.fa-hourglass-o:before,
.fa-solid.fa-hourglass-o:before,
.fa-regular.fa-hourglass-o:before,
.fa-brands.fa-hourglass-o:before,
.icon-hourglass-o:before,
.icon.icon-hourglass-o:before { content: "\f250" !important; }

.fa-hourglass-start:before,
.fa.fa-hourglass-start:before,
.fas.fa-hourglass-start:before,
.far.fa-hourglass-start:before,
.fab.fa-hourglass-start:before,
.fa-solid.fa-hourglass-start:before,
.fa-regular.fa-hourglass-start:before,
.fa-brands.fa-hourglass-start:before,
.icon-hourglass-start:before,
.icon.icon-hourglass-start:before { content: "\f251" !important; }

.fa-houzz:before,
.fa.fa-houzz:before,
.fas.fa-houzz:before,
.far.fa-houzz:before,
.fab.fa-houzz:before,
.fa-solid.fa-houzz:before,
.fa-regular.fa-houzz:before,
.fa-brands.fa-houzz:before,
.icon-houzz:before,
.icon.icon-houzz:before { content: "\f27c" !important; }

.fa-html5:before,
.fa.fa-html5:before,
.fas.fa-html5:before,
.far.fa-html5:before,
.fab.fa-html5:before,
.fa-solid.fa-html5:before,
.fa-regular.fa-html5:before,
.fa-brands.fa-html5:before,
.icon-html5:before,
.icon.icon-html5:before { content: "\f13b" !important; }

.fa-i-cursor:before,
.fa.fa-i-cursor:before,
.fas.fa-i-cursor:before,
.far.fa-i-cursor:before,
.fab.fa-i-cursor:before,
.fa-solid.fa-i-cursor:before,
.fa-regular.fa-i-cursor:before,
.fa-brands.fa-i-cursor:before,
.icon-i-cursor:before,
.icon.icon-i-cursor:before { content: "\f246" !important; }

.fa-id-badge:before,
.fa.fa-id-badge:before,
.fas.fa-id-badge:before,
.far.fa-id-badge:before,
.fab.fa-id-badge:before,
.fa-solid.fa-id-badge:before,
.fa-regular.fa-id-badge:before,
.fa-brands.fa-id-badge:before,
.icon-id-badge:before,
.icon.icon-id-badge:before { content: "\f2c1" !important; }

.fa-id-card:before,
.fa.fa-id-card:before,
.fas.fa-id-card:before,
.far.fa-id-card:before,
.fab.fa-id-card:before,
.fa-solid.fa-id-card:before,
.fa-regular.fa-id-card:before,
.fa-brands.fa-id-card:before,
.icon-id-card:before,
.icon.icon-id-card:before { content: "\f2c2" !important; }

.fa-id-card-o:before,
.fa.fa-id-card-o:before,
.fas.fa-id-card-o:before,
.far.fa-id-card-o:before,
.fab.fa-id-card-o:before,
.fa-solid.fa-id-card-o:before,
.fa-regular.fa-id-card-o:before,
.fa-brands.fa-id-card-o:before,
.icon-id-card-o:before,
.icon.icon-id-card-o:before { content: "\f2c3" !important; }

.fa-ils:before,
.fa.fa-ils:before,
.fas.fa-ils:before,
.far.fa-ils:before,
.fab.fa-ils:before,
.fa-solid.fa-ils:before,
.fa-regular.fa-ils:before,
.fa-brands.fa-ils:before,
.icon-ils:before,
.icon.icon-ils:before { content: "\f20b" !important; }

.fa-image:before,
.fa.fa-image:before,
.fas.fa-image:before,
.far.fa-image:before,
.fab.fa-image:before,
.fa-solid.fa-image:before,
.fa-regular.fa-image:before,
.fa-brands.fa-image:before,
.icon-image:before,
.icon.icon-image:before { content: "\f03e" !important; }

.fa-imdb:before,
.fa.fa-imdb:before,
.fas.fa-imdb:before,
.far.fa-imdb:before,
.fab.fa-imdb:before,
.fa-solid.fa-imdb:before,
.fa-regular.fa-imdb:before,
.fa-brands.fa-imdb:before,
.icon-imdb:before,
.icon.icon-imdb:before { content: "\f2d8" !important; }

.fa-inbox:before,
.fa.fa-inbox:before,
.fas.fa-inbox:before,
.far.fa-inbox:before,
.fab.fa-inbox:before,
.fa-solid.fa-inbox:before,
.fa-regular.fa-inbox:before,
.fa-brands.fa-inbox:before,
.icon-inbox:before,
.icon.icon-inbox:before { content: "\f01c" !important; }

.fa-indent:before,
.fa.fa-indent:before,
.fas.fa-indent:before,
.far.fa-indent:before,
.fab.fa-indent:before,
.fa-solid.fa-indent:before,
.fa-regular.fa-indent:before,
.fa-brands.fa-indent:before,
.icon-indent:before,
.icon.icon-indent:before { content: "\f03c" !important; }

.fa-industry:before,
.fa.fa-industry:before,
.fas.fa-industry:before,
.far.fa-industry:before,
.fab.fa-industry:before,
.fa-solid.fa-industry:before,
.fa-regular.fa-industry:before,
.fa-brands.fa-industry:before,
.icon-industry:before,
.icon.icon-industry:before { content: "\f275" !important; }

.fa-info:before,
.fa.fa-info:before,
.fas.fa-info:before,
.far.fa-info:before,
.fab.fa-info:before,
.fa-solid.fa-info:before,
.fa-regular.fa-info:before,
.fa-brands.fa-info:before,
.icon-info:before,
.icon.icon-info:before { content: "\f129" !important; }

.fa-info-circle:before,
.fa.fa-info-circle:before,
.fas.fa-info-circle:before,
.far.fa-info-circle:before,
.fab.fa-info-circle:before,
.fa-solid.fa-info-circle:before,
.fa-regular.fa-info-circle:before,
.fa-brands.fa-info-circle:before,
.icon-info-circle:before,
.icon.icon-info-circle:before { content: "\f05a" !important; }

.fa-inr:before,
.fa.fa-inr:before,
.fas.fa-inr:before,
.far.fa-inr:before,
.fab.fa-inr:before,
.fa-solid.fa-inr:before,
.fa-regular.fa-inr:before,
.fa-brands.fa-inr:before,
.icon-inr:before,
.icon.icon-inr:before { content: "\f156" !important; }

.fa-instagram:before,
.fa.fa-instagram:before,
.fas.fa-instagram:before,
.far.fa-instagram:before,
.fab.fa-instagram:before,
.fa-solid.fa-instagram:before,
.fa-regular.fa-instagram:before,
.fa-brands.fa-instagram:before,
.icon-instagram:before,
.icon.icon-instagram:before { content: "\f16d" !important; }

.fa-institution:before,
.fa.fa-institution:before,
.fas.fa-institution:before,
.far.fa-institution:before,
.fab.fa-institution:before,
.fa-solid.fa-institution:before,
.fa-regular.fa-institution:before,
.fa-brands.fa-institution:before,
.icon-institution:before,
.icon.icon-institution:before { content: "\f19c" !important; }

.fa-internet-explorer:before,
.fa.fa-internet-explorer:before,
.fas.fa-internet-explorer:before,
.far.fa-internet-explorer:before,
.fab.fa-internet-explorer:before,
.fa-solid.fa-internet-explorer:before,
.fa-regular.fa-internet-explorer:before,
.fa-brands.fa-internet-explorer:before,
.icon-internet-explorer:before,
.icon.icon-internet-explorer:before { content: "\f26b" !important; }

.fa-intersex:before,
.fa.fa-intersex:before,
.fas.fa-intersex:before,
.far.fa-intersex:before,
.fab.fa-intersex:before,
.fa-solid.fa-intersex:before,
.fa-regular.fa-intersex:before,
.fa-brands.fa-intersex:before,
.icon-intersex:before,
.icon.icon-intersex:before { content: "\f224" !important; }

.fa-ioxhost:before,
.fa.fa-ioxhost:before,
.fas.fa-ioxhost:before,
.far.fa-ioxhost:before,
.fab.fa-ioxhost:before,
.fa-solid.fa-ioxhost:before,
.fa-regular.fa-ioxhost:before,
.fa-brands.fa-ioxhost:before,
.icon-ioxhost:before,
.icon.icon-ioxhost:before { content: "\f208" !important; }

.fa-italic:before,
.fa.fa-italic:before,
.fas.fa-italic:before,
.far.fa-italic:before,
.fab.fa-italic:before,
.fa-solid.fa-italic:before,
.fa-regular.fa-italic:before,
.fa-brands.fa-italic:before,
.icon-italic:before,
.icon.icon-italic:before { content: "\f033" !important; }

.fa-joomla:before,
.fa.fa-joomla:before,
.fas.fa-joomla:before,
.far.fa-joomla:before,
.fab.fa-joomla:before,
.fa-solid.fa-joomla:before,
.fa-regular.fa-joomla:before,
.fa-brands.fa-joomla:before,
.icon-joomla:before,
.icon.icon-joomla:before { content: "\f1aa" !important; }

.fa-jpy:before,
.fa.fa-jpy:before,
.fas.fa-jpy:before,
.far.fa-jpy:before,
.fab.fa-jpy:before,
.fa-solid.fa-jpy:before,
.fa-regular.fa-jpy:before,
.fa-brands.fa-jpy:before,
.icon-jpy:before,
.icon.icon-jpy:before { content: "\f157" !important; }

.fa-jsfiddle:before,
.fa.fa-jsfiddle:before,
.fas.fa-jsfiddle:before,
.far.fa-jsfiddle:before,
.fab.fa-jsfiddle:before,
.fa-solid.fa-jsfiddle:before,
.fa-regular.fa-jsfiddle:before,
.fa-brands.fa-jsfiddle:before,
.icon-jsfiddle:before,
.icon.icon-jsfiddle:before { content: "\f1cc" !important; }

.fa-key:before,
.fa.fa-key:before,
.fas.fa-key:before,
.far.fa-key:before,
.fab.fa-key:before,
.fa-solid.fa-key:before,
.fa-regular.fa-key:before,
.fa-brands.fa-key:before,
.icon-key:before,
.icon.icon-key:before { content: "\f084" !important; }

.fa-keyboard-o:before,
.fa.fa-keyboard-o:before,
.fas.fa-keyboard-o:before,
.far.fa-keyboard-o:before,
.fab.fa-keyboard-o:before,
.fa-solid.fa-keyboard-o:before,
.fa-regular.fa-keyboard-o:before,
.fa-brands.fa-keyboard-o:before,
.icon-keyboard-o:before,
.icon.icon-keyboard-o:before { content: "\f11c" !important; }

.fa-krw:before,
.fa.fa-krw:before,
.fas.fa-krw:before,
.far.fa-krw:before,
.fab.fa-krw:before,
.fa-solid.fa-krw:before,
.fa-regular.fa-krw:before,
.fa-brands.fa-krw:before,
.icon-krw:before,
.icon.icon-krw:before { content: "\f159" !important; }

.fa-language:before,
.fa.fa-language:before,
.fas.fa-language:before,
.far.fa-language:before,
.fab.fa-language:before,
.fa-solid.fa-language:before,
.fa-regular.fa-language:before,
.fa-brands.fa-language:before,
.icon-language:before,
.icon.icon-language:before { content: "\f1ab" !important; }

.fa-laptop:before,
.fa.fa-laptop:before,
.fas.fa-laptop:before,
.far.fa-laptop:before,
.fab.fa-laptop:before,
.fa-solid.fa-laptop:before,
.fa-regular.fa-laptop:before,
.fa-brands.fa-laptop:before,
.icon-laptop:before,
.icon.icon-laptop:before { content: "\f109" !important; }

.fa-lastfm:before,
.fa.fa-lastfm:before,
.fas.fa-lastfm:before,
.far.fa-lastfm:before,
.fab.fa-lastfm:before,
.fa-solid.fa-lastfm:before,
.fa-regular.fa-lastfm:before,
.fa-brands.fa-lastfm:before,
.icon-lastfm:before,
.icon.icon-lastfm:before { content: "\f202" !important; }

.fa-lastfm-square:before,
.fa.fa-lastfm-square:before,
.fas.fa-lastfm-square:before,
.far.fa-lastfm-square:before,
.fab.fa-lastfm-square:before,
.fa-solid.fa-lastfm-square:before,
.fa-regular.fa-lastfm-square:before,
.fa-brands.fa-lastfm-square:before,
.icon-lastfm-square:before,
.icon.icon-lastfm-square:before { content: "\f203" !important; }

.fa-leaf:before,
.fa.fa-leaf:before,
.fas.fa-leaf:before,
.far.fa-leaf:before,
.fab.fa-leaf:before,
.fa-solid.fa-leaf:before,
.fa-regular.fa-leaf:before,
.fa-brands.fa-leaf:before,
.icon-leaf:before,
.icon.icon-leaf:before { content: "\f06c" !important; }

.fa-leanpub:before,
.fa.fa-leanpub:before,
.fas.fa-leanpub:before,
.far.fa-leanpub:before,
.fab.fa-leanpub:before,
.fa-solid.fa-leanpub:before,
.fa-regular.fa-leanpub:before,
.fa-brands.fa-leanpub:before,
.icon-leanpub:before,
.icon.icon-leanpub:before { content: "\f212" !important; }

.fa-legal:before,
.fa.fa-legal:before,
.fas.fa-legal:before,
.far.fa-legal:before,
.fab.fa-legal:before,
.fa-solid.fa-legal:before,
.fa-regular.fa-legal:before,
.fa-brands.fa-legal:before,
.icon-legal:before,
.icon.icon-legal:before { content: "\f0e3" !important; }

.fa-lemon-o:before,
.fa.fa-lemon-o:before,
.fas.fa-lemon-o:before,
.far.fa-lemon-o:before,
.fab.fa-lemon-o:before,
.fa-solid.fa-lemon-o:before,
.fa-regular.fa-lemon-o:before,
.fa-brands.fa-lemon-o:before,
.icon-lemon-o:before,
.icon.icon-lemon-o:before { content: "\f094" !important; }

.fa-level-down:before,
.fa.fa-level-down:before,
.fas.fa-level-down:before,
.far.fa-level-down:before,
.fab.fa-level-down:before,
.fa-solid.fa-level-down:before,
.fa-regular.fa-level-down:before,
.fa-brands.fa-level-down:before,
.icon-level-down:before,
.icon.icon-level-down:before { content: "\f149" !important; }

.fa-level-up:before,
.fa.fa-level-up:before,
.fas.fa-level-up:before,
.far.fa-level-up:before,
.fab.fa-level-up:before,
.fa-solid.fa-level-up:before,
.fa-regular.fa-level-up:before,
.fa-brands.fa-level-up:before,
.icon-level-up:before,
.icon.icon-level-up:before { content: "\f148" !important; }

.fa-life-bouy:before,
.fa.fa-life-bouy:before,
.fas.fa-life-bouy:before,
.far.fa-life-bouy:before,
.fab.fa-life-bouy:before,
.fa-solid.fa-life-bouy:before,
.fa-regular.fa-life-bouy:before,
.fa-brands.fa-life-bouy:before,
.icon-life-bouy:before,
.icon.icon-life-bouy:before { content: "\f1cd" !important; }

.fa-life-buoy:before,
.fa.fa-life-buoy:before,
.fas.fa-life-buoy:before,
.far.fa-life-buoy:before,
.fab.fa-life-buoy:before,
.fa-solid.fa-life-buoy:before,
.fa-regular.fa-life-buoy:before,
.fa-brands.fa-life-buoy:before,
.icon-life-buoy:before,
.icon.icon-life-buoy:before { content: "\f1cd" !important; }

.fa-life-ring:before,
.fa.fa-life-ring:before,
.fas.fa-life-ring:before,
.far.fa-life-ring:before,
.fab.fa-life-ring:before,
.fa-solid.fa-life-ring:before,
.fa-regular.fa-life-ring:before,
.fa-brands.fa-life-ring:before,
.icon-life-ring:before,
.icon.icon-life-ring:before { content: "\f1cd" !important; }

.fa-life-saver:before,
.fa.fa-life-saver:before,
.fas.fa-life-saver:before,
.far.fa-life-saver:before,
.fab.fa-life-saver:before,
.fa-solid.fa-life-saver:before,
.fa-regular.fa-life-saver:before,
.fa-brands.fa-life-saver:before,
.icon-life-saver:before,
.icon.icon-life-saver:before { content: "\f1cd" !important; }

.fa-lightbulb-o:before,
.fa.fa-lightbulb-o:before,
.fas.fa-lightbulb-o:before,
.far.fa-lightbulb-o:before,
.fab.fa-lightbulb-o:before,
.fa-solid.fa-lightbulb-o:before,
.fa-regular.fa-lightbulb-o:before,
.fa-brands.fa-lightbulb-o:before,
.icon-lightbulb-o:before,
.icon.icon-lightbulb-o:before { content: "\f0eb" !important; }

.fa-line-chart:before,
.fa.fa-line-chart:before,
.fas.fa-line-chart:before,
.far.fa-line-chart:before,
.fab.fa-line-chart:before,
.fa-solid.fa-line-chart:before,
.fa-regular.fa-line-chart:before,
.fa-brands.fa-line-chart:before,
.icon-line-chart:before,
.icon.icon-line-chart:before { content: "\f201" !important; }

.fa-link:before,
.fa.fa-link:before,
.fas.fa-link:before,
.far.fa-link:before,
.fab.fa-link:before,
.fa-solid.fa-link:before,
.fa-regular.fa-link:before,
.fa-brands.fa-link:before,
.icon-link:before,
.icon.icon-link:before { content: "\f0c1" !important; }

.fa-linkedin:before,
.fa.fa-linkedin:before,
.fas.fa-linkedin:before,
.far.fa-linkedin:before,
.fab.fa-linkedin:before,
.fa-solid.fa-linkedin:before,
.fa-regular.fa-linkedin:before,
.fa-brands.fa-linkedin:before,
.icon-linkedin:before,
.icon.icon-linkedin:before { content: "\f0e1" !important; }

.fa-linkedin-square:before,
.fa.fa-linkedin-square:before,
.fas.fa-linkedin-square:before,
.far.fa-linkedin-square:before,
.fab.fa-linkedin-square:before,
.fa-solid.fa-linkedin-square:before,
.fa-regular.fa-linkedin-square:before,
.fa-brands.fa-linkedin-square:before,
.icon-linkedin-square:before,
.icon.icon-linkedin-square:before { content: "\f08c" !important; }

.fa-linode:before,
.fa.fa-linode:before,
.fas.fa-linode:before,
.far.fa-linode:before,
.fab.fa-linode:before,
.fa-solid.fa-linode:before,
.fa-regular.fa-linode:before,
.fa-brands.fa-linode:before,
.icon-linode:before,
.icon.icon-linode:before { content: "\f2b8" !important; }

.fa-linux:before,
.fa.fa-linux:before,
.fas.fa-linux:before,
.far.fa-linux:before,
.fab.fa-linux:before,
.fa-solid.fa-linux:before,
.fa-regular.fa-linux:before,
.fa-brands.fa-linux:before,
.icon-linux:before,
.icon.icon-linux:before { content: "\f17c" !important; }

.fa-list:before,
.fa.fa-list:before,
.fas.fa-list:before,
.far.fa-list:before,
.fab.fa-list:before,
.fa-solid.fa-list:before,
.fa-regular.fa-list:before,
.fa-brands.fa-list:before,
.icon-list:before,
.icon.icon-list:before { content: "\f03a" !important; }

.fa-list-alt:before,
.fa.fa-list-alt:before,
.fas.fa-list-alt:before,
.far.fa-list-alt:before,
.fab.fa-list-alt:before,
.fa-solid.fa-list-alt:before,
.fa-regular.fa-list-alt:before,
.fa-brands.fa-list-alt:before,
.icon-list-alt:before,
.icon.icon-list-alt:before { content: "\f022" !important; }

.fa-list-ol:before,
.fa.fa-list-ol:before,
.fas.fa-list-ol:before,
.far.fa-list-ol:before,
.fab.fa-list-ol:before,
.fa-solid.fa-list-ol:before,
.fa-regular.fa-list-ol:before,
.fa-brands.fa-list-ol:before,
.icon-list-ol:before,
.icon.icon-list-ol:before { content: "\f0cb" !important; }

.fa-list-ul:before,
.fa.fa-list-ul:before,
.fas.fa-list-ul:before,
.far.fa-list-ul:before,
.fab.fa-list-ul:before,
.fa-solid.fa-list-ul:before,
.fa-regular.fa-list-ul:before,
.fa-brands.fa-list-ul:before,
.icon-list-ul:before,
.icon.icon-list-ul:before { content: "\f0ca" !important; }

.fa-location-arrow:before,
.fa.fa-location-arrow:before,
.fas.fa-location-arrow:before,
.far.fa-location-arrow:before,
.fab.fa-location-arrow:before,
.fa-solid.fa-location-arrow:before,
.fa-regular.fa-location-arrow:before,
.fa-brands.fa-location-arrow:before,
.icon-location-arrow:before,
.icon.icon-location-arrow:before { content: "\f124" !important; }

.fa-lock:before,
.fa.fa-lock:before,
.fas.fa-lock:before,
.far.fa-lock:before,
.fab.fa-lock:before,
.fa-solid.fa-lock:before,
.fa-regular.fa-lock:before,
.fa-brands.fa-lock:before,
.icon-lock:before,
.icon.icon-lock:before { content: "\f023" !important; }

.fa-long-arrow-down:before,
.fa.fa-long-arrow-down:before,
.fas.fa-long-arrow-down:before,
.far.fa-long-arrow-down:before,
.fab.fa-long-arrow-down:before,
.fa-solid.fa-long-arrow-down:before,
.fa-regular.fa-long-arrow-down:before,
.fa-brands.fa-long-arrow-down:before,
.icon-long-arrow-down:before,
.icon.icon-long-arrow-down:before { content: "\f175" !important; }

.fa-long-arrow-left:before,
.fa.fa-long-arrow-left:before,
.fas.fa-long-arrow-left:before,
.far.fa-long-arrow-left:before,
.fab.fa-long-arrow-left:before,
.fa-solid.fa-long-arrow-left:before,
.fa-regular.fa-long-arrow-left:before,
.fa-brands.fa-long-arrow-left:before,
.icon-long-arrow-left:before,
.icon.icon-long-arrow-left:before { content: "\f177" !important; }

.fa-long-arrow-right:before,
.fa.fa-long-arrow-right:before,
.fas.fa-long-arrow-right:before,
.far.fa-long-arrow-right:before,
.fab.fa-long-arrow-right:before,
.fa-solid.fa-long-arrow-right:before,
.fa-regular.fa-long-arrow-right:before,
.fa-brands.fa-long-arrow-right:before,
.icon-long-arrow-right:before,
.icon.icon-long-arrow-right:before { content: "\f178" !important; }

.fa-long-arrow-up:before,
.fa.fa-long-arrow-up:before,
.fas.fa-long-arrow-up:before,
.far.fa-long-arrow-up:before,
.fab.fa-long-arrow-up:before,
.fa-solid.fa-long-arrow-up:before,
.fa-regular.fa-long-arrow-up:before,
.fa-brands.fa-long-arrow-up:before,
.icon-long-arrow-up:before,
.icon.icon-long-arrow-up:before { content: "\f176" !important; }

.fa-low-vision:before,
.fa.fa-low-vision:before,
.fas.fa-low-vision:before,
.far.fa-low-vision:before,
.fab.fa-low-vision:before,
.fa-solid.fa-low-vision:before,
.fa-regular.fa-low-vision:before,
.fa-brands.fa-low-vision:before,
.icon-low-vision:before,
.icon.icon-low-vision:before { content: "\f2a8" !important; }

.fa-magic:before,
.fa.fa-magic:before,
.fas.fa-magic:before,
.far.fa-magic:before,
.fab.fa-magic:before,
.fa-solid.fa-magic:before,
.fa-regular.fa-magic:before,
.fa-brands.fa-magic:before,
.icon-magic:before,
.icon.icon-magic:before { content: "\f0d0" !important; }

.fa-magnet:before,
.fa.fa-magnet:before,
.fas.fa-magnet:before,
.far.fa-magnet:before,
.fab.fa-magnet:before,
.fa-solid.fa-magnet:before,
.fa-regular.fa-magnet:before,
.fa-brands.fa-magnet:before,
.icon-magnet:before,
.icon.icon-magnet:before { content: "\f076" !important; }

.fa-mail-forward:before,
.fa.fa-mail-forward:before,
.fas.fa-mail-forward:before,
.far.fa-mail-forward:before,
.fab.fa-mail-forward:before,
.fa-solid.fa-mail-forward:before,
.fa-regular.fa-mail-forward:before,
.fa-brands.fa-mail-forward:before,
.icon-mail-forward:before,
.icon.icon-mail-forward:before { content: "\f064" !important; }

.fa-mail-reply:before,
.fa.fa-mail-reply:before,
.fas.fa-mail-reply:before,
.far.fa-mail-reply:before,
.fab.fa-mail-reply:before,
.fa-solid.fa-mail-reply:before,
.fa-regular.fa-mail-reply:before,
.fa-brands.fa-mail-reply:before,
.icon-mail-reply:before,
.icon.icon-mail-reply:before { content: "\f112" !important; }

.fa-mail-reply-all:before,
.fa.fa-mail-reply-all:before,
.fas.fa-mail-reply-all:before,
.far.fa-mail-reply-all:before,
.fab.fa-mail-reply-all:before,
.fa-solid.fa-mail-reply-all:before,
.fa-regular.fa-mail-reply-all:before,
.fa-brands.fa-mail-reply-all:before,
.icon-mail-reply-all:before,
.icon.icon-mail-reply-all:before { content: "\f122" !important; }

.fa-male:before,
.fa.fa-male:before,
.fas.fa-male:before,
.far.fa-male:before,
.fab.fa-male:before,
.fa-solid.fa-male:before,
.fa-regular.fa-male:before,
.fa-brands.fa-male:before,
.icon-male:before,
.icon.icon-male:before { content: "\f183" !important; }

.fa-map:before,
.fa.fa-map:before,
.fas.fa-map:before,
.far.fa-map:before,
.fab.fa-map:before,
.fa-solid.fa-map:before,
.fa-regular.fa-map:before,
.fa-brands.fa-map:before,
.icon-map:before,
.icon.icon-map:before { content: "\f279" !important; }

.fa-map-marker:before,
.fa.fa-map-marker:before,
.fas.fa-map-marker:before,
.far.fa-map-marker:before,
.fab.fa-map-marker:before,
.fa-solid.fa-map-marker:before,
.fa-regular.fa-map-marker:before,
.fa-brands.fa-map-marker:before,
.icon-map-marker:before,
.icon.icon-map-marker:before { content: "\f041" !important; }

.fa-map-o:before,
.fa.fa-map-o:before,
.fas.fa-map-o:before,
.far.fa-map-o:before,
.fab.fa-map-o:before,
.fa-solid.fa-map-o:before,
.fa-regular.fa-map-o:before,
.fa-brands.fa-map-o:before,
.icon-map-o:before,
.icon.icon-map-o:before { content: "\f278" !important; }

.fa-map-pin:before,
.fa.fa-map-pin:before,
.fas.fa-map-pin:before,
.far.fa-map-pin:before,
.fab.fa-map-pin:before,
.fa-solid.fa-map-pin:before,
.fa-regular.fa-map-pin:before,
.fa-brands.fa-map-pin:before,
.icon-map-pin:before,
.icon.icon-map-pin:before { content: "\f276" !important; }

.fa-map-signs:before,
.fa.fa-map-signs:before,
.fas.fa-map-signs:before,
.far.fa-map-signs:before,
.fab.fa-map-signs:before,
.fa-solid.fa-map-signs:before,
.fa-regular.fa-map-signs:before,
.fa-brands.fa-map-signs:before,
.icon-map-signs:before,
.icon.icon-map-signs:before { content: "\f277" !important; }

.fa-mars:before,
.fa.fa-mars:before,
.fas.fa-mars:before,
.far.fa-mars:before,
.fab.fa-mars:before,
.fa-solid.fa-mars:before,
.fa-regular.fa-mars:before,
.fa-brands.fa-mars:before,
.icon-mars:before,
.icon.icon-mars:before { content: "\f222" !important; }

.fa-mars-double:before,
.fa.fa-mars-double:before,
.fas.fa-mars-double:before,
.far.fa-mars-double:before,
.fab.fa-mars-double:before,
.fa-solid.fa-mars-double:before,
.fa-regular.fa-mars-double:before,
.fa-brands.fa-mars-double:before,
.icon-mars-double:before,
.icon.icon-mars-double:before { content: "\f227" !important; }

.fa-mars-stroke:before,
.fa.fa-mars-stroke:before,
.fas.fa-mars-stroke:before,
.far.fa-mars-stroke:before,
.fab.fa-mars-stroke:before,
.fa-solid.fa-mars-stroke:before,
.fa-regular.fa-mars-stroke:before,
.fa-brands.fa-mars-stroke:before,
.icon-mars-stroke:before,
.icon.icon-mars-stroke:before { content: "\f229" !important; }

.fa-mars-stroke-h:before,
.fa.fa-mars-stroke-h:before,
.fas.fa-mars-stroke-h:before,
.far.fa-mars-stroke-h:before,
.fab.fa-mars-stroke-h:before,
.fa-solid.fa-mars-stroke-h:before,
.fa-regular.fa-mars-stroke-h:before,
.fa-brands.fa-mars-stroke-h:before,
.icon-mars-stroke-h:before,
.icon.icon-mars-stroke-h:before { content: "\f22b" !important; }

.fa-mars-stroke-v:before,
.fa.fa-mars-stroke-v:before,
.fas.fa-mars-stroke-v:before,
.far.fa-mars-stroke-v:before,
.fab.fa-mars-stroke-v:before,
.fa-solid.fa-mars-stroke-v:before,
.fa-regular.fa-mars-stroke-v:before,
.fa-brands.fa-mars-stroke-v:before,
.icon-mars-stroke-v:before,
.icon.icon-mars-stroke-v:before { content: "\f22a" !important; }

.fa-maxcdn:before,
.fa.fa-maxcdn:before,
.fas.fa-maxcdn:before,
.far.fa-maxcdn:before,
.fab.fa-maxcdn:before,
.fa-solid.fa-maxcdn:before,
.fa-regular.fa-maxcdn:before,
.fa-brands.fa-maxcdn:before,
.icon-maxcdn:before,
.icon.icon-maxcdn:before { content: "\f136" !important; }

.fa-meanpath:before,
.fa.fa-meanpath:before,
.fas.fa-meanpath:before,
.far.fa-meanpath:before,
.fab.fa-meanpath:before,
.fa-solid.fa-meanpath:before,
.fa-regular.fa-meanpath:before,
.fa-brands.fa-meanpath:before,
.icon-meanpath:before,
.icon.icon-meanpath:before { content: "\f20c" !important; }

.fa-medium:before,
.fa.fa-medium:before,
.fas.fa-medium:before,
.far.fa-medium:before,
.fab.fa-medium:before,
.fa-solid.fa-medium:before,
.fa-regular.fa-medium:before,
.fa-brands.fa-medium:before,
.icon-medium:before,
.icon.icon-medium:before { content: "\f23a" !important; }

.fa-medkit:before,
.fa.fa-medkit:before,
.fas.fa-medkit:before,
.far.fa-medkit:before,
.fab.fa-medkit:before,
.fa-solid.fa-medkit:before,
.fa-regular.fa-medkit:before,
.fa-brands.fa-medkit:before,
.icon-medkit:before,
.icon.icon-medkit:before { content: "\f0fa" !important; }

.fa-meetup:before,
.fa.fa-meetup:before,
.fas.fa-meetup:before,
.far.fa-meetup:before,
.fab.fa-meetup:before,
.fa-solid.fa-meetup:before,
.fa-regular.fa-meetup:before,
.fa-brands.fa-meetup:before,
.icon-meetup:before,
.icon.icon-meetup:before { content: "\f2e0" !important; }

.fa-meh-o:before,
.fa.fa-meh-o:before,
.fas.fa-meh-o:before,
.far.fa-meh-o:before,
.fab.fa-meh-o:before,
.fa-solid.fa-meh-o:before,
.fa-regular.fa-meh-o:before,
.fa-brands.fa-meh-o:before,
.icon-meh-o:before,
.icon.icon-meh-o:before { content: "\f11a" !important; }

.fa-mercury:before,
.fa.fa-mercury:before,
.fas.fa-mercury:before,
.far.fa-mercury:before,
.fab.fa-mercury:before,
.fa-solid.fa-mercury:before,
.fa-regular.fa-mercury:before,
.fa-brands.fa-mercury:before,
.icon-mercury:before,
.icon.icon-mercury:before { content: "\f223" !important; }

.fa-microchip:before,
.fa.fa-microchip:before,
.fas.fa-microchip:before,
.far.fa-microchip:before,
.fab.fa-microchip:before,
.fa-solid.fa-microchip:before,
.fa-regular.fa-microchip:before,
.fa-brands.fa-microchip:before,
.icon-microchip:before,
.icon.icon-microchip:before { content: "\f2db" !important; }

.fa-microphone:before,
.fa.fa-microphone:before,
.fas.fa-microphone:before,
.far.fa-microphone:before,
.fab.fa-microphone:before,
.fa-solid.fa-microphone:before,
.fa-regular.fa-microphone:before,
.fa-brands.fa-microphone:before,
.icon-microphone:before,
.icon.icon-microphone:before { content: "\f130" !important; }

.fa-microphone-slash:before,
.fa.fa-microphone-slash:before,
.fas.fa-microphone-slash:before,
.far.fa-microphone-slash:before,
.fab.fa-microphone-slash:before,
.fa-solid.fa-microphone-slash:before,
.fa-regular.fa-microphone-slash:before,
.fa-brands.fa-microphone-slash:before,
.icon-microphone-slash:before,
.icon.icon-microphone-slash:before { content: "\f131" !important; }

.fa-minus:before,
.fa.fa-minus:before,
.fas.fa-minus:before,
.far.fa-minus:before,
.fab.fa-minus:before,
.fa-solid.fa-minus:before,
.fa-regular.fa-minus:before,
.fa-brands.fa-minus:before,
.icon-minus:before,
.icon.icon-minus:before { content: "\f068" !important; }

.fa-minus-circle:before,
.fa.fa-minus-circle:before,
.fas.fa-minus-circle:before,
.far.fa-minus-circle:before,
.fab.fa-minus-circle:before,
.fa-solid.fa-minus-circle:before,
.fa-regular.fa-minus-circle:before,
.fa-brands.fa-minus-circle:before,
.icon-minus-circle:before,
.icon.icon-minus-circle:before { content: "\f056" !important; }

.fa-minus-square:before,
.fa.fa-minus-square:before,
.fas.fa-minus-square:before,
.far.fa-minus-square:before,
.fab.fa-minus-square:before,
.fa-solid.fa-minus-square:before,
.fa-regular.fa-minus-square:before,
.fa-brands.fa-minus-square:before,
.icon-minus-square:before,
.icon.icon-minus-square:before { content: "\f146" !important; }

.fa-minus-square-o:before,
.fa.fa-minus-square-o:before,
.fas.fa-minus-square-o:before,
.far.fa-minus-square-o:before,
.fab.fa-minus-square-o:before,
.fa-solid.fa-minus-square-o:before,
.fa-regular.fa-minus-square-o:before,
.fa-brands.fa-minus-square-o:before,
.icon-minus-square-o:before,
.icon.icon-minus-square-o:before { content: "\f147" !important; }

.fa-mixcloud:before,
.fa.fa-mixcloud:before,
.fas.fa-mixcloud:before,
.far.fa-mixcloud:before,
.fab.fa-mixcloud:before,
.fa-solid.fa-mixcloud:before,
.fa-regular.fa-mixcloud:before,
.fa-brands.fa-mixcloud:before,
.icon-mixcloud:before,
.icon.icon-mixcloud:before { content: "\f289" !important; }

.fa-mobile:before,
.fa.fa-mobile:before,
.fas.fa-mobile:before,
.far.fa-mobile:before,
.fab.fa-mobile:before,
.fa-solid.fa-mobile:before,
.fa-regular.fa-mobile:before,
.fa-brands.fa-mobile:before,
.icon-mobile:before,
.icon.icon-mobile:before { content: "\f10b" !important; }

.fa-mobile-phone:before,
.fa.fa-mobile-phone:before,
.fas.fa-mobile-phone:before,
.far.fa-mobile-phone:before,
.fab.fa-mobile-phone:before,
.fa-solid.fa-mobile-phone:before,
.fa-regular.fa-mobile-phone:before,
.fa-brands.fa-mobile-phone:before,
.icon-mobile-phone:before,
.icon.icon-mobile-phone:before { content: "\f10b" !important; }

.fa-modx:before,
.fa.fa-modx:before,
.fas.fa-modx:before,
.far.fa-modx:before,
.fab.fa-modx:before,
.fa-solid.fa-modx:before,
.fa-regular.fa-modx:before,
.fa-brands.fa-modx:before,
.icon-modx:before,
.icon.icon-modx:before { content: "\f285" !important; }

.fa-money:before,
.fa.fa-money:before,
.fas.fa-money:before,
.far.fa-money:before,
.fab.fa-money:before,
.fa-solid.fa-money:before,
.fa-regular.fa-money:before,
.fa-brands.fa-money:before,
.icon-money:before,
.icon.icon-money:before { content: "\f0d6" !important; }

.fa-moon-o:before,
.fa.fa-moon-o:before,
.fas.fa-moon-o:before,
.far.fa-moon-o:before,
.fab.fa-moon-o:before,
.fa-solid.fa-moon-o:before,
.fa-regular.fa-moon-o:before,
.fa-brands.fa-moon-o:before,
.icon-moon-o:before,
.icon.icon-moon-o:before { content: "\f186" !important; }

.fa-mortar-board:before,
.fa.fa-mortar-board:before,
.fas.fa-mortar-board:before,
.far.fa-mortar-board:before,
.fab.fa-mortar-board:before,
.fa-solid.fa-mortar-board:before,
.fa-regular.fa-mortar-board:before,
.fa-brands.fa-mortar-board:before,
.icon-mortar-board:before,
.icon.icon-mortar-board:before { content: "\f19d" !important; }

.fa-motorcycle:before,
.fa.fa-motorcycle:before,
.fas.fa-motorcycle:before,
.far.fa-motorcycle:before,
.fab.fa-motorcycle:before,
.fa-solid.fa-motorcycle:before,
.fa-regular.fa-motorcycle:before,
.fa-brands.fa-motorcycle:before,
.icon-motorcycle:before,
.icon.icon-motorcycle:before { content: "\f21c" !important; }

.fa-mouse-pointer:before,
.fa.fa-mouse-pointer:before,
.fas.fa-mouse-pointer:before,
.far.fa-mouse-pointer:before,
.fab.fa-mouse-pointer:before,
.fa-solid.fa-mouse-pointer:before,
.fa-regular.fa-mouse-pointer:before,
.fa-brands.fa-mouse-pointer:before,
.icon-mouse-pointer:before,
.icon.icon-mouse-pointer:before { content: "\f245" !important; }

.fa-music:before,
.fa.fa-music:before,
.fas.fa-music:before,
.far.fa-music:before,
.fab.fa-music:before,
.fa-solid.fa-music:before,
.fa-regular.fa-music:before,
.fa-brands.fa-music:before,
.icon-music:before,
.icon.icon-music:before { content: "\f001" !important; }

.fa-navicon:before,
.fa.fa-navicon:before,
.fas.fa-navicon:before,
.far.fa-navicon:before,
.fab.fa-navicon:before,
.fa-solid.fa-navicon:before,
.fa-regular.fa-navicon:before,
.fa-brands.fa-navicon:before,
.icon-navicon:before,
.icon.icon-navicon:before { content: "\f0c9" !important; }

.fa-neuter:before,
.fa.fa-neuter:before,
.fas.fa-neuter:before,
.far.fa-neuter:before,
.fab.fa-neuter:before,
.fa-solid.fa-neuter:before,
.fa-regular.fa-neuter:before,
.fa-brands.fa-neuter:before,
.icon-neuter:before,
.icon.icon-neuter:before { content: "\f22c" !important; }

.fa-newspaper-o:before,
.fa.fa-newspaper-o:before,
.fas.fa-newspaper-o:before,
.far.fa-newspaper-o:before,
.fab.fa-newspaper-o:before,
.fa-solid.fa-newspaper-o:before,
.fa-regular.fa-newspaper-o:before,
.fa-brands.fa-newspaper-o:before,
.icon-newspaper-o:before,
.icon.icon-newspaper-o:before { content: "\f1ea" !important; }

.fa-object-group:before,
.fa.fa-object-group:before,
.fas.fa-object-group:before,
.far.fa-object-group:before,
.fab.fa-object-group:before,
.fa-solid.fa-object-group:before,
.fa-regular.fa-object-group:before,
.fa-brands.fa-object-group:before,
.icon-object-group:before,
.icon.icon-object-group:before { content: "\f247" !important; }

.fa-object-ungroup:before,
.fa.fa-object-ungroup:before,
.fas.fa-object-ungroup:before,
.far.fa-object-ungroup:before,
.fab.fa-object-ungroup:before,
.fa-solid.fa-object-ungroup:before,
.fa-regular.fa-object-ungroup:before,
.fa-brands.fa-object-ungroup:before,
.icon-object-ungroup:before,
.icon.icon-object-ungroup:before { content: "\f248" !important; }

.fa-odnoklassniki:before,
.fa.fa-odnoklassniki:before,
.fas.fa-odnoklassniki:before,
.far.fa-odnoklassniki:before,
.fab.fa-odnoklassniki:before,
.fa-solid.fa-odnoklassniki:before,
.fa-regular.fa-odnoklassniki:before,
.fa-brands.fa-odnoklassniki:before,
.icon-odnoklassniki:before,
.icon.icon-odnoklassniki:before { content: "\f263" !important; }

.fa-odnoklassniki-square:before,
.fa.fa-odnoklassniki-square:before,
.fas.fa-odnoklassniki-square:before,
.far.fa-odnoklassniki-square:before,
.fab.fa-odnoklassniki-square:before,
.fa-solid.fa-odnoklassniki-square:before,
.fa-regular.fa-odnoklassniki-square:before,
.fa-brands.fa-odnoklassniki-square:before,
.icon-odnoklassniki-square:before,
.icon.icon-odnoklassniki-square:before { content: "\f264" !important; }

.fa-ok:before,
.fa.fa-ok:before,
.fas.fa-ok:before,
.far.fa-ok:before,
.fab.fa-ok:before,
.fa-solid.fa-ok:before,
.fa-regular.fa-ok:before,
.fa-brands.fa-ok:before,
.icon-ok:before,
.icon.icon-ok:before { content: "\f00c" !important; }

.fa-opencart:before,
.fa.fa-opencart:before,
.fas.fa-opencart:before,
.far.fa-opencart:before,
.fab.fa-opencart:before,
.fa-solid.fa-opencart:before,
.fa-regular.fa-opencart:before,
.fa-brands.fa-opencart:before,
.icon-opencart:before,
.icon.icon-opencart:before { content: "\f23d" !important; }

.fa-openid:before,
.fa.fa-openid:before,
.fas.fa-openid:before,
.far.fa-openid:before,
.fab.fa-openid:before,
.fa-solid.fa-openid:before,
.fa-regular.fa-openid:before,
.fa-brands.fa-openid:before,
.icon-openid:before,
.icon.icon-openid:before { content: "\f19b" !important; }

.fa-opera:before,
.fa.fa-opera:before,
.fas.fa-opera:before,
.far.fa-opera:before,
.fab.fa-opera:before,
.fa-solid.fa-opera:before,
.fa-regular.fa-opera:before,
.fa-brands.fa-opera:before,
.icon-opera:before,
.icon.icon-opera:before { content: "\f26a" !important; }

.fa-optin-monster:before,
.fa.fa-optin-monster:before,
.fas.fa-optin-monster:before,
.far.fa-optin-monster:before,
.fab.fa-optin-monster:before,
.fa-solid.fa-optin-monster:before,
.fa-regular.fa-optin-monster:before,
.fa-brands.fa-optin-monster:before,
.icon-optin-monster:before,
.icon.icon-optin-monster:before { content: "\f23c" !important; }

.fa-outdent:before,
.fa.fa-outdent:before,
.fas.fa-outdent:before,
.far.fa-outdent:before,
.fab.fa-outdent:before,
.fa-solid.fa-outdent:before,
.fa-regular.fa-outdent:before,
.fa-brands.fa-outdent:before,
.icon-outdent:before,
.icon.icon-outdent:before { content: "\f03b" !important; }

.fa-pagelines:before,
.fa.fa-pagelines:before,
.fas.fa-pagelines:before,
.far.fa-pagelines:before,
.fab.fa-pagelines:before,
.fa-solid.fa-pagelines:before,
.fa-regular.fa-pagelines:before,
.fa-brands.fa-pagelines:before,
.icon-pagelines:before,
.icon.icon-pagelines:before { content: "\f18c" !important; }

.fa-paint-brush:before,
.fa.fa-paint-brush:before,
.fas.fa-paint-brush:before,
.far.fa-paint-brush:before,
.fab.fa-paint-brush:before,
.fa-solid.fa-paint-brush:before,
.fa-regular.fa-paint-brush:before,
.fa-brands.fa-paint-brush:before,
.icon-paint-brush:before,
.icon.icon-paint-brush:before { content: "\f1fc" !important; }

.fa-paper-plane:before,
.fa.fa-paper-plane:before,
.fas.fa-paper-plane:before,
.far.fa-paper-plane:before,
.fab.fa-paper-plane:before,
.fa-solid.fa-paper-plane:before,
.fa-regular.fa-paper-plane:before,
.fa-brands.fa-paper-plane:before,
.icon-paper-plane:before,
.icon.icon-paper-plane:before { content: "\f1d8" !important; }

.fa-paper-plane-o:before,
.fa.fa-paper-plane-o:before,
.fas.fa-paper-plane-o:before,
.far.fa-paper-plane-o:before,
.fab.fa-paper-plane-o:before,
.fa-solid.fa-paper-plane-o:before,
.fa-regular.fa-paper-plane-o:before,
.fa-brands.fa-paper-plane-o:before,
.icon-paper-plane-o:before,
.icon.icon-paper-plane-o:before { content: "\f1d9" !important; }

.fa-paperclip:before,
.fa.fa-paperclip:before,
.fas.fa-paperclip:before,
.far.fa-paperclip:before,
.fab.fa-paperclip:before,
.fa-solid.fa-paperclip:before,
.fa-regular.fa-paperclip:before,
.fa-brands.fa-paperclip:before,
.icon-paperclip:before,
.icon.icon-paperclip:before { content: "\f0c6" !important; }

.fa-paragraph:before,
.fa.fa-paragraph:before,
.fas.fa-paragraph:before,
.far.fa-paragraph:before,
.fab.fa-paragraph:before,
.fa-solid.fa-paragraph:before,
.fa-regular.fa-paragraph:before,
.fa-brands.fa-paragraph:before,
.icon-paragraph:before,
.icon.icon-paragraph:before { content: "\f1dd" !important; }

.fa-paste:before,
.fa.fa-paste:before,
.fas.fa-paste:before,
.far.fa-paste:before,
.fab.fa-paste:before,
.fa-solid.fa-paste:before,
.fa-regular.fa-paste:before,
.fa-brands.fa-paste:before,
.icon-paste:before,
.icon.icon-paste:before { content: "\f0ea" !important; }

.fa-pause:before,
.fa.fa-pause:before,
.fas.fa-pause:before,
.far.fa-pause:before,
.fab.fa-pause:before,
.fa-solid.fa-pause:before,
.fa-regular.fa-pause:before,
.fa-brands.fa-pause:before,
.icon-pause:before,
.icon.icon-pause:before { content: "\f04c" !important; }

.fa-pause-circle:before,
.fa.fa-pause-circle:before,
.fas.fa-pause-circle:before,
.far.fa-pause-circle:before,
.fab.fa-pause-circle:before,
.fa-solid.fa-pause-circle:before,
.fa-regular.fa-pause-circle:before,
.fa-brands.fa-pause-circle:before,
.icon-pause-circle:before,
.icon.icon-pause-circle:before { content: "\f28b" !important; }

.fa-pause-circle-o:before,
.fa.fa-pause-circle-o:before,
.fas.fa-pause-circle-o:before,
.far.fa-pause-circle-o:before,
.fab.fa-pause-circle-o:before,
.fa-solid.fa-pause-circle-o:before,
.fa-regular.fa-pause-circle-o:before,
.fa-brands.fa-pause-circle-o:before,
.icon-pause-circle-o:before,
.icon.icon-pause-circle-o:before { content: "\f28c" !important; }

.fa-paw:before,
.fa.fa-paw:before,
.fas.fa-paw:before,
.far.fa-paw:before,
.fab.fa-paw:before,
.fa-solid.fa-paw:before,
.fa-regular.fa-paw:before,
.fa-brands.fa-paw:before,
.icon-paw:before,
.icon.icon-paw:before { content: "\f1b0" !important; }

.fa-paypal:before,
.fa.fa-paypal:before,
.fas.fa-paypal:before,
.far.fa-paypal:before,
.fab.fa-paypal:before,
.fa-solid.fa-paypal:before,
.fa-regular.fa-paypal:before,
.fa-brands.fa-paypal:before,
.icon-paypal:before,
.icon.icon-paypal:before { content: "\f1ed" !important; }

.fa-pencil:before,
.fa.fa-pencil:before,
.fas.fa-pencil:before,
.far.fa-pencil:before,
.fab.fa-pencil:before,
.fa-solid.fa-pencil:before,
.fa-regular.fa-pencil:before,
.fa-brands.fa-pencil:before,
.icon-pencil:before,
.icon.icon-pencil:before { content: "\f040" !important; }

.fa-pencil-square:before,
.fa.fa-pencil-square:before,
.fas.fa-pencil-square:before,
.far.fa-pencil-square:before,
.fab.fa-pencil-square:before,
.fa-solid.fa-pencil-square:before,
.fa-regular.fa-pencil-square:before,
.fa-brands.fa-pencil-square:before,
.icon-pencil-square:before,
.icon.icon-pencil-square:before { content: "\f14b" !important; }

.fa-pencil-square-o:before,
.fa.fa-pencil-square-o:before,
.fas.fa-pencil-square-o:before,
.far.fa-pencil-square-o:before,
.fab.fa-pencil-square-o:before,
.fa-solid.fa-pencil-square-o:before,
.fa-regular.fa-pencil-square-o:before,
.fa-brands.fa-pencil-square-o:before,
.icon-pencil-square-o:before,
.icon.icon-pencil-square-o:before { content: "\f044" !important; }

.fa-percent:before,
.fa.fa-percent:before,
.fas.fa-percent:before,
.far.fa-percent:before,
.fab.fa-percent:before,
.fa-solid.fa-percent:before,
.fa-regular.fa-percent:before,
.fa-brands.fa-percent:before,
.icon-percent:before,
.icon.icon-percent:before { content: "\f295" !important; }

.fa-phone:before,
.fa.fa-phone:before,
.fas.fa-phone:before,
.far.fa-phone:before,
.fab.fa-phone:before,
.fa-solid.fa-phone:before,
.fa-regular.fa-phone:before,
.fa-brands.fa-phone:before,
.icon-phone:before,
.icon.icon-phone:before { content: "\f095" !important; }

.fa-phone-square:before,
.fa.fa-phone-square:before,
.fas.fa-phone-square:before,
.far.fa-phone-square:before,
.fab.fa-phone-square:before,
.fa-solid.fa-phone-square:before,
.fa-regular.fa-phone-square:before,
.fa-brands.fa-phone-square:before,
.icon-phone-square:before,
.icon.icon-phone-square:before { content: "\f098" !important; }

.fa-photo:before,
.fa.fa-photo:before,
.fas.fa-photo:before,
.far.fa-photo:before,
.fab.fa-photo:before,
.fa-solid.fa-photo:before,
.fa-regular.fa-photo:before,
.fa-brands.fa-photo:before,
.icon-photo:before,
.icon.icon-photo:before { content: "\f03e" !important; }

.fa-picture-o:before,
.fa.fa-picture-o:before,
.fas.fa-picture-o:before,
.far.fa-picture-o:before,
.fab.fa-picture-o:before,
.fa-solid.fa-picture-o:before,
.fa-regular.fa-picture-o:before,
.fa-brands.fa-picture-o:before,
.icon-picture-o:before,
.icon.icon-picture-o:before { content: "\f03e" !important; }

.fa-pie-chart:before,
.fa.fa-pie-chart:before,
.fas.fa-pie-chart:before,
.far.fa-pie-chart:before,
.fab.fa-pie-chart:before,
.fa-solid.fa-pie-chart:before,
.fa-regular.fa-pie-chart:before,
.fa-brands.fa-pie-chart:before,
.icon-pie-chart:before,
.icon.icon-pie-chart:before { content: "\f200" !important; }

.fa-pied-piper:before,
.fa.fa-pied-piper:before,
.fas.fa-pied-piper:before,
.far.fa-pied-piper:before,
.fab.fa-pied-piper:before,
.fa-solid.fa-pied-piper:before,
.fa-regular.fa-pied-piper:before,
.fa-brands.fa-pied-piper:before,
.icon-pied-piper:before,
.icon.icon-pied-piper:before { content: "\f2ae" !important; }

.fa-pied-piper-alt:before,
.fa.fa-pied-piper-alt:before,
.fas.fa-pied-piper-alt:before,
.far.fa-pied-piper-alt:before,
.fab.fa-pied-piper-alt:before,
.fa-solid.fa-pied-piper-alt:before,
.fa-regular.fa-pied-piper-alt:before,
.fa-brands.fa-pied-piper-alt:before,
.icon-pied-piper-alt:before,
.icon.icon-pied-piper-alt:before { content: "\f1a8" !important; }

.fa-pied-piper-pp:before,
.fa.fa-pied-piper-pp:before,
.fas.fa-pied-piper-pp:before,
.far.fa-pied-piper-pp:before,
.fab.fa-pied-piper-pp:before,
.fa-solid.fa-pied-piper-pp:before,
.fa-regular.fa-pied-piper-pp:before,
.fa-brands.fa-pied-piper-pp:before,
.icon-pied-piper-pp:before,
.icon.icon-pied-piper-pp:before { content: "\f1a7" !important; }

.fa-pinterest:before,
.fa.fa-pinterest:before,
.fas.fa-pinterest:before,
.far.fa-pinterest:before,
.fab.fa-pinterest:before,
.fa-solid.fa-pinterest:before,
.fa-regular.fa-pinterest:before,
.fa-brands.fa-pinterest:before,
.icon-pinterest:before,
.icon.icon-pinterest:before { content: "\f0d2" !important; }

.fa-pinterest-p:before,
.fa.fa-pinterest-p:before,
.fas.fa-pinterest-p:before,
.far.fa-pinterest-p:before,
.fab.fa-pinterest-p:before,
.fa-solid.fa-pinterest-p:before,
.fa-regular.fa-pinterest-p:before,
.fa-brands.fa-pinterest-p:before,
.icon-pinterest-p:before,
.icon.icon-pinterest-p:before { content: "\f231" !important; }

.fa-pinterest-square:before,
.fa.fa-pinterest-square:before,
.fas.fa-pinterest-square:before,
.far.fa-pinterest-square:before,
.fab.fa-pinterest-square:before,
.fa-solid.fa-pinterest-square:before,
.fa-regular.fa-pinterest-square:before,
.fa-brands.fa-pinterest-square:before,
.icon-pinterest-square:before,
.icon.icon-pinterest-square:before { content: "\f0d3" !important; }

.fa-plane:before,
.fa.fa-plane:before,
.fas.fa-plane:before,
.far.fa-plane:before,
.fab.fa-plane:before,
.fa-solid.fa-plane:before,
.fa-regular.fa-plane:before,
.fa-brands.fa-plane:before,
.icon-plane:before,
.icon.icon-plane:before { content: "\f072" !important; }

.fa-play:before,
.fa.fa-play:before,
.fas.fa-play:before,
.far.fa-play:before,
.fab.fa-play:before,
.fa-solid.fa-play:before,
.fa-regular.fa-play:before,
.fa-brands.fa-play:before,
.icon-play:before,
.icon.icon-play:before { content: "\f04b" !important; }

.fa-play-circle:before,
.fa.fa-play-circle:before,
.fas.fa-play-circle:before,
.far.fa-play-circle:before,
.fab.fa-play-circle:before,
.fa-solid.fa-play-circle:before,
.fa-regular.fa-play-circle:before,
.fa-brands.fa-play-circle:before,
.icon-play-circle:before,
.icon.icon-play-circle:before { content: "\f144" !important; }

.fa-play-circle-o:before,
.fa.fa-play-circle-o:before,
.fas.fa-play-circle-o:before,
.far.fa-play-circle-o:before,
.fab.fa-play-circle-o:before,
.fa-solid.fa-play-circle-o:before,
.fa-regular.fa-play-circle-o:before,
.fa-brands.fa-play-circle-o:before,
.icon-play-circle-o:before,
.icon.icon-play-circle-o:before { content: "\f01d" !important; }

.fa-plug:before,
.fa.fa-plug:before,
.fas.fa-plug:before,
.far.fa-plug:before,
.fab.fa-plug:before,
.fa-solid.fa-plug:before,
.fa-regular.fa-plug:before,
.fa-brands.fa-plug:before,
.icon-plug:before,
.icon.icon-plug:before { content: "\f1e6" !important; }

.fa-plus:before,
.fa.fa-plus:before,
.fas.fa-plus:before,
.far.fa-plus:before,
.fab.fa-plus:before,
.fa-solid.fa-plus:before,
.fa-regular.fa-plus:before,
.fa-brands.fa-plus:before,
.icon-plus:before,
.icon.icon-plus:before { content: "\f067" !important; }

.fa-plus-circle:before,
.fa.fa-plus-circle:before,
.fas.fa-plus-circle:before,
.far.fa-plus-circle:before,
.fab.fa-plus-circle:before,
.fa-solid.fa-plus-circle:before,
.fa-regular.fa-plus-circle:before,
.fa-brands.fa-plus-circle:before,
.icon-plus-circle:before,
.icon.icon-plus-circle:before { content: "\f055" !important; }

.fa-plus-square:before,
.fa.fa-plus-square:before,
.fas.fa-plus-square:before,
.far.fa-plus-square:before,
.fab.fa-plus-square:before,
.fa-solid.fa-plus-square:before,
.fa-regular.fa-plus-square:before,
.fa-brands.fa-plus-square:before,
.icon-plus-square:before,
.icon.icon-plus-square:before { content: "\f0fe" !important; }

.fa-plus-square-o:before,
.fa.fa-plus-square-o:before,
.fas.fa-plus-square-o:before,
.far.fa-plus-square-o:before,
.fab.fa-plus-square-o:before,
.fa-solid.fa-plus-square-o:before,
.fa-regular.fa-plus-square-o:before,
.fa-brands.fa-plus-square-o:before,
.icon-plus-square-o:before,
.icon.icon-plus-square-o:before { content: "\f196" !important; }

.fa-podcast:before,
.fa.fa-podcast:before,
.fas.fa-podcast:before,
.far.fa-podcast:before,
.fab.fa-podcast:before,
.fa-solid.fa-podcast:before,
.fa-regular.fa-podcast:before,
.fa-brands.fa-podcast:before,
.icon-podcast:before,
.icon.icon-podcast:before { content: "\f2ce" !important; }

.fa-power-off:before,
.fa.fa-power-off:before,
.fas.fa-power-off:before,
.far.fa-power-off:before,
.fab.fa-power-off:before,
.fa-solid.fa-power-off:before,
.fa-regular.fa-power-off:before,
.fa-brands.fa-power-off:before,
.icon-power-off:before,
.icon.icon-power-off:before { content: "\f011" !important; }

.fa-print:before,
.fa.fa-print:before,
.fas.fa-print:before,
.far.fa-print:before,
.fab.fa-print:before,
.fa-solid.fa-print:before,
.fa-regular.fa-print:before,
.fa-brands.fa-print:before,
.icon-print:before,
.icon.icon-print:before { content: "\f02f" !important; }

.fa-product-hunt:before,
.fa.fa-product-hunt:before,
.fas.fa-product-hunt:before,
.far.fa-product-hunt:before,
.fab.fa-product-hunt:before,
.fa-solid.fa-product-hunt:before,
.fa-regular.fa-product-hunt:before,
.fa-brands.fa-product-hunt:before,
.icon-product-hunt:before,
.icon.icon-product-hunt:before { content: "\f288" !important; }

.fa-puzzle-piece:before,
.fa.fa-puzzle-piece:before,
.fas.fa-puzzle-piece:before,
.far.fa-puzzle-piece:before,
.fab.fa-puzzle-piece:before,
.fa-solid.fa-puzzle-piece:before,
.fa-regular.fa-puzzle-piece:before,
.fa-brands.fa-puzzle-piece:before,
.icon-puzzle-piece:before,
.icon.icon-puzzle-piece:before { content: "\f12e" !important; }

.fa-qq:before,
.fa.fa-qq:before,
.fas.fa-qq:before,
.far.fa-qq:before,
.fab.fa-qq:before,
.fa-solid.fa-qq:before,
.fa-regular.fa-qq:before,
.fa-brands.fa-qq:before,
.icon-qq:before,
.icon.icon-qq:before { content: "\f1d6" !important; }

.fa-qrcode:before,
.fa.fa-qrcode:before,
.fas.fa-qrcode:before,
.far.fa-qrcode:before,
.fab.fa-qrcode:before,
.fa-solid.fa-qrcode:before,
.fa-regular.fa-qrcode:before,
.fa-brands.fa-qrcode:before,
.icon-qrcode:before,
.icon.icon-qrcode:before { content: "\f029" !important; }

.fa-question:before,
.fa.fa-question:before,
.fas.fa-question:before,
.far.fa-question:before,
.fab.fa-question:before,
.fa-solid.fa-question:before,
.fa-regular.fa-question:before,
.fa-brands.fa-question:before,
.icon-question:before,
.icon.icon-question:before { content: "\f128" !important; }

.fa-question-circle:before,
.fa.fa-question-circle:before,
.fas.fa-question-circle:before,
.far.fa-question-circle:before,
.fab.fa-question-circle:before,
.fa-solid.fa-question-circle:before,
.fa-regular.fa-question-circle:before,
.fa-brands.fa-question-circle:before,
.icon-question-circle:before,
.icon.icon-question-circle:before { content: "\f059" !important; }

.fa-question-circle-o:before,
.fa.fa-question-circle-o:before,
.fas.fa-question-circle-o:before,
.far.fa-question-circle-o:before,
.fab.fa-question-circle-o:before,
.fa-solid.fa-question-circle-o:before,
.fa-regular.fa-question-circle-o:before,
.fa-brands.fa-question-circle-o:before,
.icon-question-circle-o:before,
.icon.icon-question-circle-o:before { content: "\f29c" !important; }

.fa-quora:before,
.fa.fa-quora:before,
.fas.fa-quora:before,
.far.fa-quora:before,
.fab.fa-quora:before,
.fa-solid.fa-quora:before,
.fa-regular.fa-quora:before,
.fa-brands.fa-quora:before,
.icon-quora:before,
.icon.icon-quora:before { content: "\f2c4" !important; }

.fa-quote-left:before,
.fa.fa-quote-left:before,
.fas.fa-quote-left:before,
.far.fa-quote-left:before,
.fab.fa-quote-left:before,
.fa-solid.fa-quote-left:before,
.fa-regular.fa-quote-left:before,
.fa-brands.fa-quote-left:before,
.icon-quote-left:before,
.icon.icon-quote-left:before { content: "\f10d" !important; }

.fa-quote-right:before,
.fa.fa-quote-right:before,
.fas.fa-quote-right:before,
.far.fa-quote-right:before,
.fab.fa-quote-right:before,
.fa-solid.fa-quote-right:before,
.fa-regular.fa-quote-right:before,
.fa-brands.fa-quote-right:before,
.icon-quote-right:before,
.icon.icon-quote-right:before { content: "\f10e" !important; }

.fa-ra:before,
.fa.fa-ra:before,
.fas.fa-ra:before,
.far.fa-ra:before,
.fab.fa-ra:before,
.fa-solid.fa-ra:before,
.fa-regular.fa-ra:before,
.fa-brands.fa-ra:before,
.icon-ra:before,
.icon.icon-ra:before { content: "\f1d0" !important; }

.fa-random:before,
.fa.fa-random:before,
.fas.fa-random:before,
.far.fa-random:before,
.fab.fa-random:before,
.fa-solid.fa-random:before,
.fa-regular.fa-random:before,
.fa-brands.fa-random:before,
.icon-random:before,
.icon.icon-random:before { content: "\f074" !important; }

.fa-ravelry:before,
.fa.fa-ravelry:before,
.fas.fa-ravelry:before,
.far.fa-ravelry:before,
.fab.fa-ravelry:before,
.fa-solid.fa-ravelry:before,
.fa-regular.fa-ravelry:before,
.fa-brands.fa-ravelry:before,
.icon-ravelry:before,
.icon.icon-ravelry:before { content: "\f2d9" !important; }

.fa-rebel:before,
.fa.fa-rebel:before,
.fas.fa-rebel:before,
.far.fa-rebel:before,
.fab.fa-rebel:before,
.fa-solid.fa-rebel:before,
.fa-regular.fa-rebel:before,
.fa-brands.fa-rebel:before,
.icon-rebel:before,
.icon.icon-rebel:before { content: "\f1d0" !important; }

.fa-recycle:before,
.fa.fa-recycle:before,
.fas.fa-recycle:before,
.far.fa-recycle:before,
.fab.fa-recycle:before,
.fa-solid.fa-recycle:before,
.fa-regular.fa-recycle:before,
.fa-brands.fa-recycle:before,
.icon-recycle:before,
.icon.icon-recycle:before { content: "\f1b8" !important; }

.fa-reddit:before,
.fa.fa-reddit:before,
.fas.fa-reddit:before,
.far.fa-reddit:before,
.fab.fa-reddit:before,
.fa-solid.fa-reddit:before,
.fa-regular.fa-reddit:before,
.fa-brands.fa-reddit:before,
.icon-reddit:before,
.icon.icon-reddit:before { content: "\f1a1" !important; }

.fa-reddit-alien:before,
.fa.fa-reddit-alien:before,
.fas.fa-reddit-alien:before,
.far.fa-reddit-alien:before,
.fab.fa-reddit-alien:before,
.fa-solid.fa-reddit-alien:before,
.fa-regular.fa-reddit-alien:before,
.fa-brands.fa-reddit-alien:before,
.icon-reddit-alien:before,
.icon.icon-reddit-alien:before { content: "\f281" !important; }

.fa-reddit-square:before,
.fa.fa-reddit-square:before,
.fas.fa-reddit-square:before,
.far.fa-reddit-square:before,
.fab.fa-reddit-square:before,
.fa-solid.fa-reddit-square:before,
.fa-regular.fa-reddit-square:before,
.fa-brands.fa-reddit-square:before,
.icon-reddit-square:before,
.icon.icon-reddit-square:before { content: "\f1a2" !important; }

.fa-refresh:before,
.fa.fa-refresh:before,
.fas.fa-refresh:before,
.far.fa-refresh:before,
.fab.fa-refresh:before,
.fa-solid.fa-refresh:before,
.fa-regular.fa-refresh:before,
.fa-brands.fa-refresh:before,
.icon-refresh:before,
.icon.icon-refresh:before { content: "\f021" !important; }

.fa-registered:before,
.fa.fa-registered:before,
.fas.fa-registered:before,
.far.fa-registered:before,
.fab.fa-registered:before,
.fa-solid.fa-registered:before,
.fa-regular.fa-registered:before,
.fa-brands.fa-registered:before,
.icon-registered:before,
.icon.icon-registered:before { content: "\f25d" !important; }

.fa-remove:before,
.fa.fa-remove:before,
.fas.fa-remove:before,
.far.fa-remove:before,
.fab.fa-remove:before,
.fa-solid.fa-remove:before,
.fa-regular.fa-remove:before,
.fa-brands.fa-remove:before,
.icon-remove:before,
.icon.icon-remove:before { content: "\f00d" !important; }

.fa-renren:before,
.fa.fa-renren:before,
.fas.fa-renren:before,
.far.fa-renren:before,
.fab.fa-renren:before,
.fa-solid.fa-renren:before,
.fa-regular.fa-renren:before,
.fa-brands.fa-renren:before,
.icon-renren:before,
.icon.icon-renren:before { content: "\f18b" !important; }

.fa-reorder:before,
.fa.fa-reorder:before,
.fas.fa-reorder:before,
.far.fa-reorder:before,
.fab.fa-reorder:before,
.fa-solid.fa-reorder:before,
.fa-regular.fa-reorder:before,
.fa-brands.fa-reorder:before,
.icon-reorder:before,
.icon.icon-reorder:before { content: "\f0c9" !important; }

.fa-repeat:before,
.fa.fa-repeat:before,
.fas.fa-repeat:before,
.far.fa-repeat:before,
.fab.fa-repeat:before,
.fa-solid.fa-repeat:before,
.fa-regular.fa-repeat:before,
.fa-brands.fa-repeat:before,
.icon-repeat:before,
.icon.icon-repeat:before { content: "\f01e" !important; }

.fa-reply:before,
.fa.fa-reply:before,
.fas.fa-reply:before,
.far.fa-reply:before,
.fab.fa-reply:before,
.fa-solid.fa-reply:before,
.fa-regular.fa-reply:before,
.fa-brands.fa-reply:before,
.icon-reply:before,
.icon.icon-reply:before { content: "\f112" !important; }

.fa-reply-all:before,
.fa.fa-reply-all:before,
.fas.fa-reply-all:before,
.far.fa-reply-all:before,
.fab.fa-reply-all:before,
.fa-solid.fa-reply-all:before,
.fa-regular.fa-reply-all:before,
.fa-brands.fa-reply-all:before,
.icon-reply-all:before,
.icon.icon-reply-all:before { content: "\f122" !important; }

.fa-resistance:before,
.fa.fa-resistance:before,
.fas.fa-resistance:before,
.far.fa-resistance:before,
.fab.fa-resistance:before,
.fa-solid.fa-resistance:before,
.fa-regular.fa-resistance:before,
.fa-brands.fa-resistance:before,
.icon-resistance:before,
.icon.icon-resistance:before { content: "\f1d0" !important; }

.fa-retweet:before,
.fa.fa-retweet:before,
.fas.fa-retweet:before,
.far.fa-retweet:before,
.fab.fa-retweet:before,
.fa-solid.fa-retweet:before,
.fa-regular.fa-retweet:before,
.fa-brands.fa-retweet:before,
.icon-retweet:before,
.icon.icon-retweet:before { content: "\f079" !important; }

.fa-rmb:before,
.fa.fa-rmb:before,
.fas.fa-rmb:before,
.far.fa-rmb:before,
.fab.fa-rmb:before,
.fa-solid.fa-rmb:before,
.fa-regular.fa-rmb:before,
.fa-brands.fa-rmb:before,
.icon-rmb:before,
.icon.icon-rmb:before { content: "\f157" !important; }

.fa-road:before,
.fa.fa-road:before,
.fas.fa-road:before,
.far.fa-road:before,
.fab.fa-road:before,
.fa-solid.fa-road:before,
.fa-regular.fa-road:before,
.fa-brands.fa-road:before,
.icon-road:before,
.icon.icon-road:before { content: "\f018" !important; }

.fa-rocket:before,
.fa.fa-rocket:before,
.fas.fa-rocket:before,
.far.fa-rocket:before,
.fab.fa-rocket:before,
.fa-solid.fa-rocket:before,
.fa-regular.fa-rocket:before,
.fa-brands.fa-rocket:before,
.icon-rocket:before,
.icon.icon-rocket:before { content: "\f135" !important; }

.fa-rotate-left:before,
.fa.fa-rotate-left:before,
.fas.fa-rotate-left:before,
.far.fa-rotate-left:before,
.fab.fa-rotate-left:before,
.fa-solid.fa-rotate-left:before,
.fa-regular.fa-rotate-left:before,
.fa-brands.fa-rotate-left:before,
.icon-rotate-left:before,
.icon.icon-rotate-left:before { content: "\f0e2" !important; }

.fa-rotate-right:before,
.fa.fa-rotate-right:before,
.fas.fa-rotate-right:before,
.far.fa-rotate-right:before,
.fab.fa-rotate-right:before,
.fa-solid.fa-rotate-right:before,
.fa-regular.fa-rotate-right:before,
.fa-brands.fa-rotate-right:before,
.icon-rotate-right:before,
.icon.icon-rotate-right:before { content: "\f01e" !important; }

.fa-rouble:before,
.fa.fa-rouble:before,
.fas.fa-rouble:before,
.far.fa-rouble:before,
.fab.fa-rouble:before,
.fa-solid.fa-rouble:before,
.fa-regular.fa-rouble:before,
.fa-brands.fa-rouble:before,
.icon-rouble:before,
.icon.icon-rouble:before { content: "\f158" !important; }

.fa-rss:before,
.fa.fa-rss:before,
.fas.fa-rss:before,
.far.fa-rss:before,
.fab.fa-rss:before,
.fa-solid.fa-rss:before,
.fa-regular.fa-rss:before,
.fa-brands.fa-rss:before,
.icon-rss:before,
.icon.icon-rss:before { content: "\f09e" !important; }

.fa-rss-square:before,
.fa.fa-rss-square:before,
.fas.fa-rss-square:before,
.far.fa-rss-square:before,
.fab.fa-rss-square:before,
.fa-solid.fa-rss-square:before,
.fa-regular.fa-rss-square:before,
.fa-brands.fa-rss-square:before,
.icon-rss-square:before,
.icon.icon-rss-square:before { content: "\f143" !important; }

.fa-rub:before,
.fa.fa-rub:before,
.fas.fa-rub:before,
.far.fa-rub:before,
.fab.fa-rub:before,
.fa-solid.fa-rub:before,
.fa-regular.fa-rub:before,
.fa-brands.fa-rub:before,
.icon-rub:before,
.icon.icon-rub:before { content: "\f158" !important; }

.fa-ruble:before,
.fa.fa-ruble:before,
.fas.fa-ruble:before,
.far.fa-ruble:before,
.fab.fa-ruble:before,
.fa-solid.fa-ruble:before,
.fa-regular.fa-ruble:before,
.fa-brands.fa-ruble:before,
.icon-ruble:before,
.icon.icon-ruble:before { content: "\f158" !important; }

.fa-rupee:before,
.fa.fa-rupee:before,
.fas.fa-rupee:before,
.far.fa-rupee:before,
.fab.fa-rupee:before,
.fa-solid.fa-rupee:before,
.fa-regular.fa-rupee:before,
.fa-brands.fa-rupee:before,
.icon-rupee:before,
.icon.icon-rupee:before { content: "\f156" !important; }

.fa-s15:before,
.fa.fa-s15:before,
.fas.fa-s15:before,
.far.fa-s15:before,
.fab.fa-s15:before,
.fa-solid.fa-s15:before,
.fa-regular.fa-s15:before,
.fa-brands.fa-s15:before,
.icon-s15:before,
.icon.icon-s15:before { content: "\f2cd" !important; }

.fa-safari:before,
.fa.fa-safari:before,
.fas.fa-safari:before,
.far.fa-safari:before,
.fab.fa-safari:before,
.fa-solid.fa-safari:before,
.fa-regular.fa-safari:before,
.fa-brands.fa-safari:before,
.icon-safari:before,
.icon.icon-safari:before { content: "\f267" !important; }

.fa-save:before,
.fa.fa-save:before,
.fas.fa-save:before,
.far.fa-save:before,
.fab.fa-save:before,
.fa-solid.fa-save:before,
.fa-regular.fa-save:before,
.fa-brands.fa-save:before,
.icon-save:before,
.icon.icon-save:before { content: "\f0c7" !important; }

.fa-scissors:before,
.fa.fa-scissors:before,
.fas.fa-scissors:before,
.far.fa-scissors:before,
.fab.fa-scissors:before,
.fa-solid.fa-scissors:before,
.fa-regular.fa-scissors:before,
.fa-brands.fa-scissors:before,
.icon-scissors:before,
.icon.icon-scissors:before { content: "\f0c4" !important; }

.fa-scribd:before,
.fa.fa-scribd:before,
.fas.fa-scribd:before,
.far.fa-scribd:before,
.fab.fa-scribd:before,
.fa-solid.fa-scribd:before,
.fa-regular.fa-scribd:before,
.fa-brands.fa-scribd:before,
.icon-scribd:before,
.icon.icon-scribd:before { content: "\f28a" !important; }

.fa-search:before,
.fa.fa-search:before,
.fas.fa-search:before,
.far.fa-search:before,
.fab.fa-search:before,
.fa-solid.fa-search:before,
.fa-regular.fa-search:before,
.fa-brands.fa-search:before,
.icon-search:before,
.icon.icon-search:before { content: "\f002" !important; }

.fa-search-minus:before,
.fa.fa-search-minus:before,
.fas.fa-search-minus:before,
.far.fa-search-minus:before,
.fab.fa-search-minus:before,
.fa-solid.fa-search-minus:before,
.fa-regular.fa-search-minus:before,
.fa-brands.fa-search-minus:before,
.icon-search-minus:before,
.icon.icon-search-minus:before { content: "\f010" !important; }

.fa-search-plus:before,
.fa.fa-search-plus:before,
.fas.fa-search-plus:before,
.far.fa-search-plus:before,
.fab.fa-search-plus:before,
.fa-solid.fa-search-plus:before,
.fa-regular.fa-search-plus:before,
.fa-brands.fa-search-plus:before,
.icon-search-plus:before,
.icon.icon-search-plus:before { content: "\f00e" !important; }

.fa-sellsy:before,
.fa.fa-sellsy:before,
.fas.fa-sellsy:before,
.far.fa-sellsy:before,
.fab.fa-sellsy:before,
.fa-solid.fa-sellsy:before,
.fa-regular.fa-sellsy:before,
.fa-brands.fa-sellsy:before,
.icon-sellsy:before,
.icon.icon-sellsy:before { content: "\f213" !important; }

.fa-send:before,
.fa.fa-send:before,
.fas.fa-send:before,
.far.fa-send:before,
.fab.fa-send:before,
.fa-solid.fa-send:before,
.fa-regular.fa-send:before,
.fa-brands.fa-send:before,
.icon-send:before,
.icon.icon-send:before { content: "\f1d8" !important; }

.fa-send-o:before,
.fa.fa-send-o:before,
.fas.fa-send-o:before,
.far.fa-send-o:before,
.fab.fa-send-o:before,
.fa-solid.fa-send-o:before,
.fa-regular.fa-send-o:before,
.fa-brands.fa-send-o:before,
.icon-send-o:before,
.icon.icon-send-o:before { content: "\f1d9" !important; }

.fa-server:before,
.fa.fa-server:before,
.fas.fa-server:before,
.far.fa-server:before,
.fab.fa-server:before,
.fa-solid.fa-server:before,
.fa-regular.fa-server:before,
.fa-brands.fa-server:before,
.icon-server:before,
.icon.icon-server:before { content: "\f233" !important; }

.fa-share:before,
.fa.fa-share:before,
.fas.fa-share:before,
.far.fa-share:before,
.fab.fa-share:before,
.fa-solid.fa-share:before,
.fa-regular.fa-share:before,
.fa-brands.fa-share:before,
.icon-share:before,
.icon.icon-share:before { content: "\f064" !important; }

.fa-share-alt:before,
.fa.fa-share-alt:before,
.fas.fa-share-alt:before,
.far.fa-share-alt:before,
.fab.fa-share-alt:before,
.fa-solid.fa-share-alt:before,
.fa-regular.fa-share-alt:before,
.fa-brands.fa-share-alt:before,
.icon-share-alt:before,
.icon.icon-share-alt:before { content: "\f1e0" !important; }

.fa-share-alt-square:before,
.fa.fa-share-alt-square:before,
.fas.fa-share-alt-square:before,
.far.fa-share-alt-square:before,
.fab.fa-share-alt-square:before,
.fa-solid.fa-share-alt-square:before,
.fa-regular.fa-share-alt-square:before,
.fa-brands.fa-share-alt-square:before,
.icon-share-alt-square:before,
.icon.icon-share-alt-square:before { content: "\f1e1" !important; }

.fa-share-square:before,
.fa.fa-share-square:before,
.fas.fa-share-square:before,
.far.fa-share-square:before,
.fab.fa-share-square:before,
.fa-solid.fa-share-square:before,
.fa-regular.fa-share-square:before,
.fa-brands.fa-share-square:before,
.icon-share-square:before,
.icon.icon-share-square:before { content: "\f14d" !important; }

.fa-share-square-o:before,
.fa.fa-share-square-o:before,
.fas.fa-share-square-o:before,
.far.fa-share-square-o:before,
.fab.fa-share-square-o:before,
.fa-solid.fa-share-square-o:before,
.fa-regular.fa-share-square-o:before,
.fa-brands.fa-share-square-o:before,
.icon-share-square-o:before,
.icon.icon-share-square-o:before { content: "\f045" !important; }

.fa-shekel:before,
.fa.fa-shekel:before,
.fas.fa-shekel:before,
.far.fa-shekel:before,
.fab.fa-shekel:before,
.fa-solid.fa-shekel:before,
.fa-regular.fa-shekel:before,
.fa-brands.fa-shekel:before,
.icon-shekel:before,
.icon.icon-shekel:before { content: "\f20b" !important; }

.fa-sheqel:before,
.fa.fa-sheqel:before,
.fas.fa-sheqel:before,
.far.fa-sheqel:before,
.fab.fa-sheqel:before,
.fa-solid.fa-sheqel:before,
.fa-regular.fa-sheqel:before,
.fa-brands.fa-sheqel:before,
.icon-sheqel:before,
.icon.icon-sheqel:before { content: "\f20b" !important; }

.fa-shield:before,
.fa.fa-shield:before,
.fas.fa-shield:before,
.far.fa-shield:before,
.fab.fa-shield:before,
.fa-solid.fa-shield:before,
.fa-regular.fa-shield:before,
.fa-brands.fa-shield:before,
.icon-shield:before,
.icon.icon-shield:before { content: "\f132" !important; }

.fa-ship:before,
.fa.fa-ship:before,
.fas.fa-ship:before,
.far.fa-ship:before,
.fab.fa-ship:before,
.fa-solid.fa-ship:before,
.fa-regular.fa-ship:before,
.fa-brands.fa-ship:before,
.icon-ship:before,
.icon.icon-ship:before { content: "\f21a" !important; }

.fa-shirtsinbulk:before,
.fa.fa-shirtsinbulk:before,
.fas.fa-shirtsinbulk:before,
.far.fa-shirtsinbulk:before,
.fab.fa-shirtsinbulk:before,
.fa-solid.fa-shirtsinbulk:before,
.fa-regular.fa-shirtsinbulk:before,
.fa-brands.fa-shirtsinbulk:before,
.icon-shirtsinbulk:before,
.icon.icon-shirtsinbulk:before { content: "\f214" !important; }

.fa-shopping-bag:before,
.fa.fa-shopping-bag:before,
.fas.fa-shopping-bag:before,
.far.fa-shopping-bag:before,
.fab.fa-shopping-bag:before,
.fa-solid.fa-shopping-bag:before,
.fa-regular.fa-shopping-bag:before,
.fa-brands.fa-shopping-bag:before,
.icon-shopping-bag:before,
.icon.icon-shopping-bag:before { content: "\f290" !important; }

.fa-shopping-basket:before,
.fa.fa-shopping-basket:before,
.fas.fa-shopping-basket:before,
.far.fa-shopping-basket:before,
.fab.fa-shopping-basket:before,
.fa-solid.fa-shopping-basket:before,
.fa-regular.fa-shopping-basket:before,
.fa-brands.fa-shopping-basket:before,
.icon-shopping-basket:before,
.icon.icon-shopping-basket:before { content: "\f291" !important; }

.fa-shopping-cart:before,
.fa.fa-shopping-cart:before,
.fas.fa-shopping-cart:before,
.far.fa-shopping-cart:before,
.fab.fa-shopping-cart:before,
.fa-solid.fa-shopping-cart:before,
.fa-regular.fa-shopping-cart:before,
.fa-brands.fa-shopping-cart:before,
.icon-shopping-cart:before,
.icon.icon-shopping-cart:before { content: "\f07a" !important; }

.fa-shower:before,
.fa.fa-shower:before,
.fas.fa-shower:before,
.far.fa-shower:before,
.fab.fa-shower:before,
.fa-solid.fa-shower:before,
.fa-regular.fa-shower:before,
.fa-brands.fa-shower:before,
.icon-shower:before,
.icon.icon-shower:before { content: "\f2cc" !important; }

.fa-sign-in:before,
.fa.fa-sign-in:before,
.fas.fa-sign-in:before,
.far.fa-sign-in:before,
.fab.fa-sign-in:before,
.fa-solid.fa-sign-in:before,
.fa-regular.fa-sign-in:before,
.fa-brands.fa-sign-in:before,
.icon-sign-in:before,
.icon.icon-sign-in:before { content: "\f090" !important; }

.fa-sign-language:before,
.fa.fa-sign-language:before,
.fas.fa-sign-language:before,
.far.fa-sign-language:before,
.fab.fa-sign-language:before,
.fa-solid.fa-sign-language:before,
.fa-regular.fa-sign-language:before,
.fa-brands.fa-sign-language:before,
.icon-sign-language:before,
.icon.icon-sign-language:before { content: "\f2a7" !important; }

.fa-sign-out:before,
.fa.fa-sign-out:before,
.fas.fa-sign-out:before,
.far.fa-sign-out:before,
.fab.fa-sign-out:before,
.fa-solid.fa-sign-out:before,
.fa-regular.fa-sign-out:before,
.fa-brands.fa-sign-out:before,
.icon-sign-out:before,
.icon.icon-sign-out:before { content: "\f08b" !important; }

.fa-signal:before,
.fa.fa-signal:before,
.fas.fa-signal:before,
.far.fa-signal:before,
.fab.fa-signal:before,
.fa-solid.fa-signal:before,
.fa-regular.fa-signal:before,
.fa-brands.fa-signal:before,
.icon-signal:before,
.icon.icon-signal:before { content: "\f012" !important; }

.fa-signing:before,
.fa.fa-signing:before,
.fas.fa-signing:before,
.far.fa-signing:before,
.fab.fa-signing:before,
.fa-solid.fa-signing:before,
.fa-regular.fa-signing:before,
.fa-brands.fa-signing:before,
.icon-signing:before,
.icon.icon-signing:before { content: "\f2a7" !important; }

.fa-simplybuilt:before,
.fa.fa-simplybuilt:before,
.fas.fa-simplybuilt:before,
.far.fa-simplybuilt:before,
.fab.fa-simplybuilt:before,
.fa-solid.fa-simplybuilt:before,
.fa-regular.fa-simplybuilt:before,
.fa-brands.fa-simplybuilt:before,
.icon-simplybuilt:before,
.icon.icon-simplybuilt:before { content: "\f215" !important; }

.fa-sitemap:before,
.fa.fa-sitemap:before,
.fas.fa-sitemap:before,
.far.fa-sitemap:before,
.fab.fa-sitemap:before,
.fa-solid.fa-sitemap:before,
.fa-regular.fa-sitemap:before,
.fa-brands.fa-sitemap:before,
.icon-sitemap:before,
.icon.icon-sitemap:before { content: "\f0e8" !important; }

.fa-skyatlas:before,
.fa.fa-skyatlas:before,
.fas.fa-skyatlas:before,
.far.fa-skyatlas:before,
.fab.fa-skyatlas:before,
.fa-solid.fa-skyatlas:before,
.fa-regular.fa-skyatlas:before,
.fa-brands.fa-skyatlas:before,
.icon-skyatlas:before,
.icon.icon-skyatlas:before { content: "\f216" !important; }

.fa-skype:before,
.fa.fa-skype:before,
.fas.fa-skype:before,
.far.fa-skype:before,
.fab.fa-skype:before,
.fa-solid.fa-skype:before,
.fa-regular.fa-skype:before,
.fa-brands.fa-skype:before,
.icon-skype:before,
.icon.icon-skype:before { content: "\f17e" !important; }

.fa-slack:before,
.fa.fa-slack:before,
.fas.fa-slack:before,
.far.fa-slack:before,
.fab.fa-slack:before,
.fa-solid.fa-slack:before,
.fa-regular.fa-slack:before,
.fa-brands.fa-slack:before,
.icon-slack:before,
.icon.icon-slack:before { content: "\f198" !important; }

.fa-sliders:before,
.fa.fa-sliders:before,
.fas.fa-sliders:before,
.far.fa-sliders:before,
.fab.fa-sliders:before,
.fa-solid.fa-sliders:before,
.fa-regular.fa-sliders:before,
.fa-brands.fa-sliders:before,
.icon-sliders:before,
.icon.icon-sliders:before { content: "\f1de" !important; }

.fa-slideshare:before,
.fa.fa-slideshare:before,
.fas.fa-slideshare:before,
.far.fa-slideshare:before,
.fab.fa-slideshare:before,
.fa-solid.fa-slideshare:before,
.fa-regular.fa-slideshare:before,
.fa-brands.fa-slideshare:before,
.icon-slideshare:before,
.icon.icon-slideshare:before { content: "\f1e7" !important; }

.fa-smile-o:before,
.fa.fa-smile-o:before,
.fas.fa-smile-o:before,
.far.fa-smile-o:before,
.fab.fa-smile-o:before,
.fa-solid.fa-smile-o:before,
.fa-regular.fa-smile-o:before,
.fa-brands.fa-smile-o:before,
.icon-smile-o:before,
.icon.icon-smile-o:before { content: "\f118" !important; }

.fa-snapchat:before,
.fa.fa-snapchat:before,
.fas.fa-snapchat:before,
.far.fa-snapchat:before,
.fab.fa-snapchat:before,
.fa-solid.fa-snapchat:before,
.fa-regular.fa-snapchat:before,
.fa-brands.fa-snapchat:before,
.icon-snapchat:before,
.icon.icon-snapchat:before { content: "\f2ab" !important; }

.fa-snapchat-ghost:before,
.fa.fa-snapchat-ghost:before,
.fas.fa-snapchat-ghost:before,
.far.fa-snapchat-ghost:before,
.fab.fa-snapchat-ghost:before,
.fa-solid.fa-snapchat-ghost:before,
.fa-regular.fa-snapchat-ghost:before,
.fa-brands.fa-snapchat-ghost:before,
.icon-snapchat-ghost:before,
.icon.icon-snapchat-ghost:before { content: "\f2ac" !important; }

.fa-snapchat-square:before,
.fa.fa-snapchat-square:before,
.fas.fa-snapchat-square:before,
.far.fa-snapchat-square:before,
.fab.fa-snapchat-square:before,
.fa-solid.fa-snapchat-square:before,
.fa-regular.fa-snapchat-square:before,
.fa-brands.fa-snapchat-square:before,
.icon-snapchat-square:before,
.icon.icon-snapchat-square:before { content: "\f2ad" !important; }

.fa-snowflake-o:before,
.fa.fa-snowflake-o:before,
.fas.fa-snowflake-o:before,
.far.fa-snowflake-o:before,
.fab.fa-snowflake-o:before,
.fa-solid.fa-snowflake-o:before,
.fa-regular.fa-snowflake-o:before,
.fa-brands.fa-snowflake-o:before,
.icon-snowflake-o:before,
.icon.icon-snowflake-o:before { content: "\f2dc" !important; }

.fa-soccer-ball-o:before,
.fa.fa-soccer-ball-o:before,
.fas.fa-soccer-ball-o:before,
.far.fa-soccer-ball-o:before,
.fab.fa-soccer-ball-o:before,
.fa-solid.fa-soccer-ball-o:before,
.fa-regular.fa-soccer-ball-o:before,
.fa-brands.fa-soccer-ball-o:before,
.icon-soccer-ball-o:before,
.icon.icon-soccer-ball-o:before { content: "\f1e3" !important; }

.fa-sort:before,
.fa.fa-sort:before,
.fas.fa-sort:before,
.far.fa-sort:before,
.fab.fa-sort:before,
.fa-solid.fa-sort:before,
.fa-regular.fa-sort:before,
.fa-brands.fa-sort:before,
.icon-sort:before,
.icon.icon-sort:before { content: "\f0dc" !important; }

.fa-sort-alpha-asc:before,
.fa.fa-sort-alpha-asc:before,
.fas.fa-sort-alpha-asc:before,
.far.fa-sort-alpha-asc:before,
.fab.fa-sort-alpha-asc:before,
.fa-solid.fa-sort-alpha-asc:before,
.fa-regular.fa-sort-alpha-asc:before,
.fa-brands.fa-sort-alpha-asc:before,
.icon-sort-alpha-asc:before,
.icon.icon-sort-alpha-asc:before { content: "\f15d" !important; }

.fa-sort-alpha-desc:before,
.fa.fa-sort-alpha-desc:before,
.fas.fa-sort-alpha-desc:before,
.far.fa-sort-alpha-desc:before,
.fab.fa-sort-alpha-desc:before,
.fa-solid.fa-sort-alpha-desc:before,
.fa-regular.fa-sort-alpha-desc:before,
.fa-brands.fa-sort-alpha-desc:before,
.icon-sort-alpha-desc:before,
.icon.icon-sort-alpha-desc:before { content: "\f15e" !important; }

.fa-sort-amount-asc:before,
.fa.fa-sort-amount-asc:before,
.fas.fa-sort-amount-asc:before,
.far.fa-sort-amount-asc:before,
.fab.fa-sort-amount-asc:before,
.fa-solid.fa-sort-amount-asc:before,
.fa-regular.fa-sort-amount-asc:before,
.fa-brands.fa-sort-amount-asc:before,
.icon-sort-amount-asc:before,
.icon.icon-sort-amount-asc:before { content: "\f160" !important; }

.fa-sort-amount-desc:before,
.fa.fa-sort-amount-desc:before,
.fas.fa-sort-amount-desc:before,
.far.fa-sort-amount-desc:before,
.fab.fa-sort-amount-desc:before,
.fa-solid.fa-sort-amount-desc:before,
.fa-regular.fa-sort-amount-desc:before,
.fa-brands.fa-sort-amount-desc:before,
.icon-sort-amount-desc:before,
.icon.icon-sort-amount-desc:before { content: "\f161" !important; }

.fa-sort-asc:before,
.fa.fa-sort-asc:before,
.fas.fa-sort-asc:before,
.far.fa-sort-asc:before,
.fab.fa-sort-asc:before,
.fa-solid.fa-sort-asc:before,
.fa-regular.fa-sort-asc:before,
.fa-brands.fa-sort-asc:before,
.icon-sort-asc:before,
.icon.icon-sort-asc:before { content: "\f0de" !important; }

.fa-sort-desc:before,
.fa.fa-sort-desc:before,
.fas.fa-sort-desc:before,
.far.fa-sort-desc:before,
.fab.fa-sort-desc:before,
.fa-solid.fa-sort-desc:before,
.fa-regular.fa-sort-desc:before,
.fa-brands.fa-sort-desc:before,
.icon-sort-desc:before,
.icon.icon-sort-desc:before { content: "\f0dd" !important; }

.fa-sort-down:before,
.fa.fa-sort-down:before,
.fas.fa-sort-down:before,
.far.fa-sort-down:before,
.fab.fa-sort-down:before,
.fa-solid.fa-sort-down:before,
.fa-regular.fa-sort-down:before,
.fa-brands.fa-sort-down:before,
.icon-sort-down:before,
.icon.icon-sort-down:before { content: "\f0dd" !important; }

.fa-sort-numeric-asc:before,
.fa.fa-sort-numeric-asc:before,
.fas.fa-sort-numeric-asc:before,
.far.fa-sort-numeric-asc:before,
.fab.fa-sort-numeric-asc:before,
.fa-solid.fa-sort-numeric-asc:before,
.fa-regular.fa-sort-numeric-asc:before,
.fa-brands.fa-sort-numeric-asc:before,
.icon-sort-numeric-asc:before,
.icon.icon-sort-numeric-asc:before { content: "\f162" !important; }

.fa-sort-numeric-desc:before,
.fa.fa-sort-numeric-desc:before,
.fas.fa-sort-numeric-desc:before,
.far.fa-sort-numeric-desc:before,
.fab.fa-sort-numeric-desc:before,
.fa-solid.fa-sort-numeric-desc:before,
.fa-regular.fa-sort-numeric-desc:before,
.fa-brands.fa-sort-numeric-desc:before,
.icon-sort-numeric-desc:before,
.icon.icon-sort-numeric-desc:before { content: "\f163" !important; }

.fa-sort-up:before,
.fa.fa-sort-up:before,
.fas.fa-sort-up:before,
.far.fa-sort-up:before,
.fab.fa-sort-up:before,
.fa-solid.fa-sort-up:before,
.fa-regular.fa-sort-up:before,
.fa-brands.fa-sort-up:before,
.icon-sort-up:before,
.icon.icon-sort-up:before { content: "\f0de" !important; }

.fa-soundcloud:before,
.fa.fa-soundcloud:before,
.fas.fa-soundcloud:before,
.far.fa-soundcloud:before,
.fab.fa-soundcloud:before,
.fa-solid.fa-soundcloud:before,
.fa-regular.fa-soundcloud:before,
.fa-brands.fa-soundcloud:before,
.icon-soundcloud:before,
.icon.icon-soundcloud:before { content: "\f1be" !important; }

.fa-space-shuttle:before,
.fa.fa-space-shuttle:before,
.fas.fa-space-shuttle:before,
.far.fa-space-shuttle:before,
.fab.fa-space-shuttle:before,
.fa-solid.fa-space-shuttle:before,
.fa-regular.fa-space-shuttle:before,
.fa-brands.fa-space-shuttle:before,
.icon-space-shuttle:before,
.icon.icon-space-shuttle:before { content: "\f197" !important; }

.fa-spinner:before,
.fa.fa-spinner:before,
.fas.fa-spinner:before,
.far.fa-spinner:before,
.fab.fa-spinner:before,
.fa-solid.fa-spinner:before,
.fa-regular.fa-spinner:before,
.fa-brands.fa-spinner:before,
.icon-spinner:before,
.icon.icon-spinner:before { content: "\f110" !important; }

.fa-spoon:before,
.fa.fa-spoon:before,
.fas.fa-spoon:before,
.far.fa-spoon:before,
.fab.fa-spoon:before,
.fa-solid.fa-spoon:before,
.fa-regular.fa-spoon:before,
.fa-brands.fa-spoon:before,
.icon-spoon:before,
.icon.icon-spoon:before { content: "\f1b1" !important; }

.fa-spotify:before,
.fa.fa-spotify:before,
.fas.fa-spotify:before,
.far.fa-spotify:before,
.fab.fa-spotify:before,
.fa-solid.fa-spotify:before,
.fa-regular.fa-spotify:before,
.fa-brands.fa-spotify:before,
.icon-spotify:before,
.icon.icon-spotify:before { content: "\f1bc" !important; }

.fa-square:before,
.fa.fa-square:before,
.fas.fa-square:before,
.far.fa-square:before,
.fab.fa-square:before,
.fa-solid.fa-square:before,
.fa-regular.fa-square:before,
.fa-brands.fa-square:before,
.icon-square:before,
.icon.icon-square:before { content: "\f0c8" !important; }

.fa-square-o:before,
.fa.fa-square-o:before,
.fas.fa-square-o:before,
.far.fa-square-o:before,
.fab.fa-square-o:before,
.fa-solid.fa-square-o:before,
.fa-regular.fa-square-o:before,
.fa-brands.fa-square-o:before,
.icon-square-o:before,
.icon.icon-square-o:before { content: "\f096" !important; }

.fa-stack-exchange:before,
.fa.fa-stack-exchange:before,
.fas.fa-stack-exchange:before,
.far.fa-stack-exchange:before,
.fab.fa-stack-exchange:before,
.fa-solid.fa-stack-exchange:before,
.fa-regular.fa-stack-exchange:before,
.fa-brands.fa-stack-exchange:before,
.icon-stack-exchange:before,
.icon.icon-stack-exchange:before { content: "\f18d" !important; }

.fa-stack-overflow:before,
.fa.fa-stack-overflow:before,
.fas.fa-stack-overflow:before,
.far.fa-stack-overflow:before,
.fab.fa-stack-overflow:before,
.fa-solid.fa-stack-overflow:before,
.fa-regular.fa-stack-overflow:before,
.fa-brands.fa-stack-overflow:before,
.icon-stack-overflow:before,
.icon.icon-stack-overflow:before { content: "\f16c" !important; }

.fa-star:before,
.fa.fa-star:before,
.fas.fa-star:before,
.far.fa-star:before,
.fab.fa-star:before,
.fa-solid.fa-star:before,
.fa-regular.fa-star:before,
.fa-brands.fa-star:before,
.icon-star:before,
.icon.icon-star:before { content: "\f005" !important; }

.fa-star-half:before,
.fa.fa-star-half:before,
.fas.fa-star-half:before,
.far.fa-star-half:before,
.fab.fa-star-half:before,
.fa-solid.fa-star-half:before,
.fa-regular.fa-star-half:before,
.fa-brands.fa-star-half:before,
.icon-star-half:before,
.icon.icon-star-half:before { content: "\f089" !important; }

.fa-star-half-empty:before,
.fa.fa-star-half-empty:before,
.fas.fa-star-half-empty:before,
.far.fa-star-half-empty:before,
.fab.fa-star-half-empty:before,
.fa-solid.fa-star-half-empty:before,
.fa-regular.fa-star-half-empty:before,
.fa-brands.fa-star-half-empty:before,
.icon-star-half-empty:before,
.icon.icon-star-half-empty:before { content: "\f123" !important; }

.fa-star-half-full:before,
.fa.fa-star-half-full:before,
.fas.fa-star-half-full:before,
.far.fa-star-half-full:before,
.fab.fa-star-half-full:before,
.fa-solid.fa-star-half-full:before,
.fa-regular.fa-star-half-full:before,
.fa-brands.fa-star-half-full:before,
.icon-star-half-full:before,
.icon.icon-star-half-full:before { content: "\f123" !important; }

.fa-star-half-o:before,
.fa.fa-star-half-o:before,
.fas.fa-star-half-o:before,
.far.fa-star-half-o:before,
.fab.fa-star-half-o:before,
.fa-solid.fa-star-half-o:before,
.fa-regular.fa-star-half-o:before,
.fa-brands.fa-star-half-o:before,
.icon-star-half-o:before,
.icon.icon-star-half-o:before { content: "\f123" !important; }

.fa-star-o:before,
.fa.fa-star-o:before,
.fas.fa-star-o:before,
.far.fa-star-o:before,
.fab.fa-star-o:before,
.fa-solid.fa-star-o:before,
.fa-regular.fa-star-o:before,
.fa-brands.fa-star-o:before,
.icon-star-o:before,
.icon.icon-star-o:before { content: "\f006" !important; }

.fa-steam:before,
.fa.fa-steam:before,
.fas.fa-steam:before,
.far.fa-steam:before,
.fab.fa-steam:before,
.fa-solid.fa-steam:before,
.fa-regular.fa-steam:before,
.fa-brands.fa-steam:before,
.icon-steam:before,
.icon.icon-steam:before { content: "\f1b6" !important; }

.fa-steam-square:before,
.fa.fa-steam-square:before,
.fas.fa-steam-square:before,
.far.fa-steam-square:before,
.fab.fa-steam-square:before,
.fa-solid.fa-steam-square:before,
.fa-regular.fa-steam-square:before,
.fa-brands.fa-steam-square:before,
.icon-steam-square:before,
.icon.icon-steam-square:before { content: "\f1b7" !important; }

.fa-step-backward:before,
.fa.fa-step-backward:before,
.fas.fa-step-backward:before,
.far.fa-step-backward:before,
.fab.fa-step-backward:before,
.fa-solid.fa-step-backward:before,
.fa-regular.fa-step-backward:before,
.fa-brands.fa-step-backward:before,
.icon-step-backward:before,
.icon.icon-step-backward:before { content: "\f048" !important; }

.fa-step-forward:before,
.fa.fa-step-forward:before,
.fas.fa-step-forward:before,
.far.fa-step-forward:before,
.fab.fa-step-forward:before,
.fa-solid.fa-step-forward:before,
.fa-regular.fa-step-forward:before,
.fa-brands.fa-step-forward:before,
.icon-step-forward:before,
.icon.icon-step-forward:before { content: "\f051" !important; }

.fa-stethoscope:before,
.fa.fa-stethoscope:before,
.fas.fa-stethoscope:before,
.far.fa-stethoscope:before,
.fab.fa-stethoscope:before,
.fa-solid.fa-stethoscope:before,
.fa-regular.fa-stethoscope:before,
.fa-brands.fa-stethoscope:before,
.icon-stethoscope:before,
.icon.icon-stethoscope:before { content: "\f0f1" !important; }

.fa-sticky-note:before,
.fa.fa-sticky-note:before,
.fas.fa-sticky-note:before,
.far.fa-sticky-note:before,
.fab.fa-sticky-note:before,
.fa-solid.fa-sticky-note:before,
.fa-regular.fa-sticky-note:before,
.fa-brands.fa-sticky-note:before,
.icon-sticky-note:before,
.icon.icon-sticky-note:before { content: "\f249" !important; }

.fa-sticky-note-o:before,
.fa.fa-sticky-note-o:before,
.fas.fa-sticky-note-o:before,
.far.fa-sticky-note-o:before,
.fab.fa-sticky-note-o:before,
.fa-solid.fa-sticky-note-o:before,
.fa-regular.fa-sticky-note-o:before,
.fa-brands.fa-sticky-note-o:before,
.icon-sticky-note-o:before,
.icon.icon-sticky-note-o:before { content: "\f24a" !important; }

.fa-stop:before,
.fa.fa-stop:before,
.fas.fa-stop:before,
.far.fa-stop:before,
.fab.fa-stop:before,
.fa-solid.fa-stop:before,
.fa-regular.fa-stop:before,
.fa-brands.fa-stop:before,
.icon-stop:before,
.icon.icon-stop:before { content: "\f04d" !important; }

.fa-stop-circle:before,
.fa.fa-stop-circle:before,
.fas.fa-stop-circle:before,
.far.fa-stop-circle:before,
.fab.fa-stop-circle:before,
.fa-solid.fa-stop-circle:before,
.fa-regular.fa-stop-circle:before,
.fa-brands.fa-stop-circle:before,
.icon-stop-circle:before,
.icon.icon-stop-circle:before { content: "\f28d" !important; }

.fa-stop-circle-o:before,
.fa.fa-stop-circle-o:before,
.fas.fa-stop-circle-o:before,
.far.fa-stop-circle-o:before,
.fab.fa-stop-circle-o:before,
.fa-solid.fa-stop-circle-o:before,
.fa-regular.fa-stop-circle-o:before,
.fa-brands.fa-stop-circle-o:before,
.icon-stop-circle-o:before,
.icon.icon-stop-circle-o:before { content: "\f28e" !important; }

.fa-street-view:before,
.fa.fa-street-view:before,
.fas.fa-street-view:before,
.far.fa-street-view:before,
.fab.fa-street-view:before,
.fa-solid.fa-street-view:before,
.fa-regular.fa-street-view:before,
.fa-brands.fa-street-view:before,
.icon-street-view:before,
.icon.icon-street-view:before { content: "\f21d" !important; }

.fa-strikethrough:before,
.fa.fa-strikethrough:before,
.fas.fa-strikethrough:before,
.far.fa-strikethrough:before,
.fab.fa-strikethrough:before,
.fa-solid.fa-strikethrough:before,
.fa-regular.fa-strikethrough:before,
.fa-brands.fa-strikethrough:before,
.icon-strikethrough:before,
.icon.icon-strikethrough:before { content: "\f0cc" !important; }

.fa-stumbleupon:before,
.fa.fa-stumbleupon:before,
.fas.fa-stumbleupon:before,
.far.fa-stumbleupon:before,
.fab.fa-stumbleupon:before,
.fa-solid.fa-stumbleupon:before,
.fa-regular.fa-stumbleupon:before,
.fa-brands.fa-stumbleupon:before,
.icon-stumbleupon:before,
.icon.icon-stumbleupon:before { content: "\f1a4" !important; }

.fa-stumbleupon-circle:before,
.fa.fa-stumbleupon-circle:before,
.fas.fa-stumbleupon-circle:before,
.far.fa-stumbleupon-circle:before,
.fab.fa-stumbleupon-circle:before,
.fa-solid.fa-stumbleupon-circle:before,
.fa-regular.fa-stumbleupon-circle:before,
.fa-brands.fa-stumbleupon-circle:before,
.icon-stumbleupon-circle:before,
.icon.icon-stumbleupon-circle:before { content: "\f1a3" !important; }

.fa-subscript:before,
.fa.fa-subscript:before,
.fas.fa-subscript:before,
.far.fa-subscript:before,
.fab.fa-subscript:before,
.fa-solid.fa-subscript:before,
.fa-regular.fa-subscript:before,
.fa-brands.fa-subscript:before,
.icon-subscript:before,
.icon.icon-subscript:before { content: "\f12c" !important; }

.fa-subway:before,
.fa.fa-subway:before,
.fas.fa-subway:before,
.far.fa-subway:before,
.fab.fa-subway:before,
.fa-solid.fa-subway:before,
.fa-regular.fa-subway:before,
.fa-brands.fa-subway:before,
.icon-subway:before,
.icon.icon-subway:before { content: "\f239" !important; }

.fa-suitcase:before,
.fa.fa-suitcase:before,
.fas.fa-suitcase:before,
.far.fa-suitcase:before,
.fab.fa-suitcase:before,
.fa-solid.fa-suitcase:before,
.fa-regular.fa-suitcase:before,
.fa-brands.fa-suitcase:before,
.icon-suitcase:before,
.icon.icon-suitcase:before { content: "\f0f2" !important; }

.fa-sun-o:before,
.fa.fa-sun-o:before,
.fas.fa-sun-o:before,
.far.fa-sun-o:before,
.fab.fa-sun-o:before,
.fa-solid.fa-sun-o:before,
.fa-regular.fa-sun-o:before,
.fa-brands.fa-sun-o:before,
.icon-sun-o:before,
.icon.icon-sun-o:before { content: "\f185" !important; }

.fa-superpowers:before,
.fa.fa-superpowers:before,
.fas.fa-superpowers:before,
.far.fa-superpowers:before,
.fab.fa-superpowers:before,
.fa-solid.fa-superpowers:before,
.fa-regular.fa-superpowers:before,
.fa-brands.fa-superpowers:before,
.icon-superpowers:before,
.icon.icon-superpowers:before { content: "\f2dd" !important; }

.fa-superscript:before,
.fa.fa-superscript:before,
.fas.fa-superscript:before,
.far.fa-superscript:before,
.fab.fa-superscript:before,
.fa-solid.fa-superscript:before,
.fa-regular.fa-superscript:before,
.fa-brands.fa-superscript:before,
.icon-superscript:before,
.icon.icon-superscript:before { content: "\f12b" !important; }

.fa-support:before,
.fa.fa-support:before,
.fas.fa-support:before,
.far.fa-support:before,
.fab.fa-support:before,
.fa-solid.fa-support:before,
.fa-regular.fa-support:before,
.fa-brands.fa-support:before,
.icon-support:before,
.icon.icon-support:before { content: "\f1cd" !important; }

.fa-table:before,
.fa.fa-table:before,
.fas.fa-table:before,
.far.fa-table:before,
.fab.fa-table:before,
.fa-solid.fa-table:before,
.fa-regular.fa-table:before,
.fa-brands.fa-table:before,
.icon-table:before,
.icon.icon-table:before { content: "\f0ce" !important; }

.fa-tablet:before,
.fa.fa-tablet:before,
.fas.fa-tablet:before,
.far.fa-tablet:before,
.fab.fa-tablet:before,
.fa-solid.fa-tablet:before,
.fa-regular.fa-tablet:before,
.fa-brands.fa-tablet:before,
.icon-tablet:before,
.icon.icon-tablet:before { content: "\f10a" !important; }

.fa-tachometer:before,
.fa.fa-tachometer:before,
.fas.fa-tachometer:before,
.far.fa-tachometer:before,
.fab.fa-tachometer:before,
.fa-solid.fa-tachometer:before,
.fa-regular.fa-tachometer:before,
.fa-brands.fa-tachometer:before,
.icon-tachometer:before,
.icon.icon-tachometer:before { content: "\f0e4" !important; }

.fa-tag:before,
.fa.fa-tag:before,
.fas.fa-tag:before,
.far.fa-tag:before,
.fab.fa-tag:before,
.fa-solid.fa-tag:before,
.fa-regular.fa-tag:before,
.fa-brands.fa-tag:before,
.icon-tag:before,
.icon.icon-tag:before { content: "\f02b" !important; }

.fa-tags:before,
.fa.fa-tags:before,
.fas.fa-tags:before,
.far.fa-tags:before,
.fab.fa-tags:before,
.fa-solid.fa-tags:before,
.fa-regular.fa-tags:before,
.fa-brands.fa-tags:before,
.icon-tags:before,
.icon.icon-tags:before { content: "\f02c" !important; }

.fa-tasks:before,
.fa.fa-tasks:before,
.fas.fa-tasks:before,
.far.fa-tasks:before,
.fab.fa-tasks:before,
.fa-solid.fa-tasks:before,
.fa-regular.fa-tasks:before,
.fa-brands.fa-tasks:before,
.icon-tasks:before,
.icon.icon-tasks:before { content: "\f0ae" !important; }

.fa-taxi:before,
.fa.fa-taxi:before,
.fas.fa-taxi:before,
.far.fa-taxi:before,
.fab.fa-taxi:before,
.fa-solid.fa-taxi:before,
.fa-regular.fa-taxi:before,
.fa-brands.fa-taxi:before,
.icon-taxi:before,
.icon.icon-taxi:before { content: "\f1ba" !important; }

.fa-telegram:before,
.fa.fa-telegram:before,
.fas.fa-telegram:before,
.far.fa-telegram:before,
.fab.fa-telegram:before,
.fa-solid.fa-telegram:before,
.fa-regular.fa-telegram:before,
.fa-brands.fa-telegram:before,
.icon-telegram:before,
.icon.icon-telegram:before { content: "\f2c6" !important; }

.fa-television:before,
.fa.fa-television:before,
.fas.fa-television:before,
.far.fa-television:before,
.fab.fa-television:before,
.fa-solid.fa-television:before,
.fa-regular.fa-television:before,
.fa-brands.fa-television:before,
.icon-television:before,
.icon.icon-television:before { content: "\f26c" !important; }

.fa-tencent-weibo:before,
.fa.fa-tencent-weibo:before,
.fas.fa-tencent-weibo:before,
.far.fa-tencent-weibo:before,
.fab.fa-tencent-weibo:before,
.fa-solid.fa-tencent-weibo:before,
.fa-regular.fa-tencent-weibo:before,
.fa-brands.fa-tencent-weibo:before,
.icon-tencent-weibo:before,
.icon.icon-tencent-weibo:before { content: "\f1d5" !important; }

.fa-terminal:before,
.fa.fa-terminal:before,
.fas.fa-terminal:before,
.far.fa-terminal:before,
.fab.fa-terminal:before,
.fa-solid.fa-terminal:before,
.fa-regular.fa-terminal:before,
.fa-brands.fa-terminal:before,
.icon-terminal:before,
.icon.icon-terminal:before { content: "\f120" !important; }

.fa-text-height:before,
.fa.fa-text-height:before,
.fas.fa-text-height:before,
.far.fa-text-height:before,
.fab.fa-text-height:before,
.fa-solid.fa-text-height:before,
.fa-regular.fa-text-height:before,
.fa-brands.fa-text-height:before,
.icon-text-height:before,
.icon.icon-text-height:before { content: "\f034" !important; }

.fa-text-width:before,
.fa.fa-text-width:before,
.fas.fa-text-width:before,
.far.fa-text-width:before,
.fab.fa-text-width:before,
.fa-solid.fa-text-width:before,
.fa-regular.fa-text-width:before,
.fa-brands.fa-text-width:before,
.icon-text-width:before,
.icon.icon-text-width:before { content: "\f035" !important; }

.fa-th:before,
.fa.fa-th:before,
.fas.fa-th:before,
.far.fa-th:before,
.fab.fa-th:before,
.fa-solid.fa-th:before,
.fa-regular.fa-th:before,
.fa-brands.fa-th:before,
.icon-th:before,
.icon.icon-th:before { content: "\f00a" !important; }

.fa-th-large:before,
.fa.fa-th-large:before,
.fas.fa-th-large:before,
.far.fa-th-large:before,
.fab.fa-th-large:before,
.fa-solid.fa-th-large:before,
.fa-regular.fa-th-large:before,
.fa-brands.fa-th-large:before,
.icon-th-large:before,
.icon.icon-th-large:before { content: "\f009" !important; }

.fa-th-list:before,
.fa.fa-th-list:before,
.fas.fa-th-list:before,
.far.fa-th-list:before,
.fab.fa-th-list:before,
.fa-solid.fa-th-list:before,
.fa-regular.fa-th-list:before,
.fa-brands.fa-th-list:before,
.icon-th-list:before,
.icon.icon-th-list:before { content: "\f00b" !important; }

.fa-themeisle:before,
.fa.fa-themeisle:before,
.fas.fa-themeisle:before,
.far.fa-themeisle:before,
.fab.fa-themeisle:before,
.fa-solid.fa-themeisle:before,
.fa-regular.fa-themeisle:before,
.fa-brands.fa-themeisle:before,
.icon-themeisle:before,
.icon.icon-themeisle:before { content: "\f2b2" !important; }

.fa-thermometer:before,
.fa.fa-thermometer:before,
.fas.fa-thermometer:before,
.far.fa-thermometer:before,
.fab.fa-thermometer:before,
.fa-solid.fa-thermometer:before,
.fa-regular.fa-thermometer:before,
.fa-brands.fa-thermometer:before,
.icon-thermometer:before,
.icon.icon-thermometer:before { content: "\f2c7" !important; }

.fa-thermometer-0:before,
.fa.fa-thermometer-0:before,
.fas.fa-thermometer-0:before,
.far.fa-thermometer-0:before,
.fab.fa-thermometer-0:before,
.fa-solid.fa-thermometer-0:before,
.fa-regular.fa-thermometer-0:before,
.fa-brands.fa-thermometer-0:before,
.icon-thermometer-0:before,
.icon.icon-thermometer-0:before { content: "\f2cb" !important; }

.fa-thermometer-1:before,
.fa.fa-thermometer-1:before,
.fas.fa-thermometer-1:before,
.far.fa-thermometer-1:before,
.fab.fa-thermometer-1:before,
.fa-solid.fa-thermometer-1:before,
.fa-regular.fa-thermometer-1:before,
.fa-brands.fa-thermometer-1:before,
.icon-thermometer-1:before,
.icon.icon-thermometer-1:before { content: "\f2ca" !important; }

.fa-thermometer-2:before,
.fa.fa-thermometer-2:before,
.fas.fa-thermometer-2:before,
.far.fa-thermometer-2:before,
.fab.fa-thermometer-2:before,
.fa-solid.fa-thermometer-2:before,
.fa-regular.fa-thermometer-2:before,
.fa-brands.fa-thermometer-2:before,
.icon-thermometer-2:before,
.icon.icon-thermometer-2:before { content: "\f2c9" !important; }

.fa-thermometer-3:before,
.fa.fa-thermometer-3:before,
.fas.fa-thermometer-3:before,
.far.fa-thermometer-3:before,
.fab.fa-thermometer-3:before,
.fa-solid.fa-thermometer-3:before,
.fa-regular.fa-thermometer-3:before,
.fa-brands.fa-thermometer-3:before,
.icon-thermometer-3:before,
.icon.icon-thermometer-3:before { content: "\f2c8" !important; }

.fa-thermometer-4:before,
.fa.fa-thermometer-4:before,
.fas.fa-thermometer-4:before,
.far.fa-thermometer-4:before,
.fab.fa-thermometer-4:before,
.fa-solid.fa-thermometer-4:before,
.fa-regular.fa-thermometer-4:before,
.fa-brands.fa-thermometer-4:before,
.icon-thermometer-4:before,
.icon.icon-thermometer-4:before { content: "\f2c7" !important; }

.fa-thermometer-empty:before,
.fa.fa-thermometer-empty:before,
.fas.fa-thermometer-empty:before,
.far.fa-thermometer-empty:before,
.fab.fa-thermometer-empty:before,
.fa-solid.fa-thermometer-empty:before,
.fa-regular.fa-thermometer-empty:before,
.fa-brands.fa-thermometer-empty:before,
.icon-thermometer-empty:before,
.icon.icon-thermometer-empty:before { content: "\f2cb" !important; }

.fa-thermometer-full:before,
.fa.fa-thermometer-full:before,
.fas.fa-thermometer-full:before,
.far.fa-thermometer-full:before,
.fab.fa-thermometer-full:before,
.fa-solid.fa-thermometer-full:before,
.fa-regular.fa-thermometer-full:before,
.fa-brands.fa-thermometer-full:before,
.icon-thermometer-full:before,
.icon.icon-thermometer-full:before { content: "\f2c7" !important; }

.fa-thermometer-half:before,
.fa.fa-thermometer-half:before,
.fas.fa-thermometer-half:before,
.far.fa-thermometer-half:before,
.fab.fa-thermometer-half:before,
.fa-solid.fa-thermometer-half:before,
.fa-regular.fa-thermometer-half:before,
.fa-brands.fa-thermometer-half:before,
.icon-thermometer-half:before,
.icon.icon-thermometer-half:before { content: "\f2c9" !important; }

.fa-thermometer-quarter:before,
.fa.fa-thermometer-quarter:before,
.fas.fa-thermometer-quarter:before,
.far.fa-thermometer-quarter:before,
.fab.fa-thermometer-quarter:before,
.fa-solid.fa-thermometer-quarter:before,
.fa-regular.fa-thermometer-quarter:before,
.fa-brands.fa-thermometer-quarter:before,
.icon-thermometer-quarter:before,
.icon.icon-thermometer-quarter:before { content: "\f2ca" !important; }

.fa-thermometer-three-quarters:before,
.fa.fa-thermometer-three-quarters:before,
.fas.fa-thermometer-three-quarters:before,
.far.fa-thermometer-three-quarters:before,
.fab.fa-thermometer-three-quarters:before,
.fa-solid.fa-thermometer-three-quarters:before,
.fa-regular.fa-thermometer-three-quarters:before,
.fa-brands.fa-thermometer-three-quarters:before,
.icon-thermometer-three-quarters:before,
.icon.icon-thermometer-three-quarters:before { content: "\f2c8" !important; }

.fa-thumb-tack:before,
.fa.fa-thumb-tack:before,
.fas.fa-thumb-tack:before,
.far.fa-thumb-tack:before,
.fab.fa-thumb-tack:before,
.fa-solid.fa-thumb-tack:before,
.fa-regular.fa-thumb-tack:before,
.fa-brands.fa-thumb-tack:before,
.icon-thumb-tack:before,
.icon.icon-thumb-tack:before { content: "\f08d" !important; }

.fa-thumbs-down:before,
.fa.fa-thumbs-down:before,
.fas.fa-thumbs-down:before,
.far.fa-thumbs-down:before,
.fab.fa-thumbs-down:before,
.fa-solid.fa-thumbs-down:before,
.fa-regular.fa-thumbs-down:before,
.fa-brands.fa-thumbs-down:before,
.icon-thumbs-down:before,
.icon.icon-thumbs-down:before { content: "\f165" !important; }

.fa-thumbs-o-down:before,
.fa.fa-thumbs-o-down:before,
.fas.fa-thumbs-o-down:before,
.far.fa-thumbs-o-down:before,
.fab.fa-thumbs-o-down:before,
.fa-solid.fa-thumbs-o-down:before,
.fa-regular.fa-thumbs-o-down:before,
.fa-brands.fa-thumbs-o-down:before,
.icon-thumbs-o-down:before,
.icon.icon-thumbs-o-down:before { content: "\f088" !important; }

.fa-thumbs-o-up:before,
.fa.fa-thumbs-o-up:before,
.fas.fa-thumbs-o-up:before,
.far.fa-thumbs-o-up:before,
.fab.fa-thumbs-o-up:before,
.fa-solid.fa-thumbs-o-up:before,
.fa-regular.fa-thumbs-o-up:before,
.fa-brands.fa-thumbs-o-up:before,
.icon-thumbs-o-up:before,
.icon.icon-thumbs-o-up:before { content: "\f087" !important; }

.fa-thumbs-up:before,
.fa.fa-thumbs-up:before,
.fas.fa-thumbs-up:before,
.far.fa-thumbs-up:before,
.fab.fa-thumbs-up:before,
.fa-solid.fa-thumbs-up:before,
.fa-regular.fa-thumbs-up:before,
.fa-brands.fa-thumbs-up:before,
.icon-thumbs-up:before,
.icon.icon-thumbs-up:before { content: "\f164" !important; }

.fa-ticket:before,
.fa.fa-ticket:before,
.fas.fa-ticket:before,
.far.fa-ticket:before,
.fab.fa-ticket:before,
.fa-solid.fa-ticket:before,
.fa-regular.fa-ticket:before,
.fa-brands.fa-ticket:before,
.icon-ticket:before,
.icon.icon-ticket:before { content: "\f145" !important; }

.fa-times:before,
.fa.fa-times:before,
.fas.fa-times:before,
.far.fa-times:before,
.fab.fa-times:before,
.fa-solid.fa-times:before,
.fa-regular.fa-times:before,
.fa-brands.fa-times:before,
.icon-times:before,
.icon.icon-times:before { content: "\f00d" !important; }

.fa-times-circle:before,
.fa.fa-times-circle:before,
.fas.fa-times-circle:before,
.far.fa-times-circle:before,
.fab.fa-times-circle:before,
.fa-solid.fa-times-circle:before,
.fa-regular.fa-times-circle:before,
.fa-brands.fa-times-circle:before,
.icon-times-circle:before,
.icon.icon-times-circle:before { content: "\f057" !important; }

.fa-times-circle-o:before,
.fa.fa-times-circle-o:before,
.fas.fa-times-circle-o:before,
.far.fa-times-circle-o:before,
.fab.fa-times-circle-o:before,
.fa-solid.fa-times-circle-o:before,
.fa-regular.fa-times-circle-o:before,
.fa-brands.fa-times-circle-o:before,
.icon-times-circle-o:before,
.icon.icon-times-circle-o:before { content: "\f05c" !important; }

.fa-times-rectangle:before,
.fa.fa-times-rectangle:before,
.fas.fa-times-rectangle:before,
.far.fa-times-rectangle:before,
.fab.fa-times-rectangle:before,
.fa-solid.fa-times-rectangle:before,
.fa-regular.fa-times-rectangle:before,
.fa-brands.fa-times-rectangle:before,
.icon-times-rectangle:before,
.icon.icon-times-rectangle:before { content: "\f2d3" !important; }

.fa-times-rectangle-o:before,
.fa.fa-times-rectangle-o:before,
.fas.fa-times-rectangle-o:before,
.far.fa-times-rectangle-o:before,
.fab.fa-times-rectangle-o:before,
.fa-solid.fa-times-rectangle-o:before,
.fa-regular.fa-times-rectangle-o:before,
.fa-brands.fa-times-rectangle-o:before,
.icon-times-rectangle-o:before,
.icon.icon-times-rectangle-o:before { content: "\f2d4" !important; }

.fa-tint:before,
.fa.fa-tint:before,
.fas.fa-tint:before,
.far.fa-tint:before,
.fab.fa-tint:before,
.fa-solid.fa-tint:before,
.fa-regular.fa-tint:before,
.fa-brands.fa-tint:before,
.icon-tint:before,
.icon.icon-tint:before { content: "\f043" !important; }

.fa-toggle-down:before,
.fa.fa-toggle-down:before,
.fas.fa-toggle-down:before,
.far.fa-toggle-down:before,
.fab.fa-toggle-down:before,
.fa-solid.fa-toggle-down:before,
.fa-regular.fa-toggle-down:before,
.fa-brands.fa-toggle-down:before,
.icon-toggle-down:before,
.icon.icon-toggle-down:before { content: "\f150" !important; }

.fa-toggle-left:before,
.fa.fa-toggle-left:before,
.fas.fa-toggle-left:before,
.far.fa-toggle-left:before,
.fab.fa-toggle-left:before,
.fa-solid.fa-toggle-left:before,
.fa-regular.fa-toggle-left:before,
.fa-brands.fa-toggle-left:before,
.icon-toggle-left:before,
.icon.icon-toggle-left:before { content: "\f191" !important; }

.fa-toggle-off:before,
.fa.fa-toggle-off:before,
.fas.fa-toggle-off:before,
.far.fa-toggle-off:before,
.fab.fa-toggle-off:before,
.fa-solid.fa-toggle-off:before,
.fa-regular.fa-toggle-off:before,
.fa-brands.fa-toggle-off:before,
.icon-toggle-off:before,
.icon.icon-toggle-off:before { content: "\f204" !important; }

.fa-toggle-on:before,
.fa.fa-toggle-on:before,
.fas.fa-toggle-on:before,
.far.fa-toggle-on:before,
.fab.fa-toggle-on:before,
.fa-solid.fa-toggle-on:before,
.fa-regular.fa-toggle-on:before,
.fa-brands.fa-toggle-on:before,
.icon-toggle-on:before,
.icon.icon-toggle-on:before { content: "\f205" !important; }

.fa-toggle-right:before,
.fa.fa-toggle-right:before,
.fas.fa-toggle-right:before,
.far.fa-toggle-right:before,
.fab.fa-toggle-right:before,
.fa-solid.fa-toggle-right:before,
.fa-regular.fa-toggle-right:before,
.fa-brands.fa-toggle-right:before,
.icon-toggle-right:before,
.icon.icon-toggle-right:before { content: "\f152" !important; }

.fa-toggle-up:before,
.fa.fa-toggle-up:before,
.fas.fa-toggle-up:before,
.far.fa-toggle-up:before,
.fab.fa-toggle-up:before,
.fa-solid.fa-toggle-up:before,
.fa-regular.fa-toggle-up:before,
.fa-brands.fa-toggle-up:before,
.icon-toggle-up:before,
.icon.icon-toggle-up:before { content: "\f151" !important; }

.fa-trademark:before,
.fa.fa-trademark:before,
.fas.fa-trademark:before,
.far.fa-trademark:before,
.fab.fa-trademark:before,
.fa-solid.fa-trademark:before,
.fa-regular.fa-trademark:before,
.fa-brands.fa-trademark:before,
.icon-trademark:before,
.icon.icon-trademark:before { content: "\f25c" !important; }

.fa-train:before,
.fa.fa-train:before,
.fas.fa-train:before,
.far.fa-train:before,
.fab.fa-train:before,
.fa-solid.fa-train:before,
.fa-regular.fa-train:before,
.fa-brands.fa-train:before,
.icon-train:before,
.icon.icon-train:before { content: "\f238" !important; }

.fa-transgender:before,
.fa.fa-transgender:before,
.fas.fa-transgender:before,
.far.fa-transgender:before,
.fab.fa-transgender:before,
.fa-solid.fa-transgender:before,
.fa-regular.fa-transgender:before,
.fa-brands.fa-transgender:before,
.icon-transgender:before,
.icon.icon-transgender:before { content: "\f224" !important; }

.fa-transgender-alt:before,
.fa.fa-transgender-alt:before,
.fas.fa-transgender-alt:before,
.far.fa-transgender-alt:before,
.fab.fa-transgender-alt:before,
.fa-solid.fa-transgender-alt:before,
.fa-regular.fa-transgender-alt:before,
.fa-brands.fa-transgender-alt:before,
.icon-transgender-alt:before,
.icon.icon-transgender-alt:before { content: "\f225" !important; }

.fa-trash:before,
.fa.fa-trash:before,
.fas.fa-trash:before,
.far.fa-trash:before,
.fab.fa-trash:before,
.fa-solid.fa-trash:before,
.fa-regular.fa-trash:before,
.fa-brands.fa-trash:before,
.icon-trash:before,
.icon.icon-trash:before { content: "\f1f8" !important; }

.fa-trash-o:before,
.fa.fa-trash-o:before,
.fas.fa-trash-o:before,
.far.fa-trash-o:before,
.fab.fa-trash-o:before,
.fa-solid.fa-trash-o:before,
.fa-regular.fa-trash-o:before,
.fa-brands.fa-trash-o:before,
.icon-trash-o:before,
.icon.icon-trash-o:before { content: "\f014" !important; }

.fa-tree:before,
.fa.fa-tree:before,
.fas.fa-tree:before,
.far.fa-tree:before,
.fab.fa-tree:before,
.fa-solid.fa-tree:before,
.fa-regular.fa-tree:before,
.fa-brands.fa-tree:before,
.icon-tree:before,
.icon.icon-tree:before { content: "\f1bb" !important; }

.fa-trello:before,
.fa.fa-trello:before,
.fas.fa-trello:before,
.far.fa-trello:before,
.fab.fa-trello:before,
.fa-solid.fa-trello:before,
.fa-regular.fa-trello:before,
.fa-brands.fa-trello:before,
.icon-trello:before,
.icon.icon-trello:before { content: "\f181" !important; }

.fa-tripadvisor:before,
.fa.fa-tripadvisor:before,
.fas.fa-tripadvisor:before,
.far.fa-tripadvisor:before,
.fab.fa-tripadvisor:before,
.fa-solid.fa-tripadvisor:before,
.fa-regular.fa-tripadvisor:before,
.fa-brands.fa-tripadvisor:before,
.icon-tripadvisor:before,
.icon.icon-tripadvisor:before { content: "\f262" !important; }

.fa-trophy:before,
.fa.fa-trophy:before,
.fas.fa-trophy:before,
.far.fa-trophy:before,
.fab.fa-trophy:before,
.fa-solid.fa-trophy:before,
.fa-regular.fa-trophy:before,
.fa-brands.fa-trophy:before,
.icon-trophy:before,
.icon.icon-trophy:before { content: "\f091" !important; }

.fa-truck:before,
.fa.fa-truck:before,
.fas.fa-truck:before,
.far.fa-truck:before,
.fab.fa-truck:before,
.fa-solid.fa-truck:before,
.fa-regular.fa-truck:before,
.fa-brands.fa-truck:before,
.icon-truck:before,
.icon.icon-truck:before { content: "\f0d1" !important; }

.fa-try:before,
.fa.fa-try:before,
.fas.fa-try:before,
.far.fa-try:before,
.fab.fa-try:before,
.fa-solid.fa-try:before,
.fa-regular.fa-try:before,
.fa-brands.fa-try:before,
.icon-try:before,
.icon.icon-try:before { content: "\f195" !important; }

.fa-tty:before,
.fa.fa-tty:before,
.fas.fa-tty:before,
.far.fa-tty:before,
.fab.fa-tty:before,
.fa-solid.fa-tty:before,
.fa-regular.fa-tty:before,
.fa-brands.fa-tty:before,
.icon-tty:before,
.icon.icon-tty:before { content: "\f1e4" !important; }

.fa-tumblr:before,
.fa.fa-tumblr:before,
.fas.fa-tumblr:before,
.far.fa-tumblr:before,
.fab.fa-tumblr:before,
.fa-solid.fa-tumblr:before,
.fa-regular.fa-tumblr:before,
.fa-brands.fa-tumblr:before,
.icon-tumblr:before,
.icon.icon-tumblr:before { content: "\f173" !important; }

.fa-tumblr-square:before,
.fa.fa-tumblr-square:before,
.fas.fa-tumblr-square:before,
.far.fa-tumblr-square:before,
.fab.fa-tumblr-square:before,
.fa-solid.fa-tumblr-square:before,
.fa-regular.fa-tumblr-square:before,
.fa-brands.fa-tumblr-square:before,
.icon-tumblr-square:before,
.icon.icon-tumblr-square:before { content: "\f174" !important; }

.fa-turkish-lira:before,
.fa.fa-turkish-lira:before,
.fas.fa-turkish-lira:before,
.far.fa-turkish-lira:before,
.fab.fa-turkish-lira:before,
.fa-solid.fa-turkish-lira:before,
.fa-regular.fa-turkish-lira:before,
.fa-brands.fa-turkish-lira:before,
.icon-turkish-lira:before,
.icon.icon-turkish-lira:before { content: "\f195" !important; }

.fa-tv:before,
.fa.fa-tv:before,
.fas.fa-tv:before,
.far.fa-tv:before,
.fab.fa-tv:before,
.fa-solid.fa-tv:before,
.fa-regular.fa-tv:before,
.fa-brands.fa-tv:before,
.icon-tv:before,
.icon.icon-tv:before { content: "\f26c" !important; }

.fa-twitch:before,
.fa.fa-twitch:before,
.fas.fa-twitch:before,
.far.fa-twitch:before,
.fab.fa-twitch:before,
.fa-solid.fa-twitch:before,
.fa-regular.fa-twitch:before,
.fa-brands.fa-twitch:before,
.icon-twitch:before,
.icon.icon-twitch:before { content: "\f1e8" !important; }

.fa-twitter:before,
.fa.fa-twitter:before,
.fas.fa-twitter:before,
.far.fa-twitter:before,
.fab.fa-twitter:before,
.fa-solid.fa-twitter:before,
.fa-regular.fa-twitter:before,
.fa-brands.fa-twitter:before,
.icon-twitter:before,
.icon.icon-twitter:before { content: "\f099" !important; }

.fa-twitter-square:before,
.fa.fa-twitter-square:before,
.fas.fa-twitter-square:before,
.far.fa-twitter-square:before,
.fab.fa-twitter-square:before,
.fa-solid.fa-twitter-square:before,
.fa-regular.fa-twitter-square:before,
.fa-brands.fa-twitter-square:before,
.icon-twitter-square:before,
.icon.icon-twitter-square:before { content: "\f081" !important; }

.fa-umbrella:before,
.fa.fa-umbrella:before,
.fas.fa-umbrella:before,
.far.fa-umbrella:before,
.fab.fa-umbrella:before,
.fa-solid.fa-umbrella:before,
.fa-regular.fa-umbrella:before,
.fa-brands.fa-umbrella:before,
.icon-umbrella:before,
.icon.icon-umbrella:before { content: "\f0e9" !important; }

.fa-underline:before,
.fa.fa-underline:before,
.fas.fa-underline:before,
.far.fa-underline:before,
.fab.fa-underline:before,
.fa-solid.fa-underline:before,
.fa-regular.fa-underline:before,
.fa-brands.fa-underline:before,
.icon-underline:before,
.icon.icon-underline:before { content: "\f0cd" !important; }

.fa-undo:before,
.fa.fa-undo:before,
.fas.fa-undo:before,
.far.fa-undo:before,
.fab.fa-undo:before,
.fa-solid.fa-undo:before,
.fa-regular.fa-undo:before,
.fa-brands.fa-undo:before,
.icon-undo:before,
.icon.icon-undo:before { content: "\f0e2" !important; }

.fa-universal-access:before,
.fa.fa-universal-access:before,
.fas.fa-universal-access:before,
.far.fa-universal-access:before,
.fab.fa-universal-access:before,
.fa-solid.fa-universal-access:before,
.fa-regular.fa-universal-access:before,
.fa-brands.fa-universal-access:before,
.icon-universal-access:before,
.icon.icon-universal-access:before { content: "\f29a" !important; }

.fa-university:before,
.fa.fa-university:before,
.fas.fa-university:before,
.far.fa-university:before,
.fab.fa-university:before,
.fa-solid.fa-university:before,
.fa-regular.fa-university:before,
.fa-brands.fa-university:before,
.icon-university:before,
.icon.icon-university:before { content: "\f19c" !important; }

.fa-unlink:before,
.fa.fa-unlink:before,
.fas.fa-unlink:before,
.far.fa-unlink:before,
.fab.fa-unlink:before,
.fa-solid.fa-unlink:before,
.fa-regular.fa-unlink:before,
.fa-brands.fa-unlink:before,
.icon-unlink:before,
.icon.icon-unlink:before { content: "\f127" !important; }

.fa-unlock:before,
.fa.fa-unlock:before,
.fas.fa-unlock:before,
.far.fa-unlock:before,
.fab.fa-unlock:before,
.fa-solid.fa-unlock:before,
.fa-regular.fa-unlock:before,
.fa-brands.fa-unlock:before,
.icon-unlock:before,
.icon.icon-unlock:before { content: "\f09c" !important; }

.fa-unlock-alt:before,
.fa.fa-unlock-alt:before,
.fas.fa-unlock-alt:before,
.far.fa-unlock-alt:before,
.fab.fa-unlock-alt:before,
.fa-solid.fa-unlock-alt:before,
.fa-regular.fa-unlock-alt:before,
.fa-brands.fa-unlock-alt:before,
.icon-unlock-alt:before,
.icon.icon-unlock-alt:before { content: "\f13e" !important; }

.fa-unsorted:before,
.fa.fa-unsorted:before,
.fas.fa-unsorted:before,
.far.fa-unsorted:before,
.fab.fa-unsorted:before,
.fa-solid.fa-unsorted:before,
.fa-regular.fa-unsorted:before,
.fa-brands.fa-unsorted:before,
.icon-unsorted:before,
.icon.icon-unsorted:before { content: "\f0dc" !important; }

.fa-upload:before,
.fa.fa-upload:before,
.fas.fa-upload:before,
.far.fa-upload:before,
.fab.fa-upload:before,
.fa-solid.fa-upload:before,
.fa-regular.fa-upload:before,
.fa-brands.fa-upload:before,
.icon-upload:before,
.icon.icon-upload:before { content: "\f093" !important; }

.fa-usb:before,
.fa.fa-usb:before,
.fas.fa-usb:before,
.far.fa-usb:before,
.fab.fa-usb:before,
.fa-solid.fa-usb:before,
.fa-regular.fa-usb:before,
.fa-brands.fa-usb:before,
.icon-usb:before,
.icon.icon-usb:before { content: "\f287" !important; }

.fa-usd:before,
.fa.fa-usd:before,
.fas.fa-usd:before,
.far.fa-usd:before,
.fab.fa-usd:before,
.fa-solid.fa-usd:before,
.fa-regular.fa-usd:before,
.fa-brands.fa-usd:before,
.icon-usd:before,
.icon.icon-usd:before { content: "\f155" !important; }

.fa-user:before,
.fa.fa-user:before,
.fas.fa-user:before,
.far.fa-user:before,
.fab.fa-user:before,
.fa-solid.fa-user:before,
.fa-regular.fa-user:before,
.fa-brands.fa-user:before,
.icon-user:before,
.icon.icon-user:before { content: "\f007" !important; }

.fa-user-circle:before,
.fa.fa-user-circle:before,
.fas.fa-user-circle:before,
.far.fa-user-circle:before,
.fab.fa-user-circle:before,
.fa-solid.fa-user-circle:before,
.fa-regular.fa-user-circle:before,
.fa-brands.fa-user-circle:before,
.icon-user-circle:before,
.icon.icon-user-circle:before { content: "\f2bd" !important; }

.fa-user-circle-o:before,
.fa.fa-user-circle-o:before,
.fas.fa-user-circle-o:before,
.far.fa-user-circle-o:before,
.fab.fa-user-circle-o:before,
.fa-solid.fa-user-circle-o:before,
.fa-regular.fa-user-circle-o:before,
.fa-brands.fa-user-circle-o:before,
.icon-user-circle-o:before,
.icon.icon-user-circle-o:before { content: "\f2be" !important; }

.fa-user-md:before,
.fa.fa-user-md:before,
.fas.fa-user-md:before,
.far.fa-user-md:before,
.fab.fa-user-md:before,
.fa-solid.fa-user-md:before,
.fa-regular.fa-user-md:before,
.fa-brands.fa-user-md:before,
.icon-user-md:before,
.icon.icon-user-md:before { content: "\f0f0" !important; }

.fa-user-o:before,
.fa.fa-user-o:before,
.fas.fa-user-o:before,
.far.fa-user-o:before,
.fab.fa-user-o:before,
.fa-solid.fa-user-o:before,
.fa-regular.fa-user-o:before,
.fa-brands.fa-user-o:before,
.icon-user-o:before,
.icon.icon-user-o:before { content: "\f2c0" !important; }

.fa-user-plus:before,
.fa.fa-user-plus:before,
.fas.fa-user-plus:before,
.far.fa-user-plus:before,
.fab.fa-user-plus:before,
.fa-solid.fa-user-plus:before,
.fa-regular.fa-user-plus:before,
.fa-brands.fa-user-plus:before,
.icon-user-plus:before,
.icon.icon-user-plus:before { content: "\f234" !important; }

.fa-user-secret:before,
.fa.fa-user-secret:before,
.fas.fa-user-secret:before,
.far.fa-user-secret:before,
.fab.fa-user-secret:before,
.fa-solid.fa-user-secret:before,
.fa-regular.fa-user-secret:before,
.fa-brands.fa-user-secret:before,
.icon-user-secret:before,
.icon.icon-user-secret:before { content: "\f21b" !important; }

.fa-user-times:before,
.fa.fa-user-times:before,
.fas.fa-user-times:before,
.far.fa-user-times:before,
.fab.fa-user-times:before,
.fa-solid.fa-user-times:before,
.fa-regular.fa-user-times:before,
.fa-brands.fa-user-times:before,
.icon-user-times:before,
.icon.icon-user-times:before { content: "\f235" !important; }

.fa-users:before,
.fa.fa-users:before,
.fas.fa-users:before,
.far.fa-users:before,
.fab.fa-users:before,
.fa-solid.fa-users:before,
.fa-regular.fa-users:before,
.fa-brands.fa-users:before,
.icon-users:before,
.icon.icon-users:before { content: "\f0c0" !important; }

.fa-vcard:before,
.fa.fa-vcard:before,
.fas.fa-vcard:before,
.far.fa-vcard:before,
.fab.fa-vcard:before,
.fa-solid.fa-vcard:before,
.fa-regular.fa-vcard:before,
.fa-brands.fa-vcard:before,
.icon-vcard:before,
.icon.icon-vcard:before { content: "\f2bb" !important; }

.fa-vcard-o:before,
.fa.fa-vcard-o:before,
.fas.fa-vcard-o:before,
.far.fa-vcard-o:before,
.fab.fa-vcard-o:before,
.fa-solid.fa-vcard-o:before,
.fa-regular.fa-vcard-o:before,
.fa-brands.fa-vcard-o:before,
.icon-vcard-o:before,
.icon.icon-vcard-o:before { content: "\f2bc" !important; }

.fa-venus:before,
.fa.fa-venus:before,
.fas.fa-venus:before,
.far.fa-venus:before,
.fab.fa-venus:before,
.fa-solid.fa-venus:before,
.fa-regular.fa-venus:before,
.fa-brands.fa-venus:before,
.icon-venus:before,
.icon.icon-venus:before { content: "\f221" !important; }

.fa-venus-double:before,
.fa.fa-venus-double:before,
.fas.fa-venus-double:before,
.far.fa-venus-double:before,
.fab.fa-venus-double:before,
.fa-solid.fa-venus-double:before,
.fa-regular.fa-venus-double:before,
.fa-brands.fa-venus-double:before,
.icon-venus-double:before,
.icon.icon-venus-double:before { content: "\f226" !important; }

.fa-venus-mars:before,
.fa.fa-venus-mars:before,
.fas.fa-venus-mars:before,
.far.fa-venus-mars:before,
.fab.fa-venus-mars:before,
.fa-solid.fa-venus-mars:before,
.fa-regular.fa-venus-mars:before,
.fa-brands.fa-venus-mars:before,
.icon-venus-mars:before,
.icon.icon-venus-mars:before { content: "\f228" !important; }

.fa-viacoin:before,
.fa.fa-viacoin:before,
.fas.fa-viacoin:before,
.far.fa-viacoin:before,
.fab.fa-viacoin:before,
.fa-solid.fa-viacoin:before,
.fa-regular.fa-viacoin:before,
.fa-brands.fa-viacoin:before,
.icon-viacoin:before,
.icon.icon-viacoin:before { content: "\f237" !important; }

.fa-viadeo:before,
.fa.fa-viadeo:before,
.fas.fa-viadeo:before,
.far.fa-viadeo:before,
.fab.fa-viadeo:before,
.fa-solid.fa-viadeo:before,
.fa-regular.fa-viadeo:before,
.fa-brands.fa-viadeo:before,
.icon-viadeo:before,
.icon.icon-viadeo:before { content: "\f2a9" !important; }

.fa-viadeo-square:before,
.fa.fa-viadeo-square:before,
.fas.fa-viadeo-square:before,
.far.fa-viadeo-square:before,
.fab.fa-viadeo-square:before,
.fa-solid.fa-viadeo-square:before,
.fa-regular.fa-viadeo-square:before,
.fa-brands.fa-viadeo-square:before,
.icon-viadeo-square:before,
.icon.icon-viadeo-square:before { content: "\f2aa" !important; }

.fa-video-camera:before,
.fa.fa-video-camera:before,
.fas.fa-video-camera:before,
.far.fa-video-camera:before,
.fab.fa-video-camera:before,
.fa-solid.fa-video-camera:before,
.fa-regular.fa-video-camera:before,
.fa-brands.fa-video-camera:before,
.icon-video-camera:before,
.icon.icon-video-camera:before { content: "\f03d" !important; }

.fa-vimeo:before,
.fa.fa-vimeo:before,
.fas.fa-vimeo:before,
.far.fa-vimeo:before,
.fab.fa-vimeo:before,
.fa-solid.fa-vimeo:before,
.fa-regular.fa-vimeo:before,
.fa-brands.fa-vimeo:before,
.icon-vimeo:before,
.icon.icon-vimeo:before { content: "\f27d" !important; }

.fa-vimeo-square:before,
.fa.fa-vimeo-square:before,
.fas.fa-vimeo-square:before,
.far.fa-vimeo-square:before,
.fab.fa-vimeo-square:before,
.fa-solid.fa-vimeo-square:before,
.fa-regular.fa-vimeo-square:before,
.fa-brands.fa-vimeo-square:before,
.icon-vimeo-square:before,
.icon.icon-vimeo-square:before { content: "\f194" !important; }

.fa-vine:before,
.fa.fa-vine:before,
.fas.fa-vine:before,
.far.fa-vine:before,
.fab.fa-vine:before,
.fa-solid.fa-vine:before,
.fa-regular.fa-vine:before,
.fa-brands.fa-vine:before,
.icon-vine:before,
.icon.icon-vine:before { content: "\f1ca" !important; }

.fa-vk:before,
.fa.fa-vk:before,
.fas.fa-vk:before,
.far.fa-vk:before,
.fab.fa-vk:before,
.fa-solid.fa-vk:before,
.fa-regular.fa-vk:before,
.fa-brands.fa-vk:before,
.icon-vk:before,
.icon.icon-vk:before { content: "\f189" !important; }

.fa-volume-control-phone:before,
.fa.fa-volume-control-phone:before,
.fas.fa-volume-control-phone:before,
.far.fa-volume-control-phone:before,
.fab.fa-volume-control-phone:before,
.fa-solid.fa-volume-control-phone:before,
.fa-regular.fa-volume-control-phone:before,
.fa-brands.fa-volume-control-phone:before,
.icon-volume-control-phone:before,
.icon.icon-volume-control-phone:before { content: "\f2a0" !important; }

.fa-volume-down:before,
.fa.fa-volume-down:before,
.fas.fa-volume-down:before,
.far.fa-volume-down:before,
.fab.fa-volume-down:before,
.fa-solid.fa-volume-down:before,
.fa-regular.fa-volume-down:before,
.fa-brands.fa-volume-down:before,
.icon-volume-down:before,
.icon.icon-volume-down:before { content: "\f027" !important; }

.fa-volume-off:before,
.fa.fa-volume-off:before,
.fas.fa-volume-off:before,
.far.fa-volume-off:before,
.fab.fa-volume-off:before,
.fa-solid.fa-volume-off:before,
.fa-regular.fa-volume-off:before,
.fa-brands.fa-volume-off:before,
.icon-volume-off:before,
.icon.icon-volume-off:before { content: "\f026" !important; }

.fa-volume-up:before,
.fa.fa-volume-up:before,
.fas.fa-volume-up:before,
.far.fa-volume-up:before,
.fab.fa-volume-up:before,
.fa-solid.fa-volume-up:before,
.fa-regular.fa-volume-up:before,
.fa-brands.fa-volume-up:before,
.icon-volume-up:before,
.icon.icon-volume-up:before { content: "\f028" !important; }

.fa-warning:before,
.fa.fa-warning:before,
.fas.fa-warning:before,
.far.fa-warning:before,
.fab.fa-warning:before,
.fa-solid.fa-warning:before,
.fa-regular.fa-warning:before,
.fa-brands.fa-warning:before,
.icon-warning:before,
.icon.icon-warning:before { content: "\f071" !important; }

.fa-wechat:before,
.fa.fa-wechat:before,
.fas.fa-wechat:before,
.far.fa-wechat:before,
.fab.fa-wechat:before,
.fa-solid.fa-wechat:before,
.fa-regular.fa-wechat:before,
.fa-brands.fa-wechat:before,
.icon-wechat:before,
.icon.icon-wechat:before { content: "\f1d7" !important; }

.fa-weibo:before,
.fa.fa-weibo:before,
.fas.fa-weibo:before,
.far.fa-weibo:before,
.fab.fa-weibo:before,
.fa-solid.fa-weibo:before,
.fa-regular.fa-weibo:before,
.fa-brands.fa-weibo:before,
.icon-weibo:before,
.icon.icon-weibo:before { content: "\f18a" !important; }

.fa-weixin:before,
.fa.fa-weixin:before,
.fas.fa-weixin:before,
.far.fa-weixin:before,
.fab.fa-weixin:before,
.fa-solid.fa-weixin:before,
.fa-regular.fa-weixin:before,
.fa-brands.fa-weixin:before,
.icon-weixin:before,
.icon.icon-weixin:before { content: "\f1d7" !important; }

.fa-whatsapp:before,
.fa.fa-whatsapp:before,
.fas.fa-whatsapp:before,
.far.fa-whatsapp:before,
.fab.fa-whatsapp:before,
.fa-solid.fa-whatsapp:before,
.fa-regular.fa-whatsapp:before,
.fa-brands.fa-whatsapp:before,
.icon-whatsapp:before,
.icon.icon-whatsapp:before { content: "\f232" !important; }

.fa-wheelchair:before,
.fa.fa-wheelchair:before,
.fas.fa-wheelchair:before,
.far.fa-wheelchair:before,
.fab.fa-wheelchair:before,
.fa-solid.fa-wheelchair:before,
.fa-regular.fa-wheelchair:before,
.fa-brands.fa-wheelchair:before,
.icon-wheelchair:before,
.icon.icon-wheelchair:before { content: "\f193" !important; }

.fa-wheelchair-alt:before,
.fa.fa-wheelchair-alt:before,
.fas.fa-wheelchair-alt:before,
.far.fa-wheelchair-alt:before,
.fab.fa-wheelchair-alt:before,
.fa-solid.fa-wheelchair-alt:before,
.fa-regular.fa-wheelchair-alt:before,
.fa-brands.fa-wheelchair-alt:before,
.icon-wheelchair-alt:before,
.icon.icon-wheelchair-alt:before { content: "\f29b" !important; }

.fa-wifi:before,
.fa.fa-wifi:before,
.fas.fa-wifi:before,
.far.fa-wifi:before,
.fab.fa-wifi:before,
.fa-solid.fa-wifi:before,
.fa-regular.fa-wifi:before,
.fa-brands.fa-wifi:before,
.icon-wifi:before,
.icon.icon-wifi:before { content: "\f1eb" !important; }

.fa-wikipedia-w:before,
.fa.fa-wikipedia-w:before,
.fas.fa-wikipedia-w:before,
.far.fa-wikipedia-w:before,
.fab.fa-wikipedia-w:before,
.fa-solid.fa-wikipedia-w:before,
.fa-regular.fa-wikipedia-w:before,
.fa-brands.fa-wikipedia-w:before,
.icon-wikipedia-w:before,
.icon.icon-wikipedia-w:before { content: "\f266" !important; }

.fa-window-close:before,
.fa.fa-window-close:before,
.fas.fa-window-close:before,
.far.fa-window-close:before,
.fab.fa-window-close:before,
.fa-solid.fa-window-close:before,
.fa-regular.fa-window-close:before,
.fa-brands.fa-window-close:before,
.icon-window-close:before,
.icon.icon-window-close:before { content: "\f2d3" !important; }

.fa-window-close-o:before,
.fa.fa-window-close-o:before,
.fas.fa-window-close-o:before,
.far.fa-window-close-o:before,
.fab.fa-window-close-o:before,
.fa-solid.fa-window-close-o:before,
.fa-regular.fa-window-close-o:before,
.fa-brands.fa-window-close-o:before,
.icon-window-close-o:before,
.icon.icon-window-close-o:before { content: "\f2d4" !important; }

.fa-window-maximize:before,
.fa.fa-window-maximize:before,
.fas.fa-window-maximize:before,
.far.fa-window-maximize:before,
.fab.fa-window-maximize:before,
.fa-solid.fa-window-maximize:before,
.fa-regular.fa-window-maximize:before,
.fa-brands.fa-window-maximize:before,
.icon-window-maximize:before,
.icon.icon-window-maximize:before { content: "\f2d0" !important; }

.fa-window-minimize:before,
.fa.fa-window-minimize:before,
.fas.fa-window-minimize:before,
.far.fa-window-minimize:before,
.fab.fa-window-minimize:before,
.fa-solid.fa-window-minimize:before,
.fa-regular.fa-window-minimize:before,
.fa-brands.fa-window-minimize:before,
.icon-window-minimize:before,
.icon.icon-window-minimize:before { content: "\f2d1" !important; }

.fa-window-restore:before,
.fa.fa-window-restore:before,
.fas.fa-window-restore:before,
.far.fa-window-restore:before,
.fab.fa-window-restore:before,
.fa-solid.fa-window-restore:before,
.fa-regular.fa-window-restore:before,
.fa-brands.fa-window-restore:before,
.icon-window-restore:before,
.icon.icon-window-restore:before { content: "\f2d2" !important; }

.fa-windows:before,
.fa.fa-windows:before,
.fas.fa-windows:before,
.far.fa-windows:before,
.fab.fa-windows:before,
.fa-solid.fa-windows:before,
.fa-regular.fa-windows:before,
.fa-brands.fa-windows:before,
.icon-windows:before,
.icon.icon-windows:before { content: "\f17a" !important; }

.fa-won:before,
.fa.fa-won:before,
.fas.fa-won:before,
.far.fa-won:before,
.fab.fa-won:before,
.fa-solid.fa-won:before,
.fa-regular.fa-won:before,
.fa-brands.fa-won:before,
.icon-won:before,
.icon.icon-won:before { content: "\f159" !important; }

.fa-wordpress:before,
.fa.fa-wordpress:before,
.fas.fa-wordpress:before,
.far.fa-wordpress:before,
.fab.fa-wordpress:before,
.fa-solid.fa-wordpress:before,
.fa-regular.fa-wordpress:before,
.fa-brands.fa-wordpress:before,
.icon-wordpress:before,
.icon.icon-wordpress:before { content: "\f19a" !important; }

.fa-wpbeginner:before,
.fa.fa-wpbeginner:before,
.fas.fa-wpbeginner:before,
.far.fa-wpbeginner:before,
.fab.fa-wpbeginner:before,
.fa-solid.fa-wpbeginner:before,
.fa-regular.fa-wpbeginner:before,
.fa-brands.fa-wpbeginner:before,
.icon-wpbeginner:before,
.icon.icon-wpbeginner:before { content: "\f297" !important; }

.fa-wpexplorer:before,
.fa.fa-wpexplorer:before,
.fas.fa-wpexplorer:before,
.far.fa-wpexplorer:before,
.fab.fa-wpexplorer:before,
.fa-solid.fa-wpexplorer:before,
.fa-regular.fa-wpexplorer:before,
.fa-brands.fa-wpexplorer:before,
.icon-wpexplorer:before,
.icon.icon-wpexplorer:before { content: "\f2de" !important; }

.fa-wpforms:before,
.fa.fa-wpforms:before,
.fas.fa-wpforms:before,
.far.fa-wpforms:before,
.fab.fa-wpforms:before,
.fa-solid.fa-wpforms:before,
.fa-regular.fa-wpforms:before,
.fa-brands.fa-wpforms:before,
.icon-wpforms:before,
.icon.icon-wpforms:before { content: "\f298" !important; }

.fa-wrench:before,
.fa.fa-wrench:before,
.fas.fa-wrench:before,
.far.fa-wrench:before,
.fab.fa-wrench:before,
.fa-solid.fa-wrench:before,
.fa-regular.fa-wrench:before,
.fa-brands.fa-wrench:before,
.icon-wrench:before,
.icon.icon-wrench:before { content: "\f0ad" !important; }

.fa-xing:before,
.fa.fa-xing:before,
.fas.fa-xing:before,
.far.fa-xing:before,
.fab.fa-xing:before,
.fa-solid.fa-xing:before,
.fa-regular.fa-xing:before,
.fa-brands.fa-xing:before,
.icon-xing:before,
.icon.icon-xing:before { content: "\f168" !important; }

.fa-xing-square:before,
.fa.fa-xing-square:before,
.fas.fa-xing-square:before,
.far.fa-xing-square:before,
.fab.fa-xing-square:before,
.fa-solid.fa-xing-square:before,
.fa-regular.fa-xing-square:before,
.fa-brands.fa-xing-square:before,
.icon-xing-square:before,
.icon.icon-xing-square:before { content: "\f169" !important; }

.fa-y-combinator:before,
.fa.fa-y-combinator:before,
.fas.fa-y-combinator:before,
.far.fa-y-combinator:before,
.fab.fa-y-combinator:before,
.fa-solid.fa-y-combinator:before,
.fa-regular.fa-y-combinator:before,
.fa-brands.fa-y-combinator:before,
.icon-y-combinator:before,
.icon.icon-y-combinator:before { content: "\f23b" !important; }

.fa-y-combinator-square:before,
.fa.fa-y-combinator-square:before,
.fas.fa-y-combinator-square:before,
.far.fa-y-combinator-square:before,
.fab.fa-y-combinator-square:before,
.fa-solid.fa-y-combinator-square:before,
.fa-regular.fa-y-combinator-square:before,
.fa-brands.fa-y-combinator-square:before,
.icon-y-combinator-square:before,
.icon.icon-y-combinator-square:before { content: "\f1d4" !important; }

.fa-yahoo:before,
.fa.fa-yahoo:before,
.fas.fa-yahoo:before,
.far.fa-yahoo:before,
.fab.fa-yahoo:before,
.fa-solid.fa-yahoo:before,
.fa-regular.fa-yahoo:before,
.fa-brands.fa-yahoo:before,
.icon-yahoo:before,
.icon.icon-yahoo:before { content: "\f19e" !important; }

.fa-yc:before,
.fa.fa-yc:before,
.fas.fa-yc:before,
.far.fa-yc:before,
.fab.fa-yc:before,
.fa-solid.fa-yc:before,
.fa-regular.fa-yc:before,
.fa-brands.fa-yc:before,
.icon-yc:before,
.icon.icon-yc:before { content: "\f23b" !important; }

.fa-yc-square:before,
.fa.fa-yc-square:before,
.fas.fa-yc-square:before,
.far.fa-yc-square:before,
.fab.fa-yc-square:before,
.fa-solid.fa-yc-square:before,
.fa-regular.fa-yc-square:before,
.fa-brands.fa-yc-square:before,
.icon-yc-square:before,
.icon.icon-yc-square:before { content: "\f1d4" !important; }

.fa-yelp:before,
.fa.fa-yelp:before,
.fas.fa-yelp:before,
.far.fa-yelp:before,
.fab.fa-yelp:before,
.fa-solid.fa-yelp:before,
.fa-regular.fa-yelp:before,
.fa-brands.fa-yelp:before,
.icon-yelp:before,
.icon.icon-yelp:before { content: "\f1e9" !important; }

.fa-yen:before,
.fa.fa-yen:before,
.fas.fa-yen:before,
.far.fa-yen:before,
.fab.fa-yen:before,
.fa-solid.fa-yen:before,
.fa-regular.fa-yen:before,
.fa-brands.fa-yen:before,
.icon-yen:before,
.icon.icon-yen:before { content: "\f157" !important; }

.fa-yoast:before,
.fa.fa-yoast:before,
.fas.fa-yoast:before,
.far.fa-yoast:before,
.fab.fa-yoast:before,
.fa-solid.fa-yoast:before,
.fa-regular.fa-yoast:before,
.fa-brands.fa-yoast:before,
.icon-yoast:before,
.icon.icon-yoast:before { content: "\f2b1" !important; }

.fa-youtube:before,
.fa.fa-youtube:before,
.fas.fa-youtube:before,
.far.fa-youtube:before,
.fab.fa-youtube:before,
.fa-solid.fa-youtube:before,
.fa-regular.fa-youtube:before,
.fa-brands.fa-youtube:before,
.icon-youtube:before,
.icon.icon-youtube:before { content: "\f167" !important; }

.fa-youtube-play:before,
.fa.fa-youtube-play:before,
.fas.fa-youtube-play:before,
.far.fa-youtube-play:before,
.fab.fa-youtube-play:before,
.fa-solid.fa-youtube-play:before,
.fa-regular.fa-youtube-play:before,
.fa-brands.fa-youtube-play:before,
.icon-youtube-play:before,
.icon.icon-youtube-play:before { content: "\f16a" !important; }

.fa-youtube-square:before,
.fa.fa-youtube-square:before,
.fas.fa-youtube-square:before,
.far.fa-youtube-square:before,
.fab.fa-youtube-square:before,
.fa-solid.fa-youtube-square:before,
.fa-regular.fa-youtube-square:before,
.fa-brands.fa-youtube-square:before,
.icon-youtube-square:before,
.icon.icon-youtube-square:before { content: "\f166" !important; }
