/* FA7 Lite subset */
@font-face {
  font-family: "Font Awesome 7 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2");
}
@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.woff2");
}
@font-face {
  font-family: "Font Awesome 7 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2");
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-display: block;
  font-weight: 400;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 900;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-display: block;
  font-weight: 400;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

:root, :host {
  --fa-family-classic: "Font Awesome 7 Free";
  --fa-style-family-classic: var(--fa-family-classic);
  --fa-font-solid: normal 900 1em/1 var(--fa-family-classic);
  --fa-font-regular: normal 400 1em/1 var(--fa-family-classic);

  --fa-family-brands: "Font Awesome 7 Brands";
  --fa-font-brands: normal 400 1em/1 var(--fa-family-brands);
}

.fa {
  --_fa-family: var(--fa-family, var(--fa-style-family, "Font Awesome 7 Free"));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: var(--fa-display, inline-block);
  font-family: var(--_fa-family);
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  font-weight: var(--fa-style, 900);
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  width: var(--fa-width, 1.25em);
}

.fa-classic {
  --fa-family: var(--fa-family-classic);
}

.fa-brands {
  --fa-family: var(--fa-family-brands);
  --fa-style: 400;
  --fa-font: var(--fa-font-brands);
}

.far {
  --fa-family: var(--fa-family-classic);
  --fa-style: 400;
  --fa-font: var(--fa-font-regular);
}

.fa-regular {
  --fa-style: 400;
  --fa-font: var(--fa-font-regular);
}

.fas {
  --fa-family: var(--fa-family-classic);
  --fa-style: 900;
  --fa-font: var(--fa-font-solid);
}

.fa-solid {
  --fa-style: 900;
  --fa-font: var(--fa-font-solid);
}

.fa-user {
  --fa: "\f007";
}
.fa-envelope {
  --fa: "\f0e0";
}
.fa-comment {
  --fa: "\f075";
}
.fa-bell {
  --fa: "\f0f3";
}
.fa-search {
  --fa: "\f002";
}
.fa-house {
  --fa: "\f015";
}
.fa-chevron-right {
  --fa: "\f054";
}
.fa-chevron-down {
  --fa: "\f078";
}
.fa-gear {
  --fa: "\f013";
}
.fa-heart {
  --fa: "\f004";
}

.fab {
  --fa-family: var(--fa-family-brands);
  --fa-style: 400;
  --fa-font: var(--fa-font-brands);
}


/* Render glyphs via pseudo-element */
:is(.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands, .fa-classic)::before {
  content: var(--fa);
  display: inline-block;
  font: var(--fa-font, inherit);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  speak-as: spell-out;
}

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

.fa-chevron-left { --fa: "\f053"; }

.fa-arrow-left { --fa: "\f060"; }

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

.fa-arrow-up { --fa: "\f062"; }

.fa-times { --fa: "\f00d"; }

.fa-xmark { --fa: "\f00d"; }

.fa-sign-in-alt { --fa: "\f2f6"; }

.fa-sign-out-alt { --fa: "\f2f5"; }
