/* Ultra-Minimal FontAwesome CSS - Only includes icons actually used */

/* Font Awesome 5 Free */
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://use.fontawesome.com/releases/v5.7.1/webfonts/fa-solid-900.woff2") format("woff2");
}

/* Font Awesome 5 Brands */
@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://use.fontawesome.com/releases/v5.7.1/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Solid Icons - Only used ones */
.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa-search:before { content: "\f002"; }
.fa-chevron-right:before { content: "\f054"; }
.fa-chevron-left:before { content: "\f053"; }

/* Brand Icons - Only used ones */
.fab {
    font-family: "Font Awesome 5 Brands";
    font-weight: 400;
}

.fa-instagram:before { content: "\f16d"; }
.fa-telegram-plane:before { content: "\f3fe"; }
.fa-whatsapp:before { content: "\f232"; }

/* Legacy FontAwesome 4 Support - Only used ones */
.fa {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.fa-search:before { content: "\f002"; }
.fa-chevron-right:before { content: "\f054"; }
.fa-chevron-left:before { content: "\f053"; }
.fa-plus:before { content: "\f067"; }
.fa-edit:before { content: "\f044"; }
.fa-trash-o:before { content: "\f014"; }
.fa-list:before { content: "\f03a"; }
.fa-list-alt:before { content: "\f022"; }
.fa-paste:before { content: "\f0ea"; }
.fa-paperclip:before { content: "\f0c6"; }
.fa-file:before { content: "\f15b"; }
.fa-comment:before { content: "\f075"; }
.fa-picture-o:before { content: "\f03e"; }
.fa-bookmark:before { content: "\f02e"; }
.fa-book:before { content: "\f02d"; }
.fa-caret-down:before { content: "\f0d7"; }
.fa-user:before { content: "\f007"; }
.fa-power-off:before { content: "\f011"; }
.fa-twitter-square:before { content: "\f081"; }
.fa-facebook-square:before { content: "\f082"; }
.fa-rss-square:before { content: "\f143"; }
.fa-home:before { content: "\f015"; }
.fa-search:before { content: "\f002"; }
.fa-times:before { content: "\f00d"; }
.fa-check:before { content: "\f00c"; }
.fa-coffee:before { content: "\f0f4"; }
.fa-lock:before { content: "\f023"; }
.fa-key:before { content: "\f084"; }
.fa-exclamation-triangle:before { content: "\f071"; }
.fa-angle-double-left:before { content: "\f100"; }
.fa-angle-double-right:before { content: "\f101"; }
.fa-angle-double-up:before { content: "\f102"; }
.fa-pencil:before { content: "\f040"; }
.fa-trash:before { content: "\f1f8"; }
.fa-undo:before { content: "\f0e2"; }

/* Utility classes */
.fa-fw { width: 1.28571429em; text-align: center; }
.fa-lg { font-size: 1.33333333em; line-height: 0.75em; vertical-align: -15%; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }

/* Animation classes */
.fa-spin { animation: fa-spin 2s infinite linear; }
.fa-pulse { animation: fa-spin 1s infinite steps(8); }

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Size utilities */
.bigger-110 { font-size: 110%; }
.bigger-130 { font-size: 130%; }
.bigger-150 { font-size: 150%; }

/* Color utilities */
.text-danger { color: #dc3545; }
.text-success { color: #28a745; }
.text-primary { color: #007bff; }
.light-blue { color: #17a2b8; }
.orange { color: #fd7e14; }
.red { color: #dc3545; }
.green { color: #28a745; }


