.fa {
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
}
.fa,
.fa-classic,
.fa-sharp,
.fas,
.fa-solid,
.far,
.fa-regular,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas,
.fa-classic,
.fa-solid,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}
.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}
.fa-xs {
  font-size: 0.75em;
  line-height: 0.08333em;
  vertical-align: 0.125em;
}
.fa-sm {
  font-size: 0.875em;
  line-height: 0.07143em;
  vertical-align: 0.05357em;
}
.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}
.fa-xl {
  font-size: 1.5em;
  line-height: 0.04167em;
  vertical-align: -0.125em;
}
.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: calc(var(--fa-li-width, 2em) * -1);
  position: absolute;
  text-align: center;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}
.fa-border {
  border-color: var(--fa-border-color, #eee);
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: var(--fa-border-style, solid);
  border-width: var(--fa-border-width, 0.08em);
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.fa-pull-left {
  float: left;
  margin-right: var(--fa-pull-margin, 0.3em);
}
.fa-pull-right {
  float: right;
  margin-left: var(--fa-pull-margin, 0.3em);
}
.fa-beat {
  animation-name: fa-beat;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.fa-fade {
  animation-name: fa-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-flip {
  animation-name: fa-flip;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-shake {
  animation-name: fa-shake;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin {
  animation-name: fa-spin;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin-reverse {
  --fa-animation-direction: reverse;
}
.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}
.fa-rotate-180 {
  transform: rotate(180deg);
}
.fa-rotate-270 {
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}
.fa-rotate-by {
  transform: rotate(var(--fa-rotate-angle, none));
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: var(--fa-stack-z-index, auto);
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: var(--fa-inverse, #fff);
}
.fa-info::before {
  content: "\f129";
}
.fa-calendar-days::before {
  content: "\f073";
}
.fa-calendar-alt::before {
  content: "\f073";
}
.fa-address-book::before {
  content: "\f2b9";
}
.fa-comments::before {
  content: "\f086";
}
.fa-clipboard-list::before {
  content: "\f46d";
}
.fa-cloud::before {
  content: "\f0c2";
}
.fa-table::before {
  content: "\f0ce";
}
.fa-bars::before {
  content: "\f0c9";
}
.fa-people-group::before {
  content: "\e533";
}
.fa-square-up-right::before {
  content: "\f360";
}
.fa-list::before {
  content: "\f03a";
}
.fa-circle-dot::before {
  content: "\f192";
}
.fa-users::before {
  content: "\f0c0";
}
.fa-hand-paper::before {
  content: "\f256";
}
.fa-plug::before {
  content: "\f1e6";
}
.fa-hand-point-up::before {
  content: "\f0a6";
}
.fa-money-bill::before {
  content: "\f0d6";
}
.fa-wand-magic-sparkles::before {
  content: "\e2ca";
}
.fa-ban::before {
  content: "\f05e";
}
.fa-star::before {
  content: "\f005";
}
.fa-running::before {
  content: "\f70c";
}
.fa-file-invoice-dollar::before {
  content: "\f571";
}
.fa-user-group::before {
  content: "\f500";
}
.fa-user-friends::before {
  content: "\f500";
}
.fa-toggle-on::before {
  content: "\f205";
}
.fa-fire::before {
  content: "\f06d";
}
.fa-gift::before {
  content: "\f06b";
}
.fa-chart-bar::before {
  content: "\f080";
}
.fa-handshake::before {
  content: "\f2b5";
}
.fa-euro-sign::before {
  content: "\f153";
}
.fa-user-tie::before {
  content: "\f508";
}
.fa-box-open::before {
  content: "\f49e";
}
.fa-address-card::before {
  content: "\f2bb";
}
.fa-palette::before {
  content: "\f53f";
}
.fa-arrows-left-right::before {
  content: "\f07e";
}
.fa-sync::before {
  content: "\f021";
}
.fa-shield-alt::before {
  content: "\f3ed";
}
.fa-layer-group::before {
  content: "\f5fd";
}
.fa-filter::before {
  content: "\f0b0";
}
.fa-chart-pie::before {
  content: "\f200";
}
.fa-chart-line::before {
  content: "\f201";
}
.fa-arrow-right::before {
  content: "\f061";
}
.fa-cash-register::before {
  content: "\f788";
}
.fa-heart::before {
  content: "\f004";
}
.fa-mobile-screen-button::before {
  content: "\f3cd";
}
.fa-mobile-alt::before {
  content: "\f3cd";
}
.fa-wallet::before {
  content: "\f555";
}
.fa-burger::before {
  content: "\f805";
}
.fa-tags::before {
  content: "\f02c";
}
.fa-eye::before {
  content: "\f06e";
}
.fa-user-slash::before {
  content: "\f506";
}
.fa-hand-holding-dollar::before {
  content: "\f4c0";
}
.fa-hand-pointer::before {
  content: "\f25a";
}
.fa-phone::before {
  content: "\f095";
}
.fa-user-cog::before {
  content: "\f4fe";
}
.fa-divide::before {
  content: "\f529";
}
.fa-ruler::before {
  content: "\f545";
}
.fa-th-large::before {
  content: "\f009";
}
.fa-tag::before {
  content: "\f02b";
}
.fa-comment::before {
  content: "\f075";
}
.fa-birthday-cake::before {
  content: "\f1fd";
}
.fa-envelope::before {
  content: "\f0e0";
}
.fa-circle-info::before {
  content: "\f05a";
}
.fa-calendar-check::before {
  content: "\f274";
}
.fa-list-alt::before {
  content: "\f022";
}
.fa-grip-vertical::before {
  content: "\f58e";
}
.fa-clock::before {
  content: "\f017";
}
.fa-coins::before {
  content: "\f51e";
}
.fa-calculator::before {
  content: "\f1ec";
}
.fa-download::before {
  content: "\f019";
}
.fa-mobile::before {
  content: "\f3ce";
}
.fa-id-card::before {
  content: "\f2c2";
}
.fa-utensils::before {
  content: "\f2e7";
}
.fa-upload::before {
  content: "\f093";
}
.fa-bolt::before {
  content: "\f0e7";
}
.fa-credit-card::before {
  content: "\f09d";
}
.fa-arrows-left-right-to-line::before {
  content: "\e4ba";
}
.fa-bell::before {
  content: "\f0f3";
}
.fa-location-dot::before {
  content: "\f3c5";
}
.fa-wine-bottle::before {
  content: "\f72f";
}
.fa-boxes::before {
  content: "\f468";
}
.fa-link::before {
  content: "\f0c1";
}
.fa-receipt::before {
  content: "\f543";
}
.fa-list-check::before {
  content: "\f0ae";
}
.fa-tasks::before {
  content: "\f0ae";
}
.fa-user-shield::before {
  content: "\f505";
}
.fa-fish::before {
  content: "\f578";
}
.fa-hand-sparkles::before {
  content: "\e05d";
}
.fa-plus::before {
  content: "+";
}
.fa-times::before {
  content: "\f00d";
}
.fa-equals::before {
  content: "=";
}
.fa-map::before {
  content: "\f279";
}
.fa-rocket::before {
  content: "\f135";
}
.fa-store::before {
  content: "\f54e";
}
.fa-tablet::before {
  content: "\f3fb";
}
.fa-drumstick-bite::before {
  content: "\f6d7";
}
.fa-percent::before {
  content: "%";
}
.fa-percentage::before {
  content: "%";
}
.fa-display::before {
  content: "\e163";
}
.fa-qrcode::before {
  content: "\f029";
}
.fa-clock-rotate-left::before {
  content: "\f1da";
}
.fa-carrot::before {
  content: "\f787";
}
.fa-infinity::before {
  content: "\f534";
}
.fa-arrow-trend-down::before {
  content: "\e097";
}
.fa-desktop::before {
  content: "\f390";
}
.fa-user-plus::before {
  content: "\f234";
}
.fa-check::before {
  content: "\f00c";
}
.fa-triangle-exclamation::before {
  content: "\f071";
}
.fa-paper-plane::before {
  content: "\f1d8";
}
.fa-file-invoice::before {
  content: "\f570";
}
.fa-print::before {
  content: "\f02f";
}
.fa-barcode::before {
  content: "\f02a";
}
.fa-graduation-cap::before {
  content: "\f19d";
}
.sr-only,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
:root,
:host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/fonts/fa-brands-400.woff2") format("woff2");
}
.fab,
.fa-brands {
  font-weight: 400;
}
.fa-google:before {
  content: "\f1a0";
}
.fa-apple:before {
  content: "\f179";
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}
.far,
.fa-regular {
  font-weight: 400;
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/fonts/fa-solid-900.woff2") format("woff2");
}
.fas,
.fa-solid {
  font-weight: 900;
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
}
.far,
.fa-regular {
  font-weight: 400;
}
:root,
:host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/fonts/fa-solid-900.woff2") format("woff2");
}
.fas,
.fa-solid {
  font-weight: 900;
}