/*
 * Font Awesome compatibility for templates using FA5 class names (fas/far/fab)
 * while the project ships with Font Awesome 4.
 */

.fas,
.far,
.fab {
    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;
}

/* Common FA5 -> FA4 icon aliases used in this project */
.fa-arrow-left:before { content: "\f060"; }
.fa-arrow-circle-right:before { content: "\f0a9"; }
.fa-ban:before { content: "\f05e"; }
.fa-bell-slash:before { content: "\f1f6"; }
.fa-box:before { content: "\f1b2"; }
.fa-chart-bar:before { content: "\f080"; }
.fa-chart-line:before { content: "\f201"; }
.fa-chart-pie:before { content: "\f200"; }
.fa-check:before { content: "\f00c"; }
.fa-check-circle:before { content: "\f058"; }
.fa-check-double:before { content: "\f00c"; }
.fa-clock:before { content: "\f017"; }
.fa-code:before { content: "\f121"; }
.fa-cog:before { content: "\f013"; }
.fa-download:before { content: "\f019"; }
.fa-exclamation-triangle:before { content: "\f071"; }
.fa-eye:before { content: "\f06e"; }
.fa-filter:before { content: "\f0b0"; }
.fa-info:before { content: "\f129"; }
.fa-info-circle:before { content: "\f05a"; }
.fa-link:before { content: "\f0c1"; }
.fa-list:before { content: "\f03a"; }
.fa-minus:before { content: "\f068"; }
.fa-plus:before { content: "\f067"; }
.fa-redo:before { content: "\f01e"; }
.fa-rupee-sign:before { content: "\f156"; }
.fa-search:before { content: "\f002"; }
.fa-server:before { content: "\f233"; }
.fa-shopping-cart:before { content: "\f07a"; }
.fa-spinner:before { content: "\f110"; }
.fa-sync:before { content: "\f021"; }
.fa-times:before { content: "\f00d"; }
.fa-times-circle:before { content: "\f057"; }
.fa-tools:before { content: "\f0ad"; }
.fa-trash:before { content: "\f1f8"; }
.fa-undo:before { content: "\f0e2"; }
.fa-users:before { content: "\f0c0"; }

/* Preserve spin animation in FA4 context */
.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
