/* Font Awesome Minimal - Only icons used in login page */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2") format("woff2"),
       url("../webfonts/fa-solid-900.ttf") format("truetype");
}

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

.fa-radar:before { content: "\f7a8"; }
.fa-user:before { content: "\f007"; }
.fa-tachometer-alt:before { content: "\f3fd"; }
.fa-sign-out-alt:before { content: "\f2f5"; }
.fa-sign-in-alt:before { content: "\f2f6"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-chart-line:before { content: "\f201"; }
.fa-chart-bar:before { content: "\f080"; }
.fa-users:before { content: "\f0c0"; }
.fa-copyright:before { content: "\f1f9"; }
.fa-spinner:before { content: "\f110"; }
.fa-globe:before { content: "\f0ac"; }
.fa-compass:before { content: "\f14e"; }
.fa-location-arrow:before { content: "\f124"; }

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

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