/* FontAwesome ícones - versão mínima para uso no iaFundo */

/* Esta é uma versão simplificada apenas para referência.
   Recomenda-se usar a versão oficial do FontAwesome através de CDN ou npm. */

@font-face {
    font-family: 'FontAwesome';
    src: url('/static/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
        url('/static/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Define apenas alguns ícones básicos que parecem ser usados no projeto */
.fa-check:before {
    content: "\f00c";
}

.fa-times:before {
    content: "\f00d";
}

.fa-cog:before {
    content: "\f013";
}

.fa-home:before {
    content: "\f015";
}

.fa-user:before {
    content: "\f007";
}

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

.fa-arrow-left:before {
    content: "\f060";
}

.fa-bell:before {
    content: "\f0f3";
}

.fa-star:before {
    content: "\f005";
}

.fa-heart:before {
    content: "\f004";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}

.fa-twitch:before {
    content: "\f1e8";
}

.fa-comment:before {
    content: "\f075";
}

.fa-image:before {
    content: "\f03e";
}

.fa-video-camera:before {
    content: "\f03d";
}