/* Minimal Font Awesome CSS - Only used icons */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/webfonts/fa-brands-400.woff2") format("woff2");
}

.fa, .fas, .far, .fal, .fad, .fab, .fat, .fass {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fas, .fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

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

/* Only the icons actually used in the website */
.fa-moon:before { content: "\f186"; }
.fa-sun:before { content: "\f185"; }
.fa-bars:before { content: "\f0c9"; }
.fa-times:before { content: "\f00d"; }
.fa-language:before { content: "\f1ab"; }
.fa-question:before { content: "\f128"; }
.fa-edit:before { content: "\f044"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-exchange-alt:before { content: "\f362"; }
.fa-globe:before { content: "\f0ac"; }
.fa-bolt:before { content: "\f0e7"; }
.fa-history:before { content: "\f1da"; }
.fa-sliders-h:before { content: "\f1de"; }
.fa-paint-brush:before { content: "\f1fc"; }
.fa-paper-plane:before { content: "\f1d8"; }
.fa-spinner:before { content: "\f110"; }
.fa-check-circle:before { content: "\f058"; }
.fa-exclamation-circle:before { content: "\f06a"; }

/* Brand icons */
.fa-apple:before { content: "\f179"; }
.fa-google-play:before { content: "\f3ab"; }

/* Spinner animation */
.fa-spin {
  animation: fa-spin 2s infinite linear;
}

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