/*
 * Etele_PageSpeed keeps the local Codazon FontAwesome 4 font and removes the
 * external FA4/FA6 CDN styles. These aliases cover local templates that already
 * use a small set of FA6-style class names.
 *
 * @font-face aliases below register "Font Awesome 6 Free" (both Solid weight 900
 * and Regular weight 400) pointing at the same local FA4 webfont binary.
 * FA4 and FA6 share the same Unicode codepoints for common glyphs such as
 * \f105 (angle-right) used by ThemeLayoutPro admin header pseudo-elements
 * (.menu-title::after, .dropdown-toggle::before). Without these aliases the
 * Codazon admin styles produce invisible chevrons when the FA6 CDN is removed.
 */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../../css/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
         url('../../css/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
         url('../../css/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../../css/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
         url('../../css/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
         url('../../css/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
}
.fa-solid {
    display: inline-block;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-solid:before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.fa-solid.fa-arrow-right:before {
    content: "\f061";
}

.fa-solid.fa-book-open:before {
    content: "\f02d";
}

.fa-solid.fa-chevron-left:before {
    content: "\f053";
}

.fa-solid.fa-chevron-right:before {
    content: "\f054";
}

.fa-solid.fa-circle-info:before {
    content: "\f05a";
}

.fa-solid.fa-credit-card:before {
    content: "\f09d";
}

.fa-solid.fa-down-left-and-up-right-to-center:before {
    content: "\f066";
}
