/* Font Awesome 6 Complete CSS - Matching FA6 classes with FA6 fonts */

@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");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.woff2") format("woff2");
}

/* Base classes */
.fa,
.fas,
.far,
.fal,
.fat,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

/* Solid icons */
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Regular icons */
.fa-regular,
.far {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

/* Brand icons */
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* Icon content mappings for Font Awesome 6 */
.fa-tachometer-alt:before { content: "\f3fd"; }
.fa-network-wired:before { content: "\f6ff"; }
.fa-users:before { content: "\f0c0"; }
.fa-users-cog:before { content: "\f509"; }
.fa-hdd:before { content: "\f0a0"; }
.fa-cloud-upload-alt:before { content: "\f382"; }
.fa-terminal:before { content: "\f120"; }
.fa-cogs:before { content: "\f085"; }
.fa-shield-alt:before { content: "\f3ed"; }
.fa-file-alt:before { content: "\f15c"; }
.fa-sign-out-alt:before { content: "\f2f5"; }
.fa-server:before { content: "\f233"; }
.fa-folder-open:before { content: "\f07c"; }
.fa-upload:before { content: "\f093"; }
.fa-folder-plus:before { content: "\f65e"; }
.fa-arrow-left:before { content: "\f060"; }
.fa-sync:before { content: "\f021"; }
.fa-folder:before { content: "\f07b"; }
.fa-play:before { content: "\f04b"; }
.fa-redo:before { content: "\f01e"; }
.fa-stop:before { content: "\f04d"; }
.fa-chart-pie:before { content: "\f200"; }
.fa-file:before { content: "\f15b"; }
.fa-trash:before { content: "\f1f8"; }
.fa-download:before { content: "\f019"; }
.fa-tachometer-alt:before { content: "\f3fd"; }
.fa-tools:before { content: "\f7d9"; }
.fa-rocket:before { content: "\f135"; }
.fa-undo:before { content: "\f0e2"; }
.fa-wifi:before { content: "\f1eb"; }
.fa-ethernet:before { content: "\f796"; }
.fa-plus:before { content: "\f067"; }
.fa-minus:before { content: "\f068"; }
.fa-check:before { content: "\f00c"; }
.fa-times:before { content: "\f00d"; }
.fa-exclamation-triangle:before { content: "\f071"; }
.fa-exclamation-circle:before { content: "\f06a"; }
.fa-info-circle:before { content: "\f05a"; }
.fa-search:before { content: "\f002"; }
.fa-filter:before { content: "\f0b0"; }
.fa-ban:before { content: "\f05e"; }
.fa-edit:before { content: "\f044"; }
.fa-save:before { content: "\f0c7"; }
.fa-copy:before { content: "\f0c5"; }
.fa-paste:before { content: "\f0ea"; }
.fa-cut:before { content: "\f0c4"; }
.fa-lock:before { content: "\f023"; }
.fa-unlock:before { content: "\f09c"; }
.fa-key:before { content: "\f084"; }
.fa-user:before { content: "\f007"; }
.fa-home:before { content: "\f015"; }
.fa-dashboard:before { content: "\f3fd"; }
.fa-chart-line:before { content: "\f201"; }
.fa-history:before { content: "\f1da"; }
.fa-microchip:before { content: "\f2db"; }
.fa-memory:before { content: "\f538"; }
.fa-clock:before { content: "\f017"; }

/* Size modifiers */
.fa-xs { font-size: 0.75em; }
.fa-sm { font-size: 0.875em; }
.fa-lg { font-size: 1.25em; }
.fa-xl { font-size: 1.5em; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-4x { font-size: 4em; }
.fa-5x { font-size: 5em; }

/* Utility classes */
.fa-fw { text-align: center; width: 1.25em; }
.fa-border { border: solid 0.08em #eee; border-radius: 0.1em; padding: 0.2em 0.25em 0.15em; }
.fa-pull-left { float: left; margin-right: 0.3em; }
.fa-pull-right { float: right; margin-left: 0.3em; }

/* Animation classes */
.fa-spin { animation: fa-spin 2s infinite linear; }
.fa-pulse { animation: fa-pulse 1s infinite steps(8); }

@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fa-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
