/* FontAwesome to Bootstrap Icons Migration */

/* Icon mapping for common FontAwesome classes to Bootstrap Icons */
.fa-book::before { content: "\f2b7"; } /* bi-book */
.fa-bars::before { content: "\f1d8"; } /* bi-list */
.fa-question::before { content: "\f5dd"; } /* bi-question-circle */
.fa-question-circle::before { content: "\f5dd"; } /* bi-question-circle */
.fa-map-marker::before { content: "\f5e2"; } /* bi-geo-alt-fill */
.fa-print::before { content: "\f558"; } /* bi-printer */
.fa-search::before { content: "\f5f3"; } /* bi-search */
.fa-home::before { content: "\f433"; } /* bi-house */
.fa-envelope::before { content: "\f3a5"; } /* bi-envelope */
.fa-phone::before { content: "\f516"; } /* bi-telephone */
.fa-user::before { content: "\f68a"; } /* bi-person */
.fa-edit::before { content: "\f4c8"; } /* bi-pencil */
.fa-trash::before { content: "\f6bd"; } /* bi-trash */
.fa-plus::before { content: "\f52e"; } /* bi-plus */
.fa-minus::before { content: "\f4e8"; } /* bi-dash */
.fa-arrow-left::before { content: "\f13b"; } /* bi-arrow-left */
.fa-arrow-right::before { content: "\f13e"; } /* bi-arrow-right */
.fa-check::before { content: "\f26a"; } /* bi-check */
.fa-times::before { content: "\f658"; } /* bi-x */
.fa-star::before { content: "\f5e2"; } /* bi-star */
.fa-heart::before { content: "\f414"; } /* bi-heart */
.fa-calendar::before { content: "\f217"; } /* bi-calendar */
.fa-clock-o::before { content: "\f294"; } /* bi-clock */
.fa-download::before { content: "\f30b"; } /* bi-download */
.fa-upload::before { content: "\f66e"; } /* bi-upload */
.fa-link::before { content: "\f455"; } /* bi-link */
.fa-external-link::before { content: "\f144"; } /* bi-box-arrow-up-right */

/* Update FontAwesome icons to use Bootstrap Icons font */
.fa, [class^="fa-"], [class*=" fa-"] {
    font-family: "Bootstrap Icons" !important;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Specific icon updates for the website */
i.fa.fa-book::before { content: "\f2b7"; }
i.fa.fa-bars::before { content: "\f1d8"; }
i.fa.fa-question::before { content: "\f5dd"; }
i.fa.fa-question-circle::before { content: "\f5dd"; }
i.fa.fa-map-marker::before { content: "\f5e2"; }
i.fa.fa-print::before { content: "\f558"; }
i.fa.fa-search::before { content: "\f5f3"; }

/* Icon sizing compatibility */
.fa-lg { font-size: 1.33333em; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }

/* Spinning icon support */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}

/* Icon spacing */
.fa + * { margin-left: 0.25em; }
* + .fa { margin-left: 0.25em; }