/* Map old Glyphicons used by plugins (datetimepicker, fullcalendar, lobibox) to Font Awesome 5 Free equivalents */

.glyphicon {
    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;
}

/* Base properties for our overrides */
[class^="glyphicon-"]::before, [class*=" glyphicon-"]::before {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome";
    font-weight: 900; /* Solid icons by default */
}

/* Specific mappings */
.glyphicon-backward::before { content: "\f04a"; } /* fa-backward */
.glyphicon-calendar::before { content: "\f133"; } /* fa-calendar (alt) */
.glyphicon-chevron-down::before { content: "\f107"; } /* fa-angle-down */
.glyphicon-chevron-left::before { content: "\f104"; } /* fa-angle-left */
.glyphicon-chevron-right::before { content: "\f105"; } /* fa-angle-right */
.glyphicon-chevron-up::before { content: "\f106"; } /* fa-angle-up */
.glyphicon-exclamation-sign::before { content: "\f06a"; } /* fa-exclamation-circle */
.glyphicon-forward::before { content: "\f04e"; } /* fa-forward */
.glyphicon-info-sign::before { content: "\f05a"; } /* fa-info-circle */
.glyphicon-ok-sign::before { content: "\f058"; } /* fa-check-circle */
.glyphicon-question-sign::before { content: "\f059"; } /* fa-question-circle */
.glyphicon-remove::before { content: "\f00d"; } /* fa-times */
.glyphicon-remove-sign::before { content: "\f057"; } /* fa-times-circle */
.glyphicon-screenshot::before { content: "\f05b"; } /* fa-crosshairs */
.glyphicon-time::before { content: "\f017"; } /* fa-clock */
.glyphicon-trash::before { content: "\f1f8"; } /* fa-trash */

/* Extras that might be used elsewhere (fileinput.min.js) */
.glyphicon-file::before { content: "\f15b"; } /* fa-file */
.glyphicon-folder-open::before { content: "\f07c"; } /* fa-folder-open */
.glyphicon-upload::before { content: "\f093"; } /* fa-upload */
.glyphicon-triangle-left::before { content: "\f0d9"; } /* fa-caret-left */
.glyphicon-triangle-right::before { content: "\f0da"; } /* fa-caret-right */
.glyphicon-resize-vertical::before { content: "\f338"; } /* fa-arrows-alt-v */
.glyphicon-fullscreen::before { content: "\f065"; } /* fa-expand */
.glyphicon-resize-full::before { content: "\f065"; } /* fa-expand / fa-arrows-alt */
.glyphicon-ban-circle::before { content: "\f05e"; } /* fa-ban */
