/* WP2Static — FontAwesome icon fix (neutralized).
   The previous version of this file force-mapped every .fa icon to a
   "Font Awesome 6 Free" @font-face pointing at /assets/themes/Avada/... fonts
   that do NOT exist on this FactoryHub site, turning every icon into a blank
   (orange) box. This site already loads Font Awesome 4.7 (CDN + the local
   factoryhub webfont) and the factoryplus icon font, both of which define the
   correct @font-face and glyph codepoints. So here we ONLY pin the icon
   family to the working FA4 font and let the real FA4 CSS govern the glyphs. */
.fa,.fas,.far,.fab,.fa-solid,.fa-regular,.fa-brands,
[class^="fa-"],[class*=" fa-"]{
  font-family:"FontAwesome" !important;
  font-weight:normal !important;
  font-style:normal !important;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
