@charset "UTF-8";
/**
 * Convert value to rem based on root font size
 * Necessary because Figma exports values without units
 *
 * @param {String|Number} $value - Value to convert
 * @return {String} - calc() expression for rem conversion
 *
 * @example
 *   border-radius: hw13-rem-convert(var(--hw13-image-border-radius));
 *   // Output: calc((var(--hw13-image-border-radius) / var(--hw13-root-font-size)) * 1rem)
 */
/**
 * Convert value to em based on root font size
 * Necessary because Figma exports values without units
 *
 * @param {String|Number} $value - Value to convert
 * @return {String} - calc() expression for em conversion
 *
 * @example
 *   border-radius: hw13-em-convert(var(--hw13-image-border-radius));
 *   // Output: calc((var(--hw13-image-border-radius) / var(--hw13-root-font-size)) * 1em)
 */
/**
 * Convert unitless value to pixels
 *
 * @param {Number} $value - Unitless number to convert
 * @return {String} - calc() expression for px value
 *
 * @example
 *   outline-width: hw13-px-convert(var(--hw-card-border-width));
 *   // Output: calc(var(--hw-card-border-width) * 1px)
 */
/**
 * Fluid typography/spacing with clamp()
 * Supports viewport units (vw, vh) and container query units (cqi, cqh)
 *
 * @param {String} $unit - vw, vh, cqi, or cqh
 * @param {Number|String} $minSize - Minimum size (px or CSS var)
 * @param {Number|String} $maxSize - Maximum size (px or CSS var)
 * @param {Number} $minWidth - Min viewport/container width (optional, unit-specific defaults)
 * @param {Number} $maxWidth - Max viewport/container width (optional, unit-specific defaults)
 * @return {String} - clamp() calculation
 *
 * @example
 *   font-size: hw13-clamp(cqi, var(--hw-size-16), var(--hw-size-32), 20, 31);
 *   padding: hw13-clamp(vw, 1rem, 3rem);
 */
/**
 * Resolve breakpoint value (helper function for hw13-query)
 * Converts breakpoint names to actual values from $hw13-breakpoints map
 *
 * @param {String|Number} $breakpoint-value - Breakpoint name or direct value
 * @return {Number} - Resolved breakpoint value
 * @access private
 */
/**
 * Unified mixin for media queries and container queries
 * Supports breakpoint names from $hw13-breakpoints map
 *
 * @param {Map} $breakpoints - Map with "from" and/or "to" keys
 * @param {String} $type - "media" or "container"
 * @param {String} $container-name - Optional container name (for container queries)
 *
 * @example
 *   // Media query with breakpoint names
 *   @include hw13-query((from: "m", to: "l"), "media") {
 *     font-size: 2rem;
 *   }
 *
 *   // Container query with direct value
 *   @include hw13-query((from: 20rem), "container", "hw13-card") {
 *     padding: 2rem;
 *   }
 *
 *   // Range query
 *   @include hw13-query((from: "s", to: "m"), "media") {
 *     display: none;
 *   }
 */
/**
 * Recursively generate CSS custom properties from SCSS map
 * Creates --hw13-prefixed variables
 *
 * @param {Map} $map - Nested map of CSS properties
 * @param {String} $prefix - Internal prefix for recursion (don't pass manually)
 *
 * @example
 *   $css-variables: (
 *     image-card: (
 *       padding: 1rem,
 *       color: (
 *         default: red,
 *         hover: blue,
 *       ),
 *     ),
 *   );
 *
 *   @include hw13-generate-css-vars($css-variables);
 *
 *   // Generates:
 *   // --hw13-image-card-padding: 1rem;
 *   // --hw13-image-card-color-default: red;
 *   // --hw13-image-card-color-hover: blue;
 */
/**
 * Generate @font-face declarations for custom fonts
 * Supports both variable and non-variable fonts
 *
 * @param {String} $font-family - Font family name
 * @param {String} $font-folder - Folder name in fonts directory
 * @param {String} $font-name - Base font file name (without weight/style suffix)
 * @param {Map} $font-weights-styles - Map of weights to styles
 * @param {Boolean} $is-variable - Whether font is a variable font (default: false)
 *
 * @example Variable font
 *   @include hw13-font-face(
 *     "Raleway Variable",
 *     "raleway",
 *     "Raleway",
 *     (
 *       normal: (100, 900),
 *       italic: (100, 900)
 *     ),
 *     true
 *   );
 *
 * @example Non-variable font
 *   @include hw13-font-face(
 *     "Raleway",
 *     "raleway",
 *     "Raleway",
 *     (
 *       400: (normal, italic),
 *       700: (normal, italic)
 *     )
 *   );
 */
/**
 * Calculate the width of elements spanning multiple grid columns
 * Based on Figma grid with 24 columns and 23 gutters
 *
 * @param {Number} $column-span - Number of columns the element should span
 * @param {String} $grid-column-count - CSS variable for total column count (default: var(--hw13-grid-column-count))
 * @param {String} $grid-gutter - CSS variable for gutter width (default: var(--hw13-grid-width-gutter))
 * @return {String} - calc() expression for the element width
 *
 * @example
 *   // Using defaults (24 columns, standard gutter)
 *   section {
 *     flex: 0 0 hw13-grid-column-width(14);
 *   }
 *
 *   // Custom grid (12 columns, custom gutter)
 *   aside {
 *     width: hw13-grid-column-width(8, var(--custom-column-count), var(--custom-gutter));
 *   }
 *
 * Formula:
 * 1. Calculate pure column width: (100% - (gutter × (columns - 1))) / columns
 * 2. Multiply by column span
 * 3. Add back the gutters within the span: gutter × (span - 1)
 */
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
@layer hw13-reset {
  /* Smooth scrolling for users that don't prefer reduced motion */
  @media (prefers-reduced-motion: no-preference) {
    html:focus-within {
      scroll-behavior: smooth;
    }
  }
  /* Animate focus outline */
  @media (prefers-reduced-motion: no-preference) {
    :focus-visible {
      transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    }
    :where(:not(:active)):focus-visible {
      transition-duration: 0.25s;
    }
  }
  * {
    /* Remove default margin on everything */
    margin: 0;
    /* Remove default padding on everything */
    padding: 0;
    -webkit-hyphens: auto;
    hyphens: auto;
    hyphenate-limit-chars: 10 4 4;
  }
  /* Use a more-intuitive box-sizing model on everything */
  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }
  /* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
  *:where(:not(fieldset, progress, meter)) {
    background-repeat: no-repeat;
    background-origin: border-box;
    border-width: 0;
    border-style: solid;
  }
  html {
    /* Allow percentage-based heights in the application */
    block-size: 100%;
    /* Making sure text size is only controlled by font-size */
    -webkit-text-size-adjust: none;
  }
  body {
    /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
    text-rendering: optimizespeed;
    /* Allow percentage-based heights in the application */
    min-block-size: 100%;
    /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
    /* scrollbar-gutter: stable both-edges; Removed until this bug is fixed: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
  }
  /* Improve media defaults */
  :where(img, svg, video, canvas, audio, iframe, embed, object):not(.extra-markers) {
    display: block;
  }
  :where(img, svg, video):not(.extra-markers) {
    max-inline-size: 100%;
  }
  /* Remove stroke and set fill colour to the inherited font colour */
  :where(svg):not(.extra-markers) {
    stroke: none;
    fill: currentcolor;
  }
  /* SVG's without a fill attribute */
  :where(svg):where(:not([fill])):not(.extra-markers) {
    /* Remove fill and set stroke colour to the inherited font colour */
    stroke: currentcolor;
    fill: none;
    /* Rounded stroke */
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  /* Set a size for SVG's without a width attribute */
  :where(svg):where(:not([width])):not(.extra-markers) {
    inline-size: 5rem;
  }
  /* Remove built-in form typography styles */
  :where(input, button, textarea, select),
  :where(input[type=file])::-webkit-file-upload-button {
    font: inherit;
    font-size: inherit;
    word-spacing: inherit;
    letter-spacing: inherit;
    color: inherit;
  }
  /* Change textarea resize to vertical only and block only if the browser supports that */
  :where(textarea) {
    resize: vertical;
  }
  /* Avoid text overflows */
  :where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
  }
  /* Fix h1 font size inside article, aside, nav, and section */
  h1 {
    font-size: 2em;
  }
  /* Position list marker inside */
  :where(ul, ol) {
    list-style: none;
    list-style-position: inside;
  }
  /* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
  :where(ul, ol)[role=list] {
    list-style: none;
  }
  /* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  /* Make it clear that interactive elements are interactive */
  :where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
    cursor: pointer;
    touch-action: manipulation;
  }
  :where(input[type=file]) {
    cursor: auto;
  }
  :where(input[type=file])::-webkit-file-upload-button,
  :where(input[type=file])::file-selector-button {
    cursor: pointer;
  }
  :where(:not(:active)):focus-visible {
    outline-offset: 5px;
  }
  /* Make sure users can't select button text */
  :where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
  :where(input[type=file])::-webkit-file-upload-button,
  :where(input[type=file])::file-selector-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    text-align: center;
  }
  /* Disabled cursor for disabled buttons */
  :where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
    cursor: not-allowed;
  }
  @supports (resize: block) {
    :where(textarea) {
      resize: block;
    }
  }
}
:root {
  --hw13-root-font-size: 16;
  --hw13-clamp-width-min: 20;
  --hw13-clamp-width-max: 108;
  --hw13-clamp-height-min: 30;
  --hw13-clamp-height-max: 68;
  --hw13-text-line-height: 140%;
  --hw13-motion-duration-short: 200ms;
  --hw13-motion-duration-normal: 400ms;
  --hw13-motion-duration-long: 600ms;
  --hw13-motion-timing-function: ease-in-out;
  --hw13-color-invert-threshold: 0.55;
  --hw13-color-invert: oklch(
      from var(--hw13-color-invert-background)
          calc(
              var(--hw13-color-black-90-l) +
                  clamp(0, calc((var(--hw13-color-invert-threshold) - l) * 9999), 1) *
                  (var(--hw13-color-white-l) - var(--hw13-color-black-90-l))
          )
          0 0
  );
}
@media (prefers-reduced-motion: reduce) {
  :root {
    --hw13-motion-duration-short: 1ms;
    --hw13-motion-duration-normal: 1ms;
    --hw13-motion-duration-long: 1ms;
  }
}

@layer hw13-grid {
  :where(.hw13-grid) {
    --hw13-grid-margin-one-side: max(calc((100vw - var(--hw13-grid-width-max)) / 2), 0px);
    --hw13-grid-width-max: 95.5rem;
    --hw13-grid-width-gutter: 8px;
    --hw13-grid-padding-inline-min: calc(clamp(calc(calc(10 / 16) * 1rem / (var(--hw13-root-font-size, 16) / 16)), calc(calc(10 / 16) * 1rem / (var(--hw13-root-font-size, 16) / 16)) + calc((calc(32 / 16) - calc(10 / 16)) * (100vw - calc(var(--hw13-clamp-width-min, 20) * 1rem / (var(--hw13-root-font-size, 16) / 16))) / (var(--hw13-clamp-width-max, 108) - var(--hw13-clamp-width-min, 20))), calc(calc(32 / 16) * 1rem / (var(--hw13-root-font-size, 16) / 16))) * (var(--hw13-root-font-size, 16) / 16));
    --hw13-grid-padding-inline: max(var(--hw13-grid-margin-one-side), var(--hw13-grid-padding-inline-min));
    --hw13-grid-column-count: 24;
    column-gap: var(--hw13-grid-width-gutter);
    row-gap: var(--hw13-grid-width-gutter);
    padding-inline: var(--hw13-grid-padding-inline);
  }
  :where(.hw13-grid):has(.hw13-grid) .hw13-grid {
    padding-inline: unset;
  }
  @media (width >= 32rem) {
    :where(.hw13-grid) {
      --hw13-grid-width-gutter: 12px;
    }
  }
  @media (width >= 48rem) {
    :where(.hw13-grid) {
      --hw13-grid-width-gutter: 16px;
    }
  }
  @media (width >= 80rem) {
    :where(.hw13-grid) {
      --hw13-grid-width-gutter: 20px;
    }
  }
}
/* List of Icons  */
/* Needs to be updated for new Versions */
/* List can be copyed from: */
/* EXT:hwfrontend/Resources/Public/Fonts/fontawesome-pro-plus-x.x.x-web/scss/_variables.scss"; */
/* Dont copy the scss-Variables on top, just the Icons!!! */
@layer hw13-base {
  /* GENERATE FA-CLASSES */
  /* For Brands and Kits force the correct font-family */
  .fa-0 {
    --fa: "\30 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-1 {
    --fa: "\31 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-2 {
    --fa: "\32 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-3 {
    --fa: "\33 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-4 {
    --fa: "\34 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-5 {
    --fa: "\35 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-6 {
    --fa: "\36 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-7 {
    --fa: "\37 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-8 {
    --fa: "\38 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-9 {
    --fa: "\39 ";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exclamation {
    --fa: "\!";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ditto {
    --fa: "\"";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hashtag {
    --fa: "\#";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dollar-sign {
    --fa: "\$";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dollar {
    --fa: "\$";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-usd {
    --fa: "\$";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-percent {
    --fa: "\%";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-percentage {
    --fa: "\%";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ampersand {
    --fa: "\&";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-apostrophe {
    --fa: "\'";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-round {
    --fa: "\(";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parenthesis {
    --fa: "\(";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-round-right {
    --fa: "\)";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-asterisk {
    --fa: "\*";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus {
    --fa: "\+";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-add {
    --fa: "\+";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comma {
    --fa: "\,";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hyphen {
    --fa: "\-";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-period {
    --fa: "\.";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-slash-forward {
    --fa: "\/";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-colon {
    --fa: "\:";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-semicolon {
    --fa: "\;";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-less-than {
    --fa: "\<";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-equals {
    --fa: "\=";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-greater-than {
    --fa: "\>";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-question {
    --fa: "\?";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-at {
    --fa: "\@";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-a {
    --fa: "A";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-b {
    --fa: "B";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-c {
    --fa: "C";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-d {
    --fa: "D";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-e {
    --fa: "E";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-f {
    --fa: "F";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-g {
    --fa: "G";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h {
    --fa: "H";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-i {
    --fa: "I";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-j {
    --fa: "J";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-k {
    --fa: "K";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-l {
    --fa: "L";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-m {
    --fa: "M";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-n {
    --fa: "N";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-o {
    --fa: "O";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-p {
    --fa: "P";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-q {
    --fa: "Q";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-r {
    --fa: "R";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-s {
    --fa: "S";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-t {
    --fa: "T";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u {
    --fa: "U";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-v {
    --fa: "V";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-w {
    --fa: "W";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-x {
    --fa: "X";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-y {
    --fa: "Y";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-z {
    --fa: "Z";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-square {
    --fa: "\[";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket {
    --fa: "\[";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-left {
    --fa: "\[";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-slash-back {
    --fa: "\\";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-square-right {
    --fa: "\]";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-accent-grave {
    --fa: "\`";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-curly {
    --fa: "\{";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-curly-left {
    --fa: "\{";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pipe {
    --fa: "\|";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bracket-curly-right {
    --fa: "\}";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tilde {
    --fa: "\~";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caravan-simple {
    --fa: "\e000";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caravan-alt {
    --fa: "\e000";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cat-space {
    --fa: "\e001";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffee-pot {
    --fa: "\e002";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comet {
    --fa: "\e003";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fan-table {
    --fa: "\e004";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-faucet {
    --fa: "\e005";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-faucet-drip {
    --fa: "\e006";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-galaxy {
    --fa: "\e008";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-garage {
    --fa: "\e009";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-garage-car {
    --fa: "\e00a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-garage-open {
    --fa: "\e00b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heat {
    --fa: "\e00c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney-window {
    --fa: "\e00d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-day {
    --fa: "\e00e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-person-leave {
    --fa: "\e00f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-leave {
    --fa: "\e00f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-person-depart {
    --fa: "\e00f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-night {
    --fa: "\e010";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-person-return {
    --fa: "\e011";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-person-arrive {
    --fa: "\e011";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-return {
    --fa: "\e011";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-signal {
    --fa: "\e012";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lamp-desk {
    --fa: "\e014";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lamp-floor {
    --fa: "\e015";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-light-ceiling {
    --fa: "\e016";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-light-switch {
    --fa: "\e017";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-light-switch-off {
    --fa: "\e018";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-light-switch-on {
    --fa: "\e019";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microwave {
    --fa: "\e01b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-outlet {
    --fa: "\e01c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-oven {
    --fa: "\e01d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-planet-moon {
    --fa: "\e01f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-planet-ringed {
    --fa: "\e020";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-police-box {
    --fa: "\e021";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-to-portal {
    --fa: "\e022";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-portal-enter {
    --fa: "\e022";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-from-portal {
    --fa: "\e023";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-portal-exit {
    --fa: "\e023";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-radar {
    --fa: "\e024";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-raygun {
    --fa: "\e025";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-refrigerator {
    --fa: "\e026";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rocket-launch {
    --fa: "\e027";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor {
    --fa: "\e028";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor-triangle-exclamation {
    --fa: "\e029";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor-alert {
    --fa: "\e029";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor-fire {
    --fa: "\e02a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor-on {
    --fa: "\e02b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor-cloud {
    --fa: "\e02c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sensor-smoke {
    --fa: "\e02c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-siren {
    --fa: "\e02d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-siren-on {
    --fa: "\e02e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-solar-system {
    --fa: "\e02f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-sort {
    --fa: "\e030";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-circle {
    --fa: "\e030";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-sort-down {
    --fa: "\e031";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-circle-down {
    --fa: "\e031";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-sort-up {
    --fa: "\e032";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-circle-up {
    --fa: "\e032";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-space-station-moon {
    --fa: "\e033";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-space-station-moon-construction {
    --fa: "\e034";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-space-station-moon-alt {
    --fa: "\e034";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sprinkler {
    --fa: "\e035";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-shooting {
    --fa: "\e036";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starfighter {
    --fa: "\e037";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starfighter-twin-ion-engine {
    --fa: "\e038";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starfighter-alt {
    --fa: "\e038";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starship {
    --fa: "\e039";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starship-freighter {
    --fa: "\e03a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sword-laser {
    --fa: "\e03b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sword-laser-alt {
    --fa: "\e03c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swords-laser {
    --fa: "\e03d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-telescope {
    --fa: "\e03e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-arrow-down {
    --fa: "\e03f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-down {
    --fa: "\e03f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-arrow-up {
    --fa: "\e040";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-up {
    --fa: "\e040";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trailer {
    --fa: "\e041";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter {
    --fa: "\e042";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-1 {
    --fa: "\e043";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-2 {
    --fa: "\e044";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-3 {
    --fa: "\e045";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-empty {
    --fa: "\e046";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ufo {
    --fa: "\e047";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ufo-beam {
    --fa: "\e048";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-alien {
    --fa: "\e04a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-robot {
    --fa: "\e04b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-visor {
    --fa: "\e04c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vacuum {
    --fa: "\e04d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vacuum-robot {
    --fa: "\e04e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-frame {
    --fa: "\e04f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-frame-open {
    --fa: "\e050";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffin-cross {
    --fa: "\e051";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-arrow-down {
    --fa: "\e053";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-download {
    --fa: "\e053";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-arrow-up {
    --fa: "\e054";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-upload {
    --fa: "\e054";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-unlock {
    --fa: "\e058";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bacteria {
    --fa: "\e059";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bacterium {
    --fa: "\e05a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-tissue {
    --fa: "\e05b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-medical {
    --fa: "\e05c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-sparkles {
    --fa: "\e05d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-bubbles {
    --fa: "\e05e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-wash {
    --fa: "\e05e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake-slash {
    --fa: "\e060";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake-alt-slash {
    --fa: "\e060";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake-simple-slash {
    --fa: "\e060";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-cough {
    --fa: "\e061";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-cough-slash {
    --fa: "\e062";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-mask {
    --fa: "\e063";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-virus {
    --fa: "\e064";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney-user {
    --fa: "\e065";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-laptop {
    --fa: "\e066";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-house {
    --fa: "\e066";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lungs-virus {
    --fa: "\e067";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-arrows {
    --fa: "\e068";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-arrows-left-right {
    --fa: "\e068";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-slash {
    --fa: "\e069";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pump-medical {
    --fa: "\e06a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pump-soap {
    --fa: "\e06b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-virus {
    --fa: "\e06c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sink {
    --fa: "\e06d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-soap {
    --fa: "\e06e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stopwatch-20 {
    --fa: "\e06f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shop-slash {
    --fa: "\e070";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-store-alt-slash {
    --fa: "\e070";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-store-slash {
    --fa: "\e071";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-slash {
    --fa: "\e072";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-slash {
    --fa: "\e073";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-virus {
    --fa: "\e074";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-virus-slash {
    --fa: "\e075";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-viruses {
    --fa: "\e076";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vest {
    --fa: "\e085";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vest-patches {
    --fa: "\e086";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-airplay {
    --fa: "\e089";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alt {
    --fa: "\e08a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle {
    --fa: "\e08c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-90 {
    --fa: "\e08d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-apple-core {
    --fa: "\e08f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-from-dotted-line {
    --fa: "\e090";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-left {
    --fa: "\e091";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-left-and-arrow-up-right-to-center {
    --fa: "\e092";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-right {
    --fa: "\e093";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-to-bracket {
    --fa: "\e094";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-to-dotted-line {
    --fa: "\e095";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-to-square {
    --fa: "\e096";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-trend-down {
    --fa: "\e097";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-trend-up {
    --fa: "\e098";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-arrow-down {
    --fa: "\e099";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-up-down {
    --fa: "\e099";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-bracket {
    --fa: "\e09a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-dotted-line {
    --fa: "\e09b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-square {
    --fa: "\e09c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-left {
    --fa: "\e09d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-left-from-circle {
    --fa: "\e09e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-right {
    --fa: "\e09f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-right-and-arrow-down-left-from-center {
    --fa: "\e0a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-to-dotted-line {
    --fa: "\e0a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-cross {
    --fa: "\e0a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-from-dotted-line {
    --fa: "\e0a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-from-line {
    --fa: "\e0a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-minimize {
    --fa: "\e0a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compress-arrows {
    --fa: "\e0a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-to-dotted-line {
    --fa: "\e0a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-to-line {
    --fa: "\e0a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-audio-description-slash {
    --fa: "\e0a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-austral-sign {
    --fa: "\e0a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-avocado {
    --fa: "\e0aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-award-simple {
    --fa: "\e0ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baht-sign {
    --fa: "\e0ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bars-filter {
    --fa: "\e0ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bars-sort {
    --fa: "\e0ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basket-shopping-simple {
    --fa: "\e0af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shopping-basket-alt {
    --fa: "\e0af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-exclamation {
    --fa: "\e0b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-low {
    --fa: "\e0b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-1 {
    --fa: "\e0b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bee {
    --fa: "\e0b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-beer-mug {
    --fa: "\e0b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-beer-foam {
    --fa: "\e0b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bitcoin-sign {
    --fa: "\e0b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-block-quote {
    --fa: "\e0b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bolt-auto {
    --fa: "\e0b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bolt-lightning {
    --fa: "\e0b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bolt-slash {
    --fa: "\e0b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-arrow-right {
    --fa: "\e0b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-arrow-up {
    --fa: "\e0ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-bookmark {
    --fa: "\e0bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-circle-arrow-right {
    --fa: "\e0bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-circle-arrow-up {
    --fa: "\e0bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-copy {
    --fa: "\e0be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-font {
    --fa: "\e0bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-open-cover {
    --fa: "\e0c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-open-alt {
    --fa: "\e0c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-section {
    --fa: "\e0c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-law {
    --fa: "\e0c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bookmark-slash {
    --fa: "\e0c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowling-ball-pin {
    --fa: "\e0c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-circle-check {
    --fa: "\e0c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brackets-round {
    --fa: "\e0c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parentheses {
    --fa: "\e0c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brain-circuit {
    --fa: "\e0c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brake-warning {
    --fa: "\e0c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-briefcase-blank {
    --fa: "\e0c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brightness {
    --fa: "\e0c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brightness-low {
    --fa: "\e0ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-browsers {
    --fa: "\e0cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-buildings {
    --fa: "\e0cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burger-fries {
    --fa: "\e0cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burger-glass {
    --fa: "\e0ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-arrow-down {
    --fa: "\e0d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-download {
    --fa: "\e0d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-arrow-up {
    --fa: "\e0d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-upload {
    --fa: "\e0d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-clock {
    --fa: "\e0d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-time {
    --fa: "\e0d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-heart {
    --fa: "\e0d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-image {
    --fa: "\e0d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-lines {
    --fa: "\e0d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-note {
    --fa: "\e0d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-range {
    --fa: "\e0d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendars {
    --fa: "\e0d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-rotate {
    --fa: "\e0d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-slash {
    --fa: "\e0d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-viewfinder {
    --fa: "\e0da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-screenshot {
    --fa: "\e0da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-minus {
    --fa: "\e0db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-shopping-fast {
    --fa: "\e0dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-xmark {
    --fa: "\e0dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-castle {
    --fa: "\e0de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cedi-sign {
    --fa: "\e0df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-bullet {
    --fa: "\e0e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-candlestick {
    --fa: "\e0e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-column {
    --fa: "\e0e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-gantt {
    --fa: "\e0e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-line-up {
    --fa: "\e0e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-pyramid {
    --fa: "\e0e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-radar {
    --fa: "\e0e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-scatter-3d {
    --fa: "\e0e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-scatter-bubble {
    --fa: "\e0e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-tree-map {
    --fa: "\e0ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-waterfall {
    --fa: "\e0eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cherries {
    --fa: "\e0ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-0 {
    --fa: "\e0ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-1 {
    --fa: "\e0ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-2 {
    --fa: "\e0ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-3 {
    --fa: "\e0f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-4 {
    --fa: "\e0f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-5 {
    --fa: "\e0f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-6 {
    --fa: "\e0f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-7 {
    --fa: "\e0f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-8 {
    --fa: "\e0f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-9 {
    --fa: "\e0f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-a {
    --fa: "\e0f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-ampersand {
    --fa: "\e0f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-down-left {
    --fa: "\e0f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-down-right {
    --fa: "\e0fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-up-left {
    --fa: "\e0fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-up-right {
    --fa: "\e0fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-b {
    --fa: "\e0fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-bolt {
    --fa: "\e0fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-book-open {
    --fa: "\e0ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-circle {
    --fa: "\e0ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-bookmark {
    --fa: "\e100";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bookmark-circle {
    --fa: "\e100";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-c {
    --fa: "\e101";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-calendar {
    --fa: "\e102";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-circle {
    --fa: "\e102";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-camera {
    --fa: "\e103";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-circle {
    --fa: "\e103";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-d {
    --fa: "\e104";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-dashed {
    --fa: "\e105";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-divide {
    --fa: "\e106";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-down-left {
    --fa: "\e107";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-down-right {
    --fa: "\e108";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-e {
    --fa: "\e109";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-ellipsis {
    --fa: "\e10a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-ellipsis-vertical {
    --fa: "\e10b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-envelope {
    --fa: "\e10c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-circle {
    --fa: "\e10c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-exclamation-check {
    --fa: "\e10d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-f {
    --fa: "\e10e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-g {
    --fa: "\e10f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-half {
    --fa: "\e110";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-i {
    --fa: "\e111";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-j {
    --fa: "\e112";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-k {
    --fa: "\e113";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-l {
    --fa: "\e114";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-m {
    --fa: "\e115";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-microphone {
    --fa: "\e116";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-circle {
    --fa: "\e116";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-microphone-lines {
    --fa: "\e117";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-circle-alt {
    --fa: "\e117";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-n {
    --fa: "\e118";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-o {
    --fa: "\e119";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-p {
    --fa: "\e11a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-phone {
    --fa: "\e11b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-circle {
    --fa: "\e11b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-phone-flip {
    --fa: "\e11c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-circle-alt {
    --fa: "\e11c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-phone-hangup {
    --fa: "\e11d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-circle-down {
    --fa: "\e11d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-q {
    --fa: "\e11e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-quarter {
    --fa: "\e11f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-r {
    --fa: "\e120";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-s {
    --fa: "\e121";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-small {
    --fa: "\e122";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-star {
    --fa: "\e123";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-circle {
    --fa: "\e123";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-t {
    --fa: "\e124";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-three-quarters {
    --fa: "\e125";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-trash {
    --fa: "\e126";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-circle {
    --fa: "\e126";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-u {
    --fa: "\e127";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-up-left {
    --fa: "\e128";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-up-right {
    --fa: "\e129";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-v {
    --fa: "\e12a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-video {
    --fa: "\e12b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-circle {
    --fa: "\e12b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-w {
    --fa: "\e12c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-waveform-lines {
    --fa: "\e12d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-waveform-circle {
    --fa: "\e12d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-x {
    --fa: "\e12e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-y {
    --fa: "\e12f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-z {
    --fa: "\e130";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clapperboard {
    --fa: "\e131";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clapperboard-play {
    --fa: "\e132";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-medical {
    --fa: "\e133";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-desk {
    --fa: "\e134";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-closed-captioning-slash {
    --fa: "\e135";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clothes-hanger {
    --fa: "\e136";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-slash {
    --fa: "\e137";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-word {
    --fa: "\e138";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clover {
    --fa: "\e139";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-compare {
    --fa: "\e13a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-fork {
    --fa: "\e13b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-pull-request {
    --fa: "\e13c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-simple {
    --fa: "\e13d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffee-bean {
    --fa: "\e13e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffee-beans {
    --fa: "\e13f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-colon-sign {
    --fa: "\e140";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-command {
    --fa: "\e142";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-arrow-down {
    --fa: "\e143";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-arrow-up {
    --fa: "\e144";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-arrow-up-right {
    --fa: "\e145";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-captions {
    --fa: "\e146";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-code {
    --fa: "\e147";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-image {
    --fa: "\e148";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-middle {
    --fa: "\e149";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-middle-top {
    --fa: "\e14a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-question {
    --fa: "\e14b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-quote {
    --fa: "\e14c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-text {
    --fa: "\e14d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comments-question {
    --fa: "\e14e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comments-question-check {
    --fa: "\e14f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-conveyor-belt-empty {
    --fa: "\e150";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crate-empty {
    --fa: "\e151";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cruzeiro-sign {
    --fa: "\e152";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-delete-right {
    --fa: "\e154";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-desktop-arrow-down {
    --fa: "\e155";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-lean-canvas {
    --fa: "\e156";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-nested {
    --fa: "\e157";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-sankey {
    --fa: "\e158";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-venn {
    --fa: "\e15a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial {
    --fa: "\e15b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-med-high {
    --fa: "\e15b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-high {
    --fa: "\e15c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-low {
    --fa: "\e15d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-max {
    --fa: "\e15e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-med {
    --fa: "\e15f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-med-low {
    --fa: "\e160";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-min {
    --fa: "\e161";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dial-off {
    --fa: "\e162";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display {
    --fa: "\e163";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-arrow-down {
    --fa: "\e164";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-code {
    --fa: "\e165";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-desktop-code {
    --fa: "\e165";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-medical {
    --fa: "\e166";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-desktop-medical {
    --fa: "\e166";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolphin {
    --fa: "\e168";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dong-sign {
    --fa: "\e169";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-left {
    --fa: "\e16a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-right {
    --fa: "\e16b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eggplant {
    --fa: "\e16c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-elevator {
    --fa: "\e16d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-engine {
    --fa: "\e16e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-dot {
    --fa: "\e16f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-badge {
    --fa: "\e16f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelopes {
    --fa: "\e170";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-escalator {
    --fa: "\e171";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-dropper-full {
    --fa: "\e172";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-dropper-half {
    --fa: "\e173";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ferris-wheel {
    --fa: "\e174";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-binary {
    --fa: "\e175";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-heart {
    --fa: "\e176";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-plus-minus {
    --fa: "\e177";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-files {
    --fa: "\e178";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-slash {
    --fa: "\e179";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-films {
    --fa: "\e17a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-filter-circle-xmark {
    --fa: "\e17b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-filter-list {
    --fa: "\e17c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-filter-slash {
    --fa: "\e17d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-filters {
    --fa: "\e17e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-hydrant {
    --fa: "\e17f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-floppy-disk-circle-arrow-right {
    --fa: "\e180";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-save-circle-arrow-right {
    --fa: "\e180";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-floppy-disk-circle-xmark {
    --fa: "\e181";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-floppy-disk-times {
    --fa: "\e181";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-save-circle-xmark {
    --fa: "\e181";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-save-times {
    --fa: "\e181";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-floppy-disk-pen {
    --fa: "\e182";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-floppy-disks {
    --fa: "\e183";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-florin-sign {
    --fa: "\e184";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-closed {
    --fa: "\e185";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-bookmark {
    --fa: "\e186";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-gear {
    --fa: "\e187";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-cog {
    --fa: "\e187";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-grid {
    --fa: "\e188";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-heart {
    --fa: "\e189";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-image {
    --fa: "\e18a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-magnifying-glass {
    --fa: "\e18b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-search {
    --fa: "\e18b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-medical {
    --fa: "\e18c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-music {
    --fa: "\e18d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-user {
    --fa: "\e18e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-franc-sign {
    --fa: "\e18f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gif {
    --fa: "\e190";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-empty {
    --fa: "\e191";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-half {
    --fa: "\e192";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-half-empty {
    --fa: "\e192";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-half-full {
    --fa: "\e192";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grate {
    --fa: "\e193";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grate-droplet {
    --fa: "\e194";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid {
    --fa: "\e195";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-3 {
    --fa: "\e195";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-2 {
    --fa: "\e196";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-2-plus {
    --fa: "\e197";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-4 {
    --fa: "\e198";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-5 {
    --fa: "\e199";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-guarani-sign {
    --fa: "\e19a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gun {
    --fa: "\e19b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gun-slash {
    --fa: "\e19c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gun-squirt {
    --fa: "\e19d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-back-point-down {
    --fa: "\e19e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-back-point-left {
    --fa: "\e19f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-back-point-ribbon {
    --fa: "\e1a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-back-point-right {
    --fa: "\e1a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-back-point-up {
    --fa: "\e1a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-fingers-crossed {
    --fa: "\e1a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-skull {
    --fa: "\e1a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-love {
    --fa: "\e1a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-point-ribbon {
    --fa: "\e1a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-wave {
    --fa: "\e1a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-clapping {
    --fa: "\e1a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-horns {
    --fa: "\e1a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-heart {
    --fa: "\e1aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-half {
    --fa: "\e1ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-half-stroke {
    --fa: "\e1ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-half-alt {
    --fa: "\e1ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-divide {
    --fa: "\e1ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-high-definition {
    --fa: "\e1ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-hd {
    --fa: "\e1ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-highlighter-line {
    --fa: "\e1af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-user {
    --fa: "\e1b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home-user {
    --fa: "\e1b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-building {
    --fa: "\e1b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney-heart {
    --fa: "\e1b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-tree {
    --fa: "\e1b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-turret {
    --fa: "\e1b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-landscape {
    --fa: "\e1b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-landscape {
    --fa: "\e1b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-polaroid-user {
    --fa: "\e1b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-slash {
    --fa: "\e1b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-user {
    --fa: "\e1b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-images-user {
    --fa: "\e1b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inbox-full {
    --fa: "\e1ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inboxes {
    --fa: "\e1bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-indian-rupee-sign {
    --fa: "\e1bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-indian-rupee {
    --fa: "\e1bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inr {
    --fa: "\e1bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-input-numeric {
    --fa: "\e1bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-input-pipe {
    --fa: "\e1be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-input-text {
    --fa: "\e1bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-keyboard-brightness {
    --fa: "\e1c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-keyboard-brightness-low {
    --fa: "\e1c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-keyboard-down {
    --fa: "\e1c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-keyboard-left {
    --fa: "\e1c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kip-sign {
    --fa: "\e1c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lamp-street {
    --fa: "\e1c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-arrow-down {
    --fa: "\e1c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-slash {
    --fa: "\e1c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lari-sign {
    --fa: "\e1c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lasso-sparkles {
    --fa: "\e1c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-exclamation-on {
    --fa: "\e1ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-link-horizontal {
    --fa: "\e1cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chain-horizontal {
    --fa: "\e1cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-link-horizontal-slash {
    --fa: "\e1cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chain-horizontal-slash {
    --fa: "\e1cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-link-simple {
    --fa: "\e1cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-link-simple-slash {
    --fa: "\e1ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-dropdown {
    --fa: "\e1cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-radio {
    --fa: "\e1d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-timeline {
    --fa: "\e1d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-tree {
    --fa: "\e1d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-litecoin-sign {
    --fa: "\e1d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-loader {
    --fa: "\e1d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-manat-sign {
    --fa: "\e1d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-manhole {
    --fa: "\e1d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mask-face {
    --fa: "\e1d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-memo {
    --fa: "\e1d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-memo-circle-check {
    --fa: "\e1d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-memo-pad {
    --fa: "\e1da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-arrow-down {
    --fa: "\e1db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-arrow-down {
    --fa: "\e1db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-arrow-up {
    --fa: "\e1dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-arrow-up {
    --fa: "\e1dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-arrow-up-right {
    --fa: "\e1dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-captions {
    --fa: "\e1de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-captions {
    --fa: "\e1de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-code {
    --fa: "\e1df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-image {
    --fa: "\e1e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-image {
    --fa: "\e1e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-middle {
    --fa: "\e1e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-middle-alt {
    --fa: "\e1e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-middle-top {
    --fa: "\e1e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-middle-top-alt {
    --fa: "\e1e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-question {
    --fa: "\e1e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-quote {
    --fa: "\e1e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-quote {
    --fa: "\e1e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-sms {
    --fa: "\e1e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-text {
    --fa: "\e1e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-text {
    --fa: "\e1e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-messages-question {
    --fa: "\e1e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meter {
    --fa: "\e1e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meter-bolt {
    --fa: "\e1e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meter-droplet {
    --fa: "\e1ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meter-fire {
    --fa: "\e1eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microchip-ai {
    --fa: "\e1ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mill-sign {
    --fa: "\e1ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-notch {
    --fa: "\e1ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-iphone {
    --fa: "\e1ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-signal {
    --fa: "\e1ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-signal-out {
    --fa: "\e1f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-simple {
    --fa: "\e1f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-simple-wave {
    --fa: "\e1f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bills {
    --fa: "\e1f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bills-simple {
    --fa: "\e1f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bills-alt {
    --fa: "\e1f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mug-tea-saucer {
    --fa: "\e1f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-naira-sign {
    --fa: "\e1f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc {
    --fa: "\e1f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-lock {
    --fa: "\e1f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-magnifying-glass {
    --fa: "\e1f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-pen {
    --fa: "\e1fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-signal {
    --fa: "\e1fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-slash {
    --fa: "\e1fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-trash {
    --fa: "\e1fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-notdef {
    --fa: "\e1fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-note {
    --fa: "\e1ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-note-medical {
    --fa: "\e200";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-notebook {
    --fa: "\e201";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-notes {
    --fa: "\e202";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-divide {
    --fa: "\e203";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-exclamation {
    --fa: "\e204";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-oil-can-drip {
    --fa: "\e205";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paintbrush-pencil {
    --fa: "\e206";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pallet-box {
    --fa: "\e208";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-panorama {
    --fa: "\e209";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paper-plane-top {
    --fa: "\e20a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paper-plane-alt {
    --fa: "\e20a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-send {
    --fa: "\e20a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peach {
    --fa: "\e20b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pear {
    --fa: "\e20c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pedestal {
    --fa: "\e20d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-circle {
    --fa: "\e20e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-clip-slash {
    --fa: "\e20f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-alt-slash {
    --fa: "\e20f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-fancy-slash {
    --fa: "\e210";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-field {
    --fa: "\e211";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-line {
    --fa: "\e212";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-slash {
    --fa: "\e213";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-swirl {
    --fa: "\e214";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-slash {
    --fa: "\e215";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people {
    --fa: "\e216";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-dress {
    --fa: "\e217";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-dress-simple {
    --fa: "\e218";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-pants {
    --fa: "\e219";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-pants-simple {
    --fa: "\e21a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-simple {
    --fa: "\e21b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dress-simple {
    --fa: "\e21c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-pinball {
    --fa: "\e21d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-seat {
    --fa: "\e21e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-seat-reclined {
    --fa: "\e21f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-simple {
    --fa: "\e220";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peseta-sign {
    --fa: "\e221";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peso-sign {
    --fa: "\e222";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-arrow-down-left {
    --fa: "\e223";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-arrow-down {
    --fa: "\e223";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-incoming {
    --fa: "\e223";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-arrow-up-right {
    --fa: "\e224";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-arrow-up {
    --fa: "\e224";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-outgoing {
    --fa: "\e224";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-hangup {
    --fa: "\e225";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-missed {
    --fa: "\e226";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-xmark {
    --fa: "\e227";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-photo-film-music {
    --fa: "\e228";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pinball {
    --fa: "\e229";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-prop {
    --fa: "\e22b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-tail {
    --fa: "\e22c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-up {
    --fa: "\e22d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-up-slash {
    --fa: "\e22e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-play-pause {
    --fa: "\e22f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-puzzle-piece-simple {
    --fa: "\e231";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-puzzle-piece-alt {
    --fa: "\e231";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quotes {
    --fa: "\e234";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-pro {
    --fa: "\e235";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pro {
    --fa: "\e235";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-terminal {
    --fa: "\e236";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-vertical-history {
    --fa: "\e237";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reel {
    --fa: "\e238";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reply-clock {
    --fa: "\e239";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reply-time {
    --fa: "\e239";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-restroom-simple {
    --fa: "\e23a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rhombus {
    --fa: "\e23b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-exclamation {
    --fa: "\e23c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rupiah-sign {
    --fa: "\e23d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-screencast {
    --fa: "\e23e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scribble {
    --fa: "\e23f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sd-cards {
    --fa: "\e240";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seal {
    --fa: "\e241";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seal-exclamation {
    --fa: "\e242";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seal-question {
    --fa: "\e243";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seat-airline {
    --fa: "\e244";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shelves-empty {
    --fa: "\e246";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-exclamation {
    --fa: "\e247";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-keyhole {
    --fa: "\e248";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-minus {
    --fa: "\e249";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-plus {
    --fa: "\e24a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-slash {
    --fa: "\e24b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-xmark {
    --fa: "\e24c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-times {
    --fa: "\e24c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shower-down {
    --fa: "\e24d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shower-alt {
    --fa: "\e24d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sidebar {
    --fa: "\e24e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sidebar-flip {
    --fa: "\e24f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-stream-slash {
    --fa: "\e250";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sim-cards {
    --fa: "\e251";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-slider {
    --fa: "\e252";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders-simple {
    --fa: "\e253";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-split {
    --fa: "\e254";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-0 {
    --fa: "\e255";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-1 {
    --fa: "\e256";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-2 {
    --fa: "\e257";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-3 {
    --fa: "\e258";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-4 {
    --fa: "\e259";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-5 {
    --fa: "\e25a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-6 {
    --fa: "\e25b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-7 {
    --fa: "\e25c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-8 {
    --fa: "\e25d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-9 {
    --fa: "\e25e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-a {
    --fa: "\e25f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-ampersand {
    --fa: "\e260";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-down-left {
    --fa: "\e261";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-down-right {
    --fa: "\e262";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-up-left {
    --fa: "\e263";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-b {
    --fa: "\e264";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-bolt {
    --fa: "\e265";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-c {
    --fa: "\e266";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-code {
    --fa: "\e267";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-d {
    --fa: "\e268";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-dashed {
    --fa: "\e269";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-divide {
    --fa: "\e26a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-down-left {
    --fa: "\e26b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-down-right {
    --fa: "\e26c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-e {
    --fa: "\e26d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-ellipsis {
    --fa: "\e26e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-ellipsis-vertical {
    --fa: "\e26f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-f {
    --fa: "\e270";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-g {
    --fa: "\e271";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-i {
    --fa: "\e272";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-j {
    --fa: "\e273";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-k {
    --fa: "\e274";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-l {
    --fa: "\e275";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-m {
    --fa: "\e276";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-n {
    --fa: "\e277";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-o {
    --fa: "\e278";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-p {
    --fa: "\e279";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-phone-hangup {
    --fa: "\e27a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-square-down {
    --fa: "\e27a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-q {
    --fa: "\e27b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-r {
    --fa: "\e27c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-s {
    --fa: "\e27d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-small {
    --fa: "\e27e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-star {
    --fa: "\e27f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-t {
    --fa: "\e280";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-u {
    --fa: "\e281";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-up-left {
    --fa: "\e282";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-user {
    --fa: "\e283";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-v {
    --fa: "\e284";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-w {
    --fa: "\e285";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-x {
    --fa: "\e286";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-y {
    --fa: "\e287";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-z {
    --fa: "\e288";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stairs {
    --fa: "\e289";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-standard-definition {
    --fa: "\e28a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-sd {
    --fa: "\e28a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-sharp {
    --fa: "\e28b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-sharp-half {
    --fa: "\e28c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-sharp-half-stroke {
    --fa: "\e28d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-sharp-half-alt {
    --fa: "\e28d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starfighter-twin-ion-engine-advanced {
    --fa: "\e28e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-starfighter-alt-advanced {
    --fa: "\e28e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun-bright {
    --fa: "\e28f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun-alt {
    --fa: "\e28f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-layout {
    --fa: "\e290";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-pivot {
    --fa: "\e291";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-rows {
    --fa: "\e292";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rows {
    --fa: "\e292";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-tree {
    --fa: "\e293";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tally-1 {
    --fa: "\e294";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tally-2 {
    --fa: "\e295";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tally-3 {
    --fa: "\e296";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tally-4 {
    --fa: "\e297";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-taxi-bus {
    --fa: "\e298";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-list {
    --fa: "\e299";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket-airline {
    --fa: "\e29a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket-perforated-plane {
    --fa: "\e29a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket-plane {
    --fa: "\e29a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tickets-airline {
    --fa: "\e29b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tickets-perforated-plane {
    --fa: "\e29b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tickets-plane {
    --fa: "\e29b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-timeline {
    --fa: "\e29c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-timeline-arrow {
    --fa: "\e29d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-timer {
    --fa: "\e29e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-under {
    --fa: "\e2a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-blank-under {
    --fa: "\e2a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-reverse {
    --fa: "\e2a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-reverse-alt {
    --fa: "\e2a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-under-slash {
    --fa: "\e2a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-reverse-slash {
    --fa: "\e2a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tower-control {
    --fa: "\e2a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train-subway-tunnel {
    --fa: "\e2a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-subway-tunnel {
    --fa: "\e2a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transformer-bolt {
    --fa: "\e2a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-4 {
    --fa: "\e2a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-5 {
    --fa: "\e2a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-6 {
    --fa: "\e2a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transporter-7 {
    --fa: "\e2a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-check {
    --fa: "\e2a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-clock {
    --fa: "\e2aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-list {
    --fa: "\e2ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-plus {
    --fa: "\e2ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-slash {
    --fa: "\e2ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-alt-slash {
    --fa: "\e2ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-xmark {
    --fa: "\e2ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-check {
    --fa: "\e2af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-clock {
    --fa: "\e2b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-list {
    --fa: "\e2b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-plus {
    --fa: "\e2b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-slash {
    --fa: "\e2b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-xmark {
    --fa: "\e2b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-container-empty {
    --fa: "\e2b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-flatbed {
    --fa: "\e2b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-front {
    --fa: "\e2b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-tow {
    --fa: "\e2b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tty-answer {
    --fa: "\e2b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-teletype-answer {
    --fa: "\e2b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tugrik-sign {
    --fa: "\e2ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turkish-lira-sign {
    --fa: "\e2bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-try {
    --fa: "\e2bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turkish-lira {
    --fa: "\e2bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-umbrella-simple {
    --fa: "\e2bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-umbrella-alt {
    --fa: "\e2bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-left {
    --fa: "\e2bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-right {
    --fa: "\e2be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-bounty-hunter {
    --fa: "\e2bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-pilot {
    --fa: "\e2c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-pilot-tie {
    --fa: "\e2c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-shakespeare {
    --fa: "\e2c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utility-pole {
    --fa: "\e2c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utility-pole-double {
    --fa: "\e2c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vault {
    --fa: "\e2c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-arrow-down-left {
    --fa: "\e2c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-arrow-up-right {
    --fa: "\e2c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wand-magic-sparkles {
    --fa: "\e2ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magic-wand-sparkles {
    --fa: "\e2ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-watch-apple {
    --fa: "\e2cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-watch-smart {
    --fa: "\e2cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheat-awn {
    --fa: "\e2cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheat-alt {
    --fa: "\e2cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheelchair-move {
    --fa: "\e2ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheelchair-alt {
    --fa: "\e2ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-exclamation {
    --fa: "\e2cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wrench-simple {
    --fa: "\e2d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-robot-astromech {
    --fa: "\e2d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-360-degrees {
    --fa: "\e2dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-aperture {
    --fa: "\e2df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-down-left {
    --fa: "\e2e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-balloon {
    --fa: "\e2e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-balloons {
    --fa: "\e2e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-banana {
    --fa: "\e2e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bangladeshi-taka-sign {
    --fa: "\e2e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bench-tree {
    --fa: "\e2e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blueberries {
    --fa: "\e2e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-chopsticks {
    --fa: "\e2e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-chopsticks-noodles {
    --fa: "\e2ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-rice {
    --fa: "\e2eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-briefcase-arrow-right {
    --fa: "\e2f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-citrus {
    --fa: "\e2f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-citrus-slice {
    --fa: "\e2f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coconut {
    --fa: "\e2f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-slash {
    --fa: "\e2fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-desktop-slash {
    --fa: "\e2fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-explode {
    --fa: "\e2fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exploding-head {
    --fa: "\e2fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-viewfinder {
    --fa: "\e2ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-family {
    --fa: "\e300";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-family-dress {
    --fa: "\e301";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-family-pants {
    --fa: "\e302";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fence {
    --fa: "\e303";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fish-bones {
    --fa: "\e304";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grapes {
    --fa: "\e306";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kiwi-fruit {
    --fa: "\e30c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mango {
    --fa: "\e30f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-melon {
    --fa: "\e310";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-melon-slice {
    --fa: "\e311";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-from-bracket {
    --fa: "\e312";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-simple-from-bracket {
    --fa: "\e313";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-olive {
    --fa: "\e316";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-olive-branch {
    --fa: "\e317";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-option {
    --fa: "\e318";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-party-bell {
    --fa: "\e31a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-party-horn {
    --fa: "\e31b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peapod {
    --fa: "\e31c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-pregnant {
    --fa: "\e31e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pineapple {
    --fa: "\e31f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-code {
    --fa: "\e322";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangles-mixed {
    --fa: "\e323";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-roller-coaster {
    --fa: "\e324";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-quote {
    --fa: "\e329";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-terminal {
    --fa: "\e32a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-strawberry {
    --fa: "\e32b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-picnic {
    --fa: "\e32d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thought-bubble {
    --fa: "\e32e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tick {
    --fa: "\e32f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tomato {
    --fa: "\e330";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-down-left {
    --fa: "\e331";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-police {
    --fa: "\e333";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-police-tie {
    --fa: "\e334";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-watermelon-slice {
    --fa: "\e337";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheat-awn-slash {
    --fa: "\e338";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheat-slash {
    --fa: "\e339";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badminton {
    --fa: "\e33a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-binary {
    --fa: "\e33b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-binary-circle-check {
    --fa: "\e33c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-binary-lock {
    --fa: "\e33d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-binary-slash {
    --fa: "\e33e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boot-heeled {
    --fa: "\e33f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-bolt {
    --fa: "\e341";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-circle-bolt {
    --fa: "\e342";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-mirrors {
    --fa: "\e343";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-side-bolt {
    --fa: "\e344";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-eight {
    --fa: "\e345";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-eight-thirty {
    --fa: "\e346";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-eleven {
    --fa: "\e347";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-eleven-thirty {
    --fa: "\e348";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-five {
    --fa: "\e349";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-five-thirty {
    --fa: "\e34a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-four-thirty {
    --fa: "\e34b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-nine {
    --fa: "\e34c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-nine-thirty {
    --fa: "\e34d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-one {
    --fa: "\e34e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-one-thirty {
    --fa: "\e34f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-seven {
    --fa: "\e350";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-seven-thirty {
    --fa: "\e351";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-six {
    --fa: "\e352";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-six-thirty {
    --fa: "\e353";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-ten {
    --fa: "\e354";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-ten-thirty {
    --fa: "\e355";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-three {
    --fa: "\e356";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-three-thirty {
    --fa: "\e357";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-twelve {
    --fa: "\e358";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-twelve-thirty {
    --fa: "\e359";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-two {
    --fa: "\e35a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-two-thirty {
    --fa: "\e35b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-check {
    --fa: "\e35c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-minus {
    --fa: "\e35d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-plus {
    --fa: "\e35e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-xmark {
    --fa: "\e35f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-columns-3 {
    --fa: "\e361";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crystal-ball {
    --fa: "\e362";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cup-straw {
    --fa: "\e363";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cup-straw-swoosh {
    --fa: "\e364";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-distribute-spacing-horizontal {
    --fa: "\e365";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-distribute-spacing-vertical {
    --fa: "\e366";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eyes {
    --fa: "\e367";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-angry-horns {
    --fa: "\e368";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-anguished {
    --fa: "\e369";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-anxious-sweat {
    --fa: "\e36a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-astonished {
    --fa: "\e36b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-confounded {
    --fa: "\e36c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-confused {
    --fa: "\e36d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-cowboy-hat {
    --fa: "\e36e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-disappointed {
    --fa: "\e36f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-disguise {
    --fa: "\e370";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-downcast-sweat {
    --fa: "\e371";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-drooling {
    --fa: "\e372";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-expressionless {
    --fa: "\e373";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-eyes-xmarks {
    --fa: "\e374";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-fearful {
    --fa: "\e375";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-frown-slight {
    --fa: "\e376";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-glasses {
    --fa: "\e377";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-hand-over-mouth {
    --fa: "\e378";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-hand-yawn {
    --fa: "\e379";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-head-bandage {
    --fa: "\e37a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-hushed {
    --fa: "\e37b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-icicles {
    --fa: "\e37c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-kiss-closed-eyes {
    --fa: "\e37d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-lying {
    --fa: "\e37e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-mask {
    --fa: "\e37f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-monocle {
    --fa: "\e380";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-nauseated {
    --fa: "\e381";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-nose-steam {
    --fa: "\e382";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-party {
    --fa: "\e383";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-pensive {
    --fa: "\e384";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-persevering {
    --fa: "\e385";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-pleading {
    --fa: "\e386";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-pouting {
    --fa: "\e387";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-raised-eyebrow {
    --fa: "\e388";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-relieved {
    --fa: "\e389";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-sad-sweat {
    --fa: "\e38a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-scream {
    --fa: "\e38b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-shush {
    --fa: "\e38c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-sleeping {
    --fa: "\e38d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-sleepy {
    --fa: "\e38e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-halo {
    --fa: "\e38f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-hearts {
    --fa: "\e390";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-horns {
    --fa: "\e391";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-relaxed {
    --fa: "\e392";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-tear {
    --fa: "\e393";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-tongue {
    --fa: "\e394";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-upside-down {
    --fa: "\e395";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smiling-hands {
    --fa: "\e396";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smirking {
    --fa: "\e397";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-sunglasses {
    --fa: "\e398";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-swear {
    --fa: "\e399";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-thermometer {
    --fa: "\e39a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-thinking {
    --fa: "\e39b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-tissue {
    --fa: "\e39c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-tongue-money {
    --fa: "\e39d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-tongue-sweat {
    --fa: "\e39e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-unamused {
    --fa: "\e39f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-vomit {
    --fa: "\e3a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-weary {
    --fa: "\e3a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-woozy {
    --fa: "\e3a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-worried {
    --fa: "\e3a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-zany {
    --fa: "\e3a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-zipper {
    --fa: "\e3a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-lock {
    --fa: "\e3a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-slash {
    --fa: "\e3a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fishing-rod {
    --fa: "\e3a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flying-disc {
    --fa: "\e3a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gallery-thumbnails {
    --fa: "\e3aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-goal-net {
    --fa: "\e3ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-golf-flag-hole {
    --fa: "\e3ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-dividers {
    --fa: "\e3ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hockey-stick-puck {
    --fa: "\e3ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney {
    --fa: "\e3af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home-lg {
    --fa: "\e3af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney-blank {
    --fa: "\e3b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-crack {
    --fa: "\e3b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-medical {
    --fa: "\e3b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-window {
    --fa: "\e3b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-key-skeleton-left-right {
    --fa: "\e3b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lacrosse-stick {
    --fa: "\e3b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lacrosse-stick-ball {
    --fa: "\e3b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mask-snorkel {
    --fa: "\e3b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-bot {
    --fa: "\e3b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-moped {
    --fa: "\e3b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nesting-dolls {
    --fa: "\e3ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-align-bottom {
    --fa: "\e3bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-align-center-horizontal {
    --fa: "\e3bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-align-center-vertical {
    --fa: "\e3bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-align-left {
    --fa: "\e3be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-align-right {
    --fa: "\e3bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-align-top {
    --fa: "\e3c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-objects-column {
    --fa: "\e3c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paperclip-vertical {
    --fa: "\e3c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pinata {
    --fa: "\e3c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pipe-smoking {
    --fa: "\e3c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pool-8-ball {
    --fa: "\e3c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rugby-ball {
    --fa: "\e3c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shirt-long-sleeve {
    --fa: "\e3c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shirt-running {
    --fa: "\e3c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shirt-tank-top {
    --fa: "\e3c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signature-lock {
    --fa: "\e3ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signature-slash {
    --fa: "\e3cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ski-boot {
    --fa: "\e3cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ski-boot-ski {
    --fa: "\e3cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-slot-machine {
    --fa: "\e3ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-teddy-bear {
    --fa: "\e3cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-bolt {
    --fa: "\e3d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-uniform-martial-arts {
    --fa: "\e3d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-chef {
    --fa: "\e3d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hair-buns {
    --fa: "\e3d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-long-to-line {
    --fa: "\e3d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-long-to-line {
    --fa: "\e3d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-down-right {
    --fa: "\e3d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bagel {
    --fa: "\e3d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baguette {
    --fa: "\e3d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blanket-fire {
    --fa: "\e3da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-block-brick {
    --fa: "\e3db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wall-brick {
    --fa: "\e3db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-block-brick-fire {
    --fa: "\e3dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-firewall {
    --fa: "\e3dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-block-question {
    --fa: "\e3dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-scoop {
    --fa: "\e3de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-shaved-ice {
    --fa: "\e3de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-scoops {
    --fa: "\e3df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-spoon {
    --fa: "\e3e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bread-slice-butter {
    --fa: "\e3e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-broccoli {
    --fa: "\e3e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burger-lettuce {
    --fa: "\e3e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-butter {
    --fa: "\e3e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cake-slice {
    --fa: "\e3e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shortcake {
    --fa: "\e3e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-can-food {
    --fa: "\e3e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-candy {
    --fa: "\e3e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-candy-bar {
    --fa: "\e3e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chocolate-bar {
    --fa: "\e3e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-card-club {
    --fa: "\e3e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-card-diamond {
    --fa: "\e3ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-card-heart {
    --fa: "\e3eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-card-spade {
    --fa: "\e3ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cards {
    --fa: "\e3ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-arrow-up {
    --fa: "\e3ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-circle-arrow-down {
    --fa: "\e3ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-circle-arrow-up {
    --fa: "\e3f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-circle-check {
    --fa: "\e3f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-circle-exclamation {
    --fa: "\e3f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-circle-plus {
    --fa: "\e3f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-circle-xmark {
    --fa: "\e3f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cent-sign {
    --fa: "\e3f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chestnut {
    --fa: "\e3f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chopsticks {
    --fa: "\e3f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-quarters {
    --fa: "\e3f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-pull-request-closed {
    --fa: "\e3f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-pull-request-draft {
    --fa: "\e3fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coin-blank {
    --fa: "\e3fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coin-front {
    --fa: "\e3fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coin-vertical {
    --fa: "\e3fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-corner {
    --fa: "\e3fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crab {
    --fa: "\e3ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-soft-serve {
    --fa: "\e400";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-creemee {
    --fa: "\e400";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cucumber {
    --fa: "\e401";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cupcake {
    --fa: "\e402";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-custard {
    --fa: "\e403";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dash {
    --fa: "\e404";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minus-large {
    --fa: "\e404";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diamond-exclamation {
    --fa: "\e405";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-donut {
    --fa: "\e406";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-doughnut {
    --fa: "\e406";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-from-dotted-line {
    --fa: "\e407";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-to-dotted-line {
    --fa: "\e408";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-awesome {
    --fa: "\e409";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gave-dandy {
    --fa: "\e409";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-falafel {
    --fa: "\e40a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flatbread {
    --fa: "\e40b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flatbread-stuffed {
    --fa: "\e40c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fondue-pot {
    --fa: "\e40d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-garlic {
    --fa: "\e40e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip-dots {
    --fa: "\e410";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip-dots-vertical {
    --fa: "\e411";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h5 {
    --fa: "\e412";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h6 {
    --fa: "\e413";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hammer-crash {
    --fa: "\e414";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hashtag-lock {
    --fa: "\e415";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-check {
    --fa: "\e416";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-exclamation {
    --fa: "\e417";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-honey-pot {
    --fa: "\e418";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hose {
    --fa: "\e419";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hose-reel {
    --fa: "\e41a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-clock {
    --fa: "\e41b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hundred-points {
    --fa: "\e41c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-100 {
    --fa: "\e41c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-leafy-green {
    --fa: "\e41d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-long-to-line {
    --fa: "\e41e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-light-emergency {
    --fa: "\e41f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-light-emergency-on {
    --fa: "\e420";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lobster {
    --fa: "\e421";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-a {
    --fa: "\e422";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-hashtag {
    --fa: "\e423";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lollipop {
    --fa: "\e424";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lollypop {
    --fa: "\e424";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mushroom {
    --fa: "\e425";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-check {
    --fa: "\e426";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-onion {
    --fa: "\e427";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-page {
    --fa: "\e428";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-page-caret-down {
    --fa: "\e429";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-caret-down {
    --fa: "\e429";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-page-caret-up {
    --fa: "\e42a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-caret-up {
    --fa: "\e42a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pan-food {
    --fa: "\e42b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pan-frying {
    --fa: "\e42c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pancakes {
    --fa: "\e42d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-panel-ews {
    --fa: "\e42e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-panel-fire {
    --fa: "\e42f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peanut {
    --fa: "\e430";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peanuts {
    --fa: "\e431";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pepper {
    --fa: "\e432";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-to-door {
    --fa: "\e433";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-intercom {
    --fa: "\e434";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pickleball {
    --fa: "\e435";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pipe-circle-check {
    --fa: "\e436";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pipe-collar {
    --fa: "\e437";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pipe-section {
    --fa: "\e438";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pipe-valve {
    --fa: "\e439";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plate-utensils {
    --fa: "\e43b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus-minus {
    --fa: "\e43c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pompebled {
    --fa: "\e43d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-popsicle {
    --fa: "\e43e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pot-food {
    --fa: "\e43f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-potato {
    --fa: "\e440";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pretzel {
    --fa: "\e441";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pump {
    --fa: "\e442";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-puzzle {
    --fa: "\e443";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-long-to-line {
    --fa: "\e444";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sailboat {
    --fa: "\e445";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-salt-shaker {
    --fa: "\e446";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-section {
    --fa: "\e447";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shrimp {
    --fa: "\e448";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shutters {
    --fa: "\e449";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sportsball {
    --fa: "\e44b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sprinkler-ceiling {
    --fa: "\e44c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-a-lock {
    --fa: "\e44d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-quarters {
    --fa: "\e44e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-ring {
    --fa: "\e44f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-squid {
    --fa: "\e450";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tamale {
    --fa: "\e451";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tank-water {
    --fa: "\e452";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train-track {
    --fa: "\e453";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train-tunnel {
    --fa: "\e454";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-down-right {
    --fa: "\e455";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-from-dotted-line {
    --fa: "\e456";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-to-dotted-line {
    --fa: "\e457";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-doctor-hair {
    --fa: "\e458";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-doctor-hair-long {
    --fa: "\e459";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hair {
    --fa: "\e45a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hair-long {
    --fa: "\e45b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hair-mullet {
    --fa: "\e45c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-business-front {
    --fa: "\e45c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-party-back {
    --fa: "\e45c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trian-balbot {
    --fa: "\e45c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-nurse-hair {
    --fa: "\e45d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-nurse-hair-long {
    --fa: "\e45e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-tie-hair {
    --fa: "\e45f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-tie-hair-long {
    --fa: "\e460";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-vneck {
    --fa: "\e461";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-vneck-hair {
    --fa: "\e462";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-vneck-hair-long {
    --fa: "\e463";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utensils-slash {
    --fa: "\e464";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vent-damper {
    --fa: "\e465";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-waffle {
    --fa: "\e466";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-00 {
    --fa: "\e467";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-apartment {
    --fa: "\e468";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bird {
    --fa: "\e469";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-block {
    --fa: "\e46a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-soft-serve {
    --fa: "\e46b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brazilian-real-sign {
    --fa: "\e46c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cabin {
    --fa: "\e46d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-circle-exclamation {
    --fa: "\e46e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-circle-minus {
    --fa: "\e46f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-circle-plus {
    --fa: "\e470";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-circle-user {
    --fa: "\e471";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-lines-pen {
    --fa: "\e472";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-simple {
    --fa: "\e473";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-simple-horizontal {
    --fa: "\e474";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-cells {
    --fa: "\e475";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-next {
    --fa: "\e476";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-predecessor {
    --fa: "\e477";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-previous {
    --fa: "\e478";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-subtask {
    --fa: "\e479";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-successor {
    --fa: "\e47a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth-oceania {
    --fa: "\e47b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-oceania {
    --fa: "\e47b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-beam-hand-over-mouth {
    --fa: "\e47c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-clouds {
    --fa: "\e47d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-diagonal-mouth {
    --fa: "\e47e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-dotted {
    --fa: "\e47f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-exhaling {
    --fa: "\e480";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-hand-peeking {
    --fa: "\e481";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-holding-back-tears {
    --fa: "\e482";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-melting {
    --fa: "\e483";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-saluting {
    --fa: "\e484";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-spiral-eyes {
    --fa: "\e485";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fort {
    --fa: "\e486";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-blank {
    --fa: "\e487";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home-blank {
    --fa: "\e487";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-kanban {
    --fa: "\e488";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-list {
    --fa: "\e489";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sushi {
    --fa: "\e48a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nigiri {
    --fa: "\e48a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sushi-roll {
    --fa: "\e48b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-maki-roll {
    --fa: "\e48b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-makizushi {
    --fa: "\e48b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-album-circle-plus {
    --fa: "\e48c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-album-circle-user {
    --fa: "\e48d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-album-collection-circle-plus {
    --fa: "\e48e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-album-collection-circle-user {
    --fa: "\e48f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bug-slash {
    --fa: "\e490";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-exclamation {
    --fa: "\e491";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-question {
    --fa: "\e492";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-info {
    --fa: "\e493";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-plus {
    --fa: "\e494";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-frame {
    --fa: "\e495";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-circle-bolt {
    --fa: "\e496";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-circle-minus {
    --fa: "\e497";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-circle-plus {
    --fa: "\e498";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-memo-circle-info {
    --fa: "\e49a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-object-exclude {
    --fa: "\e49c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-object-intersect {
    --fa: "\e49d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-object-subtract {
    --fa: "\e49e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-object-union {
    --fa: "\e49f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-nib-slash {
    --fa: "\e4a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-history {
    --fa: "\e4a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-history-circle-plus {
    --fa: "\e4a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-history-circle-user {
    --fa: "\e4a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shop-lock {
    --fa: "\e4a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-store-lock {
    --fa: "\e4a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-robot-xmarks {
    --fa: "\e4a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-virus-covid {
    --fa: "\e4a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-virus-covid-slash {
    --fa: "\e4a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-anchor-circle-check {
    --fa: "\e4aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-anchor-circle-exclamation {
    --fa: "\e4ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-anchor-circle-xmark {
    --fa: "\e4ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-anchor-lock {
    --fa: "\e4ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-to-arc {
    --fa: "\e4ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-up-across-line {
    --fa: "\e4af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-up-lock {
    --fa: "\e4b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-from-arc {
    --fa: "\e4b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-to-arc {
    --fa: "\e4b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-to-city {
    --fa: "\e4b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-arc {
    --fa: "\e4b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-ground-water {
    --fa: "\e4b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-water-pump {
    --fa: "\e4b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-right-dots {
    --fa: "\e4b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-down-to-line {
    --fa: "\e4b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-down-to-people {
    --fa: "\e4b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-left-right-to-line {
    --fa: "\e4ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-spin {
    --fa: "\e4bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-split-up-and-left {
    --fa: "\e4bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-to-circle {
    --fa: "\e4bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-to-dot {
    --fa: "\e4be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-to-eye {
    --fa: "\e4bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-turn-right {
    --fa: "\e4c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-turn-to-dots {
    --fa: "\e4c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-up-to-line {
    --fa: "\e4c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bore-hole {
    --fa: "\e4c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bottle-droplet {
    --fa: "\e4c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bottle-water {
    --fa: "\e4c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-food {
    --fa: "\e4c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boxes-packing {
    --fa: "\e4c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge {
    --fa: "\e4c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge-circle-check {
    --fa: "\e4c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge-circle-exclamation {
    --fa: "\e4ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge-circle-xmark {
    --fa: "\e4cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge-lock {
    --fa: "\e4cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge-suspension {
    --fa: "\e4cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bridge-water {
    --fa: "\e4ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bucket {
    --fa: "\e4cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bugs {
    --fa: "\e4d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-circle-arrow-right {
    --fa: "\e4d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-circle-check {
    --fa: "\e4d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-circle-exclamation {
    --fa: "\e4d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-circle-xmark {
    --fa: "\e4d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-flag {
    --fa: "\e4d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-lock {
    --fa: "\e4d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-ngo {
    --fa: "\e4d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-shield {
    --fa: "\e4d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-un {
    --fa: "\e4d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-user {
    --fa: "\e4da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-wheat {
    --fa: "\e4db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burst {
    --fa: "\e4dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-on {
    --fa: "\e4dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-tunnel {
    --fa: "\e4de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cards-blank {
    --fa: "\e4df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-child-combatant {
    --fa: "\e4e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-child-rifle {
    --fa: "\e4e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-children {
    --fa: "\e4e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-nodes {
    --fa: "\e4e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-question {
    --fa: "\e4e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-showers-water {
    --fa: "\e4e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer {
    --fa: "\e4e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cubes-stacked {
    --fa: "\e4e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-to-bracket {
    --fa: "\e4e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-circle-check {
    --fa: "\e4e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-explosion {
    --fa: "\e4e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ferry {
    --fa: "\e4ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-exclamation {
    --fa: "\e4eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-minus {
    --fa: "\e4ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-question {
    --fa: "\e4ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-shield {
    --fa: "\e4f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-burner {
    --fa: "\e4f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fish-fins {
    --fa: "\e4f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask-vial {
    --fa: "\e4f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-water {
    --fa: "\e4f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-water-droplet {
    --fa: "\e4f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-group-arrows-rotate {
    --fa: "\e4f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-hand {
    --fa: "\e4f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handcuffs {
    --fa: "\e4f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-bound {
    --fa: "\e4f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-holding-child {
    --fa: "\e4fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-holding-circle {
    --fa: "\e4fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle-bolt {
    --fa: "\e4fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle-check {
    --fa: "\e4fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle-exclamation {
    --fa: "\e4fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle-minus {
    --fa: "\e4ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle-plus {
    --fa: "\e500";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle-xmark {
    --fa: "\e501";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-helicopter-symbol {
    --fa: "\e502";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-helmet-un {
    --fa: "\e503";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-image {
    --fa: "\e504";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-vertical-nft {
    --fa: "\e505";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-vertical-nft-slanted {
    --fa: "\e505";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hill-avalanche {
    --fa: "\e507";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hill-rockslide {
    --fa: "\e508";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-circle-check {
    --fa: "\e509";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-circle-exclamation {
    --fa: "\e50a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-circle-xmark {
    --fa: "\e50b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-fire {
    --fa: "\e50c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-flag {
    --fa: "\e50d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-flood-water {
    --fa: "\e50e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-flood-water-circle-arrow-right {
    --fa: "\e50f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-lock {
    --fa: "\e510";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-medical-circle-check {
    --fa: "\e511";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-medical-circle-exclamation {
    --fa: "\e512";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-medical-circle-xmark {
    --fa: "\e513";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-medical-flag {
    --fa: "\e514";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-tsunami {
    --fa: "\e515";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jar {
    --fa: "\e516";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jar-wheat {
    --fa: "\e517";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jet-fighter-up {
    --fa: "\e518";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jug-detergent {
    --fa: "\e519";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kitchen-set {
    --fa: "\e51a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-land-mine-on {
    --fa: "\e51b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-landmark-flag {
    --fa: "\e51c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-file {
    --fa: "\e51d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lines-leaning {
    --fa: "\e51e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-pin-lock {
    --fa: "\e51f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-locust {
    --fa: "\e520";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-arrow-right {
    --fa: "\e521";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-chart {
    --fa: "\e522";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-and-venus-burst {
    --fa: "\e523";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mask-ventilator {
    --fa: "\e524";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mattress-pillow {
    --fa: "\e525";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-merge {
    --fa: "\e526";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-retro {
    --fa: "\e527";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-transfer {
    --fa: "\e528";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-trend-up {
    --fa: "\e529";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-wheat {
    --fa: "\e52a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mosquito {
    --fa: "\e52b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mosquito-net {
    --fa: "\e52c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mound {
    --fa: "\e52d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mountain-city {
    --fa: "\e52e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mountain-sun {
    --fa: "\e52f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nfc-symbol {
    --fa: "\e531";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-oil-well {
    --fa: "\e532";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-group {
    --fa: "\e533";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-line {
    --fa: "\e534";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-pulling {
    --fa: "\e535";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-robbery {
    --fa: "\e536";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-roof {
    --fa: "\e537";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-arrow-down-to-line {
    --fa: "\e538";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-arrow-up-from-line {
    --fa: "\e539";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-breastfeeding {
    --fa: "\e53a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-burst {
    --fa: "\e53b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-cane {
    --fa: "\e53c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-chalkboard {
    --fa: "\e53d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-circle-check {
    --fa: "\e53e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-circle-exclamation {
    --fa: "\e53f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-circle-minus {
    --fa: "\e540";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-circle-plus {
    --fa: "\e541";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-circle-question {
    --fa: "\e542";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-circle-xmark {
    --fa: "\e543";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dress-burst {
    --fa: "\e544";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-drowning {
    --fa: "\e545";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-falling {
    --fa: "\e546";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-falling-burst {
    --fa: "\e547";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-half-dress {
    --fa: "\e548";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-harassing {
    --fa: "\e549";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-military-pointing {
    --fa: "\e54a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-military-rifle {
    --fa: "\e54b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-military-to-person {
    --fa: "\e54c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-rays {
    --fa: "\e54d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-rifle {
    --fa: "\e54e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-shelter {
    --fa: "\e54f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-walking-arrow-loop-left {
    --fa: "\e551";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-walking-arrow-right {
    --fa: "\e552";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-walking-dashed-line-arrow-right {
    --fa: "\e553";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-walking-luggage {
    --fa: "\e554";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-circle-check {
    --fa: "\e555";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-circle-exclamation {
    --fa: "\e556";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-circle-xmark {
    --fa: "\e557";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-lock {
    --fa: "\e558";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plate-wheat {
    --fa: "\e55a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug-circle-bolt {
    --fa: "\e55b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug-circle-check {
    --fa: "\e55c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug-circle-exclamation {
    --fa: "\e55d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug-circle-minus {
    --fa: "\e55e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug-circle-plus {
    --fa: "\e55f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug-circle-xmark {
    --fa: "\e560";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ranking-star {
    --fa: "\e561";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-barrier {
    --fa: "\e562";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-bridge {
    --fa: "\e563";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-circle-check {
    --fa: "\e564";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-circle-exclamation {
    --fa: "\e565";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-circle-xmark {
    --fa: "\e566";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-lock {
    --fa: "\e567";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road-spikes {
    --fa: "\e568";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rug {
    --fa: "\e569";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sack-xmark {
    --fa: "\e56a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school-circle-check {
    --fa: "\e56b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school-circle-exclamation {
    --fa: "\e56c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school-circle-xmark {
    --fa: "\e56d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school-flag {
    --fa: "\e56e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school-lock {
    --fa: "\e56f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sheet-plastic {
    --fa: "\e571";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-cat {
    --fa: "\e572";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-dog {
    --fa: "\e573";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-heart {
    --fa: "\e574";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-quartered {
    --fa: "\e575";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-nfi {
    --fa: "\e576";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-person-confined {
    --fa: "\e577";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-virus {
    --fa: "\e578";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-staff-snake {
    --fa: "\e579";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rod-asclepius {
    --fa: "\e579";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rod-snake {
    --fa: "\e579";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-staff-aesculapius {
    --fa: "\e579";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun-plant-wilt {
    --fa: "\e57a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tarp {
    --fa: "\e57b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tarp-droplet {
    --fa: "\e57c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent {
    --fa: "\e57d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent-arrow-down-to-line {
    --fa: "\e57e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent-arrow-left-right {
    --fa: "\e57f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent-arrow-turn-left {
    --fa: "\e580";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent-arrows-down {
    --fa: "\e581";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tents {
    --fa: "\e582";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-portable {
    --fa: "\e583";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilets-portable {
    --fa: "\e584";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tower-cell {
    --fa: "\e585";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tower-observation {
    --fa: "\e586";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-city {
    --fa: "\e587";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trillium {
    --fa: "\e588";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trowel {
    --fa: "\e589";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trowel-bricks {
    --fa: "\e58a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-arrow-right {
    --fa: "\e58b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-droplet {
    --fa: "\e58c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-field {
    --fa: "\e58d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-field-un {
    --fa: "\e58e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-plane {
    --fa: "\e58f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-from-bracket {
    --fa: "\e590";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-between-lines {
    --fa: "\e591";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-line {
    --fa: "\e592";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-rays {
    --fa: "\e593";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-rectangle {
    --fa: "\e594";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-viewfinder {
    --fa: "\e595";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vial-circle-check {
    --fa: "\e596";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vial-virus {
    --fa: "\e597";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheat-awn-circle-exclamation {
    --fa: "\e598";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-worm {
    --fa: "\e599";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmarks-lines {
    --fa: "\e59a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark-large {
    --fa: "\e59b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-child-dress {
    --fa: "\e59c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-child-reaching {
    --fa: "\e59d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus-large {
    --fa: "\e59e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crosshairs-simple {
    --fa: "\e59f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-check {
    --fa: "\e5a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-circle-xmark {
    --fa: "\e5a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gamepad-modern {
    --fa: "\e5a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gamepad-alt {
    --fa: "\e5a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grill {
    --fa: "\e5a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grill-fire {
    --fa: "\e5a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grill-hot {
    --fa: "\e5a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-cfl {
    --fa: "\e5a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-cfl-on {
    --fa: "\e5a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mouse-field {
    --fa: "\e5a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-through-window {
    --fa: "\e5a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plant-wilt {
    --fa: "\e5aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ring-diamond {
    --fa: "\e5ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stapler {
    --fa: "\e5af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toggle-large-off {
    --fa: "\e5b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toggle-large-on {
    --fa: "\e5b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-check {
    --fa: "\e5b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-xmark {
    --fa: "\e5b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train-tram {
    --fa: "\e5b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-buoy {
    --fa: "\e5b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-buoy-mooring {
    --fa: "\e5b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diamond-half {
    --fa: "\e5b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diamond-half-stroke {
    --fa: "\e5b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-game-console-handheld-crank {
    --fa: "\e5b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-interrobang {
    --fa: "\e5ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mailbox-flag-up {
    --fa: "\e5bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mustache {
    --fa: "\e5bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-nose {
    --fa: "\e5bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-arrow-right {
    --fa: "\e5be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pickaxe {
    --fa: "\e5bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-prescription-bottle-pill {
    --fa: "\e5c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowflake-droplets {
    --fa: "\e5c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-dashed-circle-plus {
    --fa: "\e5c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tricycle {
    --fa: "\e5c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tricycle-adult {
    --fa: "\e5c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-magnifying-glass {
    --fa: "\e5c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-heart {
    --fa: "\e5c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-heart {
    --fa: "\e5c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-mechanical {
    --fa: "\e5ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skeleton-ribs {
    --fa: "\e5cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-billboard {
    --fa: "\e5cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-euro {
    --fa: "\e5ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-sterling {
    --fa: "\e5cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-yen {
    --fa: "\e5d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-broom-wide {
    --fa: "\e5d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wreath-laurel {
    --fa: "\e5d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-quarter-stroke {
    --fa: "\e5d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-three-quarters-stroke {
    --fa: "\e5d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-webhook {
    --fa: "\e5d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sparkle {
    --fa: "\e5d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-line-up-down {
    --fa: "\e5d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-mixed-up-circle-currency {
    --fa: "\e5d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-mixed-up-circle-dollar {
    --fa: "\e5d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-round {
    --fa: "\e5da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-round-2 {
    --fa: "\e5db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-round-2-plus {
    --fa: "\e5dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-round-4 {
    --fa: "\e5dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-round-5 {
    --fa: "\e5de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-progress {
    --fa: "\e5df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-left-large {
    --fa: "\e5e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-users {
    --fa: "\e5e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-chart-up {
    --fa: "\e5e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-chart-up-circle-currency {
    --fa: "\e5e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-display-chart-up-circle-dollar {
    --fa: "\e5e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-binary {
    --fa: "\e5e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gear-code {
    --fa: "\e5e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gear-complex {
    --fa: "\e5e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gear-complex-code {
    --fa: "\e5eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-doc {
    --fa: "\e5ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-zip {
    --fa: "\e5ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask-gear {
    --fa: "\e5f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bag-seedling {
    --fa: "\e5f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bin-bottles {
    --fa: "\e5f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bin-bottles-recycle {
    --fa: "\e5f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bin-recycle {
    --fa: "\e5f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-conveyor-belt-arm {
    --fa: "\e5f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jug-bottle {
    --fa: "\e5fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-gear {
    --fa: "\e5fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dinosaur {
    --fa: "\e5fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-running-fast {
    --fa: "\e5ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circles-overlap {
    --fa: "\e600";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-binary {
    --fa: "\e601";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chf-sign {
    --fa: "\e602";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-group-simple {
    --fa: "\e603";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-pie-simple-circle-currency {
    --fa: "\e604";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-pie-simple-circle-dollar {
    --fa: "\e605";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-beach {
    --fa: "\e606";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dress-fairy {
    --fa: "\e607";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-fairy {
    --fa: "\e608";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swap {
    --fa: "\e609";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swap-arrows {
    --fa: "\e60a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angles-up-down {
    --fa: "\e60d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-pointer {
    --fa: "\e60e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-subtitles {
    --fa: "\e60f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-subtitles-slash {
    --fa: "\e610";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-gear {
    --fa: "\e611";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lighthouse {
    --fa: "\e612";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-raccoon {
    --fa: "\e613";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-from-arc {
    --fa: "\e614";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-from-arc {
    --fa: "\e615";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-to-arc {
    --fa: "\e616";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-to-arc {
    --fa: "\e617";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-magnifying-glass {
    --fa: "\e61c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-memo {
    --fa: "\e61e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hammer-brush {
    --fa: "\e620";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-circle-dollar {
    --fa: "\e621";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-landmark-magnifying-glass {
    --fa: "\e622";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-post {
    --fa: "\e624";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-posts {
    --fa: "\e625";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-posts-wrench {
    --fa: "\e626";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent-double-peak {
    --fa: "\e627";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-utensils {
    --fa: "\e628";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-t-rex {
    --fa: "\e629";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spinner-scale {
    --fa: "\e62a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-ring {
    --fa: "\e62c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-rotate-reverse {
    --fa: "\e630";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-reverse {
    --fa: "\e631";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-left {
    --fa: "\e632";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-left-down {
    --fa: "\e633";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-left-up {
    --fa: "\e634";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-right {
    --fa: "\e635";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-left {
    --fa: "\e636";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-left-down {
    --fa: "\e637";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-left-up {
    --fa: "\e638";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-right {
    --fa: "\e639";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-arrow-up {
    --fa: "\e63a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket-perforated {
    --fa: "\e63e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tickets-perforated {
    --fa: "\e63f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cannon {
    --fa: "\e642";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-court-sport {
    --fa: "\e643";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-eps {
    --fa: "\e644";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-gif {
    --fa: "\e645";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-jpg {
    --fa: "\e646";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-mov {
    --fa: "\e647";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-mp3 {
    --fa: "\e648";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-mp4 {
    --fa: "\e649";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-ppt {
    --fa: "\e64a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-svg {
    --fa: "\e64b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-vector {
    --fa: "\e64c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-xls {
    --fa: "\e64d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-check {
    --fa: "\e64e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-kanban {
    --fa: "\e64f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bag-shopping-minus {
    --fa: "\e650";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bag-shopping-plus {
    --fa: "\e651";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basket-shopping-minus {
    --fa: "\e652";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basket-shopping-plus {
    --fa: "\e653";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-xml {
    --fa: "\e654";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bulldozer {
    --fa: "\e655";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-excavator {
    --fa: "\e656";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-ladder {
    --fa: "\e657";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tickets {
    --fa: "\e658";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tickets-simple {
    --fa: "\e659";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-fire {
    --fa: "\e65a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wave {
    --fa: "\e65b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-waves-sine {
    --fa: "\e65d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-arrows-rotate {
    --fa: "\e65e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-music {
    --fa: "\e65f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-play {
    --fa: "\e660";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-waveform {
    --fa: "\e661";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music-magnifying-glass {
    --fa: "\e662";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reflect-horizontal {
    --fa: "\e664";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reflect-vertical {
    --fa: "\e665";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-png {
    --fa: "\e666";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-from-bracket {
    --fa: "\e667";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-from-bracket {
    --fa: "\e668";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-to-bracket {
    --fa: "\e669";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-to-bracket {
    --fa: "\e66a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-from-bracket {
    --fa: "\e66b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-from-bracket {
    --fa: "\e66c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-to-bracket {
    --fa: "\e66d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-to-bracket {
    --fa: "\e66e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reflect-both {
    --fa: "\e66f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-cad {
    --fa: "\e672";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bottle-baby {
    --fa: "\e673";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-column-lock {
    --fa: "\e678";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-lock {
    --fa: "\e679";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-row-lock {
    --fa: "\e67a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-wifi {
    --fa: "\e67d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-wifi-circle-wifi {
    --fa: "\e67e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-wifi-group {
    --fa: "\e67e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-gf {
    --fa: "\e67f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ant {
    --fa: "\e680";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caduceus {
    --fa: "\e681";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-web-awesome {
    --fa: "\e682";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-wifi {
    --fa: "\e685";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hydra {
    --fa: "\e686";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-message {
    --fa: "\e687";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octopus {
    --fa: "\e688";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-beard-bolt {
    --fa: "\e689";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hoodie {
    --fa: "\e68a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diamonds-4 {
    --fa: "\e68b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumbtack-slash {
    --fa: "\e68f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumb-tack-slash {
    --fa: "\e68f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-column-unlock {
    --fa: "\e690";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-row-unlock {
    --fa: "\e691";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-unlock {
    --fa: "\e692";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-diagram {
    --fa: "\e695";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-nodes {
    --fa: "\e696";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-fragment {
    --fa: "\e697";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-half-dashed {
    --fa: "\e698";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-nodes {
    --fa: "\e699";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-nodes-bolt {
    --fa: "\e69a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-binary {
    --fa: "\e69b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-carpool {
    --fa: "\e69c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-people {
    --fa: "\e69c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-sine {
    --fa: "\e69d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-fft {
    --fa: "\e69e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circles-overlap-3 {
    --fa: "\e6a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pronoun {
    --fa: "\e6a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-progress {
    --fa: "\e6a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-progress-empty {
    --fa: "\e6a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-progress-full {
    --fa: "\e6a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-progress-half {
    --fa: "\e6a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-progress-quarter {
    --fa: "\e6a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-progress-three-quarters {
    --fa: "\e6a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-2-minus {
    --fa: "\e6aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-round-2-minus {
    --fa: "\e6ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-columns {
    --fa: "\e6ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-header {
    --fa: "\e6ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-header-lock {
    --fa: "\e6ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-header-unlock {
    --fa: "\e6af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-rows {
    --fa: "\e6b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-equals {
    --fa: "\e6b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-equals {
    --fa: "\e6b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-equals {
    --fa: "\e6b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-minus {
    --fa: "\e6b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-plus {
    --fa: "\e6b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-equals {
    --fa: "\e6b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-long-to-line {
    --fa: "\e6b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-arrow-right {
    --fa: "\e6b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-from-dotted-line {
    --fa: "\e6b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-to-dotted-line {
    --fa: "\e6ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-from-dotted-line {
    --fa: "\e6bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-to-dotted-line {
    --fa: "\e6bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-long-to-line {
    --fa: "\e6bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-direction-left-right {
    --fa: "\e6be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-direction-up-down {
    --fa: "\e6bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-long-to-line {
    --fa: "\e6c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-up {
    --fa: "\e6c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-from-dotted-line {
    --fa: "\e6c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-to-dotted-line {
    --fa: "\e6c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-from-dotted-line {
    --fa: "\e6c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-to-dotted-line {
    --fa: "\e6c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-long-to-line {
    --fa: "\e6c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-barn {
    --fa: "\e6c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-house {
    --fa: "\e6c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-garage-empty {
    --fa: "\e6c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-unlock {
    --fa: "\e6ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school-unlock {
    --fa: "\e6cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stadium {
    --fa: "\e6cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tent-circus {
    --fa: "\e6cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ball-yarn {
    --fa: "\e6ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bra {
    --fa: "\e6cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-briefs {
    --fa: "\e6d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dress {
    --fa: "\e6d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jeans {
    --fa: "\e6d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jeans-straight {
    --fa: "\e6d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-panties {
    --fa: "\e6d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pants {
    --fa: "\e6d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pants-straight {
    --fa: "\e6d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shirt-jersey {
    --fa: "\e6d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shoe {
    --fa: "\e6d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shorts {
    --fa: "\e6d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sneaker {
    --fa: "\e6da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-share-nodes {
    --fa: "\e6db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-dot {
    --fa: "\e6dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-waveform {
    --fa: "\e6dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-circle-user {
    --fa: "\e6de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-dot {
    --fa: "\e6df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-waveform {
    --fa: "\e6e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-connection {
    --fa: "\e6e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-waveform {
    --fa: "\e6e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-postage-stamp {
    --fa: "\e6e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-florin {
    --fa: "\e6e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-ruble {
    --fa: "\e6e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-chf {
    --fa: "\e6e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-lira {
    --fa: "\e6e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-norwegian-krone-sign {
    --fa: "\e6e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-renminbi {
    --fa: "\e6e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-peseta {
    --fa: "\e6ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-brazilian-real {
    --fa: "\e6eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-won {
    --fa: "\e6ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-cruzeiro {
    --fa: "\e6ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-currency {
    --fa: "\e6ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-hryvnia {
    --fa: "\e6ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-cent {
    --fa: "\e6f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-brazilian-real {
    --fa: "\e6f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-bitcoin {
    --fa: "\e6f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-peruvian-soles {
    --fa: "\e6f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-litecoin {
    --fa: "\e6f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-indian-rupee {
    --fa: "\e6f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-lira {
    --fa: "\e6f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-litecoin {
    --fa: "\e6f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-ruble {
    --fa: "\e6f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-malaysian-ringgit {
    --fa: "\e6f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-malaysian-ringgit-sign {
    --fa: "\e6fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-manat {
    --fa: "\e6fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-colon {
    --fa: "\e6fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-kip {
    --fa: "\e6fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-australian-dollar-sign {
    --fa: "\e6fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-peso {
    --fa: "\e6ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-polish-zloty {
    --fa: "\e700";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-bangladeshi-taka {
    --fa: "\e701";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-mill {
    --fa: "\e702";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-shekel {
    --fa: "\e703";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-manat {
    --fa: "\e704";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peruvian-soles-sign {
    --fa: "\e705";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-rupiah {
    --fa: "\e706";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-norwegian-krone {
    --fa: "\e707";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-naira {
    --fa: "\e708";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-won {
    --fa: "\e709";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-mill {
    --fa: "\e70a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-polish-zloty-sign {
    --fa: "\e70b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-currency {
    --fa: "\e70c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-kip {
    --fa: "\e70d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-guarani {
    --fa: "\e70e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-dong {
    --fa: "\e70f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-hryvnia {
    --fa: "\e710";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-tugrik {
    --fa: "\e711";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-rupiah {
    --fa: "\e712";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-sterling {
    --fa: "\e713";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-rupee {
    --fa: "\e714";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-rupee {
    --fa: "\e715";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-peruvian-soles {
    --fa: "\e716";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-florin {
    --fa: "\e717";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-australian-dollar {
    --fa: "\e718";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-baht {
    --fa: "\e719";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-peso {
    --fa: "\e71a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-austral {
    --fa: "\e71b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-swedish-krona {
    --fa: "\e71c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-lari {
    --fa: "\e71d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circleapore-dollar {
    --fa: "\e71e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-turkish-lira {
    --fa: "\e71f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-danish-krone-sign {
    --fa: "\e720";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-franc {
    --fa: "\e721";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-cruzeiro {
    --fa: "\e722";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-dong {
    --fa: "\e723";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-yen {
    --fa: "\e724";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-tenge {
    --fa: "\e725";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-austral {
    --fa: "\e726";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-eurozone {
    --fa: "\e727";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-tugrik {
    --fa: "\e728";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-cedi {
    --fa: "\e729";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-cent {
    --fa: "\e72a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-currency-sign {
    --fa: "\e72b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-chf {
    --fa: "\e72c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-baht {
    --fa: "\e72d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signapore-dollar-sign {
    --fa: "\e72e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-franc {
    --fa: "\e72f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-australian-dollar {
    --fa: "\e730";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-tenge {
    --fa: "\e731";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-euro {
    --fa: "\e732";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-squareapore-dollar {
    --fa: "\e733";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-indian-rupee {
    --fa: "\e734";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-shekel {
    --fa: "\e735";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-polish-zloty {
    --fa: "\e736";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-bitcoin {
    --fa: "\e737";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-norwegian-krone {
    --fa: "\e738";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-turkish-lira {
    --fa: "\e739";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-colon {
    --fa: "\e73a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-guarani {
    --fa: "\e73b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-renminbi-sign {
    --fa: "\e73c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-renminbi {
    --fa: "\e73d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swedish-krona-sign {
    --fa: "\e73e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-lari {
    --fa: "\e73f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eurozone-sign {
    --fa: "\e740";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-peseta {
    --fa: "\e741";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-cedi {
    --fa: "\e742";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-swedish-krona {
    --fa: "\e743";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-bangladeshi-taka {
    --fa: "\e744";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-eurozone {
    --fa: "\e745";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-danish-krone {
    --fa: "\e746";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-danish-krone {
    --fa: "\e747";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-malaysian-ringgit {
    --fa: "\e748";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-naira {
    --fa: "\e749";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-arrow-down {
    --fa: "\e74b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clone-plus {
    --fa: "\e74c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paintbrush-fine-slash {
    --fa: "\e74d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paintbrush-slash {
    --fa: "\e74e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-line {
    --fa: "\e74f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-slider-circle {
    --fa: "\e750";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumbtack-angle {
    --fa: "\e751";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumbtack-angle-slash {
    --fa: "\e752";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-open-lines {
    --fa: "\e753";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-spine {
    --fa: "\e754";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bookmark-plus {
    --fa: "\e755";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-clock {
    --fa: "\e756";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-exclamation {
    --fa: "\e757";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-ban {
    --fa: "\e758";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-notes-sticky {
    --fa: "\e759";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-capsule {
    --fa: "\e75a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear-circle-checkmark {
    --fa: "\e75b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear-triangle-exclamation {
    --fa: "\e75c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear-waveform {
    --fa: "\e75d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-circuit {
    --fa: "\e75e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-speak {
    --fa: "\e75f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-signal-meter {
    --fa: "\e760";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spine {
    --fa: "\e761";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vial-vertical {
    --fa: "\e762";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bin {
    --fa: "\e763";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seat {
    --fa: "\e764";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seats {
    --fa: "\e765";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-circle-ellipsis {
    --fa: "\e766";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-clock {
    --fa: "\e767";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-shutter {
    --fa: "\e768";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-music {
    --fa: "\e769";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-stack {
    --fa: "\e76b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-circle-arrow-down {
    --fa: "\e76c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-circle-check {
    --fa: "\e76d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-circle-plus {
    --fa: "\e76e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-circle-xmark {
    --fa: "\e76f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-music {
    --fa: "\e770";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-stack {
    --fa: "\e771";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-4k {
    --fa: "\e772";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-high-dynamic-range {
    --fa: "\e773";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-video-on-demand {
    --fa: "\e774";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-viewfinder {
    --fa: "\e775";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-down-to-line {
    --fa: "\e776";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-question {
    --fa: "\e777";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gas-pump-left {
    --fa: "\e778";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gas-pump-right {
    --fa: "\e779";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-arrow-slash {
    --fa: "\e77a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-airplay-audio {
    --fa: "\e77b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-headphones-slash {
    --fa: "\e77c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-circle-plus {
    --fa: "\e77d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-circle-xmark {
    --fa: "\e77e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-open-captioning {
    --fa: "\e77f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-play-flip {
    --fa: "\e780";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-microphone {
    --fa: "\e781";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trombone {
    --fa: "\e782";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-arms-raised {
    --fa: "\e783";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-basketball {
    --fa: "\e784";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-carry-empty {
    --fa: "\e785";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-golfing {
    --fa: "\e786";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-limbs-wide {
    --fa: "\e787";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-seat-window {
    --fa: "\e788";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-soccer {
    --fa: "\e789";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-swimming-pool {
    --fa: "\e78a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-swimming-water {
    --fa: "\e78b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-water-arms-raised {
    --fa: "\e78c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-waving {
    --fa: "\e78d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-slash {
    --fa: "\e78e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hearts {
    --fa: "\e78f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pentagon {
    --fa: "\e790";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-tall {
    --fa: "\e791";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-half {
    --fa: "\e792";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-half-stroke {
    --fa: "\e793";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-arrow-down {
    --fa: "\e794";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-arrow-down-arrow-up {
    --fa: "\e795";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-arrow-down-magnifying-glass {
    --fa: "\e796";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-isometric {
    --fa: "\e797";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-isometric-tape {
    --fa: "\e798";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-qrcode-read {
    --fa: "\e799";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shop-24 {
    --fa: "\e79a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-store-24 {
    --fa: "\e79b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-shaking {
    --fa: "\e79c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-shaking-horizontal {
    --fa: "\e79d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-shaking-vertical {
    --fa: "\e79e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-check {
    --fa: "\e79f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-exclamation {
    --fa: "\e7a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-minus {
    --fa: "\e7a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-moon {
    --fa: "\e7a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-plus {
    --fa: "\e7a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-question {
    --fa: "\e7a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-user {
    --fa: "\e7a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-circle-xmark {
    --fa: "\e7a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user-clock {
    --fa: "\e7a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-beard {
    --fa: "\e7a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-chef-hair-long {
    --fa: "\e7a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-circle-minus {
    --fa: "\e7aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-circle-plus {
    --fa: "\e7ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-dashed {
    --fa: "\e7ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-doctor-hair-mullet {
    --fa: "\e7ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hat-tie {
    --fa: "\e7ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hat-tie-magnifying-glass {
    --fa: "\e7af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-key {
    --fa: "\e7b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-message {
    --fa: "\e7b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-microphone {
    --fa: "\e7b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-pilot-hair-long {
    --fa: "\e7b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-pilot-tie-hair-long {
    --fa: "\e7b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-police-hair-long {
    --fa: "\e7b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-police-tie-hair-long {
    --fa: "\e7b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-question {
    --fa: "\e7b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-sith {
    --fa: "\e7b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-tie-hair-mullet {
    --fa: "\e7b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-vneck-hair-mullet {
    --fa: "\e7ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-flying {
    --fa: "\e7bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-landing-gear {
    --fa: "\e7bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rocket-vertical {
    --fa: "\e7bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seat-airline-window {
    --fa: "\e7be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shuttle-space-vertical {
    --fa: "\e7bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-key {
    --fa: "\e7c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-siren {
    --fa: "\e7c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-siren-on {
    --fa: "\e7c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scooter {
    --fa: "\e7c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowmobile-blank {
    --fa: "\e7c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stair-car {
    --fa: "\e7c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-suv {
    --fa: "\e7c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unicycle {
    --fa: "\e7c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-van {
    --fa: "\e7c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-moon-star {
    --fa: "\e7c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rainbow-half {
    --fa: "\e7ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-slash {
    --fa: "\e7cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dialpad {
    --fa: "\e7cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer-mouse-button-left {
    --fa: "\e7cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer-mouse-button-right {
    --fa: "\e7ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dot {
    --fa: "\e7d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-arrow-left {
    --fa: "\e7d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-arrow-right {
    --fa: "\e7d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wireless {
    --fa: "\e7df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-moon {
    --fa: "\e7e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-meditating {
    --fa: "\e7e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baseball-bat {
    --fa: "\e7e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hockey-stick {
    --fa: "\e7e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-down-left {
    --fa: "\e7e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-down-right {
    --fa: "\e7e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-left-down {
    --fa: "\e7e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-left-up {
    --fa: "\e7ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-right-down {
    --fa: "\e7eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-right-up {
    --fa: "\e7ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-up-left {
    --fa: "\e7ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-u-turn-up-right {
    --fa: "\e7ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-down-left {
    --fa: "\e7ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-down-right {
    --fa: "\e7f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-left-down {
    --fa: "\e7f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn {
    --fa: "\e7f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-left-up {
    --fa: "\e7f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-right-down {
    --fa: "\e7f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-right-up {
    --fa: "\e7f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-up-left {
    --fa: "\e7f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-u-turn-up-right {
    --fa: "\e7f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triple-chevrons-down {
    --fa: "\e7f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triple-chevrons-left {
    --fa: "\e7f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triple-chevrons-right {
    --fa: "\e7f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triple-chevrons-up {
    --fa: "\e7fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-aiff {
    --fa: "\e7fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-odf {
    --fa: "\e7fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-tex {
    --fa: "\e7fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-wav {
    --fa: "\e7fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-droplet-plus {
    --fa: "\e800";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-star {
    --fa: "\e801";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transmission {
    --fa: "\e802";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alarm-minus {
    --fa: "\e803";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-brackets-curly {
    --fa: "\e804";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-midi {
    --fa: "\e805";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-midi {
    --fa: "\e806";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-non-binary {
    --fa: "\e807";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-beta {
    --fa: "\e808";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-user {
    --fa: "\e809";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spiral {
    --fa: "\e80a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-picture-in-picture {
    --fa: "\e80b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-half-horizontal {
    --fa: "\e80c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-half-stroke-horizontal {
    --fa: "\e80d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-half-horizontal {
    --fa: "\e80e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-half-stroke-horizontal {
    --fa: "\e80f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ship-large {
    --fa: "\e810";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-butterfly {
    --fa: "\e811";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-rotate {
    --fa: "\e813";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-rotate-reverse {
    --fa: "\e814";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-slash {
    --fa: "\e815";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-vibrate {
    --fa: "\e816";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-vibrate-slash {
    --fa: "\e817";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-almost-equal-to {
    --fa: "\e818";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sneaker-running {
    --fa: "\e819";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-horseshoe {
    --fa: "\e81a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-single-quote-left {
    --fa: "\e81b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-single-quote-right {
    --fa: "\e81c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bus-side {
    --fa: "\e81d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bus-stop {
    --fa: "\e81e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train-stop {
    --fa: "\e81f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-septagon {
    --fa: "\e820";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heptagon {
    --fa: "\e820";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-martini-glass-empty {
    --fa: "\f000";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-martini {
    --fa: "\f000";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music {
    --fa: "\f001";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass {
    --fa: "\f002";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-search {
    --fa: "\f002";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart {
    --fa: "\f004";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star {
    --fa: "\f005";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user {
    --fa: "\f007";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-alt {
    --fa: "\f007";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-large {
    --fa: "\f007";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film {
    --fa: "\f008";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-alt {
    --fa: "\f008";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-simple {
    --fa: "\f008";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells-large {
    --fa: "\f009";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-th-large {
    --fa: "\f009";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-cells {
    --fa: "\f00a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-th {
    --fa: "\f00a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-list {
    --fa: "\f00b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-th-list {
    --fa: "\f00b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-check {
    --fa: "\f00c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark {
    --fa: "\f00d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-close {
    --fa: "\f00d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-multiply {
    --fa: "\f00d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-remove {
    --fa: "\f00d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times {
    --fa: "\f00d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-plus {
    --fa: "\f00e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-search-plus {
    --fa: "\f00e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-minus {
    --fa: "\f010";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-search-minus {
    --fa: "\f010";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-power-off {
    --fa: "\f011";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal {
    --fa: "\f012";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-5 {
    --fa: "\f012";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-perfect {
    --fa: "\f012";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gear {
    --fa: "\f013";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cog {
    --fa: "\f013";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house {
    --fa: "\f015";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home {
    --fa: "\f015";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home-alt {
    --fa: "\f015";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home-lg-alt {
    --fa: "\f015";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock {
    --fa: "\f017";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-four {
    --fa: "\f017";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-road {
    --fa: "\f018";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-download {
    --fa: "\f019";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inbox {
    --fa: "\f01c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-rotate-right {
    --fa: "\f01e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-rotate {
    --fa: "\f01e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-rotate-forward {
    --fa: "\f01e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-redo {
    --fa: "\f01e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-rotate {
    --fa: "\f021";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-refresh {
    --fa: "\f021";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sync {
    --fa: "\f021";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-list {
    --fa: "\f022";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-alt {
    --fa: "\f022";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock {
    --fa: "\f023";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flag {
    --fa: "\f024";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-headphones {
    --fa: "\f025";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-headphones-alt {
    --fa: "\f025";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-headphones-simple {
    --fa: "\f025";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-off {
    --fa: "\f026";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-low {
    --fa: "\f027";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-down {
    --fa: "\f027";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-high {
    --fa: "\f028";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-up {
    --fa: "\f028";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-qrcode {
    --fa: "\f029";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-barcode {
    --fa: "\f02a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tag {
    --fa: "\f02b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tags {
    --fa: "\f02c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book {
    --fa: "\f02d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bookmark {
    --fa: "\f02e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-print {
    --fa: "\f02f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera {
    --fa: "\f030";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-alt {
    --fa: "\f030";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-font {
    --fa: "\f031";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bold {
    --fa: "\f032";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-italic {
    --fa: "\f033";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-text-height {
    --fa: "\f034";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-text-width {
    --fa: "\f035";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-align-left {
    --fa: "\f036";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-align-center {
    --fa: "\f037";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-align-right {
    --fa: "\f038";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-align-justify {
    --fa: "\f039";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list {
    --fa: "\f03a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-squares {
    --fa: "\f03a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-outdent {
    --fa: "\f03b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dedent {
    --fa: "\f03b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-indent {
    --fa: "\f03c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video {
    --fa: "\f03d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-camera {
    --fa: "\f03d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image {
    --fa: "\f03e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-pin {
    --fa: "\f041";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker {
    --fa: "\f041";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-half-stroke {
    --fa: "\f042";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-adjust {
    --fa: "\f042";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-droplet {
    --fa: "\f043";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tint {
    --fa: "\f043";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-to-square {
    --fa: "\f044";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-edit {
    --fa: "\f044";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-up-down-left-right {
    --fa: "\f047";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows {
    --fa: "\f047";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-backward-step {
    --fa: "\f048";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-step-backward {
    --fa: "\f048";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-backward-fast {
    --fa: "\f049";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fast-backward {
    --fa: "\f049";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-backward {
    --fa: "\f04a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-play {
    --fa: "\f04b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pause {
    --fa: "\f04c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stop {
    --fa: "\f04d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-forward {
    --fa: "\f04e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-forward-fast {
    --fa: "\f050";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fast-forward {
    --fa: "\f050";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-forward-step {
    --fa: "\f051";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-step-forward {
    --fa: "\f051";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eject {
    --fa: "\f052";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-left {
    --fa: "\f053";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-right {
    --fa: "\f054";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-plus {
    --fa: "\f055";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus-circle {
    --fa: "\f055";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-minus {
    --fa: "\f056";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minus-circle {
    --fa: "\f056";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-xmark {
    --fa: "\f057";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times-circle {
    --fa: "\f057";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark-circle {
    --fa: "\f057";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-check {
    --fa: "\f058";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-check-circle {
    --fa: "\f058";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-question {
    --fa: "\f059";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-question-circle {
    --fa: "\f059";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-info {
    --fa: "\f05a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-info-circle {
    --fa: "\f05a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crosshairs {
    --fa: "\f05b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ban {
    --fa: "\f05e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cancel {
    --fa: "\f05e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left {
    --fa: "\f060";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right {
    --fa: "\f061";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up {
    --fa: "\f062";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down {
    --fa: "\f063";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share {
    --fa: "\f064";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mail-forward {
    --fa: "\f064";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-expand {
    --fa: "\f065";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compress {
    --fa: "\f066";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minus {
    --fa: "\f068";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-subtract {
    --fa: "\f068";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-exclamation {
    --fa: "\f06a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exclamation-circle {
    --fa: "\f06a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gift {
    --fa: "\f06b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-leaf {
    --fa: "\f06c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire {
    --fa: "\f06d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye {
    --fa: "\f06e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-slash {
    --fa: "\f070";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triangle-exclamation {
    --fa: "\f071";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exclamation-triangle {
    --fa: "\f071";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-warning {
    --fa: "\f071";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane {
    --fa: "\f072";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-days {
    --fa: "\f073";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-alt {
    --fa: "\f073";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shuffle {
    --fa: "\f074";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-random {
    --fa: "\f074";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment {
    --fa: "\f075";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnet {
    --fa: "\f076";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-up {
    --fa: "\f077";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-down {
    --fa: "\f078";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-retweet {
    --fa: "\f079";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-shopping {
    --fa: "\f07a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shopping-cart {
    --fa: "\f07a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder {
    --fa: "\f07b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-blank {
    --fa: "\f07b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-open {
    --fa: "\f07c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-up-down {
    --fa: "\f07d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-v {
    --fa: "\f07d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-left-right {
    --fa: "\f07e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-h {
    --fa: "\f07e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-bar {
    --fa: "\f080";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bar-chart {
    --fa: "\f080";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-retro {
    --fa: "\f083";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-key {
    --fa: "\f084";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gears {
    --fa: "\f085";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cogs {
    --fa: "\f085";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comments {
    --fa: "\f086";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-half {
    --fa: "\f089";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-from-bracket {
    --fa: "\f08b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-out {
    --fa: "\f08b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumbtack {
    --fa: "\f08d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumb-tack {
    --fa: "\f08d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-right-from-square {
    --fa: "\f08e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-external-link {
    --fa: "\f08e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-to-bracket {
    --fa: "\f090";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-in {
    --fa: "\f090";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trophy {
    --fa: "\f091";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-upload {
    --fa: "\f093";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lemon {
    --fa: "\f094";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone {
    --fa: "\f095";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-phone {
    --fa: "\f098";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-square {
    --fa: "\f098";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unlock {
    --fa: "\f09c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-credit-card {
    --fa: "\f09d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-credit-card-alt {
    --fa: "\f09d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rss {
    --fa: "\f09e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-feed {
    --fa: "\f09e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hard-drive {
    --fa: "\f0a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hdd {
    --fa: "\f0a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bullhorn {
    --fa: "\f0a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-certificate {
    --fa: "\f0a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-point-right {
    --fa: "\f0a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-point-left {
    --fa: "\f0a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-point-up {
    --fa: "\f0a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-point-down {
    --fa: "\f0a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-left {
    --fa: "\f0a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-circle-left {
    --fa: "\f0a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-right {
    --fa: "\f0a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-circle-right {
    --fa: "\f0a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-up {
    --fa: "\f0aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-circle-up {
    --fa: "\f0aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-arrow-down {
    --fa: "\f0ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-circle-down {
    --fa: "\f0ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe {
    --fa: "\f0ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wrench {
    --fa: "\f0ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-check {
    --fa: "\f0ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tasks {
    --fa: "\f0ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-filter {
    --fa: "\f0b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-briefcase {
    --fa: "\f0b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-down-left-right {
    --fa: "\f0b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-alt {
    --fa: "\f0b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users {
    --fa: "\f0c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-link {
    --fa: "\f0c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chain {
    --fa: "\f0c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud {
    --fa: "\f0c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask {
    --fa: "\f0c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scissors {
    --fa: "\f0c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cut {
    --fa: "\f0c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-copy {
    --fa: "\f0c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paperclip {
    --fa: "\f0c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-floppy-disk {
    --fa: "\f0c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-save {
    --fa: "\f0c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square {
    --fa: "\f0c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bars {
    --fa: "\f0c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-navicon {
    --fa: "\f0c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-ul {
    --fa: "\f0ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-dots {
    --fa: "\f0ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-ol {
    --fa: "\f0cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-1-2 {
    --fa: "\f0cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-numeric {
    --fa: "\f0cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-strikethrough {
    --fa: "\f0cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-underline {
    --fa: "\f0cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table {
    --fa: "\f0ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wand-magic {
    --fa: "\f0d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magic {
    --fa: "\f0d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck {
    --fa: "\f0d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill {
    --fa: "\f0d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-down {
    --fa: "\f0d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-up {
    --fa: "\f0d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-left {
    --fa: "\f0d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-right {
    --fa: "\f0da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-columns {
    --fa: "\f0db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-columns {
    --fa: "\f0db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort {
    --fa: "\f0dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unsorted {
    --fa: "\f0dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-down {
    --fa: "\f0dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-desc {
    --fa: "\f0dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-up {
    --fa: "\f0de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-asc {
    --fa: "\f0de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope {
    --fa: "\f0e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-rotate-left {
    --fa: "\f0e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-rotate {
    --fa: "\f0e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-rotate-back {
    --fa: "\f0e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-rotate-backward {
    --fa: "\f0e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-undo {
    --fa: "\f0e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gavel {
    --fa: "\f0e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-legal {
    --fa: "\f0e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bolt {
    --fa: "\f0e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-zap {
    --fa: "\f0e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sitemap {
    --fa: "\f0e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-umbrella {
    --fa: "\f0e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paste {
    --fa: "\f0ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-clipboard {
    --fa: "\f0ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb {
    --fa: "\f0eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-arrow-left {
    --fa: "\f0ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exchange {
    --fa: "\f0ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-arrow-down {
    --fa: "\f0ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-download {
    --fa: "\f0ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-download-alt {
    --fa: "\f0ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-arrow-up {
    --fa: "\f0ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-upload {
    --fa: "\f0ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-upload-alt {
    --fa: "\f0ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-doctor {
    --fa: "\f0f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-md {
    --fa: "\f0f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stethoscope {
    --fa: "\f0f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-suitcase {
    --fa: "\f0f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell {
    --fa: "\f0f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mug-saucer {
    --fa: "\f0f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffee {
    --fa: "\f0f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hospital {
    --fa: "\f0f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hospital-alt {
    --fa: "\f0f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hospital-wide {
    --fa: "\f0f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-medical {
    --fa: "\f0f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ambulance {
    --fa: "\f0f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-suitcase-medical {
    --fa: "\f0fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-medkit {
    --fa: "\f0fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jet-fighter {
    --fa: "\f0fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fighter-jet {
    --fa: "\f0fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-beer-mug-empty {
    --fa: "\f0fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-beer {
    --fa: "\f0fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-h {
    --fa: "\f0fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h-square {
    --fa: "\f0fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-plus {
    --fa: "\f0fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus-square {
    --fa: "\f0fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angles-left {
    --fa: "\f100";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-double-left {
    --fa: "\f100";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angles-right {
    --fa: "\f101";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-double-right {
    --fa: "\f101";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angles-up {
    --fa: "\f102";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-double-up {
    --fa: "\f102";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angles-down {
    --fa: "\f103";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-double-down {
    --fa: "\f103";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-left {
    --fa: "\f104";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-right {
    --fa: "\f105";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-up {
    --fa: "\f106";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angle-down {
    --fa: "\f107";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop {
    --fa: "\f109";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-button {
    --fa: "\f10a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-button {
    --fa: "\f10b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quote-left {
    --fa: "\f10d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quote-left-alt {
    --fa: "\f10d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quote-right {
    --fa: "\f10e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quote-right-alt {
    --fa: "\f10e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spinner {
    --fa: "\f110";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle {
    --fa: "\f111";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile {
    --fa: "\f118";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smile {
    --fa: "\f118";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-frown {
    --fa: "\f119";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-frown {
    --fa: "\f119";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-meh {
    --fa: "\f11a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meh {
    --fa: "\f11a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gamepad {
    --fa: "\f11b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-keyboard {
    --fa: "\f11c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flag-checkered {
    --fa: "\f11e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-terminal {
    --fa: "\f120";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code {
    --fa: "\f121";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reply-all {
    --fa: "\f122";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mail-reply-all {
    --fa: "\f122";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-arrow {
    --fa: "\f124";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crop {
    --fa: "\f125";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-branch {
    --fa: "\f126";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-link-slash {
    --fa: "\f127";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chain-broken {
    --fa: "\f127";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chain-slash {
    --fa: "\f127";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unlink {
    --fa: "\f127";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-info {
    --fa: "\f129";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-superscript {
    --fa: "\f12b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-subscript {
    --fa: "\f12c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eraser {
    --fa: "\f12d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-puzzle-piece {
    --fa: "\f12e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone {
    --fa: "\f130";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-slash {
    --fa: "\f131";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield {
    --fa: "\f132";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-blank {
    --fa: "\f132";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar {
    --fa: "\f133";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-extinguisher {
    --fa: "\f134";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rocket {
    --fa: "\f135";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-chevron-left {
    --fa: "\f137";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-circle-left {
    --fa: "\f137";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-chevron-right {
    --fa: "\f138";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-circle-right {
    --fa: "\f138";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-chevron-up {
    --fa: "\f139";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-circle-up {
    --fa: "\f139";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-chevron-down {
    --fa: "\f13a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-circle-down {
    --fa: "\f13a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-anchor {
    --fa: "\f13d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unlock-keyhole {
    --fa: "\f13e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unlock-alt {
    --fa: "\f13e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bullseye {
    --fa: "\f140";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis {
    --fa: "\f141";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-h {
    --fa: "\f141";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-vertical {
    --fa: "\f142";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-v {
    --fa: "\f142";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-rss {
    --fa: "\f143";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rss-square {
    --fa: "\f143";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-play {
    --fa: "\f144";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-play-circle {
    --fa: "\f144";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket {
    --fa: "\f145";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-minus {
    --fa: "\f146";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minus-square {
    --fa: "\f146";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-up {
    --fa: "\f148";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-level-up {
    --fa: "\f148";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-turn-down {
    --fa: "\f149";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-level-down {
    --fa: "\f149";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-check {
    --fa: "\f14a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-check-square {
    --fa: "\f14a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-pen {
    --fa: "\f14b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-square {
    --fa: "\f14b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-square {
    --fa: "\f14b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-up-right {
    --fa: "\f14c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-external-link-square {
    --fa: "\f14c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share-from-square {
    --fa: "\f14d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share-square {
    --fa: "\f14d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compass {
    --fa: "\f14e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-caret-down {
    --fa: "\f150";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-square-down {
    --fa: "\f150";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-caret-up {
    --fa: "\f151";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-square-up {
    --fa: "\f151";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-caret-right {
    --fa: "\f152";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-square-right {
    --fa: "\f152";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-euro-sign {
    --fa: "\f153";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eur {
    --fa: "\f153";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-euro {
    --fa: "\f153";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sterling-sign {
    --fa: "\f154";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gbp {
    --fa: "\f154";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pound-sign {
    --fa: "\f154";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rupee-sign {
    --fa: "\f156";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rupee {
    --fa: "\f156";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-yen-sign {
    --fa: "\f157";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cny {
    --fa: "\f157";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jpy {
    --fa: "\f157";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rmb {
    --fa: "\f157";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-yen {
    --fa: "\f157";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruble-sign {
    --fa: "\f158";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rouble {
    --fa: "\f158";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rub {
    --fa: "\f158";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruble {
    --fa: "\f158";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-won-sign {
    --fa: "\f159";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-krw {
    --fa: "\f159";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-won {
    --fa: "\f159";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file {
    --fa: "\f15b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-lines {
    --fa: "\f15c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-alt {
    --fa: "\f15c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-text {
    --fa: "\f15c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-a-z {
    --fa: "\f15d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alpha-asc {
    --fa: "\f15d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alpha-down {
    --fa: "\f15d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-a-z {
    --fa: "\f15e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alpha-up {
    --fa: "\f15e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-wide-short {
    --fa: "\f160";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-amount-asc {
    --fa: "\f160";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-amount-down {
    --fa: "\f160";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-wide-short {
    --fa: "\f161";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-amount-up {
    --fa: "\f161";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-1-9 {
    --fa: "\f162";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-numeric-asc {
    --fa: "\f162";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-numeric-down {
    --fa: "\f162";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-1-9 {
    --fa: "\f163";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-numeric-up {
    --fa: "\f163";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumbs-up {
    --fa: "\f164";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thumbs-down {
    --fa: "\f165";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-long {
    --fa: "\f175";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-down {
    --fa: "\f175";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-long {
    --fa: "\f176";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-up {
    --fa: "\f176";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-long {
    --fa: "\f177";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-left {
    --fa: "\f177";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-long {
    --fa: "\f178";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-right {
    --fa: "\f178";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dress {
    --fa: "\f182";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-female {
    --fa: "\f182";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person {
    --fa: "\f183";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-male {
    --fa: "\f183";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun {
    --fa: "\f185";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-moon {
    --fa: "\f186";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-archive {
    --fa: "\f187";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-archive {
    --fa: "\f187";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bug {
    --fa: "\f188";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-caret-left {
    --fa: "\f191";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-square-left {
    --fa: "\f191";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-dot {
    --fa: "\f192";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dot-circle {
    --fa: "\f192";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheelchair {
    --fa: "\f193";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lira-sign {
    --fa: "\f195";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shuttle-space {
    --fa: "\f197";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-space-shuttle {
    --fa: "\f197";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-envelope {
    --fa: "\f199";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-square {
    --fa: "\f199";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building-columns {
    --fa: "\f19c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bank {
    --fa: "\f19c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-institution {
    --fa: "\f19c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-museum {
    --fa: "\f19c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-university {
    --fa: "\f19c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-graduation-cap {
    --fa: "\f19d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mortar-board {
    --fa: "\f19d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-language {
    --fa: "\f1ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fax {
    --fa: "\f1ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-building {
    --fa: "\f1ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-child {
    --fa: "\f1ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paw {
    --fa: "\f1b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cube {
    --fa: "\f1b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cubes {
    --fa: "\f1b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-recycle {
    --fa: "\f1b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car {
    --fa: "\f1b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-automobile {
    --fa: "\f1b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-taxi {
    --fa: "\f1ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cab {
    --fa: "\f1ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree {
    --fa: "\f1bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-database {
    --fa: "\f1c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-pdf {
    --fa: "\f1c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-word {
    --fa: "\f1c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-excel {
    --fa: "\f1c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-powerpoint {
    --fa: "\f1c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-image {
    --fa: "\f1c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-zipper {
    --fa: "\f1c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-archive {
    --fa: "\f1c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-audio {
    --fa: "\f1c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-video {
    --fa: "\f1c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-code {
    --fa: "\f1c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-life-ring {
    --fa: "\f1cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-notch {
    --fa: "\f1ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paper-plane {
    --fa: "\f1d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clock-rotate-left {
    --fa: "\f1da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-history {
    --fa: "\f1da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heading {
    --fa: "\f1dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-header {
    --fa: "\f1dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paragraph {
    --fa: "\f1dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders {
    --fa: "\f1de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders-h {
    --fa: "\f1de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share-nodes {
    --fa: "\f1e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share-alt {
    --fa: "\f1e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-share-nodes {
    --fa: "\f1e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share-alt-square {
    --fa: "\f1e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bomb {
    --fa: "\f1e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-futbol {
    --fa: "\f1e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-futbol-ball {
    --fa: "\f1e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-soccer-ball {
    --fa: "\f1e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tty {
    --fa: "\f1e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-teletype {
    --fa: "\f1e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-binoculars {
    --fa: "\f1e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plug {
    --fa: "\f1e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-newspaper {
    --fa: "\f1ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi {
    --fa: "\f1eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-3 {
    --fa: "\f1eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-strong {
    --fa: "\f1eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calculator {
    --fa: "\f1ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-slash {
    --fa: "\f1f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash {
    --fa: "\f1f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-copyright {
    --fa: "\f1f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-dropper {
    --fa: "\f1fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-dropper-empty {
    --fa: "\f1fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eyedropper {
    --fa: "\f1fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paintbrush {
    --fa: "\f1fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paint-brush {
    --fa: "\f1fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cake-candles {
    --fa: "\f1fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-birthday-cake {
    --fa: "\f1fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cake {
    --fa: "\f1fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-area {
    --fa: "\f1fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-area-chart {
    --fa: "\f1fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-pie {
    --fa: "\f200";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pie-chart {
    --fa: "\f200";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-line {
    --fa: "\f201";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-line-chart {
    --fa: "\f201";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toggle-off {
    --fa: "\f204";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toggle-on {
    --fa: "\f205";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bicycle {
    --fa: "\f206";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bus {
    --fa: "\f207";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-closed-captioning {
    --fa: "\f20a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shekel-sign {
    --fa: "\f20b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ils {
    --fa: "\f20b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shekel {
    --fa: "\f20b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sheqel {
    --fa: "\f20b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sheqel-sign {
    --fa: "\f20b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-plus {
    --fa: "\f217";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-arrow-down {
    --fa: "\f218";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diamond {
    --fa: "\f219";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ship {
    --fa: "\f21a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-secret {
    --fa: "\f21b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-motorcycle {
    --fa: "\f21c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-street-view {
    --fa: "\f21d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-pulse {
    --fa: "\f21e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heartbeat {
    --fa: "\f21e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-venus {
    --fa: "\f221";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars {
    --fa: "\f222";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mercury {
    --fa: "\f223";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-and-venus {
    --fa: "\f224";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transgender {
    --fa: "\f225";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-transgender-alt {
    --fa: "\f225";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-venus-double {
    --fa: "\f226";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-double {
    --fa: "\f227";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-venus-mars {
    --fa: "\f228";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-stroke {
    --fa: "\f229";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-stroke-up {
    --fa: "\f22a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-stroke-v {
    --fa: "\f22a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-stroke-right {
    --fa: "\f22b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mars-stroke-h {
    --fa: "\f22b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-neuter {
    --fa: "\f22c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-genderless {
    --fa: "\f22d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-server {
    --fa: "\f233";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-plus {
    --fa: "\f234";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-xmark {
    --fa: "\f235";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-times {
    --fa: "\f235";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bed {
    --fa: "\f236";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train {
    --fa: "\f238";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-train-subway {
    --fa: "\f239";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-subway {
    --fa: "\f239";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-full {
    --fa: "\f240";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery {
    --fa: "\f240";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-5 {
    --fa: "\f240";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-three-quarters {
    --fa: "\f241";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-4 {
    --fa: "\f241";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-half {
    --fa: "\f242";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-3 {
    --fa: "\f242";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-quarter {
    --fa: "\f243";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-2 {
    --fa: "\f243";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-empty {
    --fa: "\f244";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-0 {
    --fa: "\f244";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-pointer {
    --fa: "\f245";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mouse-pointer {
    --fa: "\f245";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-i-cursor {
    --fa: "\f246";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-object-group {
    --fa: "\f247";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-object-ungroup {
    --fa: "\f248";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-note-sticky {
    --fa: "\f249";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sticky-note {
    --fa: "\f249";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clone {
    --fa: "\f24d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scale-balanced {
    --fa: "\f24e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-balance-scale {
    --fa: "\f24e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-start {
    --fa: "\f251";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-1 {
    --fa: "\f251";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-half {
    --fa: "\f252";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-2 {
    --fa: "\f252";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-end {
    --fa: "\f253";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-3 {
    --fa: "\f253";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass {
    --fa: "\f254";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hourglass-empty {
    --fa: "\f254";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-back-fist {
    --fa: "\f255";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-rock {
    --fa: "\f255";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand {
    --fa: "\f256";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-paper {
    --fa: "\f256";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-scissors {
    --fa: "\f257";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-lizard {
    --fa: "\f258";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-spock {
    --fa: "\f259";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-pointer {
    --fa: "\f25a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-peace {
    --fa: "\f25b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trademark {
    --fa: "\f25c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-registered {
    --fa: "\f25d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tv {
    --fa: "\f26c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-television {
    --fa: "\f26c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tv-alt {
    --fa: "\f26c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-plus {
    --fa: "\f271";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-minus {
    --fa: "\f272";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-xmark {
    --fa: "\f273";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-times {
    --fa: "\f273";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-check {
    --fa: "\f274";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-industry {
    --fa: "\f275";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-pin {
    --fa: "\f276";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signs-post {
    --fa: "\f277";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-signs {
    --fa: "\f277";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map {
    --fa: "\f279";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message {
    --fa: "\f27a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt {
    --fa: "\f27a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-pause {
    --fa: "\f28b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pause-circle {
    --fa: "\f28b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-stop {
    --fa: "\f28d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stop-circle {
    --fa: "\f28d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bag-shopping {
    --fa: "\f290";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shopping-bag {
    --fa: "\f290";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basket-shopping {
    --fa: "\f291";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shopping-basket {
    --fa: "\f291";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bluetooth {
    --fa: "\f293";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-universal-access {
    --fa: "\f29a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-walking-with-cane {
    --fa: "\f29d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blind {
    --fa: "\f29d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-audio-description {
    --fa: "\f29e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-volume {
    --fa: "\f2a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-control-phone {
    --fa: "\f2a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-braille {
    --fa: "\f2a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear-listen {
    --fa: "\f2a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-assistive-listening-systems {
    --fa: "\f2a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-asl-interpreting {
    --fa: "\f2a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-american-sign-language-interpreting {
    --fa: "\f2a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-asl-interpreting {
    --fa: "\f2a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-american-sign-language-interpreting {
    --fa: "\f2a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear-deaf {
    --fa: "\f2a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-deaf {
    --fa: "\f2a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-deafness {
    --fa: "\f2a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hard-of-hearing {
    --fa: "\f2a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands {
    --fa: "\f2a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-language {
    --fa: "\f2a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signing {
    --fa: "\f2a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-low-vision {
    --fa: "\f2a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-low-vision {
    --fa: "\f2a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-font-awesome {
    --fa: "\f2b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-font-awesome-flag {
    --fa: "\f2b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-font-awesome-logo-full {
    --fa: "\f2b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake {
    --fa: "\f2b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake-alt {
    --fa: "\f2b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake-simple {
    --fa: "\f2b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-open {
    --fa: "\f2b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-address-book {
    --fa: "\f2b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-contact-book {
    --fa: "\f2b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-address-card {
    --fa: "\f2bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-contact-card {
    --fa: "\f2bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vcard {
    --fa: "\f2bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-user {
    --fa: "\f2bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-circle {
    --fa: "\f2bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-id-badge {
    --fa: "\f2c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-id-card {
    --fa: "\f2c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drivers-license {
    --fa: "\f2c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-full {
    --fa: "\f2c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-4 {
    --fa: "\f2c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-4 {
    --fa: "\f2c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-full {
    --fa: "\f2c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-three-quarters {
    --fa: "\f2c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-3 {
    --fa: "\f2c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-3 {
    --fa: "\f2c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-three-quarters {
    --fa: "\f2c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-half {
    --fa: "\f2c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-2 {
    --fa: "\f2c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-2 {
    --fa: "\f2c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-half {
    --fa: "\f2c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-quarter {
    --fa: "\f2ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-1 {
    --fa: "\f2ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-1 {
    --fa: "\f2ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-quarter {
    --fa: "\f2ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-empty {
    --fa: "\f2cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-0 {
    --fa: "\f2cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-0 {
    --fa: "\f2cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer-empty {
    --fa: "\f2cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shower {
    --fa: "\f2cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bath {
    --fa: "\f2cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bathtub {
    --fa: "\f2cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-podcast {
    --fa: "\f2ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-maximize {
    --fa: "\f2d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-minimize {
    --fa: "\f2d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-restore {
    --fa: "\f2d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-xmark {
    --fa: "\f2d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times-square {
    --fa: "\f2d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark-square {
    --fa: "\f2d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microchip {
    --fa: "\f2db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowflake {
    --fa: "\f2dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-watch {
    --fa: "\f2e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-slash {
    --fa: "\f2e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fork {
    --fa: "\f2e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utensil-fork {
    --fa: "\f2e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-knife {
    --fa: "\f2e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utensil-knife {
    --fa: "\f2e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spoon {
    --fa: "\f2e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utensil-spoon {
    --fa: "\f2e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fork-knife {
    --fa: "\f2e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utensils-alt {
    --fa: "\f2e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-utensils {
    --fa: "\f2e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cutlery {
    --fa: "\f2e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-dollar {
    --fa: "\f2e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dollar-circle {
    --fa: "\f2e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-usd-circle {
    --fa: "\f2e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-dollar {
    --fa: "\f2e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dollar-square {
    --fa: "\f2e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-usd-square {
    --fa: "\f2e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-left {
    --fa: "\f2ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-back {
    --fa: "\f2ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-backward {
    --fa: "\f2ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-undo-alt {
    --fa: "\f2ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trophy-star {
    --fa: "\f2eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trophy-alt {
    --fa: "\f2eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triangle {
    --fa: "\f2ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can {
    --fa: "\f2ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-alt {
    --fa: "\f2ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-xmark {
    --fa: "\f2ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times-hexagon {
    --fa: "\f2ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark-hexagon {
    --fa: "\f2ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-xmark {
    --fa: "\f2f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times-octagon {
    --fa: "\f2f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark-octagon {
    --fa: "\f2f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate {
    --fa: "\f2f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sync-alt {
    --fa: "\f2f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stopwatch {
    --fa: "\f2f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-exclamation {
    --fa: "\f2f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spade {
    --fa: "\f2f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-from-bracket {
    --fa: "\f2f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-out-alt {
    --fa: "\f2f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-to-bracket {
    --fa: "\f2f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-in-alt {
    --fa: "\f2f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-check {
    --fa: "\f2f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scrubber {
    --fa: "\f2f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-right {
    --fa: "\f2f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-redo-alt {
    --fa: "\f2f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rotate-forward {
    --fa: "\f2f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle {
    --fa: "\f2fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-landscape {
    --fa: "\f2fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-vertical {
    --fa: "\f2fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-portrait {
    --fa: "\f2fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-wide {
    --fa: "\f2fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-question {
    --fa: "\f2fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-question-square {
    --fa: "\f2fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poo {
    --fa: "\f2fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-plus {
    --fa: "\f300";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus-hexagon {
    --fa: "\f300";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-plus {
    --fa: "\f301";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plus-octagon {
    --fa: "\f301";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-images {
    --fa: "\f302";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil {
    --fa: "\f303";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-alt {
    --fa: "\f303";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen {
    --fa: "\f304";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-clip {
    --fa: "\f305";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-alt {
    --fa: "\f305";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon {
    --fa: "\f306";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon-minus {
    --fa: "\f307";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minus-hexagon {
    --fa: "\f307";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-octagon-minus {
    --fa: "\f308";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minus-octagon {
    --fa: "\f308";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-long {
    --fa: "\f309";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-alt-down {
    --fa: "\f309";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-long {
    --fa: "\f30a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-alt-left {
    --fa: "\f30a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-long {
    --fa: "\f30b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-alt-right {
    --fa: "\f30b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-long {
    --fa: "\f30c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-long-arrow-alt-up {
    --fa: "\f30c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-keyhole {
    --fa: "\f30d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-alt {
    --fa: "\f30d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jack-o-lantern {
    --fa: "\f30e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-info {
    --fa: "\f30f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-info-square {
    --fa: "\f30f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inbox-in {
    --fa: "\f310";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inbox-arrow-down {
    --fa: "\f310";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inbox-out {
    --fa: "\f311";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inbox-arrow-up {
    --fa: "\f311";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hexagon {
    --fa: "\f312";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h1 {
    --fa: "\f313";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h2 {
    --fa: "\f314";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h3 {
    --fa: "\f315";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-check {
    --fa: "\f316";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-xmark {
    --fa: "\f317";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-times {
    --fa: "\f317";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-minus {
    --fa: "\f318";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-plus {
    --fa: "\f319";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-exclamation {
    --fa: "\f31a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-pen {
    --fa: "\f31c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-edit {
    --fa: "\f31c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-maximize {
    --fa: "\f31d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-expand-arrows {
    --fa: "\f31d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-maximize {
    --fa: "\f31e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-expand-arrows-alt {
    --fa: "\f31e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-expand-wide {
    --fa: "\f320";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-exclamation {
    --fa: "\f321";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exclamation-square {
    --fa: "\f321";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevrons-down {
    --fa: "\f322";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-double-down {
    --fa: "\f322";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevrons-left {
    --fa: "\f323";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-double-left {
    --fa: "\f323";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevrons-right {
    --fa: "\f324";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-double-right {
    --fa: "\f324";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevrons-up {
    --fa: "\f325";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-double-up {
    --fa: "\f325";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compress-wide {
    --fa: "\f326";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-club {
    --fa: "\f327";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard {
    --fa: "\f328";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-chevron-down {
    --fa: "\f329";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-square-down {
    --fa: "\f329";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-chevron-left {
    --fa: "\f32a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-square-left {
    --fa: "\f32a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-chevron-right {
    --fa: "\f32b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-square-right {
    --fa: "\f32b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-chevron-up {
    --fa: "\f32c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chevron-square-up {
    --fa: "\f32c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-caret-down {
    --fa: "\f32d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-circle-down {
    --fa: "\f32d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-caret-left {
    --fa: "\f32e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-circle-left {
    --fa: "\f32e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-caret-right {
    --fa: "\f330";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-circle-right {
    --fa: "\f330";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-caret-up {
    --fa: "\f331";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caret-circle-up {
    --fa: "\f331";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-pen {
    --fa: "\f333";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-edit {
    --fa: "\f333";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-exclamation {
    --fa: "\f334";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badge {
    --fa: "\f335";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badge-check {
    --fa: "\f336";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-right {
    --fa: "\f337";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-alt-h {
    --fa: "\f337";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-down {
    --fa: "\f338";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-alt-v {
    --fa: "\f338";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-down {
    --fa: "\f339";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-square-down {
    --fa: "\f339";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-left {
    --fa: "\f33a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-square-left {
    --fa: "\f33a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-right {
    --fa: "\f33b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-square-right {
    --fa: "\f33b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-arrow-up {
    --fa: "\f33c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-square-up {
    --fa: "\f33c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-to-line {
    --fa: "\f33d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-to-bottom {
    --fa: "\f33d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-to-line {
    --fa: "\f33e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-to-left {
    --fa: "\f33e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-to-line {
    --fa: "\f340";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-to-right {
    --fa: "\f340";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-to-line {
    --fa: "\f341";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-to-top {
    --fa: "\f341";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-from-line {
    --fa: "\f342";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-from-bottom {
    --fa: "\f342";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-from-line {
    --fa: "\f343";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-from-left {
    --fa: "\f343";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-left-from-line {
    --fa: "\f344";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-from-right {
    --fa: "\f344";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-from-line {
    --fa: "\f345";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-from-top {
    --fa: "\f345";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-from-line {
    --fa: "\f346";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-from-bottom {
    --fa: "\f346";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-from-line {
    --fa: "\f347";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-from-left {
    --fa: "\f347";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-from-line {
    --fa: "\f348";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-from-right {
    --fa: "\f348";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-from-line {
    --fa: "\f349";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-from-top {
    --fa: "\f349";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-to-line {
    --fa: "\f34a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-to-bottom {
    --fa: "\f34a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left-to-line {
    --fa: "\f34b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-to-left {
    --fa: "\f34b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-to-line {
    --fa: "\f34c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-to-right {
    --fa: "\f34c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-to-line {
    --fa: "\f34d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-to-top {
    --fa: "\f34d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alarm-clock {
    --fa: "\f34e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-down {
    --fa: "\f350";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-square-down {
    --fa: "\f350";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-left {
    --fa: "\f351";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-square-left {
    --fa: "\f351";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-right {
    --fa: "\f352";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-square-right {
    --fa: "\f352";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-up {
    --fa: "\f353";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-square-up {
    --fa: "\f353";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down {
    --fa: "\f354";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-down {
    --fa: "\f354";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-left {
    --fa: "\f355";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-left {
    --fa: "\f355";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right {
    --fa: "\f356";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-right {
    --fa: "\f356";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up {
    --fa: "\f357";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-up {
    --fa: "\f357";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-down {
    --fa: "\f358";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-circle-down {
    --fa: "\f358";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-left {
    --fa: "\f359";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-circle-left {
    --fa: "\f359";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-right {
    --fa: "\f35a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-circle-right {
    --fa: "\f35a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-up {
    --fa: "\f35b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-alt-circle-up {
    --fa: "\f35b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-right-from-square {
    --fa: "\f35d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-external-link-alt {
    --fa: "\f35d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-up-right {
    --fa: "\f360";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-external-link-square-alt {
    --fa: "\f360";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-retweet {
    --fa: "\f361";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-retweet-alt {
    --fa: "\f361";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-right-left {
    --fa: "\f362";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-exchange-alt {
    --fa: "\f362";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-repeat {
    --fa: "\f363";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-repeat {
    --fa: "\f364";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-repeat-alt {
    --fa: "\f364";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-repeat-1 {
    --fa: "\f365";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrows-repeat-1 {
    --fa: "\f366";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-repeat-1-alt {
    --fa: "\f366";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-share-all {
    --fa: "\f367";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-bolt {
    --fa: "\f376";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-slash {
    --fa: "\f377";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-browser {
    --fa: "\f37e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-commit {
    --fa: "\f386";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-code-merge {
    --fa: "\f387";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-credit-card-blank {
    --fa: "\f389";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-credit-card-front {
    --fa: "\f38a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-desktop {
    --fa: "\f390";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-desktop-alt {
    --fa: "\f390";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-stroke {
    --fa: "\f39b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-h-alt {
    --fa: "\f39b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-stroke-vertical {
    --fa: "\f39c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ellipsis-v-alt {
    --fa: "\f39c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gem {
    --fa: "\f3a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-industry-windows {
    --fa: "\f3b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-industry-alt {
    --fa: "\f3b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-down {
    --fa: "\f3be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-level-down-alt {
    --fa: "\f3be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turn-up {
    --fa: "\f3bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-level-up-alt {
    --fa: "\f3bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-open {
    --fa: "\f3c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-keyhole-open {
    --fa: "\f3c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lock-open-alt {
    --fa: "\f3c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-dot {
    --fa: "\f3c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-alt {
    --fa: "\f3c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-lines {
    --fa: "\f3c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-alt {
    --fa: "\f3c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-screen-button {
    --fa: "\f3cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-alt {
    --fa: "\f3cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile {
    --fa: "\f3ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-android {
    --fa: "\f3ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-phone {
    --fa: "\f3ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-screen {
    --fa: "\f3cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mobile-android-alt {
    --fa: "\f3cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-1 {
    --fa: "\f3d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-alt {
    --fa: "\f3d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-slash {
    --fa: "\f3dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-engines {
    --fa: "\f3de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-alt {
    --fa: "\f3de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-portrait {
    --fa: "\f3e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-portrait {
    --fa: "\f3e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reply {
    --fa: "\f3e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mail-reply {
    --fa: "\f3e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-halved {
    --fa: "\f3ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-alt {
    --fa: "\f3ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-sliders {
    --fa: "\f3f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders-h-square {
    --fa: "\f3f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders-up {
    --fa: "\f3f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders-v {
    --fa: "\f3f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-sliders-vertical {
    --fa: "\f3f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sliders-v-square {
    --fa: "\f3f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spinner-third {
    --fa: "\f3f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-screen-button {
    --fa: "\f3fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-alt {
    --fa: "\f3fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet {
    --fa: "\f3fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-android {
    --fa: "\f3fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-screen {
    --fa: "\f3fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-android-alt {
    --fa: "\f3fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket-simple {
    --fa: "\f3ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ticket-alt {
    --fa: "\f3ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-deciduous {
    --fa: "\f400";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-alt {
    --fa: "\f400";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tv-retro {
    --fa: "\f401";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window {
    --fa: "\f40e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-flip {
    --fa: "\f40f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-alt {
    --fa: "\f40f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-xmark {
    --fa: "\f410";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-times {
    --fa: "\f410";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times-rectangle {
    --fa: "\f410";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-window-close {
    --fa: "\f410";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-down-left-and-up-right-to-center {
    --fa: "\f422";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compress-alt {
    --fa: "\f422";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-up-right-and-down-left-from-center {
    --fa: "\f424";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-expand-alt {
    --fa: "\f424";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baseball-bat-ball {
    --fa: "\f432";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baseball {
    --fa: "\f433";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baseball-ball {
    --fa: "\f433";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basketball {
    --fa: "\f434";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basketball-ball {
    --fa: "\f434";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-basketball-hoop {
    --fa: "\f435";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowling-ball {
    --fa: "\f436";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowling-pins {
    --fa: "\f437";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boxing-glove {
    --fa: "\f438";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glove-boxing {
    --fa: "\f438";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess {
    --fa: "\f439";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-bishop {
    --fa: "\f43a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-bishop-piece {
    --fa: "\f43b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-bishop-alt {
    --fa: "\f43b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-board {
    --fa: "\f43c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-clock {
    --fa: "\f43d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-clock-flip {
    --fa: "\f43e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-clock-alt {
    --fa: "\f43e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-king {
    --fa: "\f43f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-king-piece {
    --fa: "\f440";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-king-alt {
    --fa: "\f440";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-knight {
    --fa: "\f441";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-knight-piece {
    --fa: "\f442";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-knight-alt {
    --fa: "\f442";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-pawn {
    --fa: "\f443";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-pawn-piece {
    --fa: "\f444";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-pawn-alt {
    --fa: "\f444";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-queen {
    --fa: "\f445";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-queen-piece {
    --fa: "\f446";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-queen-alt {
    --fa: "\f446";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-rook {
    --fa: "\f447";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-rook-piece {
    --fa: "\f448";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chess-rook-alt {
    --fa: "\f448";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cricket-bat-ball {
    --fa: "\f449";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cricket {
    --fa: "\f449";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-curling-stone {
    --fa: "\f44a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-curling {
    --fa: "\f44a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dumbbell {
    --fa: "\f44b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-field-hockey-stick-ball {
    --fa: "\f44c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-field-hockey {
    --fa: "\f44c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-football {
    --fa: "\f44e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-football-ball {
    --fa: "\f44e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-football-helmet {
    --fa: "\f44f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-golf-ball-tee {
    --fa: "\f450";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-golf-ball {
    --fa: "\f450";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-golf-club {
    --fa: "\f451";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hockey-puck {
    --fa: "\f453";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hockey-sticks {
    --fa: "\f454";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-luchador-mask {
    --fa: "\f455";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-luchador {
    --fa: "\f455";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mask-luchador {
    --fa: "\f455";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flag-pennant {
    --fa: "\f456";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pennant {
    --fa: "\f456";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-broom-ball {
    --fa: "\f458";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quidditch {
    --fa: "\f458";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quidditch-broom-ball {
    --fa: "\f458";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-racquet {
    --fa: "\f45a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shuttlecock {
    --fa: "\f45b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-full {
    --fa: "\f45c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-tennis-paddle-ball {
    --fa: "\f45d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ping-pong-paddle-ball {
    --fa: "\f45d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-table-tennis {
    --fa: "\f45d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tennis-ball {
    --fa: "\f45e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volleyball {
    --fa: "\f45f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volleyball-ball {
    --fa: "\f45f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-whistle {
    --fa: "\f460";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-dots {
    --fa: "\f461";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-allergies {
    --fa: "\f461";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bandage {
    --fa: "\f462";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-band-aid {
    --fa: "\f462";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-barcode {
    --fa: "\f463";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-barcode-alt {
    --fa: "\f463";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-barcode-read {
    --fa: "\f464";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-barcode-scan {
    --fa: "\f465";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box {
    --fa: "\f466";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-check {
    --fa: "\f467";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boxes-stacked {
    --fa: "\f468";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boxes {
    --fa: "\f468";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boxes-alt {
    --fa: "\f468";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-briefcase-medical {
    --fa: "\f469";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-flame-simple {
    --fa: "\f46a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burn {
    --fa: "\f46a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-capsules {
    --fa: "\f46b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-check {
    --fa: "\f46c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-list {
    --fa: "\f46d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-conveyor-belt {
    --fa: "\f46e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-conveyor-belt-boxes {
    --fa: "\f46f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-conveyor-belt-alt {
    --fa: "\f46f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dots-from-line {
    --fa: "\f470";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagnoses {
    --fa: "\f470";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dna {
    --fa: "\f471";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolly {
    --fa: "\f472";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolly-box {
    --fa: "\f472";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolly-empty {
    --fa: "\f473";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-flatbed {
    --fa: "\f474";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolly-flatbed {
    --fa: "\f474";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-flatbed-boxes {
    --fa: "\f475";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolly-flatbed-alt {
    --fa: "\f475";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-flatbed-empty {
    --fa: "\f476";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dolly-flatbed-empty {
    --fa: "\f476";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-medical {
    --fa: "\f477";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-waveform {
    --fa: "\f478";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-medical-alt {
    --fa: "\f478";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kit-medical {
    --fa: "\f479";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-first-aid {
    --fa: "\f479";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-forklift {
    --fa: "\f47a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-box {
    --fa: "\f47b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-holding-diamond {
    --fa: "\f47c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-receiving {
    --fa: "\f47c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-h {
    --fa: "\f47e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hospital-symbol {
    --fa: "\f47e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-id-card-clip {
    --fa: "\f47f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-id-card-alt {
    --fa: "\f47f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shelves {
    --fa: "\f480";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inventory {
    --fa: "\f480";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-notes-medical {
    --fa: "\f481";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pallet {
    --fa: "\f482";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pallet-boxes {
    --fa: "\f483";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-palette-boxes {
    --fa: "\f483";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pallet-alt {
    --fa: "\f483";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pills {
    --fa: "\f484";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-prescription-bottle {
    --fa: "\f485";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-prescription-bottle-medical {
    --fa: "\f486";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-prescription-bottle-alt {
    --fa: "\f486";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bed-pulse {
    --fa: "\f487";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-procedures {
    --fa: "\f487";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scanner-gun {
    --fa: "\f488";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scanner {
    --fa: "\f488";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scanner-keyboard {
    --fa: "\f489";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scanner-touchscreen {
    --fa: "\f48a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-fast {
    --fa: "\f48b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shipping-fast {
    --fa: "\f48b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-clock {
    --fa: "\f48c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shipping-timed {
    --fa: "\f48c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smoking {
    --fa: "\f48d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-syringe {
    --fa: "\f48e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablet-rugged {
    --fa: "\f48f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tablets {
    --fa: "\f490";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thermometer {
    --fa: "\f491";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vial {
    --fa: "\f492";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vials {
    --fa: "\f493";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-warehouse {
    --fa: "\f494";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-warehouse-full {
    --fa: "\f495";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-warehouse-alt {
    --fa: "\f495";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-weight-scale {
    --fa: "\f496";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-weight {
    --fa: "\f496";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-x-ray {
    --fa: "\f497";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blanket {
    --fa: "\f498";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-heart {
    --fa: "\f499";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-taped {
    --fa: "\f49a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-alt {
    --fa: "\f49a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-fragile {
    --fa: "\f49b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-fragile {
    --fa: "\f49b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-wine-glass-crack {
    --fa: "\f49b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-open-full {
    --fa: "\f49c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-full {
    --fa: "\f49c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-heart {
    --fa: "\f49d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-open {
    --fa: "\f49e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-this-way-up {
    --fa: "\f49f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-up {
    --fa: "\f49f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-dollar {
    --fa: "\f4a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-usd {
    --fa: "\f4a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-check {
    --fa: "\f4a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-check {
    --fa: "\f4a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-dots {
    --fa: "\f4a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-dots {
    --fa: "\f4a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-messaging {
    --fa: "\f4a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-pen {
    --fa: "\f4a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-edit {
    --fa: "\f4a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-edit {
    --fa: "\f4a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-exclamation {
    --fa: "\f4a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-exclamation {
    --fa: "\f4a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-lines {
    --fa: "\f4a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-lines {
    --fa: "\f4a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-minus {
    --fa: "\f4a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-minus {
    --fa: "\f4a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-plus {
    --fa: "\f4a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-plus {
    --fa: "\f4a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-slash {
    --fa: "\f4a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-slash {
    --fa: "\f4a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-smile {
    --fa: "\f4aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-smile {
    --fa: "\f4aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-xmark {
    --fa: "\f4ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-times {
    --fa: "\f4ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-times {
    --fa: "\f4ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-check {
    --fa: "\f4ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-dots {
    --fa: "\f4ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-commenting {
    --fa: "\f4ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-pen {
    --fa: "\f4ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-edit {
    --fa: "\f4ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-exclamation {
    --fa: "\f4af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-lines {
    --fa: "\f4b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-minus {
    --fa: "\f4b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-plus {
    --fa: "\f4b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-slash {
    --fa: "\f4b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-smile {
    --fa: "\f4b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-xmark {
    --fa: "\f4b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-times {
    --fa: "\f4b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-messages {
    --fa: "\f4b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comments-alt {
    --fa: "\f4b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-container-storage {
    --fa: "\f4b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-couch {
    --fa: "\f4b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-dollar-to-slot {
    --fa: "\f4b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-donate {
    --fa: "\f4b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dove {
    --fa: "\f4ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wine-glass-crack {
    --fa: "\f4bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fragile {
    --fa: "\f4bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-heart {
    --fa: "\f4bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding {
    --fa: "\f4bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-heart {
    --fa: "\f4be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-seedling {
    --fa: "\f4bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-dollar {
    --fa: "\f4c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-usd {
    --fa: "\f4c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-droplet {
    --fa: "\f4c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-water {
    --fa: "\f4c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-holding {
    --fa: "\f4c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-holding-heart {
    --fa: "\f4c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-heart {
    --fa: "\f4c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-handshake-angle {
    --fa: "\f4c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-helping {
    --fa: "\f4c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-holding-dollar {
    --fa: "\f4c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-usd {
    --fa: "\f4c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-heart {
    --fa: "\f4c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-circle {
    --fa: "\f4c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-heart {
    --fa: "\f4c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-square {
    --fa: "\f4c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-heart {
    --fa: "\f4c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-home-heart {
    --fa: "\f4c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lamp {
    --fa: "\f4ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-leaf-heart {
    --fa: "\f4cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-loveseat {
    --fa: "\f4cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-couch-small {
    --fa: "\f4cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parachute-box {
    --fa: "\f4cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-carry-box {
    --fa: "\f4ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-people-carry {
    --fa: "\f4ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-carry-box {
    --fa: "\f4cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-carry {
    --fa: "\f4cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dolly {
    --fa: "\f4d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-dolly-empty {
    --fa: "\f4d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-plus {
    --fa: "\f4d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-piggy-bank {
    --fa: "\f4d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ramp-loading {
    --fa: "\f4d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ribbon {
    --fa: "\f4d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-route {
    --fa: "\f4d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-seedling {
    --fa: "\f4d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sprout {
    --fa: "\f4d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign-hanging {
    --fa: "\f4d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sign {
    --fa: "\f4d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-wink {
    --fa: "\f4da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smile-wink {
    --fa: "\f4da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tape {
    --fa: "\f4db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-container {
    --fa: "\f4dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-ramp-couch {
    --fa: "\f4dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-couch {
    --fa: "\f4dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-ramp-box {
    --fa: "\f4de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-loading {
    --fa: "\f4de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-moving {
    --fa: "\f4df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-ramp {
    --fa: "\f4e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-plus {
    --fa: "\f4e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-slash {
    --fa: "\f4e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wine-glass {
    --fa: "\f4e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-astronaut {
    --fa: "\f4fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-check {
    --fa: "\f4fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-clock {
    --fa: "\f4fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-gear {
    --fa: "\f4fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-cog {
    --fa: "\f4fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-pen {
    --fa: "\f4ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-edit {
    --fa: "\f4ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-group {
    --fa: "\f500";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-friends {
    --fa: "\f500";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-graduate {
    --fa: "\f501";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-lock {
    --fa: "\f502";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-minus {
    --fa: "\f503";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-ninja {
    --fa: "\f504";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-shield {
    --fa: "\f505";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-slash {
    --fa: "\f506";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-alt-slash {
    --fa: "\f506";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-large-slash {
    --fa: "\f506";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-tag {
    --fa: "\f507";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-tie {
    --fa: "\f508";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-gear {
    --fa: "\f509";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-cog {
    --fa: "\f509";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scale-unbalanced {
    --fa: "\f515";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-balance-scale-left {
    --fa: "\f515";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scale-unbalanced-flip {
    --fa: "\f516";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-balance-scale-right {
    --fa: "\f516";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blender {
    --fa: "\f517";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-open {
    --fa: "\f518";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tower-broadcast {
    --fa: "\f519";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-broadcast-tower {
    --fa: "\f519";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-broom {
    --fa: "\f51a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chalkboard {
    --fa: "\f51b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blackboard {
    --fa: "\f51b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chalkboard-user {
    --fa: "\f51c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chalkboard-teacher {
    --fa: "\f51c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-church {
    --fa: "\f51d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coins {
    --fa: "\f51e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compact-disc {
    --fa: "\f51f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crow {
    --fa: "\f520";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crown {
    --fa: "\f521";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice {
    --fa: "\f522";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-five {
    --fa: "\f523";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-four {
    --fa: "\f524";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-one {
    --fa: "\f525";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-six {
    --fa: "\f526";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-three {
    --fa: "\f527";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-two {
    --fa: "\f528";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-divide {
    --fa: "\f529";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-door-closed {
    --fa: "\f52a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-door-open {
    --fa: "\f52b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-feather {
    --fa: "\f52d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-frog {
    --fa: "\f52e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gas-pump {
    --fa: "\f52f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glasses {
    --fa: "\f530";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-greater-than-equal {
    --fa: "\f532";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-helicopter {
    --fa: "\f533";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-infinity {
    --fa: "\f534";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kiwi-bird {
    --fa: "\f535";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-less-than-equal {
    --fa: "\f537";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-memory {
    --fa: "\f538";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-lines-slash {
    --fa: "\f539";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-alt-slash {
    --fa: "\f539";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-wave {
    --fa: "\f53a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-1-wave {
    --fa: "\f53b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-bill-wave-alt {
    --fa: "\f53b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check {
    --fa: "\f53c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check-dollar {
    --fa: "\f53d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check-alt {
    --fa: "\f53d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-not-equal {
    --fa: "\f53e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-palette {
    --fa: "\f53f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-parking {
    --fa: "\f540";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parking {
    --fa: "\f540";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diagram-project {
    --fa: "\f542";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-project-diagram {
    --fa: "\f542";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-receipt {
    --fa: "\f543";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-robot {
    --fa: "\f544";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruler {
    --fa: "\f545";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruler-combined {
    --fa: "\f546";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruler-horizontal {
    --fa: "\f547";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruler-vertical {
    --fa: "\f548";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-school {
    --fa: "\f549";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-screwdriver {
    --fa: "\f54a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shoe-prints {
    --fa: "\f54b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skull {
    --fa: "\f54c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ban-smoking {
    --fa: "\f54d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smoking-ban {
    --fa: "\f54d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-store {
    --fa: "\f54e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shop {
    --fa: "\f54f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-store-alt {
    --fa: "\f54f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bars-staggered {
    --fa: "\f550";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-reorder {
    --fa: "\f550";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stream {
    --fa: "\f550";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stroopwafel {
    --fa: "\f551";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toolbox {
    --fa: "\f552";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shirt {
    --fa: "\f553";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-t-shirt {
    --fa: "\f553";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tshirt {
    --fa: "\f553";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-walking {
    --fa: "\f554";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-walking {
    --fa: "\f554";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wallet {
    --fa: "\f555";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-angry {
    --fa: "\f556";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angry {
    --fa: "\f556";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-archway {
    --fa: "\f557";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-atlas {
    --fa: "\f558";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-atlas {
    --fa: "\f558";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-award {
    --fa: "\f559";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-delete-left {
    --fa: "\f55a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-backspace {
    --fa: "\f55a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bezier-curve {
    --fa: "\f55b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bong {
    --fa: "\f55c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brush {
    --fa: "\f55d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bus-simple {
    --fa: "\f55e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bus-alt {
    --fa: "\f55e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cannabis {
    --fa: "\f55f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-check-double {
    --fa: "\f560";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-martini-glass-citrus {
    --fa: "\f561";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cocktail {
    --fa: "\f561";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-concierge {
    --fa: "\f562";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-concierge-bell {
    --fa: "\f562";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cookie {
    --fa: "\f563";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cookie-bite {
    --fa: "\f564";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crop-simple {
    --fa: "\f565";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crop-alt {
    --fa: "\f565";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachograph-digital {
    --fa: "\f566";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-digital-tachograph {
    --fa: "\f566";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-dizzy {
    --fa: "\f567";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dizzy {
    --fa: "\f567";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compass-drafting {
    --fa: "\f568";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drafting-compass {
    --fa: "\f568";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drum {
    --fa: "\f569";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drum-steelpan {
    --fa: "\f56a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-feather-pointed {
    --fa: "\f56b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-feather-alt {
    --fa: "\f56b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-contract {
    --fa: "\f56c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-arrow-down {
    --fa: "\f56d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-download {
    --fa: "\f56d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-export {
    --fa: "\f56e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-from-file {
    --fa: "\f56e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-import {
    --fa: "\f56f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-right-to-file {
    --fa: "\f56f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-invoice {
    --fa: "\f570";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-invoice-dollar {
    --fa: "\f571";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-prescription {
    --fa: "\f572";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-signature {
    --fa: "\f573";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-arrow-up {
    --fa: "\f574";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-upload {
    --fa: "\f574";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fill {
    --fa: "\f575";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fill-drip {
    --fa: "\f576";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fingerprint {
    --fa: "\f577";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fish {
    --fa: "\f578";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-flushed {
    --fa: "\f579";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flushed {
    --fa: "\f579";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-frown-open {
    --fa: "\f57a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-frown-open {
    --fa: "\f57a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-martini-glass {
    --fa: "\f57b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-martini-alt {
    --fa: "\f57b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth-africa {
    --fa: "\f57c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-africa {
    --fa: "\f57c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth-americas {
    --fa: "\f57d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth {
    --fa: "\f57d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth-america {
    --fa: "\f57d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-americas {
    --fa: "\f57d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth-asia {
    --fa: "\f57e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-asia {
    --fa: "\f57e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grimace {
    --fa: "\f57f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grimace {
    --fa: "\f57f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin {
    --fa: "\f580";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin {
    --fa: "\f580";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-wide {
    --fa: "\f581";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-alt {
    --fa: "\f581";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-beam {
    --fa: "\f582";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-beam {
    --fa: "\f582";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-beam-sweat {
    --fa: "\f583";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-beam-sweat {
    --fa: "\f583";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-hearts {
    --fa: "\f584";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-hearts {
    --fa: "\f584";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-squint {
    --fa: "\f585";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-squint {
    --fa: "\f585";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-squint-tears {
    --fa: "\f586";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-squint-tears {
    --fa: "\f586";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-stars {
    --fa: "\f587";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-stars {
    --fa: "\f587";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-tears {
    --fa: "\f588";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-tears {
    --fa: "\f588";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-tongue {
    --fa: "\f589";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-tongue {
    --fa: "\f589";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-tongue-squint {
    --fa: "\f58a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-tongue-squint {
    --fa: "\f58a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-tongue-wink {
    --fa: "\f58b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-tongue-wink {
    --fa: "\f58b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-grin-wink {
    --fa: "\f58c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grin-wink {
    --fa: "\f58c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip {
    --fa: "\f58d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-horizontal {
    --fa: "\f58d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip-horizontal {
    --fa: "\f58d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip-vertical {
    --fa: "\f58e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grid-vertical {
    --fa: "\f58e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-headset {
    --fa: "\f590";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-highlighter {
    --fa: "\f591";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hot-tub-person {
    --fa: "\f593";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hot-tub {
    --fa: "\f593";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hotel {
    --fa: "\f594";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-joint {
    --fa: "\f595";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-kiss {
    --fa: "\f596";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kiss {
    --fa: "\f596";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-kiss-beam {
    --fa: "\f597";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kiss-beam {
    --fa: "\f597";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-kiss-wink-heart {
    --fa: "\f598";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kiss-wink-heart {
    --fa: "\f598";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-laugh {
    --fa: "\f599";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laugh {
    --fa: "\f599";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-laugh-beam {
    --fa: "\f59a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laugh-beam {
    --fa: "\f59a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-laugh-squint {
    --fa: "\f59b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laugh-squint {
    --fa: "\f59b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-laugh-wink {
    --fa: "\f59c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laugh-wink {
    --fa: "\f59c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cart-flatbed-suitcase {
    --fa: "\f59d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-luggage-cart {
    --fa: "\f59d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-location {
    --fa: "\f59f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marked {
    --fa: "\f59f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-location-dot {
    --fa: "\f5a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marked-alt {
    --fa: "\f5a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-marker {
    --fa: "\f5a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-medal {
    --fa: "\f5a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-meh-blank {
    --fa: "\f5a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meh-blank {
    --fa: "\f5a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-rolling-eyes {
    --fa: "\f5a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meh-rolling-eyes {
    --fa: "\f5a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-monument {
    --fa: "\f5a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mortar-pestle {
    --fa: "\f5a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paintbrush-fine {
    --fa: "\f5a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paint-brush-alt {
    --fa: "\f5a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paint-brush-fine {
    --fa: "\f5a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paintbrush-alt {
    --fa: "\f5a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paint-roller {
    --fa: "\f5aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-passport {
    --fa: "\f5ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-fancy {
    --fa: "\f5ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-nib {
    --fa: "\f5ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-ruler {
    --fa: "\f5ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-ruler {
    --fa: "\f5ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-arrival {
    --fa: "\f5af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-plane-departure {
    --fa: "\f5b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-prescription {
    --fa: "\f5b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-sad-cry {
    --fa: "\f5b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sad-cry {
    --fa: "\f5b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-sad-tear {
    --fa: "\f5b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sad-tear {
    --fa: "\f5b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-van-shuttle {
    --fa: "\f5b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shuttle-van {
    --fa: "\f5b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signature {
    --fa: "\f5b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-beam {
    --fa: "\f5b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smile-beam {
    --fa: "\f5b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-smile-plus {
    --fa: "\f5b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smile-plus {
    --fa: "\f5b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-solar-panel {
    --fa: "\f5ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spa {
    --fa: "\f5bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-splotch {
    --fa: "\f5bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spray-can {
    --fa: "\f5bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stamp {
    --fa: "\f5bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-half-stroke {
    --fa: "\f5c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-half-alt {
    --fa: "\f5c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-suitcase-rolling {
    --fa: "\f5c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-surprise {
    --fa: "\f5c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-surprise {
    --fa: "\f5c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swatchbook {
    --fa: "\f5c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-swimming {
    --fa: "\f5c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swimmer {
    --fa: "\f5c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-water-ladder {
    --fa: "\f5c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ladder-water {
    --fa: "\f5c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swimming-pool {
    --fa: "\f5c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-droplet-slash {
    --fa: "\f5c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tint-slash {
    --fa: "\f5c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-face-tired {
    --fa: "\f5c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tired {
    --fa: "\f5c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tooth {
    --fa: "\f5c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-umbrella-beach {
    --fa: "\f5ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-weight-hanging {
    --fa: "\f5cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wine-glass-empty {
    --fa: "\f5ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wine-glass-alt {
    --fa: "\f5ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spray-can-sparkles {
    --fa: "\f5d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-air-freshener {
    --fa: "\f5d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-apple-whole {
    --fa: "\f5d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-apple-alt {
    --fa: "\f5d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-atom {
    --fa: "\f5d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-atom-simple {
    --fa: "\f5d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-atom-alt {
    --fa: "\f5d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-backpack {
    --fa: "\f5d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-school {
    --fa: "\f5d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-school-slash {
    --fa: "\f5d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bone {
    --fa: "\f5d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bone-break {
    --fa: "\f5d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-blank {
    --fa: "\f5d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-alt {
    --fa: "\f5d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-open-reader {
    --fa: "\f5da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-reader {
    --fa: "\f5da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-books {
    --fa: "\f5db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brain {
    --fa: "\f5dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bus-school {
    --fa: "\f5dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-rear {
    --fa: "\f5de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-alt {
    --fa: "\f5de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-battery {
    --fa: "\f5df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-battery-car {
    --fa: "\f5df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-bump {
    --fa: "\f5e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-burst {
    --fa: "\f5e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-crash {
    --fa: "\f5e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-garage {
    --fa: "\f5e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-wrench {
    --fa: "\f5e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-mechanic {
    --fa: "\f5e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-side {
    --fa: "\f5e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-tilt {
    --fa: "\f5e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-wash {
    --fa: "\f5e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-charging-station {
    --fa: "\f5e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-prescription {
    --fa: "\f5e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compass-slash {
    --fa: "\f5e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diploma {
    --fa: "\f5ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scroll-ribbon {
    --fa: "\f5ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-diamond-turn-right {
    --fa: "\f5eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-directions {
    --fa: "\f5eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-do-not-enter {
    --fa: "\f5ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-draw-circle {
    --fa: "\f5ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vector-circle {
    --fa: "\f5ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-draw-polygon {
    --fa: "\f5ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vector-polygon {
    --fa: "\f5ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-draw-square {
    --fa: "\f5ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vector-square {
    --fa: "\f5ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear {
    --fa: "\f5f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-engine-warning {
    --fa: "\f5f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-engine-exclamation {
    --fa: "\f5f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-certificate {
    --fa: "\f5f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-award {
    --fa: "\f5f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gas-pump-slash {
    --fa: "\f5f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glasses-round {
    --fa: "\f5f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glasses-alt {
    --fa: "\f5f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-stand {
    --fa: "\f5f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wave-pulse {
    --fa: "\f5f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-rate {
    --fa: "\f5f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-inhaler {
    --fa: "\f5f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kidneys {
    --fa: "\f5fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-code {
    --fa: "\f5fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-layer-group {
    --fa: "\f5fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-layer-minus {
    --fa: "\f5fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-layer-group-minus {
    --fa: "\f5fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-layer-plus {
    --fa: "\f5ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-layer-group-plus {
    --fa: "\f5ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lips {
    --fa: "\f600";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-crosshairs {
    --fa: "\f601";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location {
    --fa: "\f601";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-location-arrow {
    --fa: "\f602";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-circle {
    --fa: "\f602";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-crosshairs-slash {
    --fa: "\f603";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-slash {
    --fa: "\f603";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lungs {
    --fa: "\f604";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-dot-slash {
    --fa: "\f605";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-alt-slash {
    --fa: "\f605";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-check {
    --fa: "\f606";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-check {
    --fa: "\f606";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-pen {
    --fa: "\f607";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-edit {
    --fa: "\f607";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-exclamation {
    --fa: "\f608";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-exclamation {
    --fa: "\f608";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-minus {
    --fa: "\f609";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-minus {
    --fa: "\f609";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-plus {
    --fa: "\f60a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-plus {
    --fa: "\f60a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-question {
    --fa: "\f60b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-question {
    --fa: "\f60b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-pin-slash {
    --fa: "\f60c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-slash {
    --fa: "\f60c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-smile {
    --fa: "\f60d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-smile {
    --fa: "\f60d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-location-xmark {
    --fa: "\f60e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-times {
    --fa: "\f60e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-map-marker-xmark {
    --fa: "\f60e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microscope {
    --fa: "\f610";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-monitor-waveform {
    --fa: "\f611";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-monitor-heart-rate {
    --fa: "\f611";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-oil-can {
    --fa: "\f613";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-oil-temperature {
    --fa: "\f614";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-oil-temp {
    --fa: "\f614";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-parking {
    --fa: "\f615";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parking-circle {
    --fa: "\f615";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ban-parking {
    --fa: "\f616";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parking-circle-slash {
    --fa: "\f616";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-parking-slash {
    --fa: "\f617";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-parking-slash {
    --fa: "\f617";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pen-paintbrush {
    --fa: "\f618";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pencil-paintbrush {
    --fa: "\f618";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poop {
    --fa: "\f619";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-route-highway {
    --fa: "\f61a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-route-interstate {
    --fa: "\f61b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ruler-triangle {
    --fa: "\f61c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scalpel {
    --fa: "\f61d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scalpel-line-dashed {
    --fa: "\f61e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scalpel-path {
    --fa: "\f61e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shapes {
    --fa: "\f61f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triangle-circle-square {
    --fa: "\f61f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skeleton {
    --fa: "\f620";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-of-life {
    --fa: "\f621";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-steering-wheel {
    --fa: "\f622";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stomach {
    --fa: "\f623";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge {
    --fa: "\f624";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dashboard {
    --fa: "\f624";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-med {
    --fa: "\f624";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-alt-average {
    --fa: "\f624";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-high {
    --fa: "\f625";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-alt {
    --fa: "\f625";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-alt-fast {
    --fa: "\f625";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-max {
    --fa: "\f626";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-alt-fastest {
    --fa: "\f626";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-low {
    --fa: "\f627";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-alt-slow {
    --fa: "\f627";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-min {
    --fa: "\f628";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-alt-slowest {
    --fa: "\f628";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-simple {
    --fa: "\f629";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-simple-med {
    --fa: "\f629";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-average {
    --fa: "\f629";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-simple-high {
    --fa: "\f62a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer {
    --fa: "\f62a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-fast {
    --fa: "\f62a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-simple-max {
    --fa: "\f62b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-fastest {
    --fa: "\f62b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-simple-low {
    --fa: "\f62c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-slow {
    --fa: "\f62c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gauge-simple-min {
    --fa: "\f62d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tachometer-slowest {
    --fa: "\f62d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-teeth {
    --fa: "\f62e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-teeth-open {
    --fa: "\f62f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-masks-theater {
    --fa: "\f630";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-theater-masks {
    --fa: "\f630";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tire {
    --fa: "\f631";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tire-flat {
    --fa: "\f632";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tire-pressure-warning {
    --fa: "\f633";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tire-rugged {
    --fa: "\f634";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toothbrush {
    --fa: "\f635";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-traffic-cone {
    --fa: "\f636";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-traffic-light {
    --fa: "\f637";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-traffic-light-go {
    --fa: "\f638";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-traffic-light-slow {
    --fa: "\f639";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-traffic-light-stop {
    --fa: "\f63a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-monster {
    --fa: "\f63b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-pickup {
    --fa: "\f63c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-screen-users {
    --fa: "\f63d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-class {
    --fa: "\f63d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-watch-fitness {
    --fa: "\f63e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-abacus {
    --fa: "\f640";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rectangle-ad {
    --fa: "\f641";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ad {
    --fa: "\f641";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-mixed {
    --fa: "\f643";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-analytics {
    --fa: "\f643";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ankh {
    --fa: "\f644";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badge-dollar {
    --fa: "\f645";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badge-percent {
    --fa: "\f646";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-bible {
    --fa: "\f647";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bible {
    --fa: "\f647";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bullseye-arrow {
    --fa: "\f648";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bullseye-pointer {
    --fa: "\f649";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-business-time {
    --fa: "\f64a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-briefcase-clock {
    --fa: "\f64a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cabinet-filing {
    --fa: "\f64b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calculator-simple {
    --fa: "\f64c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calculator-alt {
    --fa: "\f64c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-line-down {
    --fa: "\f64d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-pie-simple {
    --fa: "\f64e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-pie-alt {
    --fa: "\f64e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-city {
    --fa: "\f64f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-dollar {
    --fa: "\f650";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-dollar {
    --fa: "\f650";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-dollar {
    --fa: "\f651";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-messages-dollar {
    --fa: "\f652";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comments-alt-dollar {
    --fa: "\f652";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comments-dollar {
    --fa: "\f653";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cross {
    --fa: "\f654";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dharmachakra {
    --fa: "\f655";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-empty-set {
    --fa: "\f656";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-open-dollar {
    --fa: "\f657";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelope-open-text {
    --fa: "\f658";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-chart-column {
    --fa: "\f659";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-chart-line {
    --fa: "\f659";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-chart-pie {
    --fa: "\f65a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-spreadsheet {
    --fa: "\f65b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-user {
    --fa: "\f65c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-minus {
    --fa: "\f65d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-plus {
    --fa: "\f65e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-xmark {
    --fa: "\f65f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-times {
    --fa: "\f65f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folders {
    --fa: "\f660";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-function {
    --fa: "\f661";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-filter-circle-dollar {
    --fa: "\f662";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-funnel-dollar {
    --fa: "\f662";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gift-card {
    --fa: "\f663";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gopuram {
    --fa: "\f664";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hamsa {
    --fa: "\f665";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bahai {
    --fa: "\f666";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-haykal {
    --fa: "\f666";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-integral {
    --fa: "\f667";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-intersection {
    --fa: "\f668";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jedi {
    --fa: "\f669";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-journal-whills {
    --fa: "\f66a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-journal-whills {
    --fa: "\f66a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kaaba {
    --fa: "\f66b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-keynote {
    --fa: "\f66c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-khanda {
    --fa: "\f66d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lambda {
    --fa: "\f66e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-landmark {
    --fa: "\f66f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-dollar {
    --fa: "\f670";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-exclamation {
    --fa: "\f671";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-on {
    --fa: "\f672";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lightbulb-slash {
    --fa: "\f673";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-envelopes-bulk {
    --fa: "\f674";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mail-bulk {
    --fa: "\f674";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-megaphone {
    --fa: "\f675";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-menorah {
    --fa: "\f676";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brain-arrow-curved-right {
    --fa: "\f677";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mind-share {
    --fa: "\f677";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mosque {
    --fa: "\f678";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-om {
    --fa: "\f679";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-omega {
    --fa: "\f67a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spaghetti-monster-flying {
    --fa: "\f67b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pastafarianism {
    --fa: "\f67b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-peace {
    --fa: "\f67c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-office {
    --fa: "\f67d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pi {
    --fa: "\f67e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-place-of-worship {
    --fa: "\f67f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-podium {
    --fa: "\f680";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-poll-vertical {
    --fa: "\f681";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poll {
    --fa: "\f681";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-poll-horizontal {
    --fa: "\f682";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poll-h {
    --fa: "\f682";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-praying {
    --fa: "\f683";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pray {
    --fa: "\f683";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hands-praying {
    --fa: "\f684";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-praying-hands {
    --fa: "\f684";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-presentation-screen {
    --fa: "\f685";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-presentation {
    --fa: "\f685";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-print-slash {
    --fa: "\f686";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-quran {
    --fa: "\f687";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-quran {
    --fa: "\f687";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-dollar {
    --fa: "\f688";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-search-dollar {
    --fa: "\f688";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-magnifying-glass-location {
    --fa: "\f689";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-search-location {
    --fa: "\f689";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shredder {
    --fa: "\f68a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sigma {
    --fa: "\f68b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-weak {
    --fa: "\f68c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-1 {
    --fa: "\f68c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-fair {
    --fa: "\f68d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-2 {
    --fa: "\f68d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-good {
    --fa: "\f68e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-3 {
    --fa: "\f68e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-strong {
    --fa: "\f68f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-4 {
    --fa: "\f68f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-bars {
    --fa: "\f690";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-alt {
    --fa: "\f690";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-alt-4 {
    --fa: "\f690";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-bars-strong {
    --fa: "\f690";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-bars-weak {
    --fa: "\f691";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-alt-1 {
    --fa: "\f691";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-bars-fair {
    --fa: "\f692";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-alt-2 {
    --fa: "\f692";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-bars-good {
    --fa: "\f693";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-alt-3 {
    --fa: "\f693";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-bars-slash {
    --fa: "\f694";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-alt-slash {
    --fa: "\f694";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-slash {
    --fa: "\f695";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-socks {
    --fa: "\f696";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-root {
    --fa: "\f697";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-root-variable {
    --fa: "\f698";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-root-alt {
    --fa: "\f698";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-and-crescent {
    --fa: "\f699";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-of-david {
    --fa: "\f69a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-synagogue {
    --fa: "\f69b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tally {
    --fa: "\f69c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tally-5 {
    --fa: "\f69c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-theta {
    --fa: "\f69e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scroll-torah {
    --fa: "\f6a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-torah {
    --fa: "\f6a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-torii-gate {
    --fa: "\f6a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-union {
    --fa: "\f6a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-user {
    --fa: "\f6a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-chart {
    --fa: "\f6a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-crown {
    --fa: "\f6a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-group-crown {
    --fa: "\f6a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-crown {
    --fa: "\f6a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-value-absolute {
    --fa: "\f6a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vihara {
    --fa: "\f6a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume {
    --fa: "\f6a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-medium {
    --fa: "\f6a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-xmark {
    --fa: "\f6a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-mute {
    --fa: "\f6a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volume-times {
    --fa: "\f6a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-weak {
    --fa: "\f6aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-1 {
    --fa: "\f6aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-fair {
    --fa: "\f6ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-2 {
    --fa: "\f6ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wifi-slash {
    --fa: "\f6ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-yin-yang {
    --fa: "\f6ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-acorn {
    --fa: "\f6ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alicorn {
    --fa: "\f6b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crate-apple {
    --fa: "\f6b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-apple-crate {
    --fa: "\f6b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-axe {
    --fa: "\f6b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-axe-battle {
    --fa: "\f6b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badger-honey {
    --fa: "\f6b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bat {
    --fa: "\f6b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blender-phone {
    --fa: "\f6b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-skull {
    --fa: "\f6b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-dead {
    --fa: "\f6b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-sparkles {
    --fa: "\f6b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-spells {
    --fa: "\f6b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bow-arrow {
    --fa: "\f6b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-campfire {
    --fa: "\f6ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-campground {
    --fa: "\f6bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-candle-holder {
    --fa: "\f6bc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-candy-corn {
    --fa: "\f6bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cat {
    --fa: "\f6be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cauldron {
    --fa: "\f6bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chair {
    --fa: "\f6c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chair-office {
    --fa: "\f6c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-claw-marks {
    --fa: "\f6c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-moon {
    --fa: "\f6c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-sun {
    --fa: "\f6c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cup-togo {
    --fa: "\f6c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffee-togo {
    --fa: "\f6c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coffin {
    --fa: "\f6c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-corn {
    --fa: "\f6c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cow {
    --fa: "\f6c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dagger {
    --fa: "\f6cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-d10 {
    --fa: "\f6cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-d12 {
    --fa: "\f6ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-d20 {
    --fa: "\f6cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-d4 {
    --fa: "\f6d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-d6 {
    --fa: "\f6d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dice-d8 {
    --fa: "\f6d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dog {
    --fa: "\f6d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dog-leashed {
    --fa: "\f6d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dragon {
    --fa: "\f6d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drumstick {
    --fa: "\f6d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drumstick-bite {
    --fa: "\f6d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-duck {
    --fa: "\f6d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dungeon {
    --fa: "\f6d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-elephant {
    --fa: "\f6da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eye-evil {
    --fa: "\f6db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-csv {
    --fa: "\f6dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-fist {
    --fa: "\f6de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fist-raised {
    --fa: "\f6de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-flame {
    --fa: "\f6df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flame {
    --fa: "\f6df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask-round-poison {
    --fa: "\f6e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask-poison {
    --fa: "\f6e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask-round-potion {
    --fa: "\f6e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flask-potion {
    --fa: "\f6e1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ghost {
    --fa: "\f6e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hammer {
    --fa: "\f6e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hammer-war {
    --fa: "\f6e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-holding-magic {
    --fa: "\f6e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hanukiah {
    --fa: "\f6e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-witch {
    --fa: "\f6e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-wizard {
    --fa: "\f6e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side {
    --fa: "\f6e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-goggles {
    --fa: "\f6ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-vr {
    --fa: "\f6ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-helmet-battle {
    --fa: "\f6eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-hiking {
    --fa: "\f6ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hiking {
    --fa: "\f6ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hippo {
    --fa: "\f6ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hockey-mask {
    --fa: "\f6ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hood-cloak {
    --fa: "\f6ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-horse {
    --fa: "\f6f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney-crack {
    --fa: "\f6f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-damage {
    --fa: "\f6f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hryvnia-sign {
    --fa: "\f6f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hryvnia {
    --fa: "\f6f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-key-skeleton {
    --fa: "\f6f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kite {
    --fa: "\f6f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-knife-kitchen {
    --fa: "\f6f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-leaf-maple {
    --fa: "\f6f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-leaf-oak {
    --fa: "\f6f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mace {
    --fa: "\f6f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mandolin {
    --fa: "\f6f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mask {
    --fa: "\f6fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-monkey {
    --fa: "\f6fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mountain {
    --fa: "\f6fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mountains {
    --fa: "\f6fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-narwhal {
    --fa: "\f6fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-network-wired {
    --fa: "\f6ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-otter {
    --fa: "\f700";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paw-simple {
    --fa: "\f701";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paw-alt {
    --fa: "\f701";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paw-claws {
    --fa: "\f702";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pegasus {
    --fa: "\f703";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pie {
    --fa: "\f705";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pig {
    --fa: "\f706";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pumpkin {
    --fa: "\f707";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rabbit {
    --fa: "\f708";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rabbit-running {
    --fa: "\f709";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rabbit-fast {
    --fa: "\f709";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ram {
    --fa: "\f70a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ring {
    --fa: "\f70b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-running {
    --fa: "\f70c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-running {
    --fa: "\f70c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scarecrow {
    --fa: "\f70d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scroll {
    --fa: "\f70e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scroll-old {
    --fa: "\f70f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scythe {
    --fa: "\f710";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sheep {
    --fa: "\f711";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shield-cross {
    --fa: "\f712";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shovel {
    --fa: "\f713";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skull-crossbones {
    --fa: "\f714";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-slash {
    --fa: "\f715";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snake {
    --fa: "\f716";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spider {
    --fa: "\f717";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spider-black-widow {
    --fa: "\f718";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spider-web {
    --fa: "\f719";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-squirrel {
    --fa: "\f71a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-staff {
    --fa: "\f71b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sword {
    --fa: "\f71c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-swords {
    --fa: "\f71d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper {
    --fa: "\f71e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-alt {
    --fa: "\f71e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet-paper-blank {
    --fa: "\f71e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tombstone {
    --fa: "\f720";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tombstone-blank {
    --fa: "\f721";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tombstone-alt {
    --fa: "\f721";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tractor {
    --fa: "\f722";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-treasure-chest {
    --fa: "\f723";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trees {
    --fa: "\f724";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turkey {
    --fa: "\f725";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turtle {
    --fa: "\f726";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-unicorn {
    --fa: "\f727";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-injured {
    --fa: "\f728";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vr-cardboard {
    --fa: "\f729";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wand {
    --fa: "\f72a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wand-sparkles {
    --fa: "\f72b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-whale {
    --fa: "\f72c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wheat {
    --fa: "\f72d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wind {
    --fa: "\f72e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wine-bottle {
    --fa: "\f72f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ballot {
    --fa: "\f732";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ballot-check {
    --fa: "\f733";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-booth-curtain {
    --fa: "\f734";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-box-ballot {
    --fa: "\f735";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-star {
    --fa: "\f736";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-list-check {
    --fa: "\f737";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-drizzle {
    --fa: "\f738";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-hail {
    --fa: "\f739";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-hail-mixed {
    --fa: "\f73a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-meatball {
    --fa: "\f73b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-moon-rain {
    --fa: "\f73c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-rain {
    --fa: "\f73d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-rainbow {
    --fa: "\f73e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-showers {
    --fa: "\f73f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-showers-heavy {
    --fa: "\f740";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-sleet {
    --fa: "\f741";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-snow {
    --fa: "\f742";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-sun-rain {
    --fa: "\f743";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clouds {
    --fa: "\f744";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clouds-moon {
    --fa: "\f745";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clouds-sun {
    --fa: "\f746";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-democrat {
    --fa: "\f747";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-droplet-degree {
    --fa: "\f748";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dewpoint {
    --fa: "\f748";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eclipse {
    --fa: "\f749";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-moon-over-sun {
    --fa: "\f74a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-eclipse-alt {
    --fa: "\f74a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-smoke {
    --fa: "\f74b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flag-swallowtail {
    --fa: "\f74c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flag-alt {
    --fa: "\f74c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flag-usa {
    --fa: "\f74d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-fog {
    --fa: "\f74e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fog {
    --fa: "\f74e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-water {
    --fa: "\f74f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-flood {
    --fa: "\f74f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-droplet-percent {
    --fa: "\f750";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-humidity {
    --fa: "\f750";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hurricane {
    --fa: "\f751";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-landmark-dome {
    --fa: "\f752";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-landmark-alt {
    --fa: "\f752";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meteor {
    --fa: "\f753";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-moon-cloud {
    --fa: "\f754";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-moon-stars {
    --fa: "\f755";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-booth {
    --fa: "\f756";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-sign {
    --fa: "\f757";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-podium-star {
    --fa: "\f758";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poll-people {
    --fa: "\f759";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poo-storm {
    --fa: "\f75a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-poo-bolt {
    --fa: "\f75a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rainbow {
    --fa: "\f75b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-raindrops {
    --fa: "\f75c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-republican {
    --fa: "\f75e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smog {
    --fa: "\f75f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-smoke {
    --fa: "\f760";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snow-blowing {
    --fa: "\f761";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stars {
    --fa: "\f762";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun-cloud {
    --fa: "\f763";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun-dust {
    --fa: "\f764";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sun-haze {
    --fa: "\f765";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sunrise {
    --fa: "\f766";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sunset {
    --fa: "\f767";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-snow {
    --fa: "\f768";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-frigid {
    --fa: "\f768";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-high {
    --fa: "\f769";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-sun {
    --fa: "\f76a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-hot {
    --fa: "\f76a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-temperature-low {
    --fa: "\f76b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-bolt {
    --fa: "\f76c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thunderstorm {
    --fa: "\f76c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-bolt-moon {
    --fa: "\f76d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thunderstorm-moon {
    --fa: "\f76d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-bolt-sun {
    --fa: "\f76e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-thunderstorm-sun {
    --fa: "\f76e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tornado {
    --fa: "\f76f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-volcano {
    --fa: "\f770";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-xmark-to-slot {
    --fa: "\f771";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-times-to-slot {
    --fa: "\f771";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vote-nay {
    --fa: "\f771";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-check-to-slot {
    --fa: "\f772";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vote-yea {
    --fa: "\f772";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-water {
    --fa: "\f773";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-water-arrow-down {
    --fa: "\f774";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-water-lower {
    --fa: "\f774";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-water-arrow-up {
    --fa: "\f775";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-water-rise {
    --fa: "\f775";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wind-warning {
    --fa: "\f776";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wind-circle-exclamation {
    --fa: "\f776";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-windsock {
    --fa: "\f777";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-angel {
    --fa: "\f779";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baby {
    --fa: "\f77c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-baby-carriage {
    --fa: "\f77d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-carriage-baby {
    --fa: "\f77d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ball-pile {
    --fa: "\f77e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bells {
    --fa: "\f77f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-biohazard {
    --fa: "\f780";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blog {
    --fa: "\f781";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boot {
    --fa: "\f782";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-day {
    --fa: "\f783";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-calendar-week {
    --fa: "\f784";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-candy-cane {
    --fa: "\f786";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-carrot {
    --fa: "\f787";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cash-register {
    --fa: "\f788";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-network {
    --fa: "\f78a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chimney {
    --fa: "\f78b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-minimize {
    --fa: "\f78c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-compress-arrows-alt {
    --fa: "\f78c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-deer {
    --fa: "\f78e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-deer-rudolph {
    --fa: "\f78f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dreidel {
    --fa: "\f792";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dumpster {
    --fa: "\f793";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dumpster-fire {
    --fa: "\f794";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ear-muffs {
    --fa: "\f795";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ethernet {
    --fa: "\f796";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fireplace {
    --fa: "\f79a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowman-head {
    --fa: "\f79b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-frosty-head {
    --fa: "\f79b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gifts {
    --fa: "\f79c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gingerbread-man {
    --fa: "\f79d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-champagne-glass {
    --fa: "\f79e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-champagne {
    --fa: "\f79e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-champagne-glasses {
    --fa: "\f79f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-cheers {
    --fa: "\f79f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-whiskey-glass {
    --fa: "\f7a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-whiskey {
    --fa: "\f7a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-whiskey-glass-ice {
    --fa: "\f7a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-whiskey-rocks {
    --fa: "\f7a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-earth-europe {
    --fa: "\f7a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-europe {
    --fa: "\f7a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-globe-snow {
    --fa: "\f7a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip-lines {
    --fa: "\f7a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-grip-lines-vertical {
    --fa: "\f7a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-guitar {
    --fa: "\f7a6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-santa {
    --fa: "\f7a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-winter {
    --fa: "\f7a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-crack {
    --fa: "\f7a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-broken {
    --fa: "\f7a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-holly-berry {
    --fa: "\f7aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-horse-head {
    --fa: "\f7ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ice-skate {
    --fa: "\f7ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-icicles {
    --fa: "\f7ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-igloo {
    --fa: "\f7ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lights-holiday {
    --fa: "\f7b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mistletoe {
    --fa: "\f7b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mitten {
    --fa: "\f7b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mug-hot {
    --fa: "\f7b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mug-marshmallows {
    --fa: "\f7b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ornament {
    --fa: "\f7b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-radiation {
    --fa: "\f7b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-circle-radiation {
    --fa: "\f7ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-radiation-alt {
    --fa: "\f7ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-restroom {
    --fa: "\f7bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rv {
    --fa: "\f7be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-satellite {
    --fa: "\f7bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-satellite-dish {
    --fa: "\f7c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scarf {
    --fa: "\f7c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sd-card {
    --fa: "\f7c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shovel-snow {
    --fa: "\f7c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sim-card {
    --fa: "\f7c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-skating {
    --fa: "\f7c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skating {
    --fa: "\f7c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-ski-jumping {
    --fa: "\f7c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ski-jump {
    --fa: "\f7c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-ski-lift {
    --fa: "\f7c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ski-lift {
    --fa: "\f7c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-skiing {
    --fa: "\f7c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skiing {
    --fa: "\f7c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-skiing-nordic {
    --fa: "\f7ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skiing-nordic {
    --fa: "\f7ca";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-sledding {
    --fa: "\f7cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sledding {
    --fa: "\f7cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sleigh {
    --fa: "\f7cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-sms {
    --fa: "\f7cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sms {
    --fa: "\f7cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-snowboarding {
    --fa: "\f7ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowboarding {
    --fa: "\f7ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowflakes {
    --fa: "\f7cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowman {
    --fa: "\f7d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-snowmobiling {
    --fa: "\f7d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowmobile {
    --fa: "\f7d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snowplow {
    --fa: "\f7d2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-star-christmas {
    --fa: "\f7d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stocking {
    --fa: "\f7d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tenge-sign {
    --fa: "\f7d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tenge {
    --fa: "\f7d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-toilet {
    --fa: "\f7d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-screwdriver-wrench {
    --fa: "\f7d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tools {
    --fa: "\f7d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cable-car {
    --fa: "\f7da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tram {
    --fa: "\f7da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-christmas {
    --fa: "\f7db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-decorated {
    --fa: "\f7dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-large {
    --fa: "\f7dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-truck-plow {
    --fa: "\f7de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wreath {
    --fa: "\f7e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-flame-curved {
    --fa: "\f7e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fire-alt {
    --fa: "\f7e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bacon {
    --fa: "\f7e5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-medical {
    --fa: "\f7e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-user {
    --fa: "\f7e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-books-medical {
    --fa: "\f7e8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brackets-square {
    --fa: "\f7e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brackets {
    --fa: "\f7e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-brackets-curly {
    --fa: "\f7ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bread-loaf {
    --fa: "\f7eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bread-slice {
    --fa: "\f7ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burrito {
    --fa: "\f7ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-chart-scatter {
    --fa: "\f7ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cheese {
    --fa: "\f7ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cheese-swiss {
    --fa: "\f7f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burger-cheese {
    --fa: "\f7f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cheeseburger {
    --fa: "\f7f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-house-chimney-medical {
    --fa: "\f7f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clinic-medical {
    --fa: "\f7f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clipboard-user {
    --fa: "\f7f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-medical {
    --fa: "\f7f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-medical {
    --fa: "\f7f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-medical {
    --fa: "\f7f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-croissant {
    --fa: "\f7f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crutch {
    --fa: "\f7f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-crutches {
    --fa: "\f7f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ban-bug {
    --fa: "\f7f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-debug {
    --fa: "\f7f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-disease {
    --fa: "\f7fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-egg {
    --fa: "\f7fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-egg-fried {
    --fa: "\f7fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-files-medical {
    --fa: "\f7fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fish-cooked {
    --fa: "\f7fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flower {
    --fa: "\f7ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flower-daffodil {
    --fa: "\f800";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flower-tulip {
    --fa: "\f801";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-folder-tree {
    --fa: "\f802";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-french-fries {
    --fa: "\f803";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass {
    --fa: "\f804";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burger {
    --fa: "\f805";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hamburger {
    --fa: "\f805";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hand-middle-finger {
    --fa: "\f806";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-helmet-safety {
    --fa: "\f807";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hard-hat {
    --fa: "\f807";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-hard {
    --fa: "\f807";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-brain {
    --fa: "\f808";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-medical {
    --fa: "\f809";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hospital-user {
    --fa: "\f80d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hospitals {
    --fa: "\f80e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hotdog {
    --fa: "\f80f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-ice-cream {
    --fa: "\f810";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-island-tropical {
    --fa: "\f811";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-island-tree-palm {
    --fa: "\f811";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-medical {
    --fa: "\f812";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mailbox {
    --fa: "\f813";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-meat {
    --fa: "\f814";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pager {
    --fa: "\f815";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pepper-hot {
    --fa: "\f816";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pizza {
    --fa: "\f817";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-pizza-slice {
    --fa: "\f818";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-popcorn {
    --fa: "\f819";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-print-magnifying-glass {
    --fa: "\f81a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-print-search {
    --fa: "\f81a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-rings-wedding {
    --fa: "\f81b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sack {
    --fa: "\f81c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sack-dollar {
    --fa: "\f81d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-salad {
    --fa: "\f81e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-salad {
    --fa: "\f81e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sandwich {
    --fa: "\f81f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sausage {
    --fa: "\f820";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-shish-kebab {
    --fa: "\f821";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sickle {
    --fa: "\f822";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bowl-hot {
    --fa: "\f823";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-soup {
    --fa: "\f823";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-steak {
    --fa: "\f824";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-stretcher {
    --fa: "\f825";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-taco {
    --fa: "\f826";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-book-tanakh {
    --fa: "\f827";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tanakh {
    --fa: "\f827";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bars-progress {
    --fa: "\f828";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tasks-alt {
    --fa: "\f828";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-arrow-up {
    --fa: "\f829";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-restore {
    --fa: "\f829";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-arrow-up {
    --fa: "\f82a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-restore-alt {
    --fa: "\f82a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tree-palm {
    --fa: "\f82b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-helmet-safety {
    --fa: "\f82c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-construction {
    --fa: "\f82c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-hard-hat {
    --fa: "\f82c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-headset {
    --fa: "\f82d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-doctor-message {
    --fa: "\f82e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-md-chat {
    --fa: "\f82e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-nurse {
    --fa: "\f82f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-users-medical {
    --fa: "\f830";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-walker {
    --fa: "\f831";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-web {
    --fa: "\f832";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-webcam {
    --fa: "\f832";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-web-slash {
    --fa: "\f833";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-webcam-slash {
    --fa: "\f833";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wave-square {
    --fa: "\f83e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alarm-exclamation {
    --fa: "\f843";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alarm-plus {
    --fa: "\f844";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alarm-snooze {
    --fa: "\f845";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-align-slash {
    --fa: "\f846";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bags-shopping {
    --fa: "\f847";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-exclamation {
    --fa: "\f848";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-plus {
    --fa: "\f849";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-biking {
    --fa: "\f84a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-biking {
    --fa: "\f84a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-biking-mountain {
    --fa: "\f84b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-biking-mountain {
    --fa: "\f84b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-all {
    --fa: "\f84c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-bottom {
    --fa: "\f84d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-inner {
    --fa: "\f84e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-left {
    --fa: "\f84f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-none {
    --fa: "\f850";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-outer {
    --fa: "\f851";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-right {
    --fa: "\f852";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-top-left {
    --fa: "\f853";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-style {
    --fa: "\f853";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-bottom-right {
    --fa: "\f854";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-style-alt {
    --fa: "\f854";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-top {
    --fa: "\f855";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bring-forward {
    --fa: "\f856";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bring-front {
    --fa: "\f857";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-burger-soda {
    --fa: "\f858";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-building {
    --fa: "\f859";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-car-bus {
    --fa: "\f85a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cars {
    --fa: "\f85b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-coin {
    --fa: "\f85c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triangle-person-digging {
    --fa: "\f85d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-construction {
    --fa: "\f85d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-person-digging {
    --fa: "\f85e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-digging {
    --fa: "\f85e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drone {
    --fa: "\f85f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drone-front {
    --fa: "\f860";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-drone-alt {
    --fa: "\f860";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dryer {
    --fa: "\f861";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dryer-heat {
    --fa: "\f862";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-dryer-alt {
    --fa: "\f862";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-fan {
    --fa: "\f863";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-farm {
    --fa: "\f864";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-barn-silo {
    --fa: "\f864";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-magnifying-glass {
    --fa: "\f865";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-search {
    --fa: "\f865";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-font-case {
    --fa: "\f866";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-game-board {
    --fa: "\f867";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-game-board-simple {
    --fa: "\f868";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-game-board-alt {
    --fa: "\f868";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-glass-citrus {
    --fa: "\f869";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-h4 {
    --fa: "\f86a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-chef {
    --fa: "\f86b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-horizontal-rule {
    --fa: "\f86c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-icons {
    --fa: "\f86d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-heart-music-camera-bolt {
    --fa: "\f86d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-symbols {
    --fa: "\f86e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-icons-alt {
    --fa: "\f86e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kerning {
    --fa: "\f86f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-line-columns {
    --fa: "\f870";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-line-height {
    --fa: "\f871";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check-pen {
    --fa: "\f872";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check-edit {
    --fa: "\f872";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check-dollar-pen {
    --fa: "\f873";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-money-check-edit-alt {
    --fa: "\f873";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mug {
    --fa: "\f874";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mug-tea {
    --fa: "\f875";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-overline {
    --fa: "\f876";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-dashed-line {
    --fa: "\f877";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-page-break {
    --fa: "\f877";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paragraph-left {
    --fa: "\f878";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-paragraph-rtl {
    --fa: "\f878";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-flip {
    --fa: "\f879";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-alt {
    --fa: "\f879";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-laptop-mobile {
    --fa: "\f87a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-laptop {
    --fa: "\f87a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-square-phone-flip {
    --fa: "\f87b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-square-alt {
    --fa: "\f87b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-photo-film {
    --fa: "\f87c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-photo-video {
    --fa: "\f87c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-text-slash {
    --fa: "\f87d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-remove-format {
    --fa: "\f87d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-send-back {
    --fa: "\f87e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-send-backward {
    --fa: "\f87f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-snooze {
    --fa: "\f880";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-zzz {
    --fa: "\f880";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-z-a {
    --fa: "\f881";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alpha-desc {
    --fa: "\f881";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alpha-down-alt {
    --fa: "\f881";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-z-a {
    --fa: "\f882";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alpha-up-alt {
    --fa: "\f882";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-arrow-up {
    --fa: "\f883";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-alt {
    --fa: "\f883";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-short-wide {
    --fa: "\f884";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-amount-desc {
    --fa: "\f884";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-amount-down-alt {
    --fa: "\f884";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-short-wide {
    --fa: "\f885";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-amount-up-alt {
    --fa: "\f885";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-9-1 {
    --fa: "\f886";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-numeric-desc {
    --fa: "\f886";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-numeric-down-alt {
    --fa: "\f886";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-9-1 {
    --fa: "\f887";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-numeric-up-alt {
    --fa: "\f887";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-triangle-square {
    --fa: "\f888";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-shapes-down {
    --fa: "\f888";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-square-triangle {
    --fa: "\f889";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-shapes-down-alt {
    --fa: "\f889";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-triangle-square {
    --fa: "\f88a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-shapes-up {
    --fa: "\f88a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-square-triangle {
    --fa: "\f88b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-shapes-up-alt {
    --fa: "\f88b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-big-small {
    --fa: "\f88c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-size-down {
    --fa: "\f88c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-down-small-big {
    --fa: "\f88d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-size-down-alt {
    --fa: "\f88d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-big-small {
    --fa: "\f88e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-size-up {
    --fa: "\f88e";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-arrow-up-small-big {
    --fa: "\f88f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sort-size-up-alt {
    --fa: "\f88f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sparkles {
    --fa: "\f890";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-spell-check {
    --fa: "\f891";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sunglasses {
    --fa: "\f892";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-text {
    --fa: "\f893";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-text-size {
    --fa: "\f894";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-undo {
    --fa: "\f895";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-arrow-turn-left {
    --fa: "\f895";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-undo {
    --fa: "\f896";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-can-arrow-turn-left {
    --fa: "\f896";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trash-undo-alt {
    --fa: "\f896";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-voicemail {
    --fa: "\f897";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-washing-machine {
    --fa: "\f898";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-washer {
    --fa: "\f898";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wave-sine {
    --fa: "\f899";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wave-triangle {
    --fa: "\f89a";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wind-turbine {
    --fa: "\f89b";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-center-h {
    --fa: "\f89c";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-border-center-v {
    --fa: "\f89d";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-album {
    --fa: "\f89f";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-album-collection {
    --fa: "\f8a0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-amp-guitar {
    --fa: "\f8a1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-badge-sheriff {
    --fa: "\f8a2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-banjo {
    --fa: "\f8a3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cassette-betamax {
    --fa: "\f8a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-betamax {
    --fa: "\f8a4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-boombox {
    --fa: "\f8a5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cactus {
    --fa: "\f8a7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camcorder {
    --fa: "\f8a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-video-handheld {
    --fa: "\f8a8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-movie {
    --fa: "\f8a9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-polaroid {
    --fa: "\f8aa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cassette-tape {
    --fa: "\f8ab";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-cctv {
    --fa: "\f8ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cctv {
    --fa: "\f8ac";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-clarinet {
    --fa: "\f8ad";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cloud-music {
    --fa: "\f8ae";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-message-music {
    --fa: "\f8af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-alt-music {
    --fa: "\f8af";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-comment-music {
    --fa: "\f8b0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer-classic {
    --fa: "\f8b1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer-speaker {
    --fa: "\f8b2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cowbell {
    --fa: "\f8b3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cowbell-circle-plus {
    --fa: "\f8b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cowbell-more {
    --fa: "\f8b4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-disc-drive {
    --fa: "\f8b5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-file-music {
    --fa: "\f8b6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-canister {
    --fa: "\f8b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-film-cannister {
    --fa: "\f8b7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flashlight {
    --fa: "\f8b8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flute {
    --fa: "\f8b9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-flux-capacitor {
    --fa: "\f8ba";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-game-console-handheld {
    --fa: "\f8bb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-gramophone {
    --fa: "\f8bd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-guitar-electric {
    --fa: "\f8be";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-guitars {
    --fa: "\f8bf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-cowboy {
    --fa: "\f8c0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-hat-cowboy-side {
    --fa: "\f8c1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-head-side-headphones {
    --fa: "\f8c2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-horse-saddle {
    --fa: "\f8c3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-image-polaroid {
    --fa: "\f8c4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-joystick {
    --fa: "\f8c5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-jug {
    --fa: "\f8c6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-kazoo {
    --fa: "\f8c7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-lasso {
    --fa: "\f8c8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-list-music {
    --fa: "\f8c9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-microphone-stand {
    --fa: "\f8cb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer-mouse {
    --fa: "\f8cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mouse {
    --fa: "\f8cc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-computer-mouse-scrollwheel {
    --fa: "\f8cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mouse-alt {
    --fa: "\f8cd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-mp3-player {
    --fa: "\f8ce";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music-note {
    --fa: "\f8cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music-alt {
    --fa: "\f8cf";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music-note-slash {
    --fa: "\f8d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music-alt-slash {
    --fa: "\f8d0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-music-slash {
    --fa: "\f8d1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-phone-rotary {
    --fa: "\f8d3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-piano {
    --fa: "\f8d4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-piano-keyboard {
    --fa: "\f8d5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-projector {
    --fa: "\f8d6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-radio {
    --fa: "\f8d7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-radio-tuner {
    --fa: "\f8d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-radio-alt {
    --fa: "\f8d8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-record-vinyl {
    --fa: "\f8d9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-router {
    --fa: "\f8da";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-saxophone-fire {
    --fa: "\f8db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-sax-hot {
    --fa: "\f8db";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-saxophone {
    --fa: "\f8dc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-signal-stream {
    --fa: "\f8dd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-skull-cow {
    --fa: "\f8de";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-speaker {
    --fa: "\f8df";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-speakers {
    --fa: "\f8e0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triangle-instrument {
    --fa: "\f8e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-triangle-music {
    --fa: "\f8e2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-trumpet {
    --fa: "\f8e3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-turntable {
    --fa: "\f8e4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-tv-music {
    --fa: "\f8e6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-typewriter {
    --fa: "\f8e7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-usb-drive {
    --fa: "\f8e9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-cowboy {
    --fa: "\f8ea";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-user-music {
    --fa: "\f8eb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-cassette-vhs {
    --fa: "\f8ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-vhs {
    --fa: "\f8ec";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-violin {
    --fa: "\f8ed";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-wagon-covered {
    --fa: "\f8ee";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-walkie-talkie {
    --fa: "\f8ef";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-watch-calculator {
    --fa: "\f8f0";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-waveform {
    --fa: "\f8f1";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-waveform-lines {
    --fa: "\f8f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-waveform-path {
    --fa: "\f8f2";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-scanner-image {
    --fa: "\f8f3";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-air-conditioner {
    --fa: "\f8f4";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alien {
    --fa: "\f8f5";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alien-8bit {
    --fa: "\f8f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-alien-monster {
    --fa: "\f8f6";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bed-front {
    --fa: "\f8f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bed-alt {
    --fa: "\f8f7";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bed-bunk {
    --fa: "\f8f8";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bed-empty {
    --fa: "\f8f9";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-bell-on {
    --fa: "\f8fa";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blinds {
    --fa: "\f8fb";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blinds-open {
    --fa: "\f8fc";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-blinds-raised {
    --fa: "\f8fd";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-security {
    --fa: "\f8fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-camera-home {
    --fa: "\f8fe";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-caravan {
    --fa: "\f8ff";
    font-family: var(--hw13-font-family-icon);
  }
  .fa-firefox-browser {
    --fa: "\e007";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-firefox-browser::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ideal {
    --fa: "\e013";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ideal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-microblog {
    --fa: "\e01a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-microblog::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-pied-piper {
    --fa: "\e01e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-pied-piper::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-square {
    --fa: "\e01e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-unity {
    --fa: "\e049";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-unity::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dailymotion {
    --fa: "\e052";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dailymotion::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-instagram {
    --fa: "\e055";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-instagram::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-instagram-square {
    --fa: "\e055";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-instagram-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mixer {
    --fa: "\e056";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mixer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-shopify {
    --fa: "\e057";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-shopify::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-deezer {
    --fa: "\e077";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-deezer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-edge-legacy {
    --fa: "\e078";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-edge-legacy::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-pay {
    --fa: "\e079";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-pay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-rust {
    --fa: "\e07a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-rust::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-tiktok {
    --fa: "\e07b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-tiktok::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-unsplash {
    --fa: "\e07c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-unsplash::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudflare {
    --fa: "\e07d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudflare::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-guilded {
    --fa: "\e07e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-guilded::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hive {
    --fa: "\e07f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hive::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-42-group {
    --fa: "\e080";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-42-group::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-innosoft {
    --fa: "\e080";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-innosoft::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-instalod {
    --fa: "\e081";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-instalod::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-octopus-deploy {
    --fa: "\e082";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-octopus-deploy::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-perbyte {
    --fa: "\e083";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-perbyte::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-uncharted {
    --fa: "\e084";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-uncharted::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-watchman-monitoring {
    --fa: "\e087";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-watchman-monitoring::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wodu {
    --fa: "\e088";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wodu::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wirsindhandwerk {
    --fa: "\e2d0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wirsindhandwerk::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wsh {
    --fa: "\e2d0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wsh::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bots {
    --fa: "\e340";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bots::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cmplid {
    --fa: "\e360";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cmplid::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bilibili {
    --fa: "\e3d9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bilibili::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-golang {
    --fa: "\e40f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-golang::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pix {
    --fa: "\e43a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sitrox {
    --fa: "\e44a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sitrox::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hashnode {
    --fa: "\e499";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hashnode::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-meta {
    --fa: "\e49b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-meta::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-padlet {
    --fa: "\e4a0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-padlet::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-nfc-directional {
    --fa: "\e530";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-nfc-directional::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-nfc-symbol {
    --fa: "\e531";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-nfc-symbol::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-screenpal {
    --fa: "\e570";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-screenpal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-space-awesome {
    --fa: "\e5ac";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-space-awesome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-font-awesome {
    --fa: "\e5ad";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-font-awesome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-gitlab {
    --fa: "\e5ae";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-gitlab::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gitlab-square {
    --fa: "\e5ae";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gitlab-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-odysee {
    --fa: "\e5c6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-odysee::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stubber {
    --fa: "\e5c7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stubber::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-debian {
    --fa: "\e60b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-debian::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-shoelace {
    --fa: "\e60c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-shoelace::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-threads {
    --fa: "\e618";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-threads::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-threads {
    --fa: "\e619";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-threads::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-x-twitter {
    --fa: "\e61a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-x-twitter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-x-twitter {
    --fa: "\e61b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-x-twitter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-opensuse {
    --fa: "\e62b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-opensuse::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-letterboxd {
    --fa: "\e62d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-letterboxd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-letterboxd {
    --fa: "\e62e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-letterboxd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mintbit {
    --fa: "\e62f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mintbit::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-scholar {
    --fa: "\e63b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-scholar::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-brave {
    --fa: "\e63c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-brave::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-brave-reverse {
    --fa: "\e63d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-brave-reverse::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pixiv {
    --fa: "\e640";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pixiv::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-upwork {
    --fa: "\e641";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-upwork::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-webflow {
    --fa: "\e65c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-webflow::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-signal-messenger {
    --fa: "\e663";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-signal-messenger::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bluesky {
    --fa: "\e671";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bluesky::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-jxl {
    --fa: "\e67b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-jxl::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-upwork {
    --fa: "\e67c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-upwork::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-web-awesome {
    --fa: "\e682";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-web-awesome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-web-awesome {
    --fa: "\e683";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-web-awesome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-web-awesome-stroke {
    --fa: "\e684";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-web-awesome-stroke::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dart-lang {
    --fa: "\e693";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dart-lang::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-flutter {
    --fa: "\e694";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-flutter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-files-pinwheel {
    --fa: "\e69f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-files-pinwheel::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-css {
    --fa: "\e6a2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-css::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-bluesky {
    --fa: "\e6a3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-bluesky::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-openai {
    --fa: "\e7cf";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-openai::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-linkedin {
    --fa: "\e7d0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-linkedin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cash-app {
    --fa: "\e7d4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cash-app::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-disqus {
    --fa: "\e7d5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-disqus::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-eleventy {
    --fa: "\e7d6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-eleventy::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-11ty {
    --fa: "\e7d6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-11ty::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-kakao-talk {
    --fa: "\e7d7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-kakao-talk::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-linktree {
    --fa: "\e7d8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-linktree::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-notion {
    --fa: "\e7d9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-notion::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pandora {
    --fa: "\e7da";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pandora::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pixelfed {
    --fa: "\e7db";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pixelfed::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-tidal {
    --fa: "\e7dc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-tidal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vsco {
    --fa: "\e7dd";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vsco::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-w3c {
    --fa: "\e7de";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-w3c::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-lumon {
    --fa: "\e7e2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-lumon::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-lumon-drop {
    --fa: "\e7e3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-lumon-drop::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-figma {
    --fa: "\e7e4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-figma::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-tex {
    --fa: "\e7ff";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-tex::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-duolingo {
    --fa: "\e812";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-duolingo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-twitter {
    --fa: "\f081";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-twitter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-twitter-square {
    --fa: "\f081";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-twitter-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-facebook {
    --fa: "\f082";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-facebook::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook-square {
    --fa: "\f082";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-linkedin {
    --fa: "\f08c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-linkedin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-github {
    --fa: "\f092";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-github::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-github-square {
    --fa: "\f092";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-github-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-twitter {
    --fa: "\f099";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-twitter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook {
    --fa: "\f09a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-github {
    --fa: "\f09b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-github::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pinterest {
    --fa: "\f0d2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pinterest::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-pinterest {
    --fa: "\f0d3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-pinterest::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pinterest-square {
    --fa: "\f0d3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pinterest-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-google-plus {
    --fa: "\f0d4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-google-plus::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-plus-square {
    --fa: "\f0d4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-plus-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-plus-g {
    --fa: "\f0d5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-plus-g::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-linkedin-in {
    --fa: "\f0e1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-linkedin-in::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-github-alt {
    --fa: "\f113";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-github-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-maxcdn {
    --fa: "\f136";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-maxcdn::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-html5 {
    --fa: "\f13b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-html5::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-css3 {
    --fa: "\f13c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-css3::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-btc {
    --fa: "\f15a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-btc::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-youtube {
    --fa: "\f167";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-youtube::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-xing {
    --fa: "\f168";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-xing::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-xing {
    --fa: "\f169";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-xing::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-xing-square {
    --fa: "\f169";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-xing-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dropbox {
    --fa: "\f16b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dropbox::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stack-overflow {
    --fa: "\f16c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stack-overflow::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-instagram {
    --fa: "\f16d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-instagram::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-flickr {
    --fa: "\f16e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-flickr::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-adn {
    --fa: "\f170";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-adn::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bitbucket {
    --fa: "\f171";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bitbucket::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-tumblr {
    --fa: "\f173";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-tumblr::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-tumblr {
    --fa: "\f174";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-tumblr::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-tumblr-square {
    --fa: "\f174";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-tumblr-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-apple {
    --fa: "\f179";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-apple::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-windows {
    --fa: "\f17a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-windows::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-android {
    --fa: "\f17b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-android::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-linux {
    --fa: "\f17c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-linux::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dribbble {
    --fa: "\f17d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dribbble::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-skype {
    --fa: "\f17e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-skype::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-foursquare {
    --fa: "\f180";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-foursquare::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-trello {
    --fa: "\f181";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-trello::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gratipay {
    --fa: "\f184";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gratipay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vk {
    --fa: "\f189";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vk::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-weibo {
    --fa: "\f18a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-weibo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-renren {
    --fa: "\f18b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-renren::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pagelines {
    --fa: "\f18c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pagelines::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stack-exchange {
    --fa: "\f18d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stack-exchange::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-vimeo {
    --fa: "\f194";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-vimeo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vimeo-square {
    --fa: "\f194";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vimeo-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-slack {
    --fa: "\f198";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-slack::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-slack-hash {
    --fa: "\f198";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-slack-hash::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wordpress {
    --fa: "\f19a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wordpress::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-openid {
    --fa: "\f19b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-openid::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yahoo {
    --fa: "\f19e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yahoo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google {
    --fa: "\f1a0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-reddit {
    --fa: "\f1a1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-reddit::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-reddit {
    --fa: "\f1a2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-reddit::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-reddit-square {
    --fa: "\f1a2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-reddit-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stumbleupon-circle {
    --fa: "\f1a3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stumbleupon-circle::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stumbleupon {
    --fa: "\f1a4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stumbleupon::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-delicious {
    --fa: "\f1a5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-delicious::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-digg {
    --fa: "\f1a6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-digg::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-pp {
    --fa: "\f1a7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-pp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-alt {
    --fa: "\f1a8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-drupal {
    --fa: "\f1a9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-drupal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-joomla {
    --fa: "\f1aa";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-joomla::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-behance {
    --fa: "\f1b4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-behance::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-behance {
    --fa: "\f1b5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-behance::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-behance-square {
    --fa: "\f1b5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-behance-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-steam {
    --fa: "\f1b6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-steam::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-steam {
    --fa: "\f1b7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-steam::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-steam-square {
    --fa: "\f1b7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-steam-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-spotify {
    --fa: "\f1bc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-spotify::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-deviantart {
    --fa: "\f1bd";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-deviantart::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-soundcloud {
    --fa: "\f1be";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-soundcloud::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vine {
    --fa: "\f1ca";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vine::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-codepen {
    --fa: "\f1cb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-codepen::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-jsfiddle {
    --fa: "\f1cc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-jsfiddle::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-rebel {
    --fa: "\f1d0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-rebel::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-empire {
    --fa: "\f1d1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-empire::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-git {
    --fa: "\f1d2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-git::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-git-square {
    --fa: "\f1d2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-git-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-git {
    --fa: "\f1d3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-git::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hacker-news {
    --fa: "\f1d4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hacker-news::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-tencent-weibo {
    --fa: "\f1d5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-tencent-weibo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-qq {
    --fa: "\f1d6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-qq::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-weixin {
    --fa: "\f1d7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-weixin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-slideshare {
    --fa: "\f1e7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-slideshare::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-twitch {
    --fa: "\f1e8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-twitch::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yelp {
    --fa: "\f1e9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yelp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-paypal {
    --fa: "\f1ed";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-paypal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-wallet {
    --fa: "\f1ee";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-wallet::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-visa {
    --fa: "\f1f0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-visa::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-mastercard {
    --fa: "\f1f1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-mastercard::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-discover {
    --fa: "\f1f2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-discover::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-amex {
    --fa: "\f1f3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-amex::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-paypal {
    --fa: "\f1f4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-paypal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-stripe {
    --fa: "\f1f5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-stripe::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-lastfm {
    --fa: "\f202";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-lastfm::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-lastfm {
    --fa: "\f203";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-lastfm::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-lastfm-square {
    --fa: "\f203";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-lastfm-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ioxhost {
    --fa: "\f208";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ioxhost::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-angellist {
    --fa: "\f209";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-angellist::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-buysellads {
    --fa: "\f20d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-buysellads::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-connectdevelop {
    --fa: "\f20e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-connectdevelop::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dashcube {
    --fa: "\f210";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dashcube::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-forumbee {
    --fa: "\f211";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-forumbee::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-leanpub {
    --fa: "\f212";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-leanpub::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sellsy {
    --fa: "\f213";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sellsy::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-shirtsinbulk {
    --fa: "\f214";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-shirtsinbulk::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-simplybuilt {
    --fa: "\f215";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-simplybuilt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-skyatlas {
    --fa: "\f216";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-skyatlas::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pinterest-p {
    --fa: "\f231";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pinterest-p::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-whatsapp {
    --fa: "\f232";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-whatsapp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-viacoin {
    --fa: "\f237";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-viacoin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-medium {
    --fa: "\f23a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-medium::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-medium-m {
    --fa: "\f23a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-medium-m::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-y-combinator {
    --fa: "\f23b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-y-combinator::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-optin-monster {
    --fa: "\f23c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-optin-monster::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-opencart {
    --fa: "\f23d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-opencart::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-expeditedssl {
    --fa: "\f23e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-expeditedssl::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-jcb {
    --fa: "\f24b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-jcb::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-diners-club {
    --fa: "\f24c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-diners-club::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons {
    --fa: "\f25e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gg {
    --fa: "\f260";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gg::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gg-circle {
    --fa: "\f261";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gg-circle::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-odnoklassniki {
    --fa: "\f263";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-odnoklassniki::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-odnoklassniki {
    --fa: "\f264";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-odnoklassniki::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-odnoklassniki-square {
    --fa: "\f264";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-odnoklassniki-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-get-pocket {
    --fa: "\f265";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-get-pocket::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wikipedia-w {
    --fa: "\f266";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wikipedia-w::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-safari {
    --fa: "\f267";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-safari::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-chrome {
    --fa: "\f268";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-chrome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-firefox {
    --fa: "\f269";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-firefox::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-opera {
    --fa: "\f26a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-opera::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-internet-explorer {
    --fa: "\f26b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-internet-explorer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-contao {
    --fa: "\f26d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-contao::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-500px {
    --fa: "\f26e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-500px::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-amazon {
    --fa: "\f270";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-amazon::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-houzz {
    --fa: "\f27c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-houzz::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vimeo-v {
    --fa: "\f27d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vimeo-v::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-black-tie {
    --fa: "\f27e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-black-tie::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fonticons {
    --fa: "\f280";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fonticons::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-reddit-alien {
    --fa: "\f281";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-reddit-alien::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-edge {
    --fa: "\f282";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-edge::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-codiepie {
    --fa: "\f284";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-codiepie::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-modx {
    --fa: "\f285";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-modx::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fort-awesome {
    --fa: "\f286";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fort-awesome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-usb {
    --fa: "\f287";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-usb::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-product-hunt {
    --fa: "\f288";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-product-hunt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mixcloud {
    --fa: "\f289";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mixcloud::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-scribd {
    --fa: "\f28a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-scribd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bluetooth {
    --fa: "\f293";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bluetooth::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bluetooth-b {
    --fa: "\f294";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bluetooth-b::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gitlab {
    --fa: "\f296";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gitlab::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wpbeginner {
    --fa: "\f297";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wpbeginner::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wpforms {
    --fa: "\f298";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wpforms::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-envira {
    --fa: "\f299";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-envira::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-glide {
    --fa: "\f2a5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-glide::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-glide-g {
    --fa: "\f2a6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-glide-g::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-viadeo {
    --fa: "\f2a9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-viadeo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-viadeo {
    --fa: "\f2aa";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-viadeo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-viadeo-square {
    --fa: "\f2aa";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-viadeo-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-snapchat {
    --fa: "\f2ab";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-snapchat::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-snapchat-ghost {
    --fa: "\f2ab";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-snapchat-ghost::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-snapchat {
    --fa: "\f2ad";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-snapchat::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-snapchat-square {
    --fa: "\f2ad";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-snapchat-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper {
    --fa: "\f2ae";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-first-order {
    --fa: "\f2b0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-first-order::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yoast {
    --fa: "\f2b1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yoast::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-themeisle {
    --fa: "\f2b2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-themeisle::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-plus {
    --fa: "\f2b3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-plus::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome {
    --fa: "\f2b4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome-flag {
    --fa: "\f2b4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome-flag::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome-logo-full {
    --fa: "\f2b4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome-logo-full::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-linode {
    --fa: "\f2b8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-linode::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-quora {
    --fa: "\f2c4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-quora::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-free-code-camp {
    --fa: "\f2c5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-free-code-camp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-telegram {
    --fa: "\f2c6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-telegram::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-telegram-plane {
    --fa: "\f2c6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-telegram-plane::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bandcamp {
    --fa: "\f2d5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bandcamp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-grav {
    --fa: "\f2d6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-grav::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-etsy {
    --fa: "\f2d7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-etsy::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-imdb {
    --fa: "\f2d8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-imdb::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ravelry {
    --fa: "\f2d9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ravelry::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sellcast {
    --fa: "\f2da";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sellcast::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-superpowers {
    --fa: "\f2dd";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-superpowers::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wpexplorer {
    --fa: "\f2de";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wpexplorer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-meetup {
    --fa: "\f2e0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-meetup::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-font-awesome-stroke {
    --fa: "\f35c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-font-awesome-stroke::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome-alt {
    --fa: "\f35c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-font-awesome-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-accessible-icon {
    --fa: "\f368";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-accessible-icon::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-accusoft {
    --fa: "\f369";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-accusoft::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-adversal {
    --fa: "\f36a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-adversal::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-affiliatetheme {
    --fa: "\f36b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-affiliatetheme::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-algolia {
    --fa: "\f36c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-algolia::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-amilia {
    --fa: "\f36d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-amilia::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-angrycreative {
    --fa: "\f36e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-angrycreative::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-app-store {
    --fa: "\f36f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-app-store::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-app-store-ios {
    --fa: "\f370";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-app-store-ios::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-apper {
    --fa: "\f371";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-apper::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-asymmetrik {
    --fa: "\f372";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-asymmetrik::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-audible {
    --fa: "\f373";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-audible::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-avianex {
    --fa: "\f374";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-avianex::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-aws {
    --fa: "\f375";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-aws::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bimobject {
    --fa: "\f378";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bimobject::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bitcoin {
    --fa: "\f379";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bitcoin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bity {
    --fa: "\f37a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bity::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-blackberry {
    --fa: "\f37b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-blackberry::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-blogger {
    --fa: "\f37c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-blogger::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-blogger-b {
    --fa: "\f37d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-blogger-b::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-buromobelexperte {
    --fa: "\f37f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-buromobelexperte::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-centercode {
    --fa: "\f380";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-centercode::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudscale {
    --fa: "\f383";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudscale::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudsmith {
    --fa: "\f384";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudsmith::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudversify {
    --fa: "\f385";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cloudversify::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cpanel {
    --fa: "\f388";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cpanel::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-css3-alt {
    --fa: "\f38b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-css3-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cuttlefish {
    --fa: "\f38c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cuttlefish::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-d-and-d {
    --fa: "\f38d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-d-and-d::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-deploydog {
    --fa: "\f38e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-deploydog::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-deskpro {
    --fa: "\f38f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-deskpro::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-digital-ocean {
    --fa: "\f391";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-digital-ocean::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-discord {
    --fa: "\f392";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-discord::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-discourse {
    --fa: "\f393";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-discourse::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dochub {
    --fa: "\f394";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dochub::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-docker {
    --fa: "\f395";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-docker::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-draft2digital {
    --fa: "\f396";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-draft2digital::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-dribbble {
    --fa: "\f397";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-dribbble::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dribbble-square {
    --fa: "\f397";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dribbble-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dyalog {
    --fa: "\f399";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dyalog::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-earlybirds {
    --fa: "\f39a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-earlybirds::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-erlang {
    --fa: "\f39d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-erlang::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook-f {
    --fa: "\f39e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook-f::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook-messenger {
    --fa: "\f39f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-facebook-messenger::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-firstdraft {
    --fa: "\f3a1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-firstdraft::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fonticons-fi {
    --fa: "\f3a2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fonticons-fi::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fort-awesome-alt {
    --fa: "\f3a3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fort-awesome-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-freebsd {
    --fa: "\f3a4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-freebsd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gitkraken {
    --fa: "\f3a6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gitkraken::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gofore {
    --fa: "\f3a7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gofore::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-goodreads {
    --fa: "\f3a8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-goodreads::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-goodreads-g {
    --fa: "\f3a9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-goodreads-g::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-drive {
    --fa: "\f3aa";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-drive::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-google-play {
    --fa: "\f3ab";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-google-play::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gripfire {
    --fa: "\f3ac";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gripfire::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-grunt {
    --fa: "\f3ad";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-grunt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gulp {
    --fa: "\f3ae";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gulp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-hacker-news {
    --fa: "\f3af";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-hacker-news::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hacker-news-square {
    --fa: "\f3af";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hacker-news-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hire-a-helper {
    --fa: "\f3b0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hire-a-helper::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hotjar {
    --fa: "\f3b1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hotjar::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hubspot {
    --fa: "\f3b2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hubspot::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-itunes {
    --fa: "\f3b4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-itunes::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-itunes-note {
    --fa: "\f3b5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-itunes-note::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-jenkins {
    --fa: "\f3b6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-jenkins::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-joget {
    --fa: "\f3b7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-joget::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-js {
    --fa: "\f3b8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-js::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-js {
    --fa: "\f3b9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-js::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-js-square {
    --fa: "\f3b9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-js-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-keycdn {
    --fa: "\f3ba";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-keycdn::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-kickstarter {
    --fa: "\f3bb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-kickstarter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-kickstarter {
    --fa: "\f3bb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-kickstarter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-kickstarter-k {
    --fa: "\f3bc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-kickstarter-k::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-laravel {
    --fa: "\f3bd";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-laravel::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-line {
    --fa: "\f3c0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-line::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-lyft {
    --fa: "\f3c3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-lyft::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-magento {
    --fa: "\f3c4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-magento::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-medapps {
    --fa: "\f3c6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-medapps::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-medrt {
    --fa: "\f3c8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-medrt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-microsoft {
    --fa: "\f3ca";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-microsoft::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mix {
    --fa: "\f3cb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mizuni {
    --fa: "\f3cc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mizuni::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-monero {
    --fa: "\f3d0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-monero::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-napster {
    --fa: "\f3d2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-napster::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-node-js {
    --fa: "\f3d3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-node-js::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-npm {
    --fa: "\f3d4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-npm::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ns8 {
    --fa: "\f3d5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ns8::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-nutritionix {
    --fa: "\f3d6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-nutritionix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-page4 {
    --fa: "\f3d7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-page4::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-palfed {
    --fa: "\f3d8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-palfed::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-patreon {
    --fa: "\f3d9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-patreon::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-periscope {
    --fa: "\f3da";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-periscope::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-phabricator {
    --fa: "\f3db";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-phabricator::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-phoenix-framework {
    --fa: "\f3dc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-phoenix-framework::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-playstation {
    --fa: "\f3df";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-playstation::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pushed {
    --fa: "\f3e1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pushed::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-python {
    --fa: "\f3e2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-python::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-red-river {
    --fa: "\f3e3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-red-river::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wpressr {
    --fa: "\f3e4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wpressr::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-rendact {
    --fa: "\f3e4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-rendact::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-replyd {
    --fa: "\f3e6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-replyd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-resolving {
    --fa: "\f3e7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-resolving::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-rocketchat {
    --fa: "\f3e8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-rocketchat::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-rockrms {
    --fa: "\f3e9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-rockrms::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-schlix {
    --fa: "\f3ea";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-schlix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-searchengin {
    --fa: "\f3eb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-searchengin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-servicestack {
    --fa: "\f3ec";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-servicestack::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sistrix {
    --fa: "\f3ee";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sistrix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-speakap {
    --fa: "\f3f3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-speakap::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-staylinked {
    --fa: "\f3f5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-staylinked::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-steam-symbol {
    --fa: "\f3f6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-steam-symbol::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sticker-mule {
    --fa: "\f3f7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sticker-mule::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-studiovinari {
    --fa: "\f3f8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-studiovinari::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-supple {
    --fa: "\f3f9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-supple::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-uber {
    --fa: "\f402";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-uber::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-uikit {
    --fa: "\f403";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-uikit::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-uniregistry {
    --fa: "\f404";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-uniregistry::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-untappd {
    --fa: "\f405";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-untappd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ussunnah {
    --fa: "\f407";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ussunnah::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vaadin {
    --fa: "\f408";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vaadin::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-viber {
    --fa: "\f409";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-viber::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vimeo {
    --fa: "\f40a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vimeo::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vnv {
    --fa: "\f40b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vnv::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-whatsapp {
    --fa: "\f40c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-whatsapp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-whatsapp-square {
    --fa: "\f40c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-whatsapp-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-whmcs {
    --fa: "\f40d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-whmcs::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wordpress-simple {
    --fa: "\f411";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wordpress-simple::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-xbox {
    --fa: "\f412";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-xbox::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yandex {
    --fa: "\f413";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yandex::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yandex-international {
    --fa: "\f414";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yandex-international::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-apple-pay {
    --fa: "\f415";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-apple-pay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-apple-pay {
    --fa: "\f416";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-apple-pay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fly {
    --fa: "\f417";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fly::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-node {
    --fa: "\f419";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-node::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-osi {
    --fa: "\f41a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-osi::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-react {
    --fa: "\f41b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-react::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-autoprefixer {
    --fa: "\f41c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-autoprefixer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-less {
    --fa: "\f41d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-less::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sass {
    --fa: "\f41e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sass::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-vuejs {
    --fa: "\f41f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-vuejs::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-angular {
    --fa: "\f420";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-angular::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-aviato {
    --fa: "\f421";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-aviato::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ember {
    --fa: "\f423";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ember::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-gitter {
    --fa: "\f426";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-gitter::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hooli {
    --fa: "\f427";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hooli::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-strava {
    --fa: "\f428";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-strava::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stripe {
    --fa: "\f429";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stripe::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stripe-s {
    --fa: "\f42a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stripe-s::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-typo3 {
    --fa: "\f42b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-typo3::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-amazon-pay {
    --fa: "\f42c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-amazon-pay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-amazon-pay {
    --fa: "\f42d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cc-amazon-pay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ethereum {
    --fa: "\f42e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ethereum::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-korvue {
    --fa: "\f42f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-korvue::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-elementor {
    --fa: "\f430";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-elementor::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-square-youtube {
    --fa: "\f431";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-square-youtube::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-youtube-square {
    --fa: "\f431";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-youtube-square::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-flipboard {
    --fa: "\f44d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-flipboard::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hips {
    --fa: "\f452";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hips::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-php {
    --fa: "\f457";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-php::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-quinscape {
    --fa: "\f459";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-quinscape::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-readme {
    --fa: "\f4d5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-readme::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-java {
    --fa: "\f4e4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-java::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-hat {
    --fa: "\f4e5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-pied-piper-hat::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-by {
    --fa: "\f4e7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-by::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nc {
    --fa: "\f4e8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nc::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nc-eu {
    --fa: "\f4e9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nc-eu::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nc-jp {
    --fa: "\f4ea";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nc-jp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nd {
    --fa: "\f4eb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-nd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-pd {
    --fa: "\f4ec";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-pd::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-pd-alt {
    --fa: "\f4ed";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-pd-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-remix {
    --fa: "\f4ee";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-remix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-sa {
    --fa: "\f4ef";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-sa::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-sampling {
    --fa: "\f4f0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-sampling::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-sampling-plus {
    --fa: "\f4f1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-sampling-plus::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-share {
    --fa: "\f4f2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-share::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-zero {
    --fa: "\f4f3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-creative-commons-zero::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ebay {
    --fa: "\f4f4";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ebay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-keybase {
    --fa: "\f4f5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-keybase::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mastodon {
    --fa: "\f4f6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mastodon::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-r-project {
    --fa: "\f4f7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-r-project::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-researchgate {
    --fa: "\f4f8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-researchgate::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-teamspeak {
    --fa: "\f4f9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-teamspeak::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-first-order-alt {
    --fa: "\f50a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-first-order-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fulcrum {
    --fa: "\f50b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fulcrum::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-galactic-republic {
    --fa: "\f50c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-galactic-republic::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-galactic-senate {
    --fa: "\f50d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-galactic-senate::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-jedi-order {
    --fa: "\f50e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-jedi-order::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mandalorian {
    --fa: "\f50f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mandalorian::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-old-republic {
    --fa: "\f510";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-old-republic::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-phoenix-squadron {
    --fa: "\f511";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-phoenix-squadron::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sith {
    --fa: "\f512";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sith::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-trade-federation {
    --fa: "\f513";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-trade-federation::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wolf-pack-battalion {
    --fa: "\f514";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wolf-pack-battalion::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hornbill {
    --fa: "\f592";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hornbill::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mailchimp {
    --fa: "\f59e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mailchimp::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-megaport {
    --fa: "\f5a3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-megaport::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-nimblr {
    --fa: "\f5a8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-nimblr::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-rev {
    --fa: "\f5b2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-rev::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-shopware {
    --fa: "\f5b5";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-shopware::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-squarespace {
    --fa: "\f5be";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-squarespace::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-themeco {
    --fa: "\f5c6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-themeco::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-weebly {
    --fa: "\f5cc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-weebly::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wix {
    --fa: "\f5cf";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wix::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ello {
    --fa: "\f5f1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ello::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-hackerrank {
    --fa: "\f5f7";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-hackerrank::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-kaggle {
    --fa: "\f5fa";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-kaggle::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-markdown {
    --fa: "\f60f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-markdown::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-neos {
    --fa: "\f612";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-neos::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-zhihu {
    --fa: "\f63f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-zhihu::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-alipay {
    --fa: "\f642";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-alipay::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-the-red-yeti {
    --fa: "\f69d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-the-red-yeti::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-critical-role {
    --fa: "\f6c9";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-critical-role::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-d-and-d-beyond {
    --fa: "\f6ca";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-d-and-d-beyond::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dev {
    --fa: "\f6cc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dev::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fantasy-flight-games {
    --fa: "\f6dc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fantasy-flight-games::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-wizards-of-the-coast {
    --fa: "\f730";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-wizards-of-the-coast::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-think-peaks {
    --fa: "\f731";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-think-peaks::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-reacteurope {
    --fa: "\f75d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-reacteurope::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-artstation {
    --fa: "\f77a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-artstation::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-atlassian {
    --fa: "\f77b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-atlassian::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-canadian-maple-leaf {
    --fa: "\f785";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-canadian-maple-leaf::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-centos {
    --fa: "\f789";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-centos::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-confluence {
    --fa: "\f78d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-confluence::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-dhl {
    --fa: "\f790";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-dhl::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-diaspora {
    --fa: "\f791";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-diaspora::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fedex {
    --fa: "\f797";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fedex::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-fedora {
    --fa: "\f798";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-fedora::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-figma {
    --fa: "\f799";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-figma::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-intercom {
    --fa: "\f7af";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-intercom::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-invision {
    --fa: "\f7b0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-invision::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-jira {
    --fa: "\f7b1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-jira::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mendeley {
    --fa: "\f7b3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mendeley::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-raspberry-pi {
    --fa: "\f7bb";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-raspberry-pi::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-redhat {
    --fa: "\f7bc";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-redhat::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sketch {
    --fa: "\f7c6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sketch::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-sourcetree {
    --fa: "\f7d3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-sourcetree::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-suse {
    --fa: "\f7d6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-suse::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ubuntu {
    --fa: "\f7df";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ubuntu::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-ups {
    --fa: "\f7e0";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-ups::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-usps {
    --fa: "\f7e1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-usps::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yarn {
    --fa: "\f7e3";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yarn::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-airbnb {
    --fa: "\f834";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-airbnb::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-battle-net {
    --fa: "\f835";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-battle-net::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-bootstrap {
    --fa: "\f836";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-bootstrap::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-buffer {
    --fa: "\f837";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-buffer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-chromecast {
    --fa: "\f838";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-chromecast::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-evernote {
    --fa: "\f839";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-evernote::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-itch-io {
    --fa: "\f83a";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-itch-io::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-salesforce {
    --fa: "\f83b";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-salesforce::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-speaker-deck {
    --fa: "\f83c";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-speaker-deck::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-symfony {
    --fa: "\f83d";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-symfony::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-waze {
    --fa: "\f83f";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-waze::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-yammer {
    --fa: "\f840";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-yammer::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-git-alt {
    --fa: "\f841";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-git-alt::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-stackpath {
    --fa: "\f842";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-stackpath::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-cotton-bureau {
    --fa: "\f89e";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-cotton-bureau::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-buy-n-large {
    --fa: "\f8a6";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-buy-n-large::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-mdb {
    --fa: "\f8ca";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-mdb::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-orcid {
    --fa: "\f8d2";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-orcid::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-swift {
    --fa: "\f8e1";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-swift::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fa-umbraco {
    --fa: "\f8e8";
    font-family: "Font Awesome 7 Brands" !important;
  }
  .fa-umbraco::before {
    --hw13-font-family-icon: "Font Awesome 7 Brands" !important;
  }
  .fak.fa-hirsch-woelfl::before,
  .fa-kit.fa-hirsch-woelfl::before {
    --fa: "\e001";
    font-family: "Font Awesome Kit" !important;
  }
  /*
   * FA legacy markup support — enables <i class="far fa-train"> style icons.
   * The .fa-<name> class only sets --fa + font-family; without a ::before rule
   * nothing renders. Custom element <hw13-icon> has its own ::before in Icon.scss.
   */
  i[class*=fa-]::before,
  .fa::before,
  .fa-solid::before,
  .fa-regular::before,
  .fa-light::before,
  .fa-thin::before,
  .fa-brands::before,
  .fa-duotone::before,
  .fa-sharp::before,
  .fas::before,
  .far::before,
  .fal::before,
  .fat::before,
  .fab::before,
  .fad::before,
  .fass::before,
  .fasr::before,
  .fasl::before,
  .fast::before {
    content: var(--fa);
    font-family: var(--hw13-font-family-icon);
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    text-rendering: auto;
  }
  /* Weight modifiers */
  .fa-solid, .fas, i.fa-solid, i.fas {
    font-weight: 900;
  }
  .fa-regular, .far, i.fa-regular, i.far {
    font-weight: 400;
  }
  .fa-light, .fal, i.fa-light, i.fal {
    font-weight: 300;
  }
  .fa-thin, .fat, i.fa-thin, i.fat {
    font-weight: 100;
  }
  /* Brand / family modifiers */
  .fa-brands, .fab,
  i.fa-brands, i.fab {
    font-family: "Font Awesome 7 Brands" !important;
    font-weight: 400;
  }
  .fa-duotone, .fad,
  i.fa-duotone, i.fad {
    font-family: "Font Awesome 7 Duotone" !important;
  }
  .fa-sharp, i.fa-sharp {
    font-family: "Font Awesome 7 Sharp" !important;
  }
}
/* LOADING FONT-FACES */
@font-face {
  font-family: "Font Awesome 7 Brands";
  font-weight: 400;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-brands-400.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-brands-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Duotone";
  font-weight: 900;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-900.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-900.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Duotone";
  font-weight: 400;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Duotone";
  font-weight: 100;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-thin-100.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-thin-100.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Duotone";
  font-weight: 300;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-light-300.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-duotone-light-300.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Pro";
  font-weight: 300;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-light-300.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-light-300.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp Duotone";
  font-weight: 300;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-light-300.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-light-300.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp Duotone";
  font-weight: 400;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp Duotone";
  font-weight: 900;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-solid-900.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp Duotone";
  font-weight: 100;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-thin-100.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-duotone-thin-100.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp";
  font-weight: 300;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-light-300.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-light-300.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp";
  font-weight: 900;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-solid-900.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp";
  font-weight: 400;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-regular-400.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-regular-400.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Sharp";
  font-weight: 100;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-thin-100.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-sharp-thin-100.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Pro";
  font-weight: 100;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-thin-100.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-thin-100.ttf") format("truetype");
}
@font-face {
  font-family: "Font Awesome 7 Pro";
  font-weight: 900;
  font-style: normal;
  font-display: block;
  src: url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-solid-900.woff2") format("woff2"), url("../Fonts/fontawesome-pro-plus-7.0.0-web/webfonts/fa-solid-900.ttf") format("truetype");
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-ThinItalic.woff2") format("woff2");
  font-weight: Thin;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-Thin.woff2") format("woff2");
  font-weight: Thin;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-ExtraLightItalic.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-ExtraLight.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-LightItalic.woff2") format("woff2");
  font-weight: Light;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-Light.woff2") format("woff2");
  font-weight: Light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-MediumItalic.woff2") format("woff2");
  font-weight: Medium;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-Medium.woff2") format("woff2");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-SemiBoldItalic.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-SemiBold.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-ExtraBoldItalic.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-ExtraBold.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-BlackItalic.woff2") format("woff2");
  font-weight: Black;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Be Vietnam Pro";
  src: url("../Fonts/be_vietnam_pro/BeVietnamPro-Black.woff2") format("woff2");
  font-weight: Black;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-ThinItalic.woff2") format("woff2");
  font-weight: Thin;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-Thin.woff2") format("woff2");
  font-weight: Thin;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-ExtraLightItalic.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-ExtraLight.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-LightItalic.woff2") format("woff2");
  font-weight: Light;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-Light.woff2") format("woff2");
  font-weight: Light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-MediumItalic.woff2") format("woff2");
  font-weight: Medium;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-Medium.woff2") format("woff2");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-SemiBoldItalic.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-SemiBold.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-ExtraBoldItalic.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-ExtraBold.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-BlackItalic.woff2") format("woff2");
  font-weight: Black;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Fira Sans";
  src: url("../Fonts/fira_sans/FiraSans-Black.woff2") format("woff2");
  font-weight: Black;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-ThinItalic.woff2") format("woff2");
  font-weight: Thin;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-Thin.woff2") format("woff2");
  font-weight: Thin;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-ExtraLightItalic.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-ExtraLight.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-LightItalic.woff2") format("woff2");
  font-weight: Light;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-Light.woff2") format("woff2");
  font-weight: Light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-MediumItalic.woff2") format("woff2");
  font-weight: Medium;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-Medium.woff2") format("woff2");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-SemiBoldItalic.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-SemiBold.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-ExtraBoldItalic.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-ExtraBold.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-BlackItalic.woff2") format("woff2");
  font-weight: Black;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Kanit";
  src: url("../Fonts/kanit/Kanit-Black.woff2") format("woff2");
  font-weight: Black;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-ThinItalic.woff2") format("woff2");
  font-weight: Thin;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-Thin.woff2") format("woff2");
  font-weight: Thin;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-ExtraLightItalic.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-ExtraLight.woff2") format("woff2");
  font-weight: ExtraLight;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-LightItalic.woff2") format("woff2");
  font-weight: Light;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-Light.woff2") format("woff2");
  font-weight: Light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-MediumItalic.woff2") format("woff2");
  font-weight: Medium;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-Medium.woff2") format("woff2");
  font-weight: Medium;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-SemiBoldItalic.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-SemiBold.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-ExtraBoldItalic.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-ExtraBold.woff2") format("woff2");
  font-weight: ExtraBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-BlackItalic.woff2") format("woff2");
  font-weight: Black;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../Fonts/barlow/Barlow-Black.woff2") format("woff2");
  font-weight: Black;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Big Reputation";
  src: url("../Fonts/big_reputation/BigReputation-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Big Reputation";
  src: url("../Fonts/big_reputation/BigReputation-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Big Reputation";
  src: url("../Fonts/big_reputation/BigReputation-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Big Reputation";
  src: url("../Fonts/big_reputation/BigReputation-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Borel";
  src: url("../Fonts/borel/Borel-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Borel";
  src: url("../Fonts/borel/Borel-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Comic Neue";
  src: url("../Fonts/comic_neue/ComicNeue-LightItalic.woff2") format("woff2");
  font-weight: Light;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Comic Neue";
  src: url("../Fonts/comic_neue/ComicNeue-Light.woff2") format("woff2");
  font-weight: Light;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Comic Neue";
  src: url("../Fonts/comic_neue/ComicNeue-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Comic Neue";
  src: url("../Fonts/comic_neue/ComicNeue-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Comic Neue";
  src: url("../Fonts/comic_neue/ComicNeue-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Comic Neue";
  src: url("../Fonts/comic_neue/ComicNeue-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cookie";
  src: url("../Fonts/cookie/Cookie-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Cookie";
  src: url("../Fonts/cookie/Cookie-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JustAnotherHand";
  src: url("../Fonts/justanotherhand/JustAnotherHand-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "JustAnotherHand";
  src: url("../Fonts/justanotherhand/JustAnotherHand-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../Fonts/oswald/Oswald-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../Fonts/oswald/Oswald-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Patrick HandSC";
  src: url("../Fonts/patrick_handsc/PatrickHandSC-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Patrick HandSC";
  src: url("../Fonts/patrick_handsc/PatrickHandSC-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rokkitt";
  src: url("../Fonts/rokkitt/Rokkitt-SemiBoldItalic.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Rokkitt";
  src: url("../Fonts/rokkitt/Rokkitt-SemiBold.woff2") format("woff2");
  font-weight: SemiBold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quattrocento Sans";
  src: url("../Fonts/quattrocento_sans/QuattrocentoSans-BoldItalic.woff2") format("woff2");
  font-weight: Bold;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Quattrocento Sans";
  src: url("../Fonts/quattrocento_sans/QuattrocentoSans-Bold.woff2") format("woff2");
  font-weight: Bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quattrocento Sans";
  src: url("../Fonts/quattrocento_sans/QuattrocentoSans-RegularItalic.woff2") format("woff2");
  font-weight: Regular;
  font-style: Italic;
  font-display: swap;
}
@font-face {
  font-family: "Quattrocento Sans";
  src: url("../Fonts/quattrocento_sans/QuattrocentoSans-Regular.woff2") format("woff2");
  font-weight: Regular;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../Fonts/raleway/raleway-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../Fonts/raleway/raleway-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../Fonts/geologica/Geologica-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../Fonts/geologica/Geologica-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Fonts/inter/Inter-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../Fonts/inter/Inter-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../Fonts/montserrat/Montserrat-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../Fonts/montserrat/Montserrat-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../Fonts/roboto/Roboto-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../Fonts/roboto/Roboto-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Kumbh Sans";
  src: url("../Fonts/kumbh_sans/KumbhSans-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../Fonts/outfit/Outfit-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("../Fonts/sora/Sora-normal.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../Fonts/dm_sans/DmSans-normal.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../Fonts/dm_sans/DmSans-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lexend Deca";
  src: url("../Fonts/lexend_deca/LexendDeca-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../Fonts/plus_jakarta_sans/PlusJakartaSans-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../Fonts/plus_jakarta_sans/PlusJakartaSans-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/source_sans_3/SourceSans3-normal.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("../Fonts/source_sans_3/SourceSans3-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../Fonts/manrope/Manrope-normal.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Syne";
  src: url("../Fonts/syne/Syne-normal.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../Fonts/instrument_sans/InstrumentSans-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../Fonts/instrument_sans/InstrumentSans-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../Fonts/urbanist/Urbanist-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Urbanist";
  src: url("../Fonts/urbanist/Urbanist-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "REM";
  src: url("../Fonts/rem/REM-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "REM";
  src: url("../Fonts/rem/REM-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Aleo";
  src: url("../Fonts/aleo/Aleo-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aleo";
  src: url("../Fonts/aleo/Aleo-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../Fonts/unbounded/Unbounded-normal.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../Fonts/rethink_sans/RethinkSans-normal.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rethink Sans";
  src: url("../Fonts/rethink_sans/RethinkSans-italic.woff2") format("woff2");
  font-weight: 0 1;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  src: url("../Fonts/antonio/Antonio-normal.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../Fonts/caveat/Caveat-normal.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../Fonts/onest/Onest-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@layer hw13-base {
  body {
    font-family: var(--hw13-font-family-default);
    font-weight: var(--hw13-font-weight-text);
    color: var(--hw13-color-text-default);
    line-height: 1.4;
  }
}

/*# sourceMappingURL=hw13_base.css.map */
