@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('../fonts/fontawesome-subset/fa-solid-900-subset.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fontawesome-subset/fa-regular-400-subset.woff2') format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/fontawesome-subset/fa-brands-400-subset.woff2') format('woff2');
}

.fa,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands,
.fa-sharp {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.fa-classic,
.fa-solid,
.fas,
.fa-regular,
.far,
.fa,
.fa-sharp {
    font-family: 'Font Awesome 6 Free';
}

.fa-brands,
.fab {
    font-family: 'Font Awesome 6 Brands';
}

.fa-classic,
.fa-solid,
.fas,
.fa-sharp {
    font-weight: 900;
}

.fa-regular,
.far {
    font-weight: 400;
}

/* Icons */
.fa-arrow-down:before {
    content: "\f063";
}

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

.fa-bars:before {
    content: "\f0c9";
}

.fa-calculator:before {
    content: "\f1ec";
}

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

.fa-caret-right:before {
    content: "\f0da";
}

.fa-cart-plus:before {
    content: "\f217";
}

.fa-check:before {
    content: "\f00c";
}

.fa-chevron-right:before {
    content: "\f054";
}

.fa-circle:before {
    content: "\f111";
}

.fa-circle-exclamation:before {
    content: "\f06a";
}

.fa-coins:before {
    content: "\f51e";
}

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

.fa-eye:before {
    content: "\f06e";
}

.fa-long-arrow-alt-right:before {
    content: "\f30b";
}

.fa-magnifying-glass:before {
    content: "\f002";
}

.fa-map-location-dot:before {
    content: "\f5a0";
}

.fa-minus:before {
    content: "\f068";
}

.fa-pen-to-square:before {
    content: "\f044";
}

.fa-phone:before {
    content: "\f095";
}

.fa-plus:before {
    content: "\2b";
}

.fa-shop:before {
    content: "\f54f";
}

.fa-trash-can:before {
    content: "\f2ed";
}

.fa-tree:before {
    content: "\f1bb";
}

.fa-triangle-exclamation:before {
    content: "\f071";
}

.fa-truck:before {
    content: "\f0d1";
}

/* Regular Icons */
.fa-clock:before {
    content: "\f017";
}

.fa-dot-circle:before {
    content: "\f192";
}

/* .fa-envelope is shared with solid, but in regular it uses lighter weight due to .far class */

/* Brands Icons */
.fa-facebook-f:before {
    content: "\f39e";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-whatsapp:before {
    content: "\f232";
}

/* Animation Utils (extracted from source as needed) */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Sizing Utils if used */