/* layer: properties */
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))){*, ::before, ::after, ::backdrop{--un-ease:initial;}}
@property --un-outline-style{syntax:"*";inherits:false;initial-value:solid;}
@property --un-inset-ring-color{syntax:"*";inherits:false;}
@property --un-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}
@property --un-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}
@property --un-inset-shadow-color{syntax:"*";inherits:false;}
@property --un-ring-color{syntax:"*";inherits:false;}
@property --un-ring-inset{syntax:"*";inherits:false;}
@property --un-ring-offset-color{syntax:"*";inherits:false;}
@property --un-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}
@property --un-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0px;}
@property --un-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}
@property --un-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000;}
@property --un-shadow-color{syntax:"*";inherits:false;}
@property --un-ease{syntax:"*";inherits:false;}
@property --un-blur{syntax:"*";inherits:false;}
@property --un-brightness{syntax:"*";inherits:false;}
@property --un-contrast{syntax:"*";inherits:false;}
@property --un-drop-shadow{syntax:"*";inherits:false;}
@property --un-grayscale{syntax:"*";inherits:false;}
@property --un-hue-rotate{syntax:"*";inherits:false;}
@property --un-invert{syntax:"*";inherits:false;}
@property --un-saturate{syntax:"*";inherits:false;}
@property --un-sepia{syntax:"*";inherits:false;}
@property --un-numeric-figure{syntax:"*";inherits:false;}
@property --un-numeric-fraction{syntax:"*";inherits:false;}
@property --un-numeric-spacing{syntax:"*";inherits:false;}
@property --un-ordinal{syntax:"*";inherits:false;}
@property --un-slashed-zero{syntax:"*";inherits:false;}
/* layer: theme */
:root, :host {
--default-transition-timingFunction: cubic-bezier(0.4, 0, 0.2, 1);
--default-transition-duration: 150ms;
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
--ease-out: cubic-bezier(0, 0, 0.2, 1);
--spacing: 0.25rem;
--ease-DEFAULT: cubic-bezier(0.4, 0, 0.2, 1);
--font-sans: ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
--font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
--default-font-family: var(--font-sans);
--default-monoFont-family: var(--font-mono);
}
/* layer: base */
/*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/

*,
::after,
::before,
::backdrop,
::file-selector-button {
  box-sizing: border-box; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 2 */
  border: 0 solid; /* 3 */
}

/*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  tab-size: 4; /* 3 */
  font-family: var(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  ); /* 4 */
  font-feature-settings: var(--default-font-featureSettings, normal); /* 5 */
  font-variation-settings: var(--default-font-variationSettings, normal); /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/*
  Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
}

/*
  Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: var(
    --default-monoFont-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  ); /* 1 */
  font-feature-settings: var(--default-monoFont-featureSettings, normal); /* 2 */
  font-variation-settings: var(--default-monoFont-variationSettings, normal); /* 3 */
  font-size: 1em; /* 4 */
}

/*
  Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
  Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
  Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
  Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
  Make lists unstyled by default.
*/

ol,
ul,
menu {
  list-style: none;
}

/*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/

button,
input,
select,
optgroup,
textarea,
::file-selector-button {
  font: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  border-radius: 0; /* 2 */
  background-color: transparent; /* 3 */
  opacity: 1; /* 4 */
}

/*
  Restore default font weight.
*/

:where(select:is([multiple], [size])) optgroup {
  font-weight: bolder;
}

/*
  Restore indentation.
*/

:where(select:is([multiple], [size])) optgroup option {
  padding-inline-start: 20px;
}

/*
  Restore space after button.
*/

::file-selector-button {
  margin-inline-end: 4px;
}

/*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/

::placeholder {
  opacity: 1;
}

/*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/

@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) /* Safari 17+ */ {
  ::placeholder {
    color: color-mix(in oklab, currentcolor 50%, transparent);
  }
}

/*
  Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
  Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/

::-webkit-date-and-time-value {
  min-height: 1lh; /* 1 */
  text-align: inherit; /* 2 */
}

/*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/

::-webkit-datetime-edit {
  display: inline-flex;
}

/*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
  padding-block: 0;
}

/*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/

::-webkit-calendar-picker-indicator {
  line-height: 1;
}

/*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
  Correct the inability to style the border radius in iOS Safari.
*/

button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
  appearance: button;
}

/*
  Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
  Make elements with the HTML hidden attribute stay hidden by default.
*/

[hidden]:where(:not([hidden~='until-found'])) {
  display: none !important;
}
/* layer: preflights */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-start: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100dvh;
    line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

:root,
:host {
    --font-sans: "Nunito Variable", "Nunito", monospace;
}

html {
    font-family: var(--font-sans);
}

i,
.fa {
    font-family: var(--fa-font, "Font Awesome 6 Pro");
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: var(--fa-font-weight, inherit);
    text-rendering: auto;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
}

.fa-thin,
i.thin {
    --fa-font-weight: 100;
}

.fa-light,
i.light {
    --fa-font-weight: 300;
}

.fa-regular,
i.regular {
    --fa-font-weight: 400;
}

.fa-solid,
i.solid {
    --fa-font-weight: 900;
}

i::before,
.fa::before {
    content: var(--fa) / "";
}

.fa-brands {
    --fa-font: "Font Awesome 6 Brands";
}

.fa-duotone {
    --fa-font: "Font Awesome 6 Duotone";

    display: grid;
    grid: 1 / 1 / 1 / 1;

    &::before {
        grid-area: 1 / 1;
        color: var(--fa-primary-color, inherit);
        opacity: var(--fa-primary-opacity, 1);
    }

    &::after {
        grid-area: 1 / 1;
        content: var(--fa) var(--fa) / "";
        color: var(--fa-secondary-color, inherit);
        opacity: var(--fa-secondary-opacity, 0.4);
    }
}

.fa-0,
i.zero {
    --fa: "\30";
}

.fa-1,
i.one {
    --fa: "\31";
}

.fa-2,
i.two {
    --fa: "\32";
}

.fa-3,
i.three {
    --fa: "\33";
}

.fa-4,
i.four {
    --fa: "\34";
}

.fa-5,
i.five {
    --fa: "\35";
}

.fa-6,
i.six {
    --fa: "\36";
}

.fa-7,
i.seven {
    --fa: "\37";
}

.fa-8,
i.eight {
    --fa: "\38";
}

.fa-9,
i.nine {
    --fa: "\39";
}

.fa-fill-drip,
i.fill-drip {
    --fa: "\f576";
}

.fa-arrows-to-circle,
i.arrows-to-circle {
    --fa: "\e4bd";
}

.fa-circle-chevron-right,
i.circle-chevron-right {
    --fa: "\f138";
}

.fa-chevron-circle-right,
i.chevron-circle-right {
    --fa: "\f138";
}

.fa-wagon-covered,
i.wagon-covered {
    --fa: "\f8ee";
}

.fa-line-height,
i.line-height {
    --fa: "\f871";
}

.fa-bagel,
i.bagel {
    --fa: "\e3d7";
}

.fa-transporter-7,
i.transporter-7 {
    --fa: "\e2a8";
}

.fa-at,
i.at {
    --fa: "\40";
}

.fa-rectangles-mixed,
i.rectangles-mixed {
    --fa: "\e323";
}

.fa-phone-arrow-up-right,
i.phone-arrow-up-right {
    --fa: "\e224";
}

.fa-phone-arrow-up,
i.phone-arrow-up {
    --fa: "\e224";
}

.fa-phone-outgoing,
i.phone-outgoing {
    --fa: "\e224";
}

.fa-trash-can,
i.trash-can {
    --fa: "\f2ed";
}

.fa-trash-alt,
i.trash-alt {
    --fa: "\f2ed";
}

.fa-circle-l,
i.circle-l {
    --fa: "\e114";
}

.fa-head-side-goggles,
i.head-side-goggles {
    --fa: "\f6ea";
}

.fa-head-vr,
i.head-vr {
    --fa: "\f6ea";
}

.fa-text-height,
i.text-height {
    --fa: "\f034";
}

.fa-user-xmark,
i.user-xmark {
    --fa: "\f235";
}

.fa-user-times,
i.user-times {
    --fa: "\f235";
}

.fa-face-hand-yawn,
i.face-hand-yawn {
    --fa: "\e379";
}

.fa-gauge-simple-min,
i.gauge-simple-min {
    --fa: "\f62d";
}

.fa-tachometer-slowest,
i.tachometer-slowest {
    --fa: "\f62d";
}

.fa-stethoscope,
i.stethoscope {
    --fa: "\f0f1";
}

.fa-coffin,
i.coffin {
    --fa: "\f6c6";
}

.fa-message,
i.message {
    --fa: "\f27a";
}

.fa-comment-alt,
i.comment-alt {
    --fa: "\f27a";
}

.fa-salad,
i.salad {
    --fa: "\f81e";
}

.fa-bowl-salad,
i.bowl-salad {
    --fa: "\f81e";
}

.fa-info,
i.info {
    --fa: "\f129";
}

.fa-robot-astromech,
i.robot-astromech {
    --fa: "\e2d2";
}

.fa-ring-diamond,
i.ring-diamond {
    --fa: "\e5ab";
}

.fa-fondue-pot,
i.fondue-pot {
    --fa: "\e40d";
}

.fa-theta,
i.theta {
    --fa: "\f69e";
}

.fa-face-hand-peeking,
i.face-hand-peeking {
    --fa: "\e481";
}

.fa-square-user,
i.square-user {
    --fa: "\e283";
}

.fa-down-left-and-up-right-to-center,
i.down-left-and-up-right-to-center {
    --fa: "\f422";
}

.fa-compress-alt,
i.compress-alt {
    --fa: "\f422";
}

.fa-explosion,
i.explosion {
    --fa: "\e4e9";
}

.fa-file-lines,
i.file-lines {
    --fa: "\f15c";
}

.fa-file-alt,
i.file-alt {
    --fa: "\f15c";
}

.fa-file-text,
i.file-text {
    --fa: "\f15c";
}

.fa-wave-square,
i.wave-square {
    --fa: "\f83e";
}

.fa-ring,
i.ring {
    --fa: "\f70b";
}

.fa-building-un,
i.building-un {
    --fa: "\e4d9";
}

.fa-dice-three,
i.dice-three {
    --fa: "\f527";
}

.fa-tire-pressure-warning,
i.tire-pressure-warning {
    --fa: "\f633";
}

.fa-wifi-fair,
i.wifi-fair {
    --fa: "\f6ab";
}

.fa-wifi-2,
i.wifi-2 {
    --fa: "\f6ab";
}

.fa-calendar-days,
i.calendar-days {
    --fa: "\f073";
}

.fa-calendar-alt,
i.calendar-alt {
    --fa: "\f073";
}

.fa-mp3-player,
i.mp3-player {
    --fa: "\f8ce";
}

.fa-anchor-circle-check,
i.anchor-circle-check {
    --fa: "\e4aa";
}

.fa-tally-4,
i.tally-4 {
    --fa: "\e297";
}

.fa-rectangle-history,
i.rectangle-history {
    --fa: "\e4a2";
}

.fa-building-circle-arrow-right,
i.building-circle-arrow-right {
    --fa: "\e4d1";
}

.fa-volleyball,
i.volleyball {
    --fa: "\f45f";
}

.fa-volleyball-ball,
i.volleyball-ball {
    --fa: "\f45f";
}

.fa-sun-haze,
i.sun-haze {
    --fa: "\f765";
}

.fa-text-size,
i.text-size {
    --fa: "\f894";
}

.fa-ufo,
i.ufo {
    --fa: "\e047";
}

.fa-fork,
i.fork {
    --fa: "\f2e3";
}

.fa-utensil-fork,
i.utensil-fork {
    --fa: "\f2e3";
}

.fa-arrows-up-to-line,
i.arrows-up-to-line {
    --fa: "\e4c2";
}

.fa-mobile-signal,
i.mobile-signal {
    --fa: "\e1ef";
}

.fa-barcode-scan,
i.barcode-scan {
    --fa: "\f465";
}

.fa-sort-down,
i.sort-down {
    --fa: "\f0dd";
}

.fa-sort-desc,
i.sort-desc {
    --fa: "\f0dd";
}

.fa-folder-arrow-down,
i.folder-arrow-down {
    --fa: "\e053";
}

.fa-folder-download,
i.folder-download {
    --fa: "\e053";
}

.fa-circle-minus,
i.circle-minus {
    --fa: "\f056";
}

.fa-minus-circle,
i.minus-circle {
    --fa: "\f056";
}

.fa-face-icicles,
i.face-icicles {
    --fa: "\e37c";
}

.fa-shovel,
i.shovel {
    --fa: "\f713";
}

.fa-door-open,
i.door-open {
    --fa: "\f52b";
}

.fa-films,
i.films {
    --fa: "\e17a";
}

.fa-right-from-bracket,
i.right-from-bracket {
    --fa: "\f2f5";
}

.fa-sign-out-alt,
i.sign-out-alt {
    --fa: "\f2f5";
}

.fa-face-glasses,
i.face-glasses {
    --fa: "\e377";
}

.fa-nfc,
i.nfc {
    --fa: "\e1f7";
}

.fa-atom,
i.atom {
    --fa: "\f5d2";
}

.fa-soap,
i.soap {
    --fa: "\e06e";
}

.fa-icons,
i.icons {
    --fa: "\f86d";
}

.fa-heart-music-camera-bolt,
i.heart-music-camera-bolt {
    --fa: "\f86d";
}

.fa-microphone-lines-slash,
i.microphone-lines-slash {
    --fa: "\f539";
}

.fa-microphone-alt-slash,
i.microphone-alt-slash {
    --fa: "\f539";
}

.fa-closed-captioning-slash,
i.closed-captioning-slash {
    --fa: "\e135";
}

.fa-calculator-simple,
i.calculator-simple {
    --fa: "\f64c";
}

.fa-calculator-alt,
i.calculator-alt {
    --fa: "\f64c";
}

.fa-bridge-circle-check,
i.bridge-circle-check {
    --fa: "\e4c9";
}

.fa-sliders-up,
i.sliders-up {
    --fa: "\f3f1";
}

.fa-sliders-v,
i.sliders-v {
    --fa: "\f3f1";
}

.fa-location-minus,
i.location-minus {
    --fa: "\f609";
}

.fa-map-marker-minus,
i.map-marker-minus {
    --fa: "\f609";
}

.fa-pump-medical,
i.pump-medical {
    --fa: "\e06a";
}

.fa-fingerprint,
i.fingerprint {
    --fa: "\f577";
}

.fa-ski-boot,
i.ski-boot {
    --fa: "\e3cc";
}

.fa-standard-definition,
i.standard-definition {
    --fa: "\e28a";
}

.fa-rectangle-sd,
i.rectangle-sd {
    --fa: "\e28a";
}

.fa-h1,
i.h1 {
    --fa: "\f313";
}

.fa-hand-point-right,
i.hand-point-right {
    --fa: "\f0a4";
}

.fa-magnifying-glass-location,
i.magnifying-glass-location {
    --fa: "\f689";
}

.fa-search-location,
i.search-location {
    --fa: "\f689";
}

.fa-message-bot,
i.message-bot {
    --fa: "\e3b8";
}

.fa-forward-step,
i.forward-step {
    --fa: "\f051";
}

.fa-step-forward,
i.step-forward {
    --fa: "\f051";
}

.fa-face-smile-beam,
i.face-smile-beam {
    --fa: "\f5b8";
}

.fa-smile-beam,
i.smile-beam {
    --fa: "\f5b8";
}

.fa-light-ceiling,
i.light-ceiling {
    --fa: "\e016";
}

.fa-message-exclamation,
i.message-exclamation {
    --fa: "\f4a5";
}

.fa-comment-alt-exclamation,
i.comment-alt-exclamation {
    --fa: "\f4a5";
}

.fa-bowl-scoop,
i.bowl-scoop {
    --fa: "\e3de";
}

.fa-bowl-shaved-ice,
i.bowl-shaved-ice {
    --fa: "\e3de";
}

.fa-square-x,
i.square-x {
    --fa: "\e286";
}

.fa-building-memo,
i.building-memo {
    --fa: "\e61e";
}

.fa-utility-pole-double,
i.utility-pole-double {
    --fa: "\e2c4";
}

.fa-flag-checkered,
i.flag-checkered {
    --fa: "\f11e";
}

.fa-chevrons-up,
i.chevrons-up {
    --fa: "\f325";
}

.fa-chevron-double-up,
i.chevron-double-up {
    --fa: "\f325";
}

.fa-football,
i.football {
    --fa: "\f44e";
}

.fa-football-ball,
i.football-ball {
    --fa: "\f44e";
}

.fa-user-vneck,
i.user-vneck {
    --fa: "\e461";
}

.fa-school-circle-exclamation,
i.school-circle-exclamation {
    --fa: "\e56c";
}

.fa-crop,
i.crop {
    --fa: "\f125";
}

.fa-angles-down,
i.angles-down {
    --fa: "\f103";
}

.fa-angle-double-down,
i.angle-double-down {
    --fa: "\f103";
}

.fa-users-rectangle,
i.users-rectangle {
    --fa: "\e594";
}

.fa-people-roof,
i.people-roof {
    --fa: "\e537";
}

.fa-square-arrow-right,
i.square-arrow-right {
    --fa: "\f33b";
}

.fa-arrow-square-right,
i.arrow-square-right {
    --fa: "\f33b";
}

.fa-location-plus,
i.location-plus {
    --fa: "\f60a";
}

.fa-map-marker-plus,
i.map-marker-plus {
    --fa: "\f60a";
}

.fa-lightbulb-exclamation-on,
i.lightbulb-exclamation-on {
    --fa: "\e1ca";
}

.fa-people-line,
i.people-line {
    --fa: "\e534";
}

.fa-beer-mug-empty,
i.beer-mug-empty {
    --fa: "\f0fc";
}

.fa-beer,
i.beer {
    --fa: "\f0fc";
}

.fa-crate-empty,
i.crate-empty {
    --fa: "\e151";
}

.fa-diagram-predecessor,
i.diagram-predecessor {
    --fa: "\e477";
}

.fa-transporter,
i.transporter {
    --fa: "\e042";
}

.fa-calendar-circle-user,
i.calendar-circle-user {
    --fa: "\e471";
}

.fa-arrow-up-long,
i.arrow-up-long {
    --fa: "\f176";
}

.fa-long-arrow-up,
i.long-arrow-up {
    --fa: "\f176";
}

.fa-person-carry-box,
i.person-carry-box {
    --fa: "\f4cf";
}

.fa-person-carry,
i.person-carry {
    --fa: "\f4cf";
}

.fa-fire-flame-simple,
i.fire-flame-simple {
    --fa: "\f46a";
}

.fa-burn,
i.burn {
    --fa: "\f46a";
}

.fa-person,
i.person {
    --fa: "\f183";
}

.fa-male,
i.male {
    --fa: "\f183";
}

.fa-laptop,
i.laptop {
    --fa: "\f109";
}

.fa-file-csv,
i.file-csv {
    --fa: "\f6dd";
}

.fa-menorah,
i.menorah {
    --fa: "\f676";
}

.fa-union,
i.union {
    --fa: "\f6a2";
}

.fa-chevrons-left,
i.chevrons-left {
    --fa: "\f323";
}

.fa-chevron-double-left,
i.chevron-double-left {
    --fa: "\f323";
}

.fa-circle-heart,
i.circle-heart {
    --fa: "\f4c7";
}

.fa-heart-circle,
i.heart-circle {
    --fa: "\f4c7";
}

.fa-truck-plane,
i.truck-plane {
    --fa: "\e58f";
}

.fa-record-vinyl,
i.record-vinyl {
    --fa: "\f8d9";
}

.fa-bring-forward,
i.bring-forward {
    --fa: "\f856";
}

.fa-square-p,
i.square-p {
    --fa: "\e279";
}

.fa-face-grin-stars,
i.face-grin-stars {
    --fa: "\f587";
}

.fa-grin-stars,
i.grin-stars {
    --fa: "\f587";
}

.fa-sigma,
i.sigma {
    --fa: "\f68b";
}

.fa-camera-movie,
i.camera-movie {
    --fa: "\f8a9";
}

.fa-bong,
i.bong {
    --fa: "\f55c";
}

.fa-clarinet,
i.clarinet {
    --fa: "\f8ad";
}

.fa-truck-flatbed,
i.truck-flatbed {
    --fa: "\e2b6";
}

.fa-spaghetti-monster-flying,
i.spaghetti-monster-flying {
    --fa: "\f67b";
}

.fa-pastafarianism,
i.pastafarianism {
    --fa: "\f67b";
}

.fa-arrow-down-up-across-line,
i.arrow-down-up-across-line {
    --fa: "\e4af";
}

.fa-arrows-rotate-reverse,
i.arrows-rotate-reverse {
    --fa: "\e630";
}

.fa-leaf-heart,
i.leaf-heart {
    --fa: "\f4cb";
}

.fa-house-building,
i.house-building {
    --fa: "\e1b1";
}

.fa-cheese-swiss,
i.cheese-swiss {
    --fa: "\f7f0";
}

.fa-spoon,
i.spoon {
    --fa: "\f2e5";
}

.fa-utensil-spoon,
i.utensil-spoon {
    --fa: "\f2e5";
}

.fa-jar-wheat,
i.jar-wheat {
    --fa: "\e517";
}

.fa-envelopes-bulk,
i.envelopes-bulk {
    --fa: "\f674";
}

.fa-mail-bulk,
i.mail-bulk {
    --fa: "\f674";
}

.fa-file-circle-exclamation,
i.file-circle-exclamation {
    --fa: "\e4eb";
}

.fa-bow-arrow,
i.bow-arrow {
    --fa: "\f6b9";
}

.fa-cart-xmark,
i.cart-xmark {
    --fa: "\e0dd";
}

.fa-hexagon-xmark,
i.hexagon-xmark {
    --fa: "\f2ee";
}

.fa-times-hexagon,
i.times-hexagon {
    --fa: "\f2ee";
}

.fa-xmark-hexagon,
i.xmark-hexagon {
    --fa: "\f2ee";
}

.fa-circle-h,
i.circle-h {
    --fa: "\f47e";
}

.fa-hospital-symbol,
i.hospital-symbol {
    --fa: "\f47e";
}

.fa-merge,
i.merge {
    --fa: "\e526";
}

.fa-pager,
i.pager {
    --fa: "\f815";
}

.fa-cart-minus,
i.cart-minus {
    --fa: "\e0db";
}

.fa-address-book,
i.address-book {
    --fa: "\f2b9";
}

.fa-contact-book,
i.contact-book {
    --fa: "\f2b9";
}

.fa-pan-frying,
i.pan-frying {
    --fa: "\e42c";
}

.fa-grid,
i.grid {
    --fa: "\e195";
}

.fa-grid-3,
i.grid-3 {
    --fa: "\e195";
}

.fa-football-helmet,
i.football-helmet {
    --fa: "\f44f";
}

.fa-hand-love,
i.hand-love {
    --fa: "\e1a5";
}

.fa-trees,
i.trees {
    --fa: "\f724";
}

.fa-strikethrough,
i.strikethrough {
    --fa: "\f0cc";
}

.fa-page,
i.page {
    --fa: "\e428";
}

.fa-k,
i.k {
    --fa: "\4b";
}

.fa-diagram-previous,
i.diagram-previous {
    --fa: "\e478";
}

.fa-gauge-min,
i.gauge-min {
    --fa: "\f628";
}

.fa-tachometer-alt-slowest,
i.tachometer-alt-slowest {
    --fa: "\f628";
}

.fa-folder-grid,
i.folder-grid {
    --fa: "\e188";
}

.fa-eggplant,
i.eggplant {
    --fa: "\e16c";
}

.fa-excavator,
i.excavator {
    --fa: "\e656";
}

.fa-ram,
i.ram {
    --fa: "\f70a";
}

.fa-landmark-flag,
i.landmark-flag {
    --fa: "\e51c";
}

.fa-lips,
i.lips {
    --fa: "\f600";
}

.fa-pencil,
i.pencil {
    --fa: "\f303";
}

.fa-pencil-alt,
i.pencil-alt {
    --fa: "\f303";
}

.fa-backward,
i.backward {
    --fa: "\f04a";
}

.fa-caret-right,
i.caret-right {
    --fa: "\f0da";
}

.fa-comments,
i.comments {
    --fa: "\f086";
}

.fa-paste,
i.paste {
    --fa: "\f0ea";
}

.fa-file-clipboard,
i.file-clipboard {
    --fa: "\f0ea";
}

.fa-desktop-arrow-down,
i.desktop-arrow-down {
    --fa: "\e155";
}

.fa-code-pull-request,
i.code-pull-request {
    --fa: "\e13c";
}

.fa-pumpkin,
i.pumpkin {
    --fa: "\f707";
}

.fa-clipboard-list,
i.clipboard-list {
    --fa: "\f46d";
}

.fa-pen-field,
i.pen-field {
    --fa: "\e211";
}

.fa-blueberries,
i.blueberries {
    --fa: "\e2e8";
}

.fa-truck-ramp-box,
i.truck-ramp-box {
    --fa: "\f4de";
}

.fa-truck-loading,
i.truck-loading {
    --fa: "\f4de";
}

.fa-note,
i.note {
    --fa: "\e1ff";
}

.fa-arrow-down-to-square,
i.arrow-down-to-square {
    --fa: "\e096";
}

.fa-user-check,
i.user-check {
    --fa: "\f4fc";
}

.fa-cloud-xmark,
i.cloud-xmark {
    --fa: "\e35f";
}

.fa-vial-virus,
i.vial-virus {
    --fa: "\e597";
}

.fa-book-blank,
i.book-blank {
    --fa: "\f5d9";
}

.fa-book-alt,
i.book-alt {
    --fa: "\f5d9";
}

.fa-golf-flag-hole,
i.golf-flag-hole {
    --fa: "\e3ac";
}

.fa-message-arrow-down,
i.message-arrow-down {
    --fa: "\e1db";
}

.fa-comment-alt-arrow-down,
i.comment-alt-arrow-down {
    --fa: "\e1db";
}

.fa-face-unamused,
i.face-unamused {
    --fa: "\e39f";
}

.fa-sheet-plastic,
i.sheet-plastic {
    --fa: "\e571";
}

.fa-circle-9,
i.circle-9 {
    --fa: "\e0f6";
}

.fa-blog,
i.blog {
    --fa: "\f781";
}

.fa-user-ninja,
i.user-ninja {
    --fa: "\f504";
}

.fa-pencil-slash,
i.pencil-slash {
    --fa: "\e215";
}

.fa-bowling-pins,
i.bowling-pins {
    --fa: "\f437";
}

.fa-person-arrow-up-from-line,
i.person-arrow-up-from-line {
    --fa: "\e539";
}

.fa-down-right,
i.down-right {
    --fa: "\e16b";
}

.fa-scroll-torah,
i.scroll-torah {
    --fa: "\f6a0";
}

.fa-torah,
i.torah {
    --fa: "\f6a0";
}

.fa-webhook,
i.webhook {
    --fa: "\e5d5";
}

.fa-blinds-open,
i.blinds-open {
    --fa: "\f8fc";
}

.fa-fence,
i.fence {
    --fa: "\e303";
}

.fa-up,
i.up {
    --fa: "\f357";
}

.fa-arrow-alt-up,
i.arrow-alt-up {
    --fa: "\f357";
}

.fa-broom-ball,
i.broom-ball {
    --fa: "\f458";
}

.fa-quidditch,
i.quidditch {
    --fa: "\f458";
}

.fa-quidditch-broom-ball,
i.quidditch-broom-ball {
    --fa: "\f458";
}

.fa-drumstick,
i.drumstick {
    --fa: "\f6d6";
}

.fa-square-v,
i.square-v {
    --fa: "\e284";
}

.fa-face-awesome,
i.face-awesome {
    --fa: "\e409";
}

.fa-gave-dandy,
i.gave-dandy {
    --fa: "\e409";
}

.fa-dial-off,
i.dial-off {
    --fa: "\e162";
}

.fa-toggle-off,
i.toggle-off {
    --fa: "\f204";
}

.fa-face-smile-horns,
i.face-smile-horns {
    --fa: "\e391";
}

.fa-box-archive,
i.box-archive {
    --fa: "\f187";
}

.fa-archive,
i.archive {
    --fa: "\f187";
}

.fa-grapes,
i.grapes {
    --fa: "\e306";
}

.fa-person-drowning,
i.person-drowning {
    --fa: "\e545";
}

.fa-dial-max,
i.dial-max {
    --fa: "\e15e";
}

.fa-circle-m,
i.circle-m {
    --fa: "\e115";
}

.fa-calendar-image,
i.calendar-image {
    --fa: "\e0d4";
}

.fa-circle-caret-down,
i.circle-caret-down {
    --fa: "\f32d";
}

.fa-caret-circle-down,
i.caret-circle-down {
    --fa: "\f32d";
}

.fa-arrow-down-9-1,
i.arrow-down-9-1 {
    --fa: "\f886";
}

.fa-sort-numeric-desc,
i.sort-numeric-desc {
    --fa: "\f886";
}

.fa-sort-numeric-down-alt,
i.sort-numeric-down-alt {
    --fa: "\f886";
}

.fa-face-grin-tongue-squint,
i.face-grin-tongue-squint {
    --fa: "\f58a";
}

.fa-grin-tongue-squint,
i.grin-tongue-squint {
    --fa: "\f58a";
}

.fa-shish-kebab,
i.shish-kebab {
    --fa: "\f821";
}

.fa-spray-can,
i.spray-can {
    --fa: "\f5bd";
}

.fa-alarm-snooze,
i.alarm-snooze {
    --fa: "\f845";
}

.fa-scarecrow,
i.scarecrow {
    --fa: "\f70d";
}

.fa-truck-monster,
i.truck-monster {
    --fa: "\f63b";
}

.fa-gift-card,
i.gift-card {
    --fa: "\f663";
}

.fa-w,
i.w {
    --fa: "\57";
}

.fa-code-pull-request-draft,
i.code-pull-request-draft {
    --fa: "\e3fa";
}

.fa-square-b,
i.square-b {
    --fa: "\e264";
}

.fa-elephant,
i.elephant {
    --fa: "\f6da";
}

.fa-earth-africa,
i.earth-africa {
    --fa: "\f57c";
}

.fa-globe-africa,
i.globe-africa {
    --fa: "\f57c";
}

.fa-rainbow,
i.rainbow {
    --fa: "\f75b";
}

.fa-circle-notch,
i.circle-notch {
    --fa: "\f1ce";
}

.fa-tablet-screen-button,
i.tablet-screen-button {
    --fa: "\f3fa";
}

.fa-tablet-alt,
i.tablet-alt {
    --fa: "\f3fa";
}

.fa-paw,
i.paw {
    --fa: "\f1b0";
}

.fa-message-question,
i.message-question {
    --fa: "\e1e3";
}

.fa-cloud,
i.cloud {
    --fa: "\f0c2";
}

.fa-trowel-bricks,
i.trowel-bricks {
    --fa: "\e58a";
}

.fa-square-3,
i.square-3 {
    --fa: "\e258";
}

.fa-face-flushed,
i.face-flushed {
    --fa: "\f579";
}

.fa-flushed,
i.flushed {
    --fa: "\f579";
}

.fa-hospital-user,
i.hospital-user {
    --fa: "\f80d";
}

.fa-microwave,
i.microwave {
    --fa: "\e01b";
}

.fa-chf-sign,
i.chf-sign {
    --fa: "\e602";
}

.fa-tent-arrow-left-right,
i.tent-arrow-left-right {
    --fa: "\e57f";
}

.fa-cart-circle-arrow-up,
i.cart-circle-arrow-up {
    --fa: "\e3f0";
}

.fa-trash-clock,
i.trash-clock {
    --fa: "\e2b0";
}

.fa-reflect-both,
i.reflect-both {
    --fa: "\e66f";
}

.fa-gavel,
i.gavel {
    --fa: "\f0e3";
}

.fa-legal,
i.legal {
    --fa: "\f0e3";
}

.fa-sprinkler-ceiling,
i.sprinkler-ceiling {
    --fa: "\e44c";
}

.fa-browsers,
i.browsers {
    --fa: "\e0cb";
}

.fa-trillium,
i.trillium {
    --fa: "\e588";
}

.fa-table-cells-unlock,
i.table-cells-unlock {
    --fa: "\e692";
}

.fa-music-slash,
i.music-slash {
    --fa: "\f8d1";
}

.fa-truck-ramp,
i.truck-ramp {
    --fa: "\f4e0";
}

.fa-binoculars,
i.binoculars {
    --fa: "\f1e5";
}

.fa-microphone-slash,
i.microphone-slash {
    --fa: "\f131";
}

.fa-box-tissue,
i.box-tissue {
    --fa: "\e05b";
}

.fa-circle-c,
i.circle-c {
    --fa: "\e101";
}

.fa-star-christmas,
i.star-christmas {
    --fa: "\f7d4";
}

.fa-chart-bullet,
i.chart-bullet {
    --fa: "\e0e1";
}

.fa-motorcycle,
i.motorcycle {
    --fa: "\f21c";
}

.fa-tree-christmas,
i.tree-christmas {
    --fa: "\f7db";
}

.fa-tire-flat,
i.tire-flat {
    --fa: "\f632";
}

.fa-sunglasses,
i.sunglasses {
    --fa: "\f892";
}

.fa-badge,
i.badge {
    --fa: "\f335";
}

.fa-message-pen,
i.message-pen {
    --fa: "\f4a4";
}

.fa-comment-alt-edit,
i.comment-alt-edit {
    --fa: "\f4a4";
}

.fa-message-edit,
i.message-edit {
    --fa: "\f4a4";
}

.fa-bell-concierge,
i.bell-concierge {
    --fa: "\f562";
}

.fa-concierge-bell,
i.concierge-bell {
    --fa: "\f562";
}

.fa-pen-ruler,
i.pen-ruler {
    --fa: "\f5ae";
}

.fa-pencil-ruler,
i.pencil-ruler {
    --fa: "\f5ae";
}

.fa-file-mp3,
i.file-mp3 {
    --fa: "\e648";
}

.fa-arrow-progress,
i.arrow-progress {
    --fa: "\e5df";
}

.fa-chess-rook-piece,
i.chess-rook-piece {
    --fa: "\f448";
}

.fa-chess-rook-alt,
i.chess-rook-alt {
    --fa: "\f448";
}

.fa-square-root,
i.square-root {
    --fa: "\f697";
}

.fa-album-collection-circle-plus,
i.album-collection-circle-plus {
    --fa: "\e48e";
}

.fa-people-arrows,
i.people-arrows {
    --fa: "\e068";
}

.fa-people-arrows-left-right,
i.people-arrows-left-right {
    --fa: "\e068";
}

.fa-sign-post,
i.sign-post {
    --fa: "\e624";
}

.fa-face-angry-horns,
i.face-angry-horns {
    --fa: "\e368";
}

.fa-mars-and-venus-burst,
i.mars-and-venus-burst {
    --fa: "\e523";
}

.fa-tombstone,
i.tombstone {
    --fa: "\f720";
}

.fa-square-caret-right,
i.square-caret-right {
    --fa: "\f152";
}

.fa-caret-square-right,
i.caret-square-right {
    --fa: "\f152";
}

.fa-scissors,
i.scissors {
    --fa: "\f0c4";
}

.fa-cut,
i.cut {
    --fa: "\f0c4";
}

.fa-list-music,
i.list-music {
    --fa: "\f8c9";
}

.fa-sun-plant-wilt,
i.sun-plant-wilt {
    --fa: "\e57a";
}

.fa-toilets-portable,
i.toilets-portable {
    --fa: "\e584";
}

.fa-hockey-puck,
i.hockey-puck {
    --fa: "\f453";
}

.fa-mustache,
i.mustache {
    --fa: "\e5bc";
}

.fa-hyphen,
i.hyphen {
    --fa: "\2d";
}

.fa-table,
i.table {
    --fa: "\f0ce";
}

.fa-user-chef,
i.user-chef {
    --fa: "\e3d2";
}

.fa-message-image,
i.message-image {
    --fa: "\e1e0";
}

.fa-comment-alt-image,
i.comment-alt-image {
    --fa: "\e1e0";
}

.fa-users-medical,
i.users-medical {
    --fa: "\f830";
}

.fa-sensor-triangle-exclamation,
i.sensor-triangle-exclamation {
    --fa: "\e029";
}

.fa-sensor-alert,
i.sensor-alert {
    --fa: "\e029";
}

.fa-magnifying-glass-arrow-right,
i.magnifying-glass-arrow-right {
    --fa: "\e521";
}

.fa-tachograph-digital,
i.tachograph-digital {
    --fa: "\f566";
}

.fa-digital-tachograph,
i.digital-tachograph {
    --fa: "\f566";
}

.fa-face-mask,
i.face-mask {
    --fa: "\e37f";
}

.fa-pickleball,
i.pickleball {
    --fa: "\e435";
}

.fa-star-sharp-half,
i.star-sharp-half {
    --fa: "\e28c";
}

.fa-users-slash,
i.users-slash {
    --fa: "\e073";
}

.fa-clover,
i.clover {
    --fa: "\e139";
}

.fa-meat,
i.meat {
    --fa: "\f814";
}

.fa-reply,
i.reply {
    --fa: "\f3e5";
}

.fa-mail-reply,
i.mail-reply {
    --fa: "\f3e5";
}

.fa-star-and-crescent,
i.star-and-crescent {
    --fa: "\f699";
}

.fa-empty-set,
i.empty-set {
    --fa: "\f656";
}

.fa-house-fire,
i.house-fire {
    --fa: "\e50c";
}

.fa-square-minus,
i.square-minus {
    --fa: "\f146";
}

.fa-minus-square,
i.minus-square {
    --fa: "\f146";
}

.fa-helicopter,
i.helicopter {
    --fa: "\f533";
}

.fa-bird,
i.bird {
    --fa: "\e469";
}

.fa-compass,
i.compass {
    --fa: "\f14e";
}

.fa-square-caret-down,
i.square-caret-down {
    --fa: "\f150";
}

.fa-caret-square-down,
i.caret-square-down {
    --fa: "\f150";
}

.fa-heart-half-stroke,
i.heart-half-stroke {
    --fa: "\e1ac";
}

.fa-heart-half-alt,
i.heart-half-alt {
    --fa: "\e1ac";
}

.fa-file-circle-question,
i.file-circle-question {
    --fa: "\e4ef";
}

.fa-truck-utensils,
i.truck-utensils {
    --fa: "\e628";
}

.fa-laptop-code,
i.laptop-code {
    --fa: "\f5fc";
}

.fa-joystick,
i.joystick {
    --fa: "\f8c5";
}

.fa-grill-fire,
i.grill-fire {
    --fa: "\e5a4";
}

.fa-rectangle-vertical-history,
i.rectangle-vertical-history {
    --fa: "\e237";
}

.fa-swatchbook,
i.swatchbook {
    --fa: "\f5c3";
}

.fa-prescription-bottle,
i.prescription-bottle {
    --fa: "\f485";
}

.fa-bars,
i.bars {
    --fa: "\f0c9";
}

.fa-navicon,
i.navicon {
    --fa: "\f0c9";
}

.fa-keyboard-left,
i.keyboard-left {
    --fa: "\e1c3";
}

.fa-people-group,
i.people-group {
    --fa: "\e533";
}

.fa-hourglass-end,
i.hourglass-end {
    --fa: "\f253";
}

.fa-hourglass-3,
i.hourglass-3 {
    --fa: "\f253";
}

.fa-heart-crack,
i.heart-crack {
    --fa: "\f7a9";
}

.fa-heart-broken,
i.heart-broken {
    --fa: "\f7a9";
}

.fa-face-beam-hand-over-mouth,
i.face-beam-hand-over-mouth {
    --fa: "\e47c";
}

.fa-droplet-percent,
i.droplet-percent {
    --fa: "\f750";
}

.fa-humidity,
i.humidity {
    --fa: "\f750";
}

.fa-square-up-right,
i.square-up-right {
    --fa: "\f360";
}

.fa-external-link-square-alt,
i.external-link-square-alt {
    --fa: "\f360";
}

.fa-face-kiss-beam,
i.face-kiss-beam {
    --fa: "\f597";
}

.fa-kiss-beam,
i.kiss-beam {
    --fa: "\f597";
}

.fa-corn,
i.corn {
    --fa: "\f6c7";
}

.fa-roller-coaster,
i.roller-coaster {
    --fa: "\e324";
}

.fa-photo-film-music,
i.photo-film-music {
    --fa: "\e228";
}

.fa-radar,
i.radar {
    --fa: "\e024";
}

.fa-sickle,
i.sickle {
    --fa: "\f822";
}

.fa-film,
i.film {
    --fa: "\f008";
}

.fa-coconut,
i.coconut {
    --fa: "\e2f6";
}

.fa-ruler-horizontal,
i.ruler-horizontal {
    --fa: "\f547";
}

.fa-shield-cross,
i.shield-cross {
    --fa: "\f712";
}

.fa-cassette-tape,
i.cassette-tape {
    --fa: "\f8ab";
}

.fa-square-terminal,
i.square-terminal {
    --fa: "\e32a";
}

.fa-people-robbery,
i.people-robbery {
    --fa: "\e536";
}

.fa-lightbulb,
i.lightbulb {
    --fa: "\f0eb";
}

.fa-caret-left,
i.caret-left {
    --fa: "\f0d9";
}

.fa-comment-middle,
i.comment-middle {
    --fa: "\e149";
}

.fa-trash-can-list,
i.trash-can-list {
    --fa: "\e2ab";
}

.fa-block,
i.block {
    --fa: "\e46a";
}

.fa-circle-exclamation,
i.circle-exclamation {
    --fa: "\f06a";
}

.fa-exclamation-circle,
i.exclamation-circle {
    --fa: "\f06a";
}

.fa-school-circle-xmark,
i.school-circle-xmark {
    --fa: "\e56d";
}

.fa-arrow-right-from-bracket,
i.arrow-right-from-bracket {
    --fa: "\f08b";
}

.fa-sign-out,
i.sign-out {
    --fa: "\f08b";
}

.fa-face-frown-slight,
i.face-frown-slight {
    --fa: "\e376";
}

.fa-circle-chevron-down,
i.circle-chevron-down {
    --fa: "\f13a";
}

.fa-chevron-circle-down,
i.chevron-circle-down {
    --fa: "\f13a";
}

.fa-sidebar-flip,
i.sidebar-flip {
    --fa: "\e24f";
}

.fa-unlock-keyhole,
i.unlock-keyhole {
    --fa: "\f13e";
}

.fa-unlock-alt,
i.unlock-alt {
    --fa: "\f13e";
}

.fa-temperature-list,
i.temperature-list {
    --fa: "\e299";
}

.fa-cloud-showers-heavy,
i.cloud-showers-heavy {
    --fa: "\f740";
}

.fa-headphones-simple,
i.headphones-simple {
    --fa: "\f58f";
}

.fa-headphones-alt,
i.headphones-alt {
    --fa: "\f58f";
}

.fa-sitemap,
i.sitemap {
    --fa: "\f0e8";
}

.fa-pipe-section,
i.pipe-section {
    --fa: "\e438";
}

.fa-space-station-moon-construction,
i.space-station-moon-construction {
    --fa: "\e034";
}

.fa-space-station-moon-alt,
i.space-station-moon-alt {
    --fa: "\e034";
}

.fa-circle-dollar-to-slot,
i.circle-dollar-to-slot {
    --fa: "\f4b9";
}

.fa-donate,
i.donate {
    --fa: "\f4b9";
}

.fa-memory,
i.memory {
    --fa: "\f538";
}

.fa-face-sleeping,
i.face-sleeping {
    --fa: "\e38d";
}

.fa-road-spikes,
i.road-spikes {
    --fa: "\e568";
}

.fa-fire-burner,
i.fire-burner {
    --fa: "\e4f1";
}

.fa-squirrel,
i.squirrel {
    --fa: "\f71a";
}

.fa-arrow-up-to-line,
i.arrow-up-to-line {
    --fa: "\f341";
}

.fa-arrow-to-top,
i.arrow-to-top {
    --fa: "\f341";
}

.fa-flag,
i.flag {
    --fa: "\f024";
}

.fa-face-cowboy-hat,
i.face-cowboy-hat {
    --fa: "\e36e";
}

.fa-hanukiah,
i.hanukiah {
    --fa: "\f6e6";
}

.fa-chart-scatter-3d,
i.chart-scatter-3d {
    --fa: "\e0e8";
}

.fa-display-chart-up,
i.display-chart-up {
    --fa: "\e5e3";
}

.fa-square-code,
i.square-code {
    --fa: "\e267";
}

.fa-feather,
i.feather {
    --fa: "\f52d";
}

.fa-volume-low,
i.volume-low {
    --fa: "\f027";
}

.fa-volume-down,
i.volume-down {
    --fa: "\f027";
}

.fa-xmark-to-slot,
i.xmark-to-slot {
    --fa: "\f771";
}

.fa-times-to-slot,
i.times-to-slot {
    --fa: "\f771";
}

.fa-vote-nay,
i.vote-nay {
    --fa: "\f771";
}

.fa-box-taped,
i.box-taped {
    --fa: "\f49a";
}

.fa-box-alt,
i.box-alt {
    --fa: "\f49a";
}

.fa-comment-slash,
i.comment-slash {
    --fa: "\f4b3";
}

.fa-swords,
i.swords {
    --fa: "\f71d";
}

.fa-cloud-sun-rain,
i.cloud-sun-rain {
    --fa: "\f743";
}

.fa-album,
i.album {
    --fa: "\f89f";
}

.fa-circle-n,
i.circle-n {
    --fa: "\e118";
}

.fa-compress,
i.compress {
    --fa: "\f066";
}

.fa-wheat-awn,
i.wheat-awn {
    --fa: "\e2cd";
}

.fa-wheat-alt,
i.wheat-alt {
    --fa: "\e2cd";
}

.fa-ankh,
i.ankh {
    --fa: "\f644";
}

.fa-hands-holding-child,
i.hands-holding-child {
    --fa: "\e4fa";
}

.fa-asterisk,
i.asterisk {
    --fa: "\2a";
}

.fa-key-skeleton-left-right,
i.key-skeleton-left-right {
    --fa: "\e3b4";
}

.fa-comment-lines,
i.comment-lines {
    --fa: "\f4b0";
}

.fa-luchador-mask,
i.luchador-mask {
    --fa: "\f455";
}

.fa-luchador,
i.luchador {
    --fa: "\f455";
}

.fa-mask-luchador,
i.mask-luchador {
    --fa: "\f455";
}

.fa-square-check,
i.square-check {
    --fa: "\f14a";
}

.fa-check-square,
i.check-square {
    --fa: "\f14a";
}

.fa-shredder,
i.shredder {
    --fa: "\f68a";
}

.fa-book-open-cover,
i.book-open-cover {
    --fa: "\e0c0";
}

.fa-book-open-alt,
i.book-open-alt {
    --fa: "\e0c0";
}

.fa-sandwich,
i.sandwich {
    --fa: "\f81f";
}

.fa-peseta-sign,
i.peseta-sign {
    --fa: "\e221";
}

.fa-square-parking-slash,
i.square-parking-slash {
    --fa: "\f617";
}

.fa-parking-slash,
i.parking-slash {
    --fa: "\f617";
}

.fa-train-tunnel,
i.train-tunnel {
    --fa: "\e454";
}

.fa-heading,
i.heading {
    --fa: "\f1dc";
}

.fa-header,
i.header {
    --fa: "\f1dc";
}

.fa-ghost,
i.ghost {
    --fa: "\f6e2";
}

.fa-face-anguished,
i.face-anguished {
    --fa: "\e369";
}

.fa-hockey-sticks,
i.hockey-sticks {
    --fa: "\f454";
}

.fa-abacus,
i.abacus {
    --fa: "\f640";
}

.fa-film-simple,
i.film-simple {
    --fa: "\f3a0";
}

.fa-film-alt,
i.film-alt {
    --fa: "\f3a0";
}

.fa-list,
i.list {
    --fa: "\f03a";
}

.fa-list-squares,
i.list-squares {
    --fa: "\f03a";
}

.fa-tree-palm,
i.tree-palm {
    --fa: "\f82b";
}

.fa-square-phone-flip,
i.square-phone-flip {
    --fa: "\f87b";
}

.fa-phone-square-alt,
i.phone-square-alt {
    --fa: "\f87b";
}

.fa-user-beard-bolt,
i.user-beard-bolt {
    --fa: "\e689";
}

.fa-cart-plus,
i.cart-plus {
    --fa: "\f217";
}

.fa-gamepad,
i.gamepad {
    --fa: "\f11b";
}

.fa-border-center-v,
i.border-center-v {
    --fa: "\f89d";
}

.fa-circle-dot,
i.circle-dot {
    --fa: "\f192";
}

.fa-dot-circle,
i.dot-circle {
    --fa: "\f192";
}

.fa-clipboard-medical,
i.clipboard-medical {
    --fa: "\e133";
}

.fa-face-dizzy,
i.face-dizzy {
    --fa: "\f567";
}

.fa-dizzy,
i.dizzy {
    --fa: "\f567";
}

.fa-egg,
i.egg {
    --fa: "\f7fb";
}

.fa-up-to-line,
i.up-to-line {
    --fa: "\f34d";
}

.fa-arrow-alt-to-top,
i.arrow-alt-to-top {
    --fa: "\f34d";
}

.fa-house-medical-circle-xmark,
i.house-medical-circle-xmark {
    --fa: "\e513";
}

.fa-watch-fitness,
i.watch-fitness {
    --fa: "\f63e";
}

.fa-clock-nine-thirty,
i.clock-nine-thirty {
    --fa: "\e34d";
}

.fa-campground,
i.campground {
    --fa: "\f6bb";
}

.fa-folder-plus,
i.folder-plus {
    --fa: "\f65e";
}

.fa-jug,
i.jug {
    --fa: "\f8c6";
}

.fa-futbol,
i.futbol {
    --fa: "\f1e3";
}

.fa-futbol-ball,
i.futbol-ball {
    --fa: "\f1e3";
}

.fa-soccer-ball,
i.soccer-ball {
    --fa: "\f1e3";
}

.fa-snow-blowing,
i.snow-blowing {
    --fa: "\f761";
}

.fa-paintbrush,
i.paintbrush {
    --fa: "\f1fc";
}

.fa-paint-brush,
i.paint-brush {
    --fa: "\f1fc";
}

.fa-lock,
i.lock {
    --fa: "\f023";
}

.fa-arrow-down-from-line,
i.arrow-down-from-line {
    --fa: "\f345";
}

.fa-arrow-from-top,
i.arrow-from-top {
    --fa: "\f345";
}

.fa-gas-pump,
i.gas-pump {
    --fa: "\f52f";
}

.fa-signal-bars-slash,
i.signal-bars-slash {
    --fa: "\f694";
}

.fa-signal-alt-slash,
i.signal-alt-slash {
    --fa: "\f694";
}

.fa-monkey,
i.monkey {
    --fa: "\f6fb";
}

.fa-rectangle-pro,
i.rectangle-pro {
    --fa: "\e235";
}

.fa-pro,
i.pro {
    --fa: "\e235";
}

.fa-house-night,
i.house-night {
    --fa: "\e010";
}

.fa-hot-tub-person,
i.hot-tub-person {
    --fa: "\f593";
}

.fa-hot-tub,
i.hot-tub {
    --fa: "\f593";
}

.fa-globe-pointer,
i.globe-pointer {
    --fa: "\e60e";
}

.fa-blanket,
i.blanket {
    --fa: "\f498";
}

.fa-map-location,
i.map-location {
    --fa: "\f59f";
}

.fa-map-marked,
i.map-marked {
    --fa: "\f59f";
}

.fa-house-flood-water,
i.house-flood-water {
    --fa: "\e50e";
}

.fa-comments-question-check,
i.comments-question-check {
    --fa: "\e14f";
}

.fa-tree,
i.tree {
    --fa: "\f1bb";
}

.fa-arrows-cross,
i.arrows-cross {
    --fa: "\e0a2";
}

.fa-backpack,
i.backpack {
    --fa: "\f5d4";
}

.fa-square-small,
i.square-small {
    --fa: "\e27e";
}

.fa-folder-arrow-up,
i.folder-arrow-up {
    --fa: "\e054";
}

.fa-folder-upload,
i.folder-upload {
    --fa: "\e054";
}

.fa-bridge-lock,
i.bridge-lock {
    --fa: "\e4cc";
}

.fa-crosshairs-simple,
i.crosshairs-simple {
    --fa: "\e59f";
}

.fa-sack-dollar,
i.sack-dollar {
    --fa: "\f81d";
}

.fa-pen-to-square,
i.pen-to-square {
    --fa: "\f044";
}

.fa-edit,
i.edit {
    --fa: "\f044";
}

.fa-square-sliders,
i.square-sliders {
    --fa: "\f3f0";
}

.fa-sliders-h-square,
i.sliders-h-square {
    --fa: "\f3f0";
}

.fa-car-side,
i.car-side {
    --fa: "\f5e4";
}

.fa-message-middle-top,
i.message-middle-top {
    --fa: "\e1e2";
}

.fa-comment-middle-top-alt,
i.comment-middle-top-alt {
    --fa: "\e1e2";
}

.fa-lightbulb-on,
i.lightbulb-on {
    --fa: "\f672";
}

.fa-knife,
i.knife {
    --fa: "\f2e4";
}

.fa-utensil-knife,
i.utensil-knife {
    --fa: "\f2e4";
}

.fa-share-nodes,
i.share-nodes {
    --fa: "\f1e0";
}

.fa-share-alt,
i.share-alt {
    --fa: "\f1e0";
}

.fa-display-chart-up-circle-dollar,
i.display-chart-up-circle-dollar {
    --fa: "\e5e6";
}

.fa-wave-sine,
i.wave-sine {
    --fa: "\f899";
}

.fa-heart-circle-minus,
i.heart-circle-minus {
    --fa: "\e4ff";
}

.fa-circle-w,
i.circle-w {
    --fa: "\e12c";
}

.fa-circle-calendar,
i.circle-calendar {
    --fa: "\e102";
}

.fa-calendar-circle,
i.calendar-circle {
    --fa: "\e102";
}

.fa-hourglass-half,
i.hourglass-half {
    --fa: "\f252";
}

.fa-hourglass-2,
i.hourglass-2 {
    --fa: "\f252";
}

.fa-microscope,
i.microscope {
    --fa: "\f610";
}

.fa-sunset,
i.sunset {
    --fa: "\f767";
}

.fa-sink,
i.sink {
    --fa: "\e06d";
}

.fa-calendar-exclamation,
i.calendar-exclamation {
    --fa: "\f334";
}

.fa-truck-container-empty,
i.truck-container-empty {
    --fa: "\e2b5";
}

.fa-hand-heart,
i.hand-heart {
    --fa: "\f4bc";
}

.fa-bag-shopping,
i.bag-shopping {
    --fa: "\f290";
}

.fa-shopping-bag,
i.shopping-bag {
    --fa: "\f290";
}

.fa-arrow-down-z-a,
i.arrow-down-z-a {
    --fa: "\f881";
}

.fa-sort-alpha-desc,
i.sort-alpha-desc {
    --fa: "\f881";
}

.fa-sort-alpha-down-alt,
i.sort-alpha-down-alt {
    --fa: "\f881";
}

.fa-mitten,
i.mitten {
    --fa: "\f7b5";
}

.fa-reply-clock,
i.reply-clock {
    --fa: "\e239";
}

.fa-reply-time,
i.reply-time {
    --fa: "\e239";
}

.fa-person-rays,
i.person-rays {
    --fa: "\e54d";
}

.fa-right,
i.right {
    --fa: "\f356";
}

.fa-arrow-alt-right,
i.arrow-alt-right {
    --fa: "\f356";
}

.fa-circle-f,
i.circle-f {
    --fa: "\e10e";
}

.fa-users,
i.users {
    --fa: "\f0c0";
}

.fa-face-pleading,
i.face-pleading {
    --fa: "\e386";
}

.fa-eye-slash,
i.eye-slash {
    --fa: "\f070";
}

.fa-flask-vial,
i.flask-vial {
    --fa: "\e4f3";
}

.fa-police-box,
i.police-box {
    --fa: "\e021";
}

.fa-cucumber,
i.cucumber {
    --fa: "\e401";
}

.fa-head-side-brain,
i.head-side-brain {
    --fa: "\f808";
}

.fa-hand,
i.hand {
    --fa: "\f256";
}

.fa-hand-paper,
i.hand-paper {
    --fa: "\f256";
}

.fa-person-biking-mountain,
i.person-biking-mountain {
    --fa: "\f84b";
}

.fa-biking-mountain,
i.biking-mountain {
    --fa: "\f84b";
}

.fa-utensils-slash,
i.utensils-slash {
    --fa: "\e464";
}

.fa-print-magnifying-glass,
i.print-magnifying-glass {
    --fa: "\f81a";
}

.fa-print-search,
i.print-search {
    --fa: "\f81a";
}

.fa-turn-right,
i.turn-right {
    --fa: "\e639";
}

.fa-folder-bookmark,
i.folder-bookmark {
    --fa: "\e186";
}

.fa-arrow-turn-left-down,
i.arrow-turn-left-down {
    --fa: "\e633";
}

.fa-om,
i.om {
    --fa: "\f679";
}

.fa-pi,
i.pi {
    --fa: "\f67e";
}

.fa-flask-round-potion,
i.flask-round-potion {
    --fa: "\f6e1";
}

.fa-flask-potion,
i.flask-potion {
    --fa: "\f6e1";
}

.fa-face-shush,
i.face-shush {
    --fa: "\e38c";
}

.fa-worm,
i.worm {
    --fa: "\e599";
}

.fa-house-circle-xmark,
i.house-circle-xmark {
    --fa: "\e50b";
}

.fa-plug,
i.plug {
    --fa: "\f1e6";
}

.fa-calendar-circle-exclamation,
i.calendar-circle-exclamation {
    --fa: "\e46e";
}

.fa-square-i,
i.square-i {
    --fa: "\e272";
}

.fa-chevron-up,
i.chevron-up {
    --fa: "\f077";
}

.fa-face-saluting,
i.face-saluting {
    --fa: "\e484";
}

.fa-gauge-simple-low,
i.gauge-simple-low {
    --fa: "\f62c";
}

.fa-tachometer-slow,
i.tachometer-slow {
    --fa: "\f62c";
}

.fa-face-persevering,
i.face-persevering {
    --fa: "\e385";
}

.fa-circle-camera,
i.circle-camera {
    --fa: "\e103";
}

.fa-camera-circle,
i.camera-circle {
    --fa: "\e103";
}

.fa-hand-spock,
i.hand-spock {
    --fa: "\f259";
}

.fa-spider-web,
i.spider-web {
    --fa: "\f719";
}

.fa-circle-microphone,
i.circle-microphone {
    --fa: "\e116";
}

.fa-microphone-circle,
i.microphone-circle {
    --fa: "\e116";
}

.fa-book-arrow-up,
i.book-arrow-up {
    --fa: "\e0ba";
}

.fa-popsicle,
i.popsicle {
    --fa: "\e43e";
}

.fa-command,
i.command {
    --fa: "\e142";
}

.fa-blinds,
i.blinds {
    --fa: "\f8fb";
}

.fa-stopwatch,
i.stopwatch {
    --fa: "\f2f2";
}

.fa-saxophone,
i.saxophone {
    --fa: "\f8dc";
}

.fa-square-2,
i.square-2 {
    --fa: "\e257";
}

.fa-field-hockey-stick-ball,
i.field-hockey-stick-ball {
    --fa: "\f44c";
}

.fa-field-hockey,
i.field-hockey {
    --fa: "\f44c";
}

.fa-arrow-up-square-triangle,
i.arrow-up-square-triangle {
    --fa: "\f88b";
}

.fa-sort-shapes-up-alt,
i.sort-shapes-up-alt {
    --fa: "\f88b";
}

.fa-face-scream,
i.face-scream {
    --fa: "\e38b";
}

.fa-square-m,
i.square-m {
    --fa: "\e276";
}

.fa-camera-web,
i.camera-web {
    --fa: "\f832";
}

.fa-webcam,
i.webcam {
    --fa: "\f832";
}

.fa-comment-arrow-down,
i.comment-arrow-down {
    --fa: "\e143";
}

.fa-lightbulb-cfl,
i.lightbulb-cfl {
    --fa: "\e5a6";
}

.fa-window-frame-open,
i.window-frame-open {
    --fa: "\e050";
}

.fa-face-kiss,
i.face-kiss {
    --fa: "\f596";
}

.fa-kiss,
i.kiss {
    --fa: "\f596";
}

.fa-bridge-circle-xmark,
i.bridge-circle-xmark {
    --fa: "\e4cb";
}

.fa-period,
i.period {
    --fa: "\2e";
}

.fa-face-grin-tongue,
i.face-grin-tongue {
    --fa: "\f589";
}

.fa-grin-tongue,
i.grin-tongue {
    --fa: "\f589";
}

.fa-up-to-dotted-line,
i.up-to-dotted-line {
    --fa: "\e457";
}

.fa-thought-bubble,
i.thought-bubble {
    --fa: "\e32e";
}

.fa-skeleton-ribs,
i.skeleton-ribs {
    --fa: "\e5cb";
}

.fa-raygun,
i.raygun {
    --fa: "\e025";
}

.fa-flute,
i.flute {
    --fa: "\f8b9";
}

.fa-acorn,
i.acorn {
    --fa: "\f6ae";
}

.fa-video-arrow-up-right,
i.video-arrow-up-right {
    --fa: "\e2c9";
}

.fa-grate-droplet,
i.grate-droplet {
    --fa: "\e194";
}

.fa-seal-exclamation,
i.seal-exclamation {
    --fa: "\e242";
}

.fa-chess-bishop,
i.chess-bishop {
    --fa: "\f43a";
}

.fa-message-sms,
i.message-sms {
    --fa: "\e1e5";
}

.fa-coffee-beans,
i.coffee-beans {
    --fa: "\e13f";
}

.fa-hat-witch,
i.hat-witch {
    --fa: "\f6e7";
}

.fa-face-grin-wink,
i.face-grin-wink {
    --fa: "\f58c";
}

.fa-grin-wink,
i.grin-wink {
    --fa: "\f58c";
}

.fa-clock-three-thirty,
i.clock-three-thirty {
    --fa: "\e357";
}

.fa-ear-deaf,
i.ear-deaf {
    --fa: "\f2a4";
}

.fa-deaf,
i.deaf {
    --fa: "\f2a4";
}

.fa-deafness,
i.deafness {
    --fa: "\f2a4";
}

.fa-hard-of-hearing,
i.hard-of-hearing {
    --fa: "\f2a4";
}

.fa-alarm-clock,
i.alarm-clock {
    --fa: "\f34e";
}

.fa-eclipse,
i.eclipse {
    --fa: "\f749";
}

.fa-face-relieved,
i.face-relieved {
    --fa: "\e389";
}

.fa-road-circle-check,
i.road-circle-check {
    --fa: "\e564";
}

.fa-dice-five,
i.dice-five {
    --fa: "\f523";
}

.fa-octagon-minus,
i.octagon-minus {
    --fa: "\f308";
}

.fa-minus-octagon,
i.minus-octagon {
    --fa: "\f308";
}

.fa-square-rss,
i.square-rss {
    --fa: "\f143";
}

.fa-rss-square,
i.rss-square {
    --fa: "\f143";
}

.fa-face-zany,
i.face-zany {
    --fa: "\e3a4";
}

.fa-tricycle,
i.tricycle {
    --fa: "\e5c3";
}

.fa-land-mine-on,
i.land-mine-on {
    --fa: "\e51b";
}

.fa-square-arrow-up-left,
i.square-arrow-up-left {
    --fa: "\e263";
}

.fa-i-cursor,
i.i-cursor {
    --fa: "\f246";
}

.fa-chart-mixed-up-circle-dollar,
i.chart-mixed-up-circle-dollar {
    --fa: "\e5d9";
}

.fa-salt-shaker,
i.salt-shaker {
    --fa: "\e446";
}

.fa-stamp,
i.stamp {
    --fa: "\f5bf";
}

.fa-file-plus,
i.file-plus {
    --fa: "\f319";
}

.fa-draw-square,
i.draw-square {
    --fa: "\f5ef";
}

.fa-toilet-paper-under-slash,
i.toilet-paper-under-slash {
    --fa: "\e2a1";
}

.fa-toilet-paper-reverse-slash,
i.toilet-paper-reverse-slash {
    --fa: "\e2a1";
}

.fa-stairs,
i.stairs {
    --fa: "\e289";
}

.fa-drone-front,
i.drone-front {
    --fa: "\f860";
}

.fa-drone-alt,
i.drone-alt {
    --fa: "\f860";
}

.fa-glass-empty,
i.glass-empty {
    --fa: "\e191";
}

.fa-dial-high,
i.dial-high {
    --fa: "\e15c";
}

.fa-user-helmet-safety,
i.user-helmet-safety {
    --fa: "\f82c";
}

.fa-user-construction,
i.user-construction {
    --fa: "\f82c";
}

.fa-user-hard-hat,
i.user-hard-hat {
    --fa: "\f82c";
}

.fa-i,
i.i {
    --fa: "\49";
}

.fa-hryvnia-sign,
i.hryvnia-sign {
    --fa: "\f6f2";
}

.fa-hryvnia,
i.hryvnia {
    --fa: "\f6f2";
}

.fa-arrow-down-left-and-arrow-up-right-to-center,
i.arrow-down-left-and-arrow-up-right-to-center {
    --fa: "\e092";
}

.fa-pills,
i.pills {
    --fa: "\f484";
}

.fa-face-grin-wide,
i.face-grin-wide {
    --fa: "\f581";
}

.fa-grin-alt,
i.grin-alt {
    --fa: "\f581";
}

.fa-tooth,
i.tooth {
    --fa: "\f5c9";
}

.fa-basketball-hoop,
i.basketball-hoop {
    --fa: "\f435";
}

.fa-objects-align-bottom,
i.objects-align-bottom {
    --fa: "\e3bb";
}

.fa-v,
i.v {
    --fa: "\56";
}

.fa-sparkles,
i.sparkles {
    --fa: "\f890";
}

.fa-squid,
i.squid {
    --fa: "\e450";
}

.fa-leafy-green,
i.leafy-green {
    --fa: "\e41d";
}

.fa-circle-arrow-up-right,
i.circle-arrow-up-right {
    --fa: "\e0fc";
}

.fa-calendars,
i.calendars {
    --fa: "\e0d7";
}

.fa-bangladeshi-taka-sign,
i.bangladeshi-taka-sign {
    --fa: "\e2e6";
}

.fa-bicycle,
i.bicycle {
    --fa: "\f206";
}

.fa-hammer-war,
i.hammer-war {
    --fa: "\f6e4";
}

.fa-circle-d,
i.circle-d {
    --fa: "\e104";
}

.fa-spider-black-widow,
i.spider-black-widow {
    --fa: "\f718";
}

.fa-staff-snake,
i.staff-snake {
    --fa: "\e579";
}

.fa-rod-asclepius,
i.rod-asclepius {
    --fa: "\e579";
}

.fa-rod-snake,
i.rod-snake {
    --fa: "\e579";
}

.fa-staff-aesculapius,
i.staff-aesculapius {
    --fa: "\e579";
}

.fa-pear,
i.pear {
    --fa: "\e20c";
}

.fa-head-side-cough-slash,
i.head-side-cough-slash {
    --fa: "\e062";
}

.fa-file-mov,
i.file-mov {
    --fa: "\e647";
}

.fa-triangle,
i.triangle {
    --fa: "\f2ec";
}

.fa-apartment,
i.apartment {
    --fa: "\e468";
}

.fa-truck-medical,
i.truck-medical {
    --fa: "\f0f9";
}

.fa-ambulance,
i.ambulance {
    --fa: "\f0f9";
}

.fa-pepper,
i.pepper {
    --fa: "\e432";
}

.fa-piano,
i.piano {
    --fa: "\f8d4";
}

.fa-gun-squirt,
i.gun-squirt {
    --fa: "\e19d";
}

.fa-wheat-awn-circle-exclamation,
i.wheat-awn-circle-exclamation {
    --fa: "\e598";
}

.fa-snowman,
i.snowman {
    --fa: "\f7d0";
}

.fa-user-alien,
i.user-alien {
    --fa: "\e04a";
}

.fa-shield-check,
i.shield-check {
    --fa: "\f2f7";
}

.fa-mortar-pestle,
i.mortar-pestle {
    --fa: "\f5a7";
}

.fa-road-barrier,
i.road-barrier {
    --fa: "\e562";
}

.fa-chart-candlestick,
i.chart-candlestick {
    --fa: "\e0e2";
}

.fa-briefcase-blank,
i.briefcase-blank {
    --fa: "\e0c8";
}

.fa-school,
i.school {
    --fa: "\f549";
}

.fa-igloo,
i.igloo {
    --fa: "\f7ae";
}

.fa-bracket-round,
i.bracket-round {
    --fa: "\28";
}

.fa-parenthesis,
i.parenthesis {
    --fa: "\28";
}

.fa-joint,
i.joint {
    --fa: "\f595";
}

.fa-horse-saddle,
i.horse-saddle {
    --fa: "\f8c3";
}

.fa-mug-marshmallows,
i.mug-marshmallows {
    --fa: "\f7b7";
}

.fa-filters,
i.filters {
    --fa: "\e17e";
}

.fa-bell-on,
i.bell-on {
    --fa: "\f8fa";
}

.fa-angle-right,
i.angle-right {
    --fa: "\f105";
}

.fa-dial-med,
i.dial-med {
    --fa: "\e15f";
}

.fa-horse,
i.horse {
    --fa: "\f6f0";
}

.fa-q,
i.q {
    --fa: "\51";
}

.fa-monitor-waveform,
i.monitor-waveform {
    --fa: "\f611";
}

.fa-monitor-heart-rate,
i.monitor-heart-rate {
    --fa: "\f611";
}

.fa-link-simple,
i.link-simple {
    --fa: "\e1cd";
}

.fa-whistle,
i.whistle {
    --fa: "\f460";
}

.fa-g,
i.g {
    --fa: "\47";
}

.fa-wine-glass-crack,
i.wine-glass-crack {
    --fa: "\f4bb";
}

.fa-fragile,
i.fragile {
    --fa: "\f4bb";
}

.fa-slot-machine,
i.slot-machine {
    --fa: "\e3ce";
}

.fa-notes-medical,
i.notes-medical {
    --fa: "\f481";
}

.fa-car-wash,
i.car-wash {
    --fa: "\f5e6";
}

.fa-escalator,
i.escalator {
    --fa: "\e171";
}

.fa-comment-image,
i.comment-image {
    --fa: "\e148";
}

.fa-temperature-half,
i.temperature-half {
    --fa: "\f2c9";
}

.fa-temperature-2,
i.temperature-2 {
    --fa: "\f2c9";
}

.fa-thermometer-2,
i.thermometer-2 {
    --fa: "\f2c9";
}

.fa-thermometer-half,
i.thermometer-half {
    --fa: "\f2c9";
}

.fa-dong-sign,
i.dong-sign {
    --fa: "\e169";
}

.fa-donut,
i.donut {
    --fa: "\e406";
}

.fa-doughnut,
i.doughnut {
    --fa: "\e406";
}

.fa-capsules,
i.capsules {
    --fa: "\f46b";
}

.fa-poo-storm,
i.poo-storm {
    --fa: "\f75a";
}

.fa-poo-bolt,
i.poo-bolt {
    --fa: "\f75a";
}

.fa-tally-1,
i.tally-1 {
    --fa: "\e294";
}

.fa-file-vector,
i.file-vector {
    --fa: "\e64c";
}

.fa-face-frown-open,
i.face-frown-open {
    --fa: "\f57a";
}

.fa-frown-open,
i.frown-open {
    --fa: "\f57a";
}

.fa-square-dashed,
i.square-dashed {
    --fa: "\e269";
}

.fa-bag-shopping-plus,
i.bag-shopping-plus {
    --fa: "\e651";
}

.fa-square-j,
i.square-j {
    --fa: "\e273";
}

.fa-hand-point-up,
i.hand-point-up {
    --fa: "\f0a6";
}

.fa-money-bill,
i.money-bill {
    --fa: "\f0d6";
}

.fa-arrow-up-big-small,
i.arrow-up-big-small {
    --fa: "\f88e";
}

.fa-sort-size-up,
i.sort-size-up {
    --fa: "\f88e";
}

.fa-barcode-read,
i.barcode-read {
    --fa: "\f464";
}

.fa-baguette,
i.baguette {
    --fa: "\e3d8";
}

.fa-bowl-soft-serve,
i.bowl-soft-serve {
    --fa: "\e46b";
}

.fa-face-holding-back-tears,
i.face-holding-back-tears {
    --fa: "\e482";
}

.fa-square-up,
i.square-up {
    --fa: "\f353";
}

.fa-arrow-alt-square-up,
i.arrow-alt-square-up {
    --fa: "\f353";
}

.fa-train-subway-tunnel,
i.train-subway-tunnel {
    --fa: "\e2a3";
}

.fa-subway-tunnel,
i.subway-tunnel {
    --fa: "\e2a3";
}

.fa-square-exclamation,
i.square-exclamation {
    --fa: "\f321";
}

.fa-exclamation-square,
i.exclamation-square {
    --fa: "\f321";
}

.fa-semicolon,
i.semicolon {
    --fa: "\3b";
}

.fa-bookmark,
i.bookmark {
    --fa: "\f02e";
}

.fa-fan-table,
i.fan-table {
    --fa: "\e004";
}

.fa-align-justify,
i.align-justify {
    --fa: "\f039";
}

.fa-battery-low,
i.battery-low {
    --fa: "\e0b1";
}

.fa-battery-1,
i.battery-1 {
    --fa: "\e0b1";
}

.fa-credit-card-front,
i.credit-card-front {
    --fa: "\f38a";
}

.fa-brain-arrow-curved-right,
i.brain-arrow-curved-right {
    --fa: "\f677";
}

.fa-mind-share,
i.mind-share {
    --fa: "\f677";
}

.fa-umbrella-beach,
i.umbrella-beach {
    --fa: "\f5ca";
}

.fa-helmet-un,
i.helmet-un {
    --fa: "\e503";
}

.fa-location-smile,
i.location-smile {
    --fa: "\f60d";
}

.fa-map-marker-smile,
i.map-marker-smile {
    --fa: "\f60d";
}

.fa-arrow-left-to-line,
i.arrow-left-to-line {
    --fa: "\f33e";
}

.fa-arrow-to-left,
i.arrow-to-left {
    --fa: "\f33e";
}

.fa-bullseye,
i.bullseye {
    --fa: "\f140";
}

.fa-sushi,
i.sushi {
    --fa: "\e48a";
}

.fa-nigiri,
i.nigiri {
    --fa: "\e48a";
}

.fa-message-captions,
i.message-captions {
    --fa: "\e1de";
}

.fa-comment-alt-captions,
i.comment-alt-captions {
    --fa: "\e1de";
}

.fa-trash-list,
i.trash-list {
    --fa: "\e2b1";
}

.fa-bacon,
i.bacon {
    --fa: "\f7e5";
}

.fa-option,
i.option {
    --fa: "\e318";
}

.fa-raccoon,
i.raccoon {
    --fa: "\e613";
}

.fa-hand-point-down,
i.hand-point-down {
    --fa: "\f0a7";
}

.fa-arrow-up-from-bracket,
i.arrow-up-from-bracket {
    --fa: "\e09a";
}

.fa-head-side-gear,
i.head-side-gear {
    --fa: "\e611";
}

.fa-trash-plus,
i.trash-plus {
    --fa: "\e2b2";
}

.fa-file-cad,
i.file-cad {
    --fa: "\e672";
}

.fa-objects-align-top,
i.objects-align-top {
    --fa: "\e3c0";
}

.fa-folder,
i.folder {
    --fa: "\f07b";
}

.fa-folder-blank,
i.folder-blank {
    --fa: "\f07b";
}

.fa-face-anxious-sweat,
i.face-anxious-sweat {
    --fa: "\e36a";
}

.fa-credit-card-blank,
i.credit-card-blank {
    --fa: "\f389";
}

.fa-file-waveform,
i.file-waveform {
    --fa: "\f478";
}

.fa-file-medical-alt,
i.file-medical-alt {
    --fa: "\f478";
}

.fa-microchip-ai,
i.microchip-ai {
    --fa: "\e1ec";
}

.fa-mug,
i.mug {
    --fa: "\f874";
}

.fa-plane-up-slash,
i.plane-up-slash {
    --fa: "\e22e";
}

.fa-radiation,
i.radiation {
    --fa: "\f7b9";
}

.fa-pen-circle,
i.pen-circle {
    --fa: "\e20e";
}

.fa-bag-seedling,
i.bag-seedling {
    --fa: "\e5f2";
}

.fa-chart-simple,
i.chart-simple {
    --fa: "\e473";
}

.fa-crutches,
i.crutches {
    --fa: "\f7f8";
}

.fa-circle-parking,
i.circle-parking {
    --fa: "\f615";
}

.fa-parking-circle,
i.parking-circle {
    --fa: "\f615";
}

.fa-mars-stroke,
i.mars-stroke {
    --fa: "\f229";
}

.fa-leaf-oak,
i.leaf-oak {
    --fa: "\f6f7";
}

.fa-square-bolt,
i.square-bolt {
    --fa: "\e265";
}

.fa-vial,
i.vial {
    --fa: "\f492";
}

.fa-gauge,
i.gauge {
    --fa: "\f624";
}

.fa-dashboard,
i.dashboard {
    --fa: "\f624";
}

.fa-gauge-med,
i.gauge-med {
    --fa: "\f624";
}

.fa-tachometer-alt-average,
i.tachometer-alt-average {
    --fa: "\f624";
}

.fa-wand-magic-sparkles,
i.wand-magic-sparkles {
    --fa: "\e2ca";
}

.fa-magic-wand-sparkles,
i.magic-wand-sparkles {
    --fa: "\e2ca";
}

.fa-lambda,
i.lambda {
    --fa: "\f66e";
}

.fa-e,
i.e {
    --fa: "\45";
}

.fa-pizza,
i.pizza {
    --fa: "\f817";
}

.fa-bowl-chopsticks-noodles,
i.bowl-chopsticks-noodles {
    --fa: "\e2ea";
}

.fa-h3,
i.h3 {
    --fa: "\f315";
}

.fa-pen-clip,
i.pen-clip {
    --fa: "\f305";
}

.fa-pen-alt,
i.pen-alt {
    --fa: "\f305";
}

.fa-bridge-circle-exclamation,
i.bridge-circle-exclamation {
    --fa: "\e4ca";
}

.fa-badge-percent,
i.badge-percent {
    --fa: "\f646";
}

.fa-rotate-reverse,
i.rotate-reverse {
    --fa: "\e631";
}

.fa-user,
i.user {
    --fa: "\f007";
}

.fa-sensor,
i.sensor {
    --fa: "\e028";
}

.fa-comma,
i.comma {
    --fa: "\2c";
}

.fa-school-circle-check,
i.school-circle-check {
    --fa: "\e56b";
}

.fa-toilet-paper-under,
i.toilet-paper-under {
    --fa: "\e2a0";
}

.fa-toilet-paper-reverse,
i.toilet-paper-reverse {
    --fa: "\e2a0";
}

.fa-light-emergency,
i.light-emergency {
    --fa: "\e41f";
}

.fa-arrow-down-to-arc,
i.arrow-down-to-arc {
    --fa: "\e4ae";
}

.fa-dumpster,
i.dumpster {
    --fa: "\f793";
}

.fa-van-shuttle,
i.van-shuttle {
    --fa: "\f5b6";
}

.fa-shuttle-van,
i.shuttle-van {
    --fa: "\f5b6";
}

.fa-building-user,
i.building-user {
    --fa: "\e4da";
}

.fa-light-switch,
i.light-switch {
    --fa: "\e017";
}

.fa-square-caret-left,
i.square-caret-left {
    --fa: "\f191";
}

.fa-caret-square-left,
i.caret-square-left {
    --fa: "\f191";
}

.fa-highlighter,
i.highlighter {
    --fa: "\f591";
}

.fa-wave-pulse,
i.wave-pulse {
    --fa: "\f5f8";
}

.fa-heart-rate,
i.heart-rate {
    --fa: "\f5f8";
}

.fa-key,
i.key {
    --fa: "\f084";
}

.fa-arrow-left-to-bracket,
i.arrow-left-to-bracket {
    --fa: "\e669";
}

.fa-hat-santa,
i.hat-santa {
    --fa: "\f7a7";
}

.fa-tamale,
i.tamale {
    --fa: "\e451";
}

.fa-box-check,
i.box-check {
    --fa: "\f467";
}

.fa-bullhorn,
i.bullhorn {
    --fa: "\f0a1";
}

.fa-steak,
i.steak {
    --fa: "\f824";
}

.fa-location-crosshairs-slash,
i.location-crosshairs-slash {
    --fa: "\f603";
}

.fa-location-slash,
i.location-slash {
    --fa: "\f603";
}

.fa-person-dolly,
i.person-dolly {
    --fa: "\f4d0";
}

.fa-globe,
i.globe {
    --fa: "\f0ac";
}

.fa-synagogue,
i.synagogue {
    --fa: "\f69b";
}

.fa-file-chart-column,
i.file-chart-column {
    --fa: "\f659";
}

.fa-file-chart-line,
i.file-chart-line {
    --fa: "\f659";
}

.fa-person-half-dress,
i.person-half-dress {
    --fa: "\e548";
}

.fa-folder-image,
i.folder-image {
    --fa: "\e18a";
}

.fa-calendar-pen,
i.calendar-pen {
    --fa: "\f333";
}

.fa-calendar-edit,
i.calendar-edit {
    --fa: "\f333";
}

.fa-road-bridge,
i.road-bridge {
    --fa: "\e563";
}

.fa-face-smile-tear,
i.face-smile-tear {
    --fa: "\e393";
}

.fa-message-plus,
i.message-plus {
    --fa: "\f4a8";
}

.fa-comment-alt-plus,
i.comment-alt-plus {
    --fa: "\f4a8";
}

.fa-location-arrow,
i.location-arrow {
    --fa: "\f124";
}

.fa-c,
i.c {
    --fa: "\43";
}

.fa-tablet-button,
i.tablet-button {
    --fa: "\f10a";
}

.fa-person-dress-fairy,
i.person-dress-fairy {
    --fa: "\e607";
}

.fa-rectangle-history-circle-user,
i.rectangle-history-circle-user {
    --fa: "\e4a4";
}

.fa-building-lock,
i.building-lock {
    --fa: "\e4d6";
}

.fa-chart-line-up,
i.chart-line-up {
    --fa: "\e0e5";
}

.fa-mailbox,
i.mailbox {
    --fa: "\f813";
}

.fa-sign-posts,
i.sign-posts {
    --fa: "\e625";
}

.fa-truck-bolt,
i.truck-bolt {
    --fa: "\e3d0";
}

.fa-pizza-slice,
i.pizza-slice {
    --fa: "\f818";
}

.fa-money-bill-wave,
i.money-bill-wave {
    --fa: "\f53a";
}

.fa-chart-area,
i.chart-area {
    --fa: "\f1fe";
}

.fa-area-chart,
i.area-chart {
    --fa: "\f1fe";
}

.fa-house-flag,
i.house-flag {
    --fa: "\e50d";
}

.fa-circle-three-quarters-stroke,
i.circle-three-quarters-stroke {
    --fa: "\e5d4";
}

.fa-person-circle-minus,
i.person-circle-minus {
    --fa: "\e540";
}

.fa-scalpel,
i.scalpel {
    --fa: "\f61d";
}

.fa-ban,
i.ban {
    --fa: "\f05e";
}

.fa-cancel,
i.cancel {
    --fa: "\f05e";
}

.fa-bell-exclamation,
i.bell-exclamation {
    --fa: "\f848";
}

.fa-circle-bookmark,
i.circle-bookmark {
    --fa: "\e100";
}

.fa-bookmark-circle,
i.bookmark-circle {
    --fa: "\e100";
}

.fa-egg-fried,
i.egg-fried {
    --fa: "\f7fc";
}

.fa-face-weary,
i.face-weary {
    --fa: "\e3a1";
}

.fa-uniform-martial-arts,
i.uniform-martial-arts {
    --fa: "\e3d1";
}

.fa-camera-rotate,
i.camera-rotate {
    --fa: "\e0d8";
}

.fa-sun-dust,
i.sun-dust {
    --fa: "\f764";
}

.fa-comment-text,
i.comment-text {
    --fa: "\e14d";
}

.fa-spray-can-sparkles,
i.spray-can-sparkles {
    --fa: "\f5d0";
}

.fa-air-freshener,
i.air-freshener {
    --fa: "\f5d0";
}

.fa-signal-bars,
i.signal-bars {
    --fa: "\f690";
}

.fa-signal-alt,
i.signal-alt {
    --fa: "\f690";
}

.fa-signal-alt-4,
i.signal-alt-4 {
    --fa: "\f690";
}

.fa-signal-bars-strong,
i.signal-bars-strong {
    --fa: "\f690";
}

.fa-diamond-exclamation,
i.diamond-exclamation {
    --fa: "\e405";
}

.fa-star,
i.star {
    --fa: "\f005";
}

.fa-dial-min,
i.dial-min {
    --fa: "\e161";
}

.fa-repeat,
i.repeat {
    --fa: "\f363";
}

.fa-cross,
i.cross {
    --fa: "\f654";
}

.fa-page-caret-down,
i.page-caret-down {
    --fa: "\e429";
}

.fa-file-caret-down,
i.file-caret-down {
    --fa: "\e429";
}

.fa-box,
i.box {
    --fa: "\f466";
}

.fa-venus-mars,
i.venus-mars {
    --fa: "\f228";
}

.fa-clock-seven-thirty,
i.clock-seven-thirty {
    --fa: "\e351";
}

.fa-arrow-pointer,
i.arrow-pointer {
    --fa: "\f245";
}

.fa-mouse-pointer,
i.mouse-pointer {
    --fa: "\f245";
}

.fa-clock-four-thirty,
i.clock-four-thirty {
    --fa: "\e34b";
}

.fa-signal-bars-good,
i.signal-bars-good {
    --fa: "\f693";
}

.fa-signal-alt-3,
i.signal-alt-3 {
    --fa: "\f693";
}

.fa-cactus,
i.cactus {
    --fa: "\f8a7";
}

.fa-lightbulb-gear,
i.lightbulb-gear {
    --fa: "\e5fd";
}

.fa-maximize,
i.maximize {
    --fa: "\f31e";
}

.fa-expand-arrows-alt,
i.expand-arrows-alt {
    --fa: "\f31e";
}

.fa-charging-station,
i.charging-station {
    --fa: "\f5e7";
}

.fa-shapes,
i.shapes {
    --fa: "\f61f";
}

.fa-triangle-circle-square,
i.triangle-circle-square {
    --fa: "\f61f";
}

.fa-plane-tail,
i.plane-tail {
    --fa: "\e22c";
}

.fa-gauge-simple-max,
i.gauge-simple-max {
    --fa: "\f62b";
}

.fa-tachometer-fastest,
i.tachometer-fastest {
    --fa: "\f62b";
}

.fa-circle-u,
i.circle-u {
    --fa: "\e127";
}

.fa-shield-slash,
i.shield-slash {
    --fa: "\e24b";
}

.fa-square-phone-hangup,
i.square-phone-hangup {
    --fa: "\e27a";
}

.fa-phone-square-down,
i.phone-square-down {
    --fa: "\e27a";
}

.fa-arrow-up-left,
i.arrow-up-left {
    --fa: "\e09d";
}

.fa-transporter-1,
i.transporter-1 {
    --fa: "\e043";
}

.fa-peanuts,
i.peanuts {
    --fa: "\e431";
}

.fa-shuffle,
i.shuffle {
    --fa: "\f074";
}

.fa-random,
i.random {
    --fa: "\f074";
}

.fa-person-running,
i.person-running {
    --fa: "\f70c";
}

.fa-running,
i.running {
    --fa: "\f70c";
}

.fa-mobile-retro,
i.mobile-retro {
    --fa: "\e527";
}

.fa-grip-lines-vertical,
i.grip-lines-vertical {
    --fa: "\f7a5";
}

.fa-bin-bottles-recycle,
i.bin-bottles-recycle {
    --fa: "\e5f6";
}

.fa-arrow-up-from-square,
i.arrow-up-from-square {
    --fa: "\e09c";
}

.fa-file-dashed-line,
i.file-dashed-line {
    --fa: "\f877";
}

.fa-page-break,
i.page-break {
    --fa: "\f877";
}

.fa-bracket-curly-right,
i.bracket-curly-right {
    --fa: "\7d";
}

.fa-spider,
i.spider {
    --fa: "\f717";
}

.fa-clock-three,
i.clock-three {
    --fa: "\e356";
}

.fa-hands-bound,
i.hands-bound {
    --fa: "\e4f9";
}

.fa-scalpel-line-dashed,
i.scalpel-line-dashed {
    --fa: "\f61e";
}

.fa-scalpel-path,
i.scalpel-path {
    --fa: "\f61e";
}

.fa-file-invoice-dollar,
i.file-invoice-dollar {
    --fa: "\f571";
}

.fa-pipe-smoking,
i.pipe-smoking {
    --fa: "\e3c4";
}

.fa-face-astonished,
i.face-astonished {
    --fa: "\e36b";
}

.fa-window,
i.window {
    --fa: "\f40e";
}

.fa-plane-circle-exclamation,
i.plane-circle-exclamation {
    --fa: "\e556";
}

.fa-ear,
i.ear {
    --fa: "\f5f0";
}

.fa-file-lock,
i.file-lock {
    --fa: "\e3a6";
}

.fa-diagram-venn,
i.diagram-venn {
    --fa: "\e15a";
}

.fa-arrow-down-from-bracket,
i.arrow-down-from-bracket {
    --fa: "\e667";
}

.fa-x-ray,
i.x-ray {
    --fa: "\f497";
}

.fa-goal-net,
i.goal-net {
    --fa: "\e3ab";
}

.fa-coffin-cross,
i.coffin-cross {
    --fa: "\e051";
}

.fa-octopus,
i.octopus {
    --fa: "\e688";
}

.fa-spell-check,
i.spell-check {
    --fa: "\f891";
}

.fa-location-xmark,
i.location-xmark {
    --fa: "\f60e";
}

.fa-map-marker-times,
i.map-marker-times {
    --fa: "\f60e";
}

.fa-map-marker-xmark,
i.map-marker-xmark {
    --fa: "\f60e";
}

.fa-circle-quarter-stroke,
i.circle-quarter-stroke {
    --fa: "\e5d3";
}

.fa-lasso,
i.lasso {
    --fa: "\f8c8";
}

.fa-slash,
i.slash {
    --fa: "\f715";
}

.fa-person-to-portal,
i.person-to-portal {
    --fa: "\e022";
}

.fa-portal-enter,
i.portal-enter {
    --fa: "\e022";
}

.fa-calendar-star,
i.calendar-star {
    --fa: "\f736";
}

.fa-computer-mouse,
i.computer-mouse {
    --fa: "\f8cc";
}

.fa-mouse,
i.mouse {
    --fa: "\f8cc";
}

.fa-arrow-right-to-bracket,
i.arrow-right-to-bracket {
    --fa: "\f090";
}

.fa-sign-in,
i.sign-in {
    --fa: "\f090";
}

.fa-pegasus,
i.pegasus {
    --fa: "\f703";
}

.fa-files-medical,
i.files-medical {
    --fa: "\f7fd";
}

.fa-cannon,
i.cannon {
    --fa: "\e642";
}

.fa-nfc-lock,
i.nfc-lock {
    --fa: "\e1f8";
}

.fa-person-ski-lift,
i.person-ski-lift {
    --fa: "\f7c8";
}

.fa-ski-lift,
i.ski-lift {
    --fa: "\f7c8";
}

.fa-square-6,
i.square-6 {
    --fa: "\e25b";
}

.fa-shop-slash,
i.shop-slash {
    --fa: "\e070";
}

.fa-store-alt-slash,
i.store-alt-slash {
    --fa: "\e070";
}

.fa-wind-turbine,
i.wind-turbine {
    --fa: "\f89b";
}

.fa-sliders-simple,
i.sliders-simple {
    --fa: "\e253";
}

.fa-grid-round,
i.grid-round {
    --fa: "\e5da";
}

.fa-badge-sheriff,
i.badge-sheriff {
    --fa: "\f8a2";
}

.fa-server,
i.server {
    --fa: "\f233";
}

.fa-virus-covid-slash,
i.virus-covid-slash {
    --fa: "\e4a9";
}

.fa-intersection,
i.intersection {
    --fa: "\f668";
}

.fa-shop-lock,
i.shop-lock {
    --fa: "\e4a5";
}

.fa-family,
i.family {
    --fa: "\e300";
}

.fa-hourglass-start,
i.hourglass-start {
    --fa: "\f251";
}

.fa-hourglass-1,
i.hourglass-1 {
    --fa: "\f251";
}

.fa-user-hair-buns,
i.user-hair-buns {
    --fa: "\e3d3";
}

.fa-blender-phone,
i.blender-phone {
    --fa: "\f6b6";
}

.fa-hourglass-clock,
i.hourglass-clock {
    --fa: "\e41b";
}

.fa-person-seat-reclined,
i.person-seat-reclined {
    --fa: "\e21f";
}

.fa-paper-plane-top,
i.paper-plane-top {
    --fa: "\e20a";
}

.fa-paper-plane-alt,
i.paper-plane-alt {
    --fa: "\e20a";
}

.fa-send,
i.send {
    --fa: "\e20a";
}

.fa-message-arrow-up,
i.message-arrow-up {
    --fa: "\e1dc";
}

.fa-comment-alt-arrow-up,
i.comment-alt-arrow-up {
    --fa: "\e1dc";
}

.fa-lightbulb-exclamation,
i.lightbulb-exclamation {
    --fa: "\f671";
}

.fa-layer-minus,
i.layer-minus {
    --fa: "\f5fe";
}

.fa-layer-group-minus,
i.layer-group-minus {
    --fa: "\f5fe";
}

.fa-chart-pie-simple-circle-currency,
i.chart-pie-simple-circle-currency {
    --fa: "\e604";
}

.fa-circle-e,
i.circle-e {
    --fa: "\e109";
}

.fa-building-wheat,
i.building-wheat {
    --fa: "\e4db";
}

.fa-gauge-max,
i.gauge-max {
    --fa: "\f626";
}

.fa-tachometer-alt-fastest,
i.tachometer-alt-fastest {
    --fa: "\f626";
}

.fa-person-breastfeeding,
i.person-breastfeeding {
    --fa: "\e53a";
}

.fa-apostrophe,
i.apostrophe {
    --fa: "\27";
}

.fa-file-png,
i.file-png {
    --fa: "\e666";
}

.fa-fire-hydrant,
i.fire-hydrant {
    --fa: "\e17f";
}

.fa-right-to-bracket,
i.right-to-bracket {
    --fa: "\f2f6";
}

.fa-sign-in-alt,
i.sign-in-alt {
    --fa: "\f2f6";
}

.fa-video-plus,
i.video-plus {
    --fa: "\f4e1";
}

.fa-square-right,
i.square-right {
    --fa: "\f352";
}

.fa-arrow-alt-square-right,
i.arrow-alt-square-right {
    --fa: "\f352";
}

.fa-comment-smile,
i.comment-smile {
    --fa: "\f4b4";
}

.fa-venus,
i.venus {
    --fa: "\f221";
}

.fa-passport,
i.passport {
    --fa: "\f5ab";
}

.fa-thumbtack-slash,
i.thumbtack-slash {
    --fa: "\e68f";
}

.fa-thumb-tack-slash,
i.thumb-tack-slash {
    --fa: "\e68f";
}

.fa-inbox-in,
i.inbox-in {
    --fa: "\f310";
}

.fa-inbox-arrow-down,
i.inbox-arrow-down {
    --fa: "\f310";
}

.fa-heart-pulse,
i.heart-pulse {
    --fa: "\f21e";
}

.fa-heartbeat,
i.heartbeat {
    --fa: "\f21e";
}

.fa-circle-8,
i.circle-8 {
    --fa: "\e0f5";
}

.fa-clouds-moon,
i.clouds-moon {
    --fa: "\f745";
}

.fa-clock-ten-thirty,
i.clock-ten-thirty {
    --fa: "\e355";
}

.fa-people-carry-box,
i.people-carry-box {
    --fa: "\f4ce";
}

.fa-people-carry,
i.people-carry {
    --fa: "\f4ce";
}

.fa-folder-user,
i.folder-user {
    --fa: "\e18e";
}

.fa-trash-can-xmark,
i.trash-can-xmark {
    --fa: "\e2ae";
}

.fa-temperature-high,
i.temperature-high {
    --fa: "\f769";
}

.fa-microchip,
i.microchip {
    --fa: "\f2db";
}

.fa-left-long-to-line,
i.left-long-to-line {
    --fa: "\e41e";
}

.fa-crown,
i.crown {
    --fa: "\f521";
}

.fa-weight-hanging,
i.weight-hanging {
    --fa: "\f5cd";
}

.fa-xmarks-lines,
i.xmarks-lines {
    --fa: "\e59a";
}

.fa-file-prescription,
i.file-prescription {
    --fa: "\f572";
}

.fa-table-cells-lock,
i.table-cells-lock {
    --fa: "\e679";
}

.fa-calendar-range,
i.calendar-range {
    --fa: "\e0d6";
}

.fa-flower-daffodil,
i.flower-daffodil {
    --fa: "\f800";
}

.fa-hand-back-point-up,
i.hand-back-point-up {
    --fa: "\e1a2";
}

.fa-weight-scale,
i.weight-scale {
    --fa: "\f496";
}

.fa-weight,
i.weight {
    --fa: "\f496";
}

.fa-arrow-up-to-arc,
i.arrow-up-to-arc {
    --fa: "\e617";
}

.fa-star-exclamation,
i.star-exclamation {
    --fa: "\f2f3";
}

.fa-books,
i.books {
    --fa: "\f5db";
}

.fa-user-group,
i.user-group {
    --fa: "\f500";
}

.fa-user-friends,
i.user-friends {
    --fa: "\f500";
}

.fa-arrow-up-a-z,
i.arrow-up-a-z {
    --fa: "\f15e";
}

.fa-sort-alpha-up,
i.sort-alpha-up {
    --fa: "\f15e";
}

.fa-layer-plus,
i.layer-plus {
    --fa: "\f5ff";
}

.fa-layer-group-plus,
i.layer-group-plus {
    --fa: "\f5ff";
}

.fa-play-pause,
i.play-pause {
    --fa: "\e22f";
}

.fa-block-question,
i.block-question {
    --fa: "\e3dd";
}

.fa-snooze,
i.snooze {
    --fa: "\f880";
}

.fa-zzz,
i.zzz {
    --fa: "\f880";
}

.fa-scanner-image,
i.scanner-image {
    --fa: "\f8f3";
}

.fa-tv-retro,
i.tv-retro {
    --fa: "\f401";
}

.fa-square-t,
i.square-t {
    --fa: "\e280";
}

.fa-farm,
i.farm {
    --fa: "\f864";
}

.fa-barn-silo,
i.barn-silo {
    --fa: "\f864";
}

.fa-chess-knight,
i.chess-knight {
    --fa: "\f441";
}

.fa-bars-sort,
i.bars-sort {
    --fa: "\e0ae";
}

.fa-pallet-boxes,
i.pallet-boxes {
    --fa: "\f483";
}

.fa-palette-boxes,
i.palette-boxes {
    --fa: "\f483";
}

.fa-pallet-alt,
i.pallet-alt {
    --fa: "\f483";
}

.fa-face-laugh-squint,
i.face-laugh-squint {
    --fa: "\f59b";
}

.fa-laugh-squint,
i.laugh-squint {
    --fa: "\f59b";
}

.fa-code-simple,
i.code-simple {
    --fa: "\e13d";
}

.fa-bolt-slash,
i.bolt-slash {
    --fa: "\e0b8";
}

.fa-panel-fire,
i.panel-fire {
    --fa: "\e42f";
}

.fa-binary-circle-check,
i.binary-circle-check {
    --fa: "\e33c";
}

.fa-comment-minus,
i.comment-minus {
    --fa: "\f4b1";
}

.fa-burrito,
i.burrito {
    --fa: "\f7ed";
}

.fa-violin,
i.violin {
    --fa: "\f8ed";
}

.fa-objects-column,
i.objects-column {
    --fa: "\e3c1";
}

.fa-square-chevron-down,
i.square-chevron-down {
    --fa: "\f329";
}

.fa-chevron-square-down,
i.chevron-square-down {
    --fa: "\f329";
}

.fa-comment-plus,
i.comment-plus {
    --fa: "\f4b2";
}

.fa-triangle-instrument,
i.triangle-instrument {
    --fa: "\f8e2";
}

.fa-triangle-music,
i.triangle-music {
    --fa: "\f8e2";
}

.fa-wheelchair,
i.wheelchair {
    --fa: "\f193";
}

.fa-user-pilot-tie,
i.user-pilot-tie {
    --fa: "\e2c1";
}

.fa-piano-keyboard,
i.piano-keyboard {
    --fa: "\f8d5";
}

.fa-bed-empty,
i.bed-empty {
    --fa: "\f8f9";
}

.fa-circle-arrow-up,
i.circle-arrow-up {
    --fa: "\f0aa";
}

.fa-arrow-circle-up,
i.arrow-circle-up {
    --fa: "\f0aa";
}

.fa-toggle-on,
i.toggle-on {
    --fa: "\f205";
}

.fa-rectangle-vertical,
i.rectangle-vertical {
    --fa: "\f2fb";
}

.fa-rectangle-portrait,
i.rectangle-portrait {
    --fa: "\f2fb";
}

.fa-person-walking,
i.person-walking {
    --fa: "\f554";
}

.fa-walking,
i.walking {
    --fa: "\f554";
}

.fa-l,
i.l {
    --fa: "\4c";
}

.fa-signal-stream,
i.signal-stream {
    --fa: "\f8dd";
}

.fa-down-to-bracket,
i.down-to-bracket {
    --fa: "\e4e7";
}

.fa-circle-z,
i.circle-z {
    --fa: "\e130";
}

.fa-stars,
i.stars {
    --fa: "\f762";
}

.fa-fire,
i.fire {
    --fa: "\f06d";
}

.fa-bed-pulse,
i.bed-pulse {
    --fa: "\f487";
}

.fa-procedures,
i.procedures {
    --fa: "\f487";
}

.fa-house-day,
i.house-day {
    --fa: "\e00e";
}

.fa-shuttle-space,
i.shuttle-space {
    --fa: "\f197";
}

.fa-space-shuttle,
i.space-shuttle {
    --fa: "\f197";
}

.fa-shirt-long-sleeve,
i.shirt-long-sleeve {
    --fa: "\e3c7";
}

.fa-chart-pie-simple,
i.chart-pie-simple {
    --fa: "\f64e";
}

.fa-chart-pie-alt,
i.chart-pie-alt {
    --fa: "\f64e";
}

.fa-face-laugh,
i.face-laugh {
    --fa: "\f599";
}

.fa-laugh,
i.laugh {
    --fa: "\f599";
}

.fa-folder-open,
i.folder-open {
    --fa: "\f07c";
}

.fa-album-collection-circle-user,
i.album-collection-circle-user {
    --fa: "\e48f";
}

.fa-candy,
i.candy {
    --fa: "\e3e7";
}

.fa-bowl-hot,
i.bowl-hot {
    --fa: "\f823";
}

.fa-soup,
i.soup {
    --fa: "\f823";
}

.fa-flatbread,
i.flatbread {
    --fa: "\e40b";
}

.fa-heart-circle-plus,
i.heart-circle-plus {
    --fa: "\e500";
}

.fa-code-fork,
i.code-fork {
    --fa: "\e13b";
}

.fa-city,
i.city {
    --fa: "\f64f";
}

.fa-signal-bars-weak,
i.signal-bars-weak {
    --fa: "\f691";
}

.fa-signal-alt-1,
i.signal-alt-1 {
    --fa: "\f691";
}

.fa-microphone-lines,
i.microphone-lines {
    --fa: "\f3c9";
}

.fa-microphone-alt,
i.microphone-alt {
    --fa: "\f3c9";
}

.fa-clock-twelve,
i.clock-twelve {
    --fa: "\e358";
}

.fa-pepper-hot,
i.pepper-hot {
    --fa: "\f816";
}

.fa-citrus-slice,
i.citrus-slice {
    --fa: "\e2f5";
}

.fa-sheep,
i.sheep {
    --fa: "\f711";
}

.fa-unlock,
i.unlock {
    --fa: "\f09c";
}

.fa-colon-sign,
i.colon-sign {
    --fa: "\e140";
}

.fa-headset,
i.headset {
    --fa: "\f590";
}

.fa-badger-honey,
i.badger-honey {
    --fa: "\f6b4";
}

.fa-h4,
i.h4 {
    --fa: "\f86a";
}

.fa-store-slash,
i.store-slash {
    --fa: "\e071";
}

.fa-road-circle-xmark,
i.road-circle-xmark {
    --fa: "\e566";
}

.fa-signal-slash,
i.signal-slash {
    --fa: "\f695";
}

.fa-user-minus,
i.user-minus {
    --fa: "\f503";
}

.fa-mars-stroke-up,
i.mars-stroke-up {
    --fa: "\f22a";
}

.fa-mars-stroke-v,
i.mars-stroke-v {
    --fa: "\f22a";
}

.fa-champagne-glasses,
i.champagne-glasses {
    --fa: "\f79f";
}

.fa-glass-cheers,
i.glass-cheers {
    --fa: "\f79f";
}

.fa-taco,
i.taco {
    --fa: "\f826";
}

.fa-hexagon-plus,
i.hexagon-plus {
    --fa: "\f300";
}

.fa-plus-hexagon,
i.plus-hexagon {
    --fa: "\f300";
}

.fa-clipboard,
i.clipboard {
    --fa: "\f328";
}

.fa-house-circle-exclamation,
i.house-circle-exclamation {
    --fa: "\e50a";
}

.fa-file-arrow-up,
i.file-arrow-up {
    --fa: "\f574";
}

.fa-file-upload,
i.file-upload {
    --fa: "\f574";
}

.fa-wifi,
i.wifi {
    --fa: "\f1eb";
}

.fa-wifi-3,
i.wifi-3 {
    --fa: "\f1eb";
}

.fa-wifi-strong,
i.wifi-strong {
    --fa: "\f1eb";
}

.fa-messages,
i.messages {
    --fa: "\f4b6";
}

.fa-comments-alt,
i.comments-alt {
    --fa: "\f4b6";
}

.fa-bath,
i.bath {
    --fa: "\f2cd";
}

.fa-bathtub,
i.bathtub {
    --fa: "\f2cd";
}

.fa-umbrella-simple,
i.umbrella-simple {
    --fa: "\e2bc";
}

.fa-umbrella-alt,
i.umbrella-alt {
    --fa: "\e2bc";
}

.fa-rectangle-history-circle-plus,
i.rectangle-history-circle-plus {
    --fa: "\e4a3";
}

.fa-underline,
i.underline {
    --fa: "\f0cd";
}

.fa-prescription-bottle-pill,
i.prescription-bottle-pill {
    --fa: "\e5c0";
}

.fa-user-pen,
i.user-pen {
    --fa: "\f4ff";
}

.fa-user-edit,
i.user-edit {
    --fa: "\f4ff";
}

.fa-binary-slash,
i.binary-slash {
    --fa: "\e33e";
}

.fa-square-o,
i.square-o {
    --fa: "\e278";
}

.fa-caduceus,
i.caduceus {
    --fa: "\e681";
}

.fa-signature,
i.signature {
    --fa: "\f5b7";
}

.fa-stroopwafel,
i.stroopwafel {
    --fa: "\f551";
}

.fa-bold,
i.bold {
    --fa: "\f032";
}

.fa-anchor-lock,
i.anchor-lock {
    --fa: "\e4ad";
}

.fa-building-ngo,
i.building-ngo {
    --fa: "\e4d7";
}

.fa-transporter-3,
i.transporter-3 {
    --fa: "\e045";
}

.fa-engine-warning,
i.engine-warning {
    --fa: "\f5f2";
}

.fa-engine-exclamation,
i.engine-exclamation {
    --fa: "\f5f2";
}

.fa-circle-down-right,
i.circle-down-right {
    --fa: "\e108";
}

.fa-square-k,
i.square-k {
    --fa: "\e274";
}

.fa-manat-sign,
i.manat-sign {
    --fa: "\e1d5";
}

.fa-money-check-pen,
i.money-check-pen {
    --fa: "\f872";
}

.fa-money-check-edit,
i.money-check-edit {
    --fa: "\f872";
}

.fa-not-equal,
i.not-equal {
    --fa: "\f53e";
}

.fa-border-top-left,
i.border-top-left {
    --fa: "\f853";
}

.fa-border-style,
i.border-style {
    --fa: "\f853";
}

.fa-map-location-dot,
i.map-location-dot {
    --fa: "\f5a0";
}

.fa-map-marked-alt,
i.map-marked-alt {
    --fa: "\f5a0";
}

.fa-tilde,
i.tilde {
    --fa: "\7e";
}

.fa-jedi,
i.jedi {
    --fa: "\f669";
}

.fa-square-poll-vertical,
i.square-poll-vertical {
    --fa: "\f681";
}

.fa-poll,
i.poll {
    --fa: "\f681";
}

.fa-arrow-down-square-triangle,
i.arrow-down-square-triangle {
    --fa: "\f889";
}

.fa-sort-shapes-down-alt,
i.sort-shapes-down-alt {
    --fa: "\f889";
}

.fa-mug-hot,
i.mug-hot {
    --fa: "\f7b6";
}

.fa-dog-leashed,
i.dog-leashed {
    --fa: "\f6d4";
}

.fa-car-battery,
i.car-battery {
    --fa: "\f5df";
}

.fa-battery-car,
i.battery-car {
    --fa: "\f5df";
}

.fa-face-downcast-sweat,
i.face-downcast-sweat {
    --fa: "\e371";
}

.fa-mailbox-flag-up,
i.mailbox-flag-up {
    --fa: "\e5bb";
}

.fa-memo-circle-info,
i.memo-circle-info {
    --fa: "\e49a";
}

.fa-gift,
i.gift {
    --fa: "\f06b";
}

.fa-dice-two,
i.dice-two {
    --fa: "\f528";
}

.fa-volume,
i.volume {
    --fa: "\f6a8";
}

.fa-volume-medium,
i.volume-medium {
    --fa: "\f6a8";
}

.fa-transporter-5,
i.transporter-5 {
    --fa: "\e2a6";
}

.fa-gauge-circle-bolt,
i.gauge-circle-bolt {
    --fa: "\e496";
}

.fa-coin-front,
i.coin-front {
    --fa: "\e3fc";
}

.fa-file-slash,
i.file-slash {
    --fa: "\e3a7";
}

.fa-message-arrow-up-right,
i.message-arrow-up-right {
    --fa: "\e1dd";
}

.fa-treasure-chest,
i.treasure-chest {
    --fa: "\f723";
}

.fa-chess-queen,
i.chess-queen {
    --fa: "\f445";
}

.fa-paintbrush-fine,
i.paintbrush-fine {
    --fa: "\f5a9";
}

.fa-paint-brush-alt,
i.paint-brush-alt {
    --fa: "\f5a9";
}

.fa-paint-brush-fine,
i.paint-brush-fine {
    --fa: "\f5a9";
}

.fa-paintbrush-alt,
i.paintbrush-alt {
    --fa: "\f5a9";
}

.fa-glasses,
i.glasses {
    --fa: "\f530";
}

.fa-hood-cloak,
i.hood-cloak {
    --fa: "\f6ef";
}

.fa-square-quote,
i.square-quote {
    --fa: "\e329";
}

.fa-up-left,
i.up-left {
    --fa: "\e2bd";
}

.fa-bring-front,
i.bring-front {
    --fa: "\f857";
}

.fa-chess-board,
i.chess-board {
    --fa: "\f43c";
}

.fa-burger-cheese,
i.burger-cheese {
    --fa: "\f7f1";
}

.fa-cheeseburger,
i.cheeseburger {
    --fa: "\f7f1";
}

.fa-building-circle-check,
i.building-circle-check {
    --fa: "\e4d2";
}

.fa-repeat-1,
i.repeat-1 {
    --fa: "\f365";
}

.fa-arrow-down-to-line,
i.arrow-down-to-line {
    --fa: "\f33d";
}

.fa-arrow-to-bottom,
i.arrow-to-bottom {
    --fa: "\f33d";
}

.fa-grid-5,
i.grid-5 {
    --fa: "\e199";
}

.fa-swap-arrows,
i.swap-arrows {
    --fa: "\e60a";
}

.fa-right-long-to-line,
i.right-long-to-line {
    --fa: "\e444";
}

.fa-person-chalkboard,
i.person-chalkboard {
    --fa: "\e53d";
}

.fa-mars-stroke-right,
i.mars-stroke-right {
    --fa: "\f22b";
}

.fa-mars-stroke-h,
i.mars-stroke-h {
    --fa: "\f22b";
}

.fa-hand-back-fist,
i.hand-back-fist {
    --fa: "\f255";
}

.fa-hand-rock,
i.hand-rock {
    --fa: "\f255";
}

.fa-grid-round-5,
i.grid-round-5 {
    --fa: "\e5de";
}

.fa-tally,
i.tally {
    --fa: "\f69c";
}

.fa-tally-5,
i.tally-5 {
    --fa: "\f69c";
}

.fa-square-caret-up,
i.square-caret-up {
    --fa: "\f151";
}

.fa-caret-square-up,
i.caret-square-up {
    --fa: "\f151";
}

.fa-cloud-showers-water,
i.cloud-showers-water {
    --fa: "\e4e4";
}

.fa-chart-bar,
i.chart-bar {
    --fa: "\f080";
}

.fa-bar-chart,
i.bar-chart {
    --fa: "\f080";
}

.fa-hands-bubbles,
i.hands-bubbles {
    --fa: "\e05e";
}

.fa-hands-wash,
i.hands-wash {
    --fa: "\e05e";
}

.fa-less-than-equal,
i.less-than-equal {
    --fa: "\f537";
}

.fa-train,
i.train {
    --fa: "\f238";
}

.fa-up-from-dotted-line,
i.up-from-dotted-line {
    --fa: "\e456";
}

.fa-eye-low-vision,
i.eye-low-vision {
    --fa: "\f2a8";
}

.fa-low-vision,
i.low-vision {
    --fa: "\f2a8";
}

.fa-traffic-light-go,
i.traffic-light-go {
    --fa: "\f638";
}

.fa-face-exhaling,
i.face-exhaling {
    --fa: "\e480";
}

.fa-sensor-fire,
i.sensor-fire {
    --fa: "\e02a";
}

.fa-user-unlock,
i.user-unlock {
    --fa: "\e058";
}

.fa-hexagon-divide,
i.hexagon-divide {
    --fa: "\e1ad";
}

.fa-00,
i.zero-zero {
    --fa: "\e467";
}

.fa-crow,
i.crow {
    --fa: "\f520";
}

.fa-cassette-betamax,
i.cassette-betamax {
    --fa: "\f8a4";
}

.fa-betamax,
i.betamax {
    --fa: "\f8a4";
}

.fa-sailboat,
i.sailboat {
    --fa: "\e445";
}

.fa-window-restore,
i.window-restore {
    --fa: "\f2d2";
}

.fa-nfc-magnifying-glass,
i.nfc-magnifying-glass {
    --fa: "\e1f9";
}

.fa-file-binary,
i.file-binary {
    --fa: "\e175";
}

.fa-circle-v,
i.circle-v {
    --fa: "\e12a";
}

.fa-square-plus,
i.square-plus {
    --fa: "\f0fe";
}

.fa-plus-square,
i.plus-square {
    --fa: "\f0fe";
}

.fa-bowl-scoops,
i.bowl-scoops {
    --fa: "\e3df";
}

.fa-mistletoe,
i.mistletoe {
    --fa: "\f7b4";
}

.fa-custard,
i.custard {
    --fa: "\e403";
}

.fa-lacrosse-stick,
i.lacrosse-stick {
    --fa: "\e3b5";
}

.fa-hockey-mask,
i.hockey-mask {
    --fa: "\f6ee";
}

.fa-sunrise,
i.sunrise {
    --fa: "\f766";
}

.fa-subtitles,
i.subtitles {
    --fa: "\e60f";
}

.fa-panel-ews,
i.panel-ews {
    --fa: "\e42e";
}

.fa-torii-gate,
i.torii-gate {
    --fa: "\f6a1";
}

.fa-cloud-exclamation,
i.cloud-exclamation {
    --fa: "\e491";
}

.fa-message-lines,
i.message-lines {
    --fa: "\f4a6";
}

.fa-comment-alt-lines,
i.comment-alt-lines {
    --fa: "\f4a6";
}

.fa-frog,
i.frog {
    --fa: "\f52e";
}

.fa-bucket,
i.bucket {
    --fa: "\e4cf";
}

.fa-floppy-disk-pen,
i.floppy-disk-pen {
    --fa: "\e182";
}

.fa-image,
i.image {
    --fa: "\f03e";
}

.fa-window-frame,
i.window-frame {
    --fa: "\e04f";
}

.fa-microphone,
i.microphone {
    --fa: "\f130";
}

.fa-cow,
i.cow {
    --fa: "\f6c8";
}

.fa-file-zip,
i.file-zip {
    --fa: "\e5ee";
}

.fa-square-ring,
i.square-ring {
    --fa: "\e44f";
}

.fa-down-from-line,
i.down-from-line {
    --fa: "\f349";
}

.fa-arrow-alt-from-top,
i.arrow-alt-from-top {
    --fa: "\f349";
}

.fa-caret-up,
i.caret-up {
    --fa: "\f0d8";
}

.fa-shield-xmark,
i.shield-xmark {
    --fa: "\e24c";
}

.fa-shield-times,
i.shield-times {
    --fa: "\e24c";
}

.fa-screwdriver,
i.screwdriver {
    --fa: "\f54a";
}

.fa-circle-sort-down,
i.circle-sort-down {
    --fa: "\e031";
}

.fa-sort-circle-down,
i.sort-circle-down {
    --fa: "\e031";
}

.fa-folder-closed,
i.folder-closed {
    --fa: "\e185";
}

.fa-house-tsunami,
i.house-tsunami {
    --fa: "\e515";
}

.fa-square-nfi,
i.square-nfi {
    --fa: "\e576";
}

.fa-forklift,
i.forklift {
    --fa: "\f47a";
}

.fa-arrow-up-from-ground-water,
i.arrow-up-from-ground-water {
    --fa: "\e4b5";
}

.fa-bracket-square-right,
i.bracket-square-right {
    --fa: "\5d";
}

.fa-martini-glass,
i.martini-glass {
    --fa: "\f57b";
}

.fa-glass-martini-alt,
i.glass-martini-alt {
    --fa: "\f57b";
}

.fa-rotate-left,
i.rotate-left {
    --fa: "\f2ea";
}

.fa-rotate-back,
i.rotate-back {
    --fa: "\f2ea";
}

.fa-rotate-backward,
i.rotate-backward {
    --fa: "\f2ea";
}

.fa-undo-alt,
i.undo-alt {
    --fa: "\f2ea";
}

.fa-table-columns,
i.table-columns {
    --fa: "\f0db";
}

.fa-columns,
i.columns {
    --fa: "\f0db";
}

.fa-square-a,
i.square-a {
    --fa: "\e25f";
}

.fa-tick,
i.tick {
    --fa: "\e32f";
}

.fa-lemon,
i.lemon {
    --fa: "\f094";
}

.fa-head-side-mask,
i.head-side-mask {
    --fa: "\e063";
}

.fa-handshake,
i.handshake {
    --fa: "\f2b5";
}

.fa-gem,
i.gem {
    --fa: "\f3a5";
}

.fa-dolly,
i.dolly {
    --fa: "\f472";
}

.fa-dolly-box,
i.dolly-box {
    --fa: "\f472";
}

.fa-smoking,
i.smoking {
    --fa: "\f48d";
}

.fa-minimize,
i.minimize {
    --fa: "\f78c";
}

.fa-compress-arrows-alt,
i.compress-arrows-alt {
    --fa: "\f78c";
}

.fa-refrigerator,
i.refrigerator {
    --fa: "\e026";
}

.fa-monument,
i.monument {
    --fa: "\f5a6";
}

.fa-octagon-xmark,
i.octagon-xmark {
    --fa: "\f2f0";
}

.fa-times-octagon,
i.times-octagon {
    --fa: "\f2f0";
}

.fa-xmark-octagon,
i.xmark-octagon {
    --fa: "\f2f0";
}

.fa-align-slash,
i.align-slash {
    --fa: "\f846";
}

.fa-snowplow,
i.snowplow {
    --fa: "\f7d2";
}

.fa-angles-right,
i.angles-right {
    --fa: "\f101";
}

.fa-angle-double-right,
i.angle-double-right {
    --fa: "\f101";
}

.fa-truck-ramp-couch,
i.truck-ramp-couch {
    --fa: "\f4dd";
}

.fa-truck-couch,
i.truck-couch {
    --fa: "\f4dd";
}

.fa-cannabis,
i.cannabis {
    --fa: "\f55f";
}

.fa-circle-play,
i.circle-play {
    --fa: "\f144";
}

.fa-play-circle,
i.play-circle {
    --fa: "\f144";
}

.fa-arrow-up-right-and-arrow-down-left-from-center,
i.arrow-up-right-and-arrow-down-left-from-center {
    --fa: "\e0a0";
}

.fa-location-arrow-up,
i.location-arrow-up {
    --fa: "\e63a";
}

.fa-tablets,
i.tablets {
    --fa: "\f490";
}

.fa-360-degrees,
i.fa-360-degrees {
    --fa: "\e2dc";
}

.fa-ethernet,
i.ethernet {
    --fa: "\f796";
}

.fa-euro-sign,
i.euro-sign {
    --fa: "\f153";
}

.fa-eur,
i.eur {
    --fa: "\f153";
}

.fa-euro,
i.euro {
    --fa: "\f153";
}

.fa-chair,
i.chair {
    --fa: "\f6c0";
}

.fa-circle-check,
i.circle-check {
    --fa: "\f058";
}

.fa-check-circle,
i.check-circle {
    --fa: "\f058";
}

.fa-square-dashed-circle-plus,
i.square-dashed-circle-plus {
    --fa: "\e5c2";
}

.fa-hand-holding-circle-dollar,
i.hand-holding-circle-dollar {
    --fa: "\e621";
}

.fa-money-simple-from-bracket,
i.money-simple-from-bracket {
    --fa: "\e313";
}

.fa-bat,
i.bat {
    --fa: "\f6b5";
}

.fa-circle-stop,
i.circle-stop {
    --fa: "\f28d";
}

.fa-stop-circle,
i.stop-circle {
    --fa: "\f28d";
}

.fa-head-side-headphones,
i.head-side-headphones {
    --fa: "\f8c2";
}

.fa-phone-rotary,
i.phone-rotary {
    --fa: "\f8d3";
}

.fa-arrow-up-to-bracket,
i.arrow-up-to-bracket {
    --fa: "\e66a";
}

.fa-compass-drafting,
i.compass-drafting {
    --fa: "\f568";
}

.fa-drafting-compass,
i.drafting-compass {
    --fa: "\f568";
}

.fa-plate-wheat,
i.plate-wheat {
    --fa: "\e55a";
}

.fa-calendar-circle-minus,
i.calendar-circle-minus {
    --fa: "\e46f";
}

.fa-chopsticks,
i.chopsticks {
    --fa: "\e3f7";
}

.fa-car-wrench,
i.car-wrench {
    --fa: "\f5e3";
}

.fa-car-mechanic,
i.car-mechanic {
    --fa: "\f5e3";
}

.fa-icicles,
i.icicles {
    --fa: "\f7ad";
}

.fa-person-shelter,
i.person-shelter {
    --fa: "\e54f";
}

.fa-neuter,
i.neuter {
    --fa: "\f22c";
}

.fa-id-badge,
i.id-badge {
    --fa: "\f2c1";
}

.fa-kazoo,
i.kazoo {
    --fa: "\f8c7";
}

.fa-marker,
i.marker {
    --fa: "\f5a1";
}

.fa-bin-bottles,
i.bin-bottles {
    --fa: "\e5f5";
}

.fa-face-laugh-beam,
i.face-laugh-beam {
    --fa: "\f59a";
}

.fa-laugh-beam,
i.laugh-beam {
    --fa: "\f59a";
}

.fa-square-arrow-down-left,
i.square-arrow-down-left {
    --fa: "\e261";
}

.fa-battery-bolt,
i.battery-bolt {
    --fa: "\f376";
}

.fa-tree-large,
i.tree-large {
    --fa: "\f7dd";
}

.fa-helicopter-symbol,
i.helicopter-symbol {
    --fa: "\e502";
}

.fa-aperture,
i.aperture {
    --fa: "\e2df";
}

.fa-universal-access,
i.universal-access {
    --fa: "\f29a";
}

.fa-gear-complex,
i.gear-complex {
    --fa: "\e5e9";
}

.fa-file-magnifying-glass,
i.file-magnifying-glass {
    --fa: "\f865";
}

.fa-file-search,
i.file-search {
    --fa: "\f865";
}

.fa-up-right,
i.up-right {
    --fa: "\e2be";
}

.fa-circle-chevron-up,
i.circle-chevron-up {
    --fa: "\f139";
}

.fa-chevron-circle-up,
i.chevron-circle-up {
    --fa: "\f139";
}

.fa-user-police,
i.user-police {
    --fa: "\e333";
}

.fa-lari-sign,
i.lari-sign {
    --fa: "\e1c8";
}

.fa-volcano,
i.volcano {
    --fa: "\f770";
}

.fa-teddy-bear,
i.teddy-bear {
    --fa: "\e3cf";
}

.fa-stocking,
i.stocking {
    --fa: "\f7d5";
}

.fa-person-walking-dashed-line-arrow-right,
i.person-walking-dashed-line-arrow-right {
    --fa: "\e553";
}

.fa-image-slash,
i.image-slash {
    --fa: "\e1b7";
}

.fa-mask-snorkel,
i.mask-snorkel {
    --fa: "\e3b7";
}

.fa-smoke,
i.smoke {
    --fa: "\f760";
}

.fa-sterling-sign,
i.sterling-sign {
    --fa: "\f154";
}

.fa-gbp,
i.gbp {
    --fa: "\f154";
}

.fa-pound-sign,
i.pound-sign {
    --fa: "\f154";
}

.fa-battery-exclamation,
i.battery-exclamation {
    --fa: "\e0b0";
}

.fa-viruses,
i.viruses {
    --fa: "\e076";
}

.fa-square-person-confined,
i.square-person-confined {
    --fa: "\e577";
}

.fa-user-tie,
i.user-tie {
    --fa: "\f508";
}

.fa-up-to-bracket,
i.up-to-bracket {
    --fa: "\e66e";
}

.fa-arrow-down-long,
i.arrow-down-long {
    --fa: "\f175";
}

.fa-long-arrow-down,
i.long-arrow-down {
    --fa: "\f175";
}

.fa-tent-arrow-down-to-line,
i.tent-arrow-down-to-line {
    --fa: "\e57e";
}

.fa-certificate,
i.certificate {
    --fa: "\f0a3";
}

.fa-crystal-ball,
i.crystal-ball {
    --fa: "\e362";
}

.fa-reply-all,
i.reply-all {
    --fa: "\f122";
}

.fa-mail-reply-all,
i.mail-reply-all {
    --fa: "\f122";
}

.fa-suitcase,
i.suitcase {
    --fa: "\f0f2";
}

.fa-person-skating,
i.person-skating {
    --fa: "\f7c5";
}

.fa-skating,
i.skating {
    --fa: "\f7c5";
}

.fa-star-shooting,
i.star-shooting {
    --fa: "\e036";
}

.fa-binary-lock,
i.binary-lock {
    --fa: "\e33d";
}

.fa-filter-circle-dollar,
i.filter-circle-dollar {
    --fa: "\f662";
}

.fa-funnel-dollar,
i.funnel-dollar {
    --fa: "\f662";
}

.fa-camera-retro,
i.camera-retro {
    --fa: "\f083";
}

.fa-circle-arrow-down,
i.circle-arrow-down {
    --fa: "\f0ab";
}

.fa-arrow-circle-down,
i.arrow-circle-down {
    --fa: "\f0ab";
}

.fa-comment-pen,
i.comment-pen {
    --fa: "\f4ae";
}

.fa-comment-edit,
i.comment-edit {
    --fa: "\f4ae";
}

.fa-file-import,
i.file-import {
    --fa: "\f56f";
}

.fa-arrow-right-to-file,
i.arrow-right-to-file {
    --fa: "\f56f";
}

.fa-banjo,
i.banjo {
    --fa: "\f8a3";
}

.fa-square-arrow-up-right,
i.square-arrow-up-right {
    --fa: "\f14c";
}

.fa-external-link-square,
i.external-link-square {
    --fa: "\f14c";
}

.fa-light-emergency-on,
i.light-emergency-on {
    --fa: "\e420";
}

.fa-kerning,
i.kerning {
    --fa: "\f86f";
}

.fa-box-open,
i.box-open {
    --fa: "\f49e";
}

.fa-square-f,
i.square-f {
    --fa: "\e270";
}

.fa-scroll,
i.scroll {
    --fa: "\f70e";
}

.fa-spa,
i.spa {
    --fa: "\f5bb";
}

.fa-arrow-left-from-line,
i.arrow-left-from-line {
    --fa: "\f344";
}

.fa-arrow-from-right,
i.arrow-from-right {
    --fa: "\f344";
}

.fa-strawberry,
i.strawberry {
    --fa: "\e32b";
}

.fa-location-pin-lock,
i.location-pin-lock {
    --fa: "\e51f";
}

.fa-pause,
i.pause {
    --fa: "\f04c";
}

.fa-clock-eight-thirty,
i.clock-eight-thirty {
    --fa: "\e346";
}

.fa-plane-engines,
i.plane-engines {
    --fa: "\f3de";
}

.fa-plane-alt,
i.plane-alt {
    --fa: "\f3de";
}

.fa-hill-avalanche,
i.hill-avalanche {
    --fa: "\e507";
}

.fa-temperature-empty,
i.temperature-empty {
    --fa: "\f2cb";
}

.fa-temperature-0,
i.temperature-0 {
    --fa: "\f2cb";
}

.fa-thermometer-0,
i.thermometer-0 {
    --fa: "\f2cb";
}

.fa-thermometer-empty,
i.thermometer-empty {
    --fa: "\f2cb";
}

.fa-bomb,
i.bomb {
    --fa: "\f1e2";
}

.fa-gauge-low,
i.gauge-low {
    --fa: "\f627";
}

.fa-tachometer-alt-slow,
i.tachometer-alt-slow {
    --fa: "\f627";
}

.fa-registered,
i.registered {
    --fa: "\f25d";
}

.fa-trash-can-plus,
i.trash-can-plus {
    --fa: "\e2ac";
}

.fa-address-card,
i.address-card {
    --fa: "\f2bb";
}

.fa-contact-card,
i.contact-card {
    --fa: "\f2bb";
}

.fa-vcard,
i.vcard {
    --fa: "\f2bb";
}

.fa-scale-unbalanced-flip,
i.scale-unbalanced-flip {
    --fa: "\f516";
}

.fa-balance-scale-right,
i.balance-scale-right {
    --fa: "\f516";
}

.fa-globe-snow,
i.globe-snow {
    --fa: "\f7a3";
}

.fa-subscript,
i.subscript {
    --fa: "\f12c";
}

.fa-diamond-turn-right,
i.diamond-turn-right {
    --fa: "\f5eb";
}

.fa-directions,
i.directions {
    --fa: "\f5eb";
}

.fa-integral,
i.integral {
    --fa: "\f667";
}

.fa-burst,
i.burst {
    --fa: "\e4dc";
}

.fa-house-laptop,
i.house-laptop {
    --fa: "\e066";
}

.fa-laptop-house,
i.laptop-house {
    --fa: "\e066";
}

.fa-face-tired,
i.face-tired {
    --fa: "\f5c8";
}

.fa-tired,
i.tired {
    --fa: "\f5c8";
}

.fa-money-bills,
i.money-bills {
    --fa: "\e1f3";
}

.fa-blinds-raised,
i.blinds-raised {
    --fa: "\f8fd";
}

.fa-smog,
i.smog {
    --fa: "\f75f";
}

.fa-ufo-beam,
i.ufo-beam {
    --fa: "\e048";
}

.fa-hydra,
i.hydra {
    --fa: "\e686";
}

.fa-circle-caret-up,
i.circle-caret-up {
    --fa: "\f331";
}

.fa-caret-circle-up,
i.caret-circle-up {
    --fa: "\f331";
}

.fa-user-vneck-hair-long,
i.user-vneck-hair-long {
    --fa: "\e463";
}

.fa-square-a-lock,
i.square-a-lock {
    --fa: "\e44d";
}

.fa-crutch,
i.crutch {
    --fa: "\f7f7";
}

.fa-gas-pump-slash,
i.gas-pump-slash {
    --fa: "\f5f4";
}

.fa-cloud-arrow-up,
i.cloud-arrow-up {
    --fa: "\f0ee";
}

.fa-cloud-upload,
i.cloud-upload {
    --fa: "\f0ee";
}

.fa-cloud-upload-alt,
i.cloud-upload-alt {
    --fa: "\f0ee";
}

.fa-palette,
i.palette {
    --fa: "\f53f";
}

.fa-transporter-4,
i.transporter-4 {
    --fa: "\e2a5";
}

.fa-chart-mixed-up-circle-currency,
i.chart-mixed-up-circle-currency {
    --fa: "\e5d8";
}

.fa-objects-align-right,
i.objects-align-right {
    --fa: "\e3bf";
}

.fa-arrows-turn-right,
i.arrows-turn-right {
    --fa: "\e4c0";
}

.fa-vest,
i.vest {
    --fa: "\e085";
}

.fa-pig,
i.pig {
    --fa: "\f706";
}

.fa-inbox-full,
i.inbox-full {
    --fa: "\e1ba";
}

.fa-circle-envelope,
i.circle-envelope {
    --fa: "\e10c";
}

.fa-envelope-circle,
i.envelope-circle {
    --fa: "\e10c";
}

.fa-triangle-person-digging,
i.triangle-person-digging {
    --fa: "\f85d";
}

.fa-construction,
i.construction {
    --fa: "\f85d";
}

.fa-ferry,
i.ferry {
    --fa: "\e4ea";
}

.fa-bullseye-arrow,
i.bullseye-arrow {
    --fa: "\f648";
}

.fa-arrows-down-to-people,
i.arrows-down-to-people {
    --fa: "\e4b9";
}

.fa-seedling,
i.seedling {
    --fa: "\f4d8";
}

.fa-sprout,
i.sprout {
    --fa: "\f4d8";
}

.fa-clock-seven,
i.clock-seven {
    --fa: "\e350";
}

.fa-left-right,
i.left-right {
    --fa: "\f337";
}

.fa-arrows-alt-h,
i.arrows-alt-h {
    --fa: "\f337";
}

.fa-boxes-packing,
i.boxes-packing {
    --fa: "\e4c7";
}

.fa-circle-arrow-left,
i.circle-arrow-left {
    --fa: "\f0a8";
}

.fa-arrow-circle-left,
i.arrow-circle-left {
    --fa: "\f0a8";
}

.fa-flashlight,
i.flashlight {
    --fa: "\f8b8";
}

.fa-file-jpg,
i.file-jpg {
    --fa: "\e646";
}

.fa-group-arrows-rotate,
i.group-arrows-rotate {
    --fa: "\e4f6";
}

.fa-bowl-food,
i.bowl-food {
    --fa: "\e4c6";
}

.fa-square-9,
i.square-9 {
    --fa: "\e25e";
}

.fa-candy-cane,
i.candy-cane {
    --fa: "\f786";
}

.fa-arrow-down-wide-short,
i.arrow-down-wide-short {
    --fa: "\f160";
}

.fa-sort-amount-asc,
i.sort-amount-asc {
    --fa: "\f160";
}

.fa-sort-amount-down,
i.sort-amount-down {
    --fa: "\f160";
}

.fa-square-dollar,
i.square-dollar {
    --fa: "\f2e9";
}

.fa-dollar-square,
i.dollar-square {
    --fa: "\f2e9";
}

.fa-usd-square,
i.usd-square {
    --fa: "\f2e9";
}

.fa-phone-arrow-right,
i.phone-arrow-right {
    --fa: "\e5be";
}

.fa-hand-holding-seedling,
i.hand-holding-seedling {
    --fa: "\f4bf";
}

.fa-message-check,
i.message-check {
    --fa: "\f4a2";
}

.fa-comment-alt-check,
i.comment-alt-check {
    --fa: "\f4a2";
}

.fa-cloud-bolt,
i.cloud-bolt {
    --fa: "\f76c";
}

.fa-thunderstorm,
i.thunderstorm {
    --fa: "\f76c";
}

.fa-chart-line-up-down,
i.chart-line-up-down {
    --fa: "\e5d7";
}

.fa-text-slash,
i.text-slash {
    --fa: "\f87d";
}

.fa-remove-format,
i.remove-format {
    --fa: "\f87d";
}

.fa-watch,
i.watch {
    --fa: "\f2e1";
}

.fa-circle-down-left,
i.circle-down-left {
    --fa: "\e107";
}

.fa-text,
i.text {
    --fa: "\f893";
}

.fa-projector,
i.projector {
    --fa: "\f8d6";
}

.fa-face-smile-wink,
i.face-smile-wink {
    --fa: "\f4da";
}

.fa-smile-wink,
i.smile-wink {
    --fa: "\f4da";
}

.fa-tombstone-blank,
i.tombstone-blank {
    --fa: "\f721";
}

.fa-tombstone-alt,
i.tombstone-alt {
    --fa: "\f721";
}

.fa-chess-king-piece,
i.chess-king-piece {
    --fa: "\f440";
}

.fa-chess-king-alt,
i.chess-king-alt {
    --fa: "\f440";
}

.fa-circle-6,
i.circle-6 {
    --fa: "\e0f3";
}

.fa-waves-sine,
i.waves-sine {
    --fa: "\e65d";
}

.fa-left,
i.left {
    --fa: "\f355";
}

.fa-arrow-alt-left,
i.arrow-alt-left {
    --fa: "\f355";
}

.fa-file-word,
i.file-word {
    --fa: "\f1c2";
}

.fa-file-powerpoint,
i.file-powerpoint {
    --fa: "\f1c4";
}

.fa-square-down,
i.square-down {
    --fa: "\f350";
}

.fa-arrow-alt-square-down,
i.arrow-alt-square-down {
    --fa: "\f350";
}

.fa-objects-align-center-vertical,
i.objects-align-center-vertical {
    --fa: "\e3bd";
}

.fa-arrows-left-right,
i.arrows-left-right {
    --fa: "\f07e";
}

.fa-arrows-h,
i.arrows-h {
    --fa: "\f07e";
}

.fa-house-lock,
i.house-lock {
    --fa: "\e510";
}

.fa-cloud-arrow-down,
i.cloud-arrow-down {
    --fa: "\f0ed";
}

.fa-cloud-download,
i.cloud-download {
    --fa: "\f0ed";
}

.fa-cloud-download-alt,
i.cloud-download-alt {
    --fa: "\f0ed";
}

.fa-wreath,
i.wreath {
    --fa: "\f7e2";
}

.fa-children,
i.children {
    --fa: "\e4e1";
}

.fa-meter-droplet,
i.meter-droplet {
    --fa: "\e1ea";
}

.fa-chalkboard,
i.chalkboard {
    --fa: "\f51b";
}

.fa-blackboard,
i.blackboard {
    --fa: "\f51b";
}

.fa-user-large-slash,
i.user-large-slash {
    --fa: "\f4fa";
}

.fa-user-alt-slash,
i.user-alt-slash {
    --fa: "\f4fa";
}

.fa-signal-strong,
i.signal-strong {
    --fa: "\f68f";
}

.fa-signal-4,
i.signal-4 {
    --fa: "\f68f";
}

.fa-lollipop,
i.lollipop {
    --fa: "\e424";
}

.fa-lollypop,
i.lollypop {
    --fa: "\e424";
}

.fa-list-tree,
i.list-tree {
    --fa: "\e1d2";
}

.fa-envelope-open,
i.envelope-open {
    --fa: "\f2b6";
}

.fa-draw-circle,
i.draw-circle {
    --fa: "\f5ed";
}

.fa-cat-space,
i.cat-space {
    --fa: "\e001";
}

.fa-handshake-simple-slash,
i.handshake-simple-slash {
    --fa: "\e05f";
}

.fa-handshake-alt-slash,
i.handshake-alt-slash {
    --fa: "\e05f";
}

.fa-rabbit-running,
i.rabbit-running {
    --fa: "\f709";
}

.fa-rabbit-fast,
i.rabbit-fast {
    --fa: "\f709";
}

.fa-memo-pad,
i.memo-pad {
    --fa: "\e1da";
}

.fa-mattress-pillow,
i.mattress-pillow {
    --fa: "\e525";
}

.fa-alarm-plus,
i.alarm-plus {
    --fa: "\f844";
}

.fa-alicorn,
i.alicorn {
    --fa: "\f6b0";
}

.fa-comment-question,
i.comment-question {
    --fa: "\e14b";
}

.fa-gingerbread-man,
i.gingerbread-man {
    --fa: "\f79d";
}

.fa-guarani-sign,
i.guarani-sign {
    --fa: "\e19a";
}

.fa-burger-fries,
i.burger-fries {
    --fa: "\e0cd";
}

.fa-mug-tea,
i.mug-tea {
    --fa: "\f875";
}

.fa-border-top,
i.border-top {
    --fa: "\f855";
}

.fa-arrows-rotate,
i.arrows-rotate {
    --fa: "\f021";
}

.fa-refresh,
i.refresh {
    --fa: "\f021";
}

.fa-sync,
i.sync {
    --fa: "\f021";
}

.fa-circle-book-open,
i.circle-book-open {
    --fa: "\e0ff";
}

.fa-book-circle,
i.book-circle {
    --fa: "\e0ff";
}

.fa-arrows-to-dotted-line,
i.arrows-to-dotted-line {
    --fa: "\e0a6";
}

.fa-fire-extinguisher,
i.fire-extinguisher {
    --fa: "\f134";
}

.fa-magnifying-glass-arrows-rotate,
i.magnifying-glass-arrows-rotate {
    --fa: "\e65e";
}

.fa-garage-open,
i.garage-open {
    --fa: "\e00b";
}

.fa-shelves-empty,
i.shelves-empty {
    --fa: "\e246";
}

.fa-cruzeiro-sign,
i.cruzeiro-sign {
    --fa: "\e152";
}

.fa-watch-apple,
i.watch-apple {
    --fa: "\e2cb";
}

.fa-watch-calculator,
i.watch-calculator {
    --fa: "\f8f0";
}

.fa-list-dropdown,
i.list-dropdown {
    --fa: "\e1cf";
}

.fa-cabinet-filing,
i.cabinet-filing {
    --fa: "\f64b";
}

.fa-burger-soda,
i.burger-soda {
    --fa: "\f858";
}

.fa-square-arrow-up,
i.square-arrow-up {
    --fa: "\f33c";
}

.fa-arrow-square-up,
i.arrow-square-up {
    --fa: "\f33c";
}

.fa-greater-than-equal,
i.greater-than-equal {
    --fa: "\f532";
}

.fa-pallet-box,
i.pallet-box {
    --fa: "\e208";
}

.fa-face-confounded,
i.face-confounded {
    --fa: "\e36c";
}

.fa-shield-halved,
i.shield-halved {
    --fa: "\f3ed";
}

.fa-shield-alt,
i.shield-alt {
    --fa: "\f3ed";
}

.fa-truck-plow,
i.truck-plow {
    --fa: "\f7de";
}

.fa-book-atlas,
i.book-atlas {
    --fa: "\f558";
}

.fa-atlas,
i.atlas {
    --fa: "\f558";
}

.fa-virus,
i.virus {
    --fa: "\e074";
}

.fa-grid-round-2,
i.grid-round-2 {
    --fa: "\e5db";
}

.fa-comment-middle-top,
i.comment-middle-top {
    --fa: "\e14a";
}

.fa-wave,
i.wave {
    --fa: "\e65b";
}

.fa-envelope-circle-check,
i.envelope-circle-check {
    --fa: "\e4e8";
}

.fa-layer-group,
i.layer-group {
    --fa: "\f5fd";
}

.fa-restroom-simple,
i.restroom-simple {
    --fa: "\e23a";
}

.fa-arrows-to-dot,
i.arrows-to-dot {
    --fa: "\e4be";
}

.fa-border-outer,
i.border-outer {
    --fa: "\f851";
}

.fa-hashtag-lock,
i.hashtag-lock {
    --fa: "\e415";
}

.fa-clock-two-thirty,
i.clock-two-thirty {
    --fa: "\e35b";
}

.fa-archway,
i.archway {
    --fa: "\f557";
}

.fa-heart-circle-check,
i.heart-circle-check {
    --fa: "\e4fd";
}

.fa-house-chimney-crack,
i.house-chimney-crack {
    --fa: "\f6f1";
}

.fa-house-damage,
i.house-damage {
    --fa: "\f6f1";
}

.fa-file-zipper,
i.file-zipper {
    --fa: "\f1c6";
}

.fa-file-archive,
i.file-archive {
    --fa: "\f1c6";
}

.fa-ticket-perforated,
i.ticket-perforated {
    --fa: "\e63e";
}

.fa-heart-half,
i.heart-half {
    --fa: "\e1ab";
}

.fa-comment-check,
i.comment-check {
    --fa: "\f4ac";
}

.fa-square,
i.square {
    --fa: "\f0c8";
}

.fa-memo,
i.memo {
    --fa: "\e1d8";
}

.fa-martini-glass-empty,
i.martini-glass-empty {
    --fa: "\f000";
}

.fa-glass-martini,
i.glass-martini {
    --fa: "\f000";
}

.fa-couch,
i.couch {
    --fa: "\f4b8";
}

.fa-cedi-sign,
i.cedi-sign {
    --fa: "\e0df";
}

.fa-italic,
i.italic {
    --fa: "\f033";
}

.fa-glass-citrus,
i.glass-citrus {
    --fa: "\f869";
}

.fa-calendar-lines-pen,
i.calendar-lines-pen {
    --fa: "\e472";
}

.fa-table-cells-column-lock,
i.table-cells-column-lock {
    --fa: "\e678";
}

.fa-church,
i.church {
    --fa: "\f51d";
}

.fa-person-snowmobiling,
i.person-snowmobiling {
    --fa: "\f7d1";
}

.fa-snowmobile,
i.snowmobile {
    --fa: "\f7d1";
}

.fa-face-hushed,
i.face-hushed {
    --fa: "\e37b";
}

.fa-comments-dollar,
i.comments-dollar {
    --fa: "\f653";
}

.fa-tickets-simple,
i.tickets-simple {
    --fa: "\e659";
}

.fa-pickaxe,
i.pickaxe {
    --fa: "\e5bf";
}

.fa-link-simple-slash,
i.link-simple-slash {
    --fa: "\e1ce";
}

.fa-democrat,
i.democrat {
    --fa: "\f747";
}

.fa-face-confused,
i.face-confused {
    --fa: "\e36d";
}

.fa-pinball,
i.pinball {
    --fa: "\e229";
}

.fa-z,
i.z {
    --fa: "\5a";
}

.fa-person-skiing,
i.person-skiing {
    --fa: "\f7c9";
}

.fa-skiing,
i.skiing {
    --fa: "\f7c9";
}

.fa-deer,
i.deer {
    --fa: "\f78e";
}

.fa-input-pipe,
i.input-pipe {
    --fa: "\e1be";
}

.fa-road-lock,
i.road-lock {
    --fa: "\e567";
}

.fa-a,
i.a {
    --fa: "\41";
}

.fa-bookmark-slash,
i.bookmark-slash {
    --fa: "\e0c2";
}

.fa-temperature-arrow-down,
i.temperature-arrow-down {
    --fa: "\e03f";
}

.fa-temperature-down,
i.temperature-down {
    --fa: "\e03f";
}

.fa-mace,
i.mace {
    --fa: "\f6f8";
}

.fa-feather-pointed,
i.feather-pointed {
    --fa: "\f56b";
}

.fa-feather-alt,
i.feather-alt {
    --fa: "\f56b";
}

.fa-sausage,
i.sausage {
    --fa: "\f820";
}

.fa-trash-can-clock,
i.trash-can-clock {
    --fa: "\e2aa";
}

.fa-p,
i.p {
    --fa: "\50";
}

.fa-broom-wide,
i.broom-wide {
    --fa: "\e5d1";
}

.fa-snowflake,
i.snowflake {
    --fa: "\f2dc";
}

.fa-stomach,
i.stomach {
    --fa: "\f623";
}

.fa-newspaper,
i.newspaper {
    --fa: "\f1ea";
}

.fa-rectangle-ad,
i.rectangle-ad {
    --fa: "\f641";
}

.fa-ad,
i.ad {
    --fa: "\f641";
}

.fa-guitar-electric,
i.guitar-electric {
    --fa: "\f8be";
}

.fa-arrow-turn-down-right,
i.arrow-turn-down-right {
    --fa: "\e3d6";
}

.fa-moon-cloud,
i.moon-cloud {
    --fa: "\f754";
}

.fa-bread-slice-butter,
i.bread-slice-butter {
    --fa: "\e3e1";
}

.fa-circle-arrow-right,
i.circle-arrow-right {
    --fa: "\f0a9";
}

.fa-arrow-circle-right,
i.arrow-circle-right {
    --fa: "\f0a9";
}

.fa-user-group-crown,
i.user-group-crown {
    --fa: "\f6a5";
}

.fa-users-crown,
i.users-crown {
    --fa: "\f6a5";
}

.fa-circle-i,
i.circle-i {
    --fa: "\e111";
}

.fa-toilet-paper-check,
i.toilet-paper-check {
    --fa: "\e5b2";
}

.fa-filter-circle-xmark,
i.filter-circle-xmark {
    --fa: "\e17b";
}

.fa-locust,
i.locust {
    --fa: "\e520";
}

.fa-sort,
i.sort {
    --fa: "\f0dc";
}

.fa-unsorted,
i.unsorted {
    --fa: "\f0dc";
}

.fa-list-ol,
i.list-ol {
    --fa: "\f0cb";
}

.fa-list-1-2,
i.list-1-2 {
    --fa: "\f0cb";
}

.fa-list-numeric,
i.list-numeric {
    --fa: "\f0cb";
}

.fa-chart-waterfall,
i.chart-waterfall {
    --fa: "\e0eb";
}

.fa-sparkle,
i.sparkle {
    --fa: "\e5d6";
}

.fa-face-party,
i.face-party {
    --fa: "\e383";
}

.fa-kidneys,
i.kidneys {
    --fa: "\f5fb";
}

.fa-wifi-exclamation,
i.wifi-exclamation {
    --fa: "\e2cf";
}

.fa-chart-network,
i.chart-network {
    --fa: "\f78a";
}

.fa-person-dress-burst,
i.person-dress-burst {
    --fa: "\e544";
}

.fa-dice-d4,
i.dice-d4 {
    --fa: "\f6d0";
}

.fa-money-check-dollar,
i.money-check-dollar {
    --fa: "\f53d";
}

.fa-money-check-alt,
i.money-check-alt {
    --fa: "\f53d";
}

.fa-vector-square,
i.vector-square {
    --fa: "\f5cb";
}

.fa-bread-slice,
i.bread-slice {
    --fa: "\f7ec";
}

.fa-language,
i.language {
    --fa: "\f1ab";
}

.fa-wheat-awn-slash,
i.wheat-awn-slash {
    --fa: "\e338";
}

.fa-face-kiss-wink-heart,
i.face-kiss-wink-heart {
    --fa: "\f598";
}

.fa-kiss-wink-heart,
i.kiss-wink-heart {
    --fa: "\f598";
}

.fa-dagger,
i.dagger {
    --fa: "\f6cb";
}

.fa-podium,
i.podium {
    --fa: "\f680";
}

.fa-diamonds-4,
i.diamonds-4 {
    --fa: "\e68b";
}

.fa-memo-circle-check,
i.memo-circle-check {
    --fa: "\e1d9";
}

.fa-route-highway,
i.route-highway {
    --fa: "\f61a";
}

.fa-down-to-line,
i.down-to-line {
    --fa: "\f34a";
}

.fa-arrow-alt-to-bottom,
i.arrow-alt-to-bottom {
    --fa: "\f34a";
}

.fa-filter,
i.filter {
    --fa: "\f0b0";
}

.fa-square-g,
i.square-g {
    --fa: "\e271";
}

.fa-circle-phone,
i.circle-phone {
    --fa: "\e11b";
}

.fa-phone-circle,
i.phone-circle {
    --fa: "\e11b";
}

.fa-clipboard-prescription,
i.clipboard-prescription {
    --fa: "\f5e8";
}

.fa-user-nurse-hair,
i.user-nurse-hair {
    --fa: "\e45d";
}

.fa-question,
i.question {
    --fa: "\3f";
}

.fa-file-signature,
i.file-signature {
    --fa: "\f573";
}

.fa-toggle-large-on,
i.toggle-large-on {
    --fa: "\e5b1";
}

.fa-up-down-left-right,
i.up-down-left-right {
    --fa: "\f0b2";
}

.fa-arrows-alt,
i.arrows-alt {
    --fa: "\f0b2";
}

.fa-dryer-heat,
i.dryer-heat {
    --fa: "\f862";
}

.fa-dryer-alt,
i.dryer-alt {
    --fa: "\f862";
}

.fa-house-chimney-user,
i.house-chimney-user {
    --fa: "\e065";
}

.fa-hand-holding-heart,
i.hand-holding-heart {
    --fa: "\f4be";
}

.fa-arrow-up-small-big,
i.arrow-up-small-big {
    --fa: "\f88f";
}

.fa-sort-size-up-alt,
i.sort-size-up-alt {
    --fa: "\f88f";
}

.fa-train-track,
i.train-track {
    --fa: "\e453";
}

.fa-puzzle-piece,
i.puzzle-piece {
    --fa: "\f12e";
}

.fa-money-check,
i.money-check {
    --fa: "\f53c";
}

.fa-star-half-stroke,
i.star-half-stroke {
    --fa: "\f5c0";
}

.fa-star-half-alt,
i.star-half-alt {
    --fa: "\f5c0";
}

.fa-file-exclamation,
i.file-exclamation {
    --fa: "\f31a";
}

.fa-code,
i.code {
    --fa: "\f121";
}

.fa-whiskey-glass,
i.whiskey-glass {
    --fa: "\f7a0";
}

.fa-glass-whiskey,
i.glass-whiskey {
    --fa: "\f7a0";
}

.fa-moon-stars,
i.moon-stars {
    --fa: "\f755";
}

.fa-building-circle-exclamation,
i.building-circle-exclamation {
    --fa: "\e4d3";
}

.fa-clothes-hanger,
i.clothes-hanger {
    --fa: "\e136";
}

.fa-mobile-notch,
i.mobile-notch {
    --fa: "\e1ee";
}

.fa-mobile-iphone,
i.mobile-iphone {
    --fa: "\e1ee";
}

.fa-magnifying-glass-chart,
i.magnifying-glass-chart {
    --fa: "\e522";
}

.fa-arrow-up-right-from-square,
i.arrow-up-right-from-square {
    --fa: "\f08e";
}

.fa-external-link,
i.external-link {
    --fa: "\f08e";
}

.fa-cubes-stacked,
i.cubes-stacked {
    --fa: "\e4e6";
}

.fa-images-user,
i.images-user {
    --fa: "\e1b9";
}

.fa-won-sign,
i.won-sign {
    --fa: "\f159";
}

.fa-krw,
i.krw {
    --fa: "\f159";
}

.fa-won,
i.won {
    --fa: "\f159";
}

.fa-image-polaroid-user,
i.image-polaroid-user {
    --fa: "\e1b6";
}

.fa-virus-covid,
i.virus-covid {
    --fa: "\e4a8";
}

.fa-square-ellipsis,
i.square-ellipsis {
    --fa: "\e26e";
}

.fa-pie,
i.pie {
    --fa: "\f705";
}

.fa-chess-knight-piece,
i.chess-knight-piece {
    --fa: "\f442";
}

.fa-chess-knight-alt,
i.chess-knight-alt {
    --fa: "\f442";
}

.fa-austral-sign,
i.austral-sign {
    --fa: "\e0a9";
}

.fa-cloud-plus,
i.cloud-plus {
    --fa: "\e35e";
}

.fa-f,
i.f {
    --fa: "\46";
}

.fa-leaf,
i.leaf {
    --fa: "\f06c";
}

.fa-bed-bunk,
i.bed-bunk {
    --fa: "\f8f8";
}

.fa-road,
i.road {
    --fa: "\f018";
}

.fa-taxi,
i.taxi {
    --fa: "\f1ba";
}

.fa-cab,
i.cab {
    --fa: "\f1ba";
}

.fa-person-circle-plus,
i.person-circle-plus {
    --fa: "\e541";
}

.fa-chart-pie,
i.chart-pie {
    --fa: "\f200";
}

.fa-pie-chart,
i.pie-chart {
    --fa: "\f200";
}

.fa-bolt-lightning,
i.bolt-lightning {
    --fa: "\e0b7";
}

.fa-clock-eight,
i.clock-eight {
    --fa: "\e345";
}

.fa-sack-xmark,
i.sack-xmark {
    --fa: "\e56a";
}

.fa-file-xls,
i.file-xls {
    --fa: "\e64d";
}

.fa-file-excel,
i.file-excel {
    --fa: "\f1c3";
}

.fa-file-contract,
i.file-contract {
    --fa: "\f56c";
}

.fa-fish-fins,
i.fish-fins {
    --fa: "\e4f2";
}

.fa-circle-q,
i.circle-q {
    --fa: "\e11e";
}

.fa-building-flag,
i.building-flag {
    --fa: "\e4d5";
}

.fa-face-grin-beam,
i.face-grin-beam {
    --fa: "\f582";
}

.fa-grin-beam,
i.grin-beam {
    --fa: "\f582";
}

.fa-object-ungroup,
i.object-ungroup {
    --fa: "\f248";
}

.fa-face-disguise,
i.face-disguise {
    --fa: "\e370";
}

.fa-circle-arrow-down-right,
i.circle-arrow-down-right {
    --fa: "\e0fa";
}

.fa-alien-8bit,
i.alien-8bit {
    --fa: "\f8f6";
}

.fa-alien-monster,
i.alien-monster {
    --fa: "\f8f6";
}

.fa-hand-point-ribbon,
i.hand-point-ribbon {
    --fa: "\e1a6";
}

.fa-poop,
i.poop {
    --fa: "\f619";
}

.fa-object-exclude,
i.object-exclude {
    --fa: "\e49c";
}

.fa-telescope,
i.telescope {
    --fa: "\e03e";
}

.fa-location-pin,
i.location-pin {
    --fa: "\f041";
}

.fa-map-marker,
i.map-marker {
    --fa: "\f041";
}

.fa-square-list,
i.square-list {
    --fa: "\e489";
}

.fa-kaaba,
i.kaaba {
    --fa: "\f66b";
}

.fa-toilet-paper,
i.toilet-paper {
    --fa: "\f71e";
}

.fa-helmet-safety,
i.helmet-safety {
    --fa: "\f807";
}

.fa-hard-hat,
i.hard-hat {
    --fa: "\f807";
}

.fa-hat-hard,
i.hat-hard {
    --fa: "\f807";
}

.fa-comment-code,
i.comment-code {
    --fa: "\e147";
}

.fa-sim-cards,
i.sim-cards {
    --fa: "\e251";
}

.fa-starship,
i.starship {
    --fa: "\e039";
}

.fa-eject,
i.eject {
    --fa: "\f052";
}

.fa-circle-right,
i.circle-right {
    --fa: "\f35a";
}

.fa-arrow-alt-circle-right,
i.arrow-alt-circle-right {
    --fa: "\f35a";
}

.fa-plane-circle-check,
i.plane-circle-check {
    --fa: "\e555";
}

.fa-seal,
i.seal {
    --fa: "\e241";
}

.fa-user-cowboy,
i.user-cowboy {
    --fa: "\f8ea";
}

.fa-hexagon-vertical-nft,
i.hexagon-vertical-nft {
    --fa: "\e505";
}

.fa-face-rolling-eyes,
i.face-rolling-eyes {
    --fa: "\f5a5";
}

.fa-meh-rolling-eyes,
i.meh-rolling-eyes {
    --fa: "\f5a5";
}

.fa-bread-loaf,
i.bread-loaf {
    --fa: "\f7eb";
}

.fa-rings-wedding,
i.rings-wedding {
    --fa: "\f81b";
}

.fa-object-group,
i.object-group {
    --fa: "\f247";
}

.fa-french-fries,
i.french-fries {
    --fa: "\f803";
}

.fa-chart-line,
i.chart-line {
    --fa: "\f201";
}

.fa-line-chart,
i.line-chart {
    --fa: "\f201";
}

.fa-calendar-arrow-down,
i.calendar-arrow-down {
    --fa: "\e0d0";
}

.fa-calendar-download,
i.calendar-download {
    --fa: "\e0d0";
}

.fa-send-back,
i.send-back {
    --fa: "\f87e";
}

.fa-mask-ventilator,
i.mask-ventilator {
    --fa: "\e524";
}

.fa-tickets,
i.tickets {
    --fa: "\e658";
}

.fa-signature-lock,
i.signature-lock {
    --fa: "\e3ca";
}

.fa-arrow-right,
i.arrow-right {
    --fa: "\f061";
}

.fa-signs-post,
i.signs-post {
    --fa: "\f277";
}

.fa-map-signs,
i.map-signs {
    --fa: "\f277";
}

.fa-octagon-plus,
i.octagon-plus {
    --fa: "\f301";
}

.fa-plus-octagon,
i.plus-octagon {
    --fa: "\f301";
}

.fa-cash-register,
i.cash-register {
    --fa: "\f788";
}

.fa-person-circle-question,
i.person-circle-question {
    --fa: "\e542";
}

.fa-melon-slice,
i.melon-slice {
    --fa: "\e311";
}

.fa-space-station-moon,
i.space-station-moon {
    --fa: "\e033";
}

.fa-message-smile,
i.message-smile {
    --fa: "\f4aa";
}

.fa-comment-alt-smile,
i.comment-alt-smile {
    --fa: "\f4aa";
}

.fa-cup-straw,
i.cup-straw {
    --fa: "\e363";
}

.fa-left-from-line,
i.left-from-line {
    --fa: "\f348";
}

.fa-arrow-alt-from-right,
i.arrow-alt-from-right {
    --fa: "\f348";
}

.fa-h,
i.h {
    --fa: "\48";
}

.fa-basket-shopping-simple,
i.basket-shopping-simple {
    --fa: "\e0af";
}

.fa-shopping-basket-alt,
i.shopping-basket-alt {
    --fa: "\e0af";
}

.fa-hands-holding-heart,
i.hands-holding-heart {
    --fa: "\f4c3";
}

.fa-hands-heart,
i.hands-heart {
    --fa: "\f4c3";
}

.fa-clock-nine,
i.clock-nine {
    --fa: "\e34c";
}

.fa-hammer-brush,
i.hammer-brush {
    --fa: "\e620";
}

.fa-tarp,
i.tarp {
    --fa: "\e57b";
}

.fa-face-sleepy,
i.face-sleepy {
    --fa: "\e38e";
}

.fa-hand-horns,
i.hand-horns {
    --fa: "\e1a9";
}

.fa-screwdriver-wrench,
i.screwdriver-wrench {
    --fa: "\f7d9";
}

.fa-tools,
i.tools {
    --fa: "\f7d9";
}

.fa-arrows-to-eye,
i.arrows-to-eye {
    --fa: "\e4bf";
}

.fa-circle-three-quarters,
i.circle-three-quarters {
    --fa: "\e125";
}

.fa-trophy-star,
i.trophy-star {
    --fa: "\f2eb";
}

.fa-trophy-alt,
i.trophy-alt {
    --fa: "\f2eb";
}

.fa-plug-circle-bolt,
i.plug-circle-bolt {
    --fa: "\e55b";
}

.fa-face-thermometer,
i.face-thermometer {
    --fa: "\e39a";
}

.fa-grid-round-4,
i.grid-round-4 {
    --fa: "\e5dd";
}

.fa-sign-posts-wrench,
i.sign-posts-wrench {
    --fa: "\e626";
}

.fa-shirt-running,
i.shirt-running {
    --fa: "\e3c8";
}

.fa-book-circle-arrow-up,
i.book-circle-arrow-up {
    --fa: "\e0bd";
}

.fa-face-nauseated,
i.face-nauseated {
    --fa: "\e381";
}

.fa-heart,
i.heart {
    --fa: "\f004";
}

.fa-file-chart-pie,
i.file-chart-pie {
    --fa: "\f65a";
}

.fa-mars-and-venus,
i.mars-and-venus {
    --fa: "\f224";
}

.fa-house-user,
i.house-user {
    --fa: "\e1b0";
}

.fa-home-user,
i.home-user {
    --fa: "\e1b0";
}

.fa-circle-arrow-down-left,
i.circle-arrow-down-left {
    --fa: "\e0f9";
}

.fa-dumpster-fire,
i.dumpster-fire {
    --fa: "\f794";
}

.fa-hexagon-minus,
i.hexagon-minus {
    --fa: "\f307";
}

.fa-minus-hexagon,
i.minus-hexagon {
    --fa: "\f307";
}

.fa-left-to-line,
i.left-to-line {
    --fa: "\f34b";
}

.fa-arrow-alt-to-left,
i.arrow-alt-to-left {
    --fa: "\f34b";
}

.fa-house-crack,
i.house-crack {
    --fa: "\e3b1";
}

.fa-paw-simple,
i.paw-simple {
    --fa: "\f701";
}

.fa-paw-alt,
i.paw-alt {
    --fa: "\f701";
}

.fa-arrow-left-long-to-line,
i.arrow-left-long-to-line {
    --fa: "\e3d4";
}

.fa-brackets-round,
i.brackets-round {
    --fa: "\e0c5";
}

.fa-parentheses,
i.parentheses {
    --fa: "\e0c5";
}

.fa-martini-glass-citrus,
i.martini-glass-citrus {
    --fa: "\f561";
}

.fa-cocktail,
i.cocktail {
    --fa: "\f561";
}

.fa-user-shakespeare,
i.user-shakespeare {
    --fa: "\e2c2";
}

.fa-arrow-right-to-arc,
i.arrow-right-to-arc {
    --fa: "\e4b2";
}

.fa-face-surprise,
i.face-surprise {
    --fa: "\f5c2";
}

.fa-surprise,
i.surprise {
    --fa: "\f5c2";
}

.fa-bottle-water,
i.bottle-water {
    --fa: "\e4c5";
}

.fa-circle-pause,
i.circle-pause {
    --fa: "\f28b";
}

.fa-pause-circle,
i.pause-circle {
    --fa: "\f28b";
}

.fa-gauge-circle-plus,
i.gauge-circle-plus {
    --fa: "\e498";
}

.fa-folders,
i.folders {
    --fa: "\f660";
}

.fa-angel,
i.angel {
    --fa: "\f779";
}

.fa-value-absolute,
i.value-absolute {
    --fa: "\f6a6";
}

.fa-rabbit,
i.rabbit {
    --fa: "\f708";
}

.fa-toilet-paper-slash,
i.toilet-paper-slash {
    --fa: "\e072";
}

.fa-circle-euro,
i.circle-euro {
    --fa: "\e5ce";
}

.fa-apple-whole,
i.apple-whole {
    --fa: "\f5d1";
}

.fa-apple-alt,
i.apple-alt {
    --fa: "\f5d1";
}

.fa-kitchen-set,
i.kitchen-set {
    --fa: "\e51a";
}

.fa-diamond-half,
i.diamond-half {
    --fa: "\e5b7";
}

.fa-lock-keyhole,
i.lock-keyhole {
    --fa: "\f30d";
}

.fa-lock-alt,
i.lock-alt {
    --fa: "\f30d";
}

.fa-r,
i.r {
    --fa: "\52";
}

.fa-temperature-quarter,
i.temperature-quarter {
    --fa: "\f2ca";
}

.fa-temperature-1,
i.temperature-1 {
    --fa: "\f2ca";
}

.fa-thermometer-1,
i.thermometer-1 {
    --fa: "\f2ca";
}

.fa-thermometer-quarter,
i.thermometer-quarter {
    --fa: "\f2ca";
}

.fa-square-info,
i.square-info {
    --fa: "\f30f";
}

.fa-info-square,
i.info-square {
    --fa: "\f30f";
}

.fa-wifi-slash,
i.wifi-slash {
    --fa: "\f6ac";
}

.fa-toilet-paper-xmark,
i.toilet-paper-xmark {
    --fa: "\e5b3";
}

.fa-hands-holding-dollar,
i.hands-holding-dollar {
    --fa: "\f4c5";
}

.fa-hands-usd,
i.hands-usd {
    --fa: "\f4c5";
}

.fa-cube,
i.cube {
    --fa: "\f1b2";
}

.fa-arrow-down-triangle-square,
i.arrow-down-triangle-square {
    --fa: "\f888";
}

.fa-sort-shapes-down,
i.sort-shapes-down {
    --fa: "\f888";
}

.fa-bitcoin-sign,
i.bitcoin-sign {
    --fa: "\e0b4";
}

.fa-shutters,
i.shutters {
    --fa: "\e449";
}

.fa-shield-dog,
i.shield-dog {
    --fa: "\e573";
}

.fa-solar-panel,
i.solar-panel {
    --fa: "\f5ba";
}

.fa-lock-open,
i.lock-open {
    --fa: "\f3c1";
}

.fa-table-tree,
i.table-tree {
    --fa: "\e293";
}

.fa-house-chimney-heart,
i.house-chimney-heart {
    --fa: "\e1b2";
}

.fa-tally-3,
i.tally-3 {
    --fa: "\e296";
}

.fa-elevator,
i.elevator {
    --fa: "\e16d";
}

.fa-money-bill-transfer,
i.money-bill-transfer {
    --fa: "\e528";
}

.fa-money-bill-trend-up,
i.money-bill-trend-up {
    --fa: "\e529";
}

.fa-house-flood-water-circle-arrow-right,
i.house-flood-water-circle-arrow-right {
    --fa: "\e50f";
}

.fa-square-poll-horizontal,
i.square-poll-horizontal {
    --fa: "\f682";
}

.fa-poll-h,
i.poll-h {
    --fa: "\f682";
}

.fa-circle,
i.circle {
    --fa: "\f111";
}

.fa-left-to-bracket,
i.left-to-bracket {
    --fa: "\e66d";
}

.fa-cart-circle-exclamation,
i.cart-circle-exclamation {
    --fa: "\e3f2";
}

.fa-sword,
i.sword {
    --fa: "\f71c";
}

.fa-backward-fast,
i.backward-fast {
    --fa: "\f049";
}

.fa-fast-backward,
i.fast-backward {
    --fa: "\f049";
}

.fa-recycle,
i.recycle {
    --fa: "\f1b8";
}

.fa-user-astronaut,
i.user-astronaut {
    --fa: "\f4fb";
}

.fa-interrobang,
i.interrobang {
    --fa: "\e5ba";
}

.fa-plane-slash,
i.plane-slash {
    --fa: "\e069";
}

.fa-circle-dashed,
i.circle-dashed {
    --fa: "\e105";
}

.fa-trademark,
i.trademark {
    --fa: "\f25c";
}

.fa-basketball,
i.basketball {
    --fa: "\f434";
}

.fa-basketball-ball,
i.basketball-ball {
    --fa: "\f434";
}

.fa-fork-knife,
i.fork-knife {
    --fa: "\f2e6";
}

.fa-utensils-alt,
i.utensils-alt {
    --fa: "\f2e6";
}

.fa-satellite-dish,
i.satellite-dish {
    --fa: "\f7c0";
}

.fa-badge-check,
i.badge-check {
    --fa: "\f336";
}

.fa-circle-up,
i.circle-up {
    --fa: "\f35b";
}

.fa-arrow-alt-circle-up,
i.arrow-alt-circle-up {
    --fa: "\f35b";
}

.fa-slider,
i.slider {
    --fa: "\e252";
}

.fa-mobile-screen-button,
i.mobile-screen-button {
    --fa: "\f3cd";
}

.fa-mobile-alt,
i.mobile-alt {
    --fa: "\f3cd";
}

.fa-clock-one-thirty,
i.clock-one-thirty {
    --fa: "\e34f";
}

.fa-inbox-out,
i.inbox-out {
    --fa: "\f311";
}

.fa-inbox-arrow-up,
i.inbox-arrow-up {
    --fa: "\f311";
}

.fa-cloud-slash,
i.cloud-slash {
    --fa: "\e137";
}

.fa-volume-high,
i.volume-high {
    --fa: "\f028";
}

.fa-volume-up,
i.volume-up {
    --fa: "\f028";
}

.fa-users-rays,
i.users-rays {
    --fa: "\e593";
}

.fa-wallet,
i.wallet {
    --fa: "\f555";
}

.fa-octagon-check,
i.octagon-check {
    --fa: "\e426";
}

.fa-flatbread-stuffed,
i.flatbread-stuffed {
    --fa: "\e40c";
}

.fa-clipboard-check,
i.clipboard-check {
    --fa: "\f46c";
}

.fa-cart-circle-plus,
i.cart-circle-plus {
    --fa: "\e3f3";
}

.fa-truck-clock,
i.truck-clock {
    --fa: "\f48c";
}

.fa-shipping-timed,
i.shipping-timed {
    --fa: "\f48c";
}

.fa-pool-8-ball,
i.pool-8-ball {
    --fa: "\e3c5";
}

.fa-file-audio,
i.file-audio {
    --fa: "\f1c7";
}

.fa-turn-down-left,
i.turn-down-left {
    --fa: "\e331";
}

.fa-lock-hashtag,
i.lock-hashtag {
    --fa: "\e423";
}

.fa-chart-radar,
i.chart-radar {
    --fa: "\e0e7";
}

.fa-staff,
i.staff {
    --fa: "\f71b";
}

.fa-burger,
i.burger {
    --fa: "\f805";
}

.fa-hamburger,
i.hamburger {
    --fa: "\f805";
}

.fa-utility-pole,
i.utility-pole {
    --fa: "\e2c3";
}

.fa-transporter-6,
i.transporter-6 {
    --fa: "\e2a7";
}

.fa-arrow-turn-left,
i.arrow-turn-left {
    --fa: "\e632";
}

.fa-wrench,
i.wrench {
    --fa: "\f0ad";
}

.fa-bugs,
i.bugs {
    --fa: "\e4d0";
}

.fa-vector-polygon,
i.vector-polygon {
    --fa: "\e2c7";
}

.fa-diagram-nested,
i.diagram-nested {
    --fa: "\e157";
}

.fa-rupee-sign,
i.rupee-sign {
    --fa: "\f156";
}

.fa-rupee,
i.rupee {
    --fa: "\f156";
}

.fa-file-image,
i.file-image {
    --fa: "\f1c5";
}

.fa-circle-question,
i.circle-question {
    --fa: "\f059";
}

.fa-question-circle,
i.question-circle {
    --fa: "\f059";
}

.fa-tickets-perforated,
i.tickets-perforated {
    --fa: "\e63f";
}

.fa-image-user,
i.image-user {
    --fa: "\e1b8";
}

.fa-buoy,
i.buoy {
    --fa: "\e5b5";
}

.fa-plane-departure,
i.plane-departure {
    --fa: "\f5b0";
}

.fa-handshake-slash,
i.handshake-slash {
    --fa: "\e060";
}

.fa-book-bookmark,
i.book-bookmark {
    --fa: "\e0bb";
}

.fa-border-center-h,
i.border-center-h {
    --fa: "\f89c";
}

.fa-can-food,
i.can-food {
    --fa: "\e3e6";
}

.fa-typewriter,
i.typewriter {
    --fa: "\f8e7";
}

.fa-arrow-right-from-arc,
i.arrow-right-from-arc {
    --fa: "\e4b1";
}

.fa-circle-k,
i.circle-k {
    --fa: "\e113";
}

.fa-face-hand-over-mouth,
i.face-hand-over-mouth {
    --fa: "\e378";
}

.fa-popcorn,
i.popcorn {
    --fa: "\f819";
}

.fa-house-water,
i.house-water {
    --fa: "\f74f";
}

.fa-house-flood,
i.house-flood {
    --fa: "\f74f";
}

.fa-object-subtract,
i.object-subtract {
    --fa: "\e49e";
}

.fa-code-branch,
i.code-branch {
    --fa: "\f126";
}

.fa-warehouse-full,
i.warehouse-full {
    --fa: "\f495";
}

.fa-warehouse-alt,
i.warehouse-alt {
    --fa: "\f495";
}

.fa-hat-cowboy,
i.hat-cowboy {
    --fa: "\f8c0";
}

.fa-bridge,
i.bridge {
    --fa: "\e4c8";
}

.fa-phone-flip,
i.phone-flip {
    --fa: "\f879";
}

.fa-phone-alt,
i.phone-alt {
    --fa: "\f879";
}

.fa-arrow-down-from-dotted-line,
i.arrow-down-from-dotted-line {
    --fa: "\e090";
}

.fa-file-doc,
i.file-doc {
    --fa: "\e5ed";
}

.fa-square-quarters,
i.square-quarters {
    --fa: "\e44e";
}

.fa-truck-front,
i.truck-front {
    --fa: "\e2b7";
}

.fa-cat,
i.cat {
    --fa: "\f6be";
}

.fa-trash-xmark,
i.trash-xmark {
    --fa: "\e2b4";
}

.fa-circle-caret-left,
i.circle-caret-left {
    --fa: "\f32e";
}

.fa-caret-circle-left,
i.caret-circle-left {
    --fa: "\f32e";
}

.fa-files,
i.files {
    --fa: "\e178";
}

.fa-anchor-circle-exclamation,
i.anchor-circle-exclamation {
    --fa: "\e4ab";
}

.fa-face-clouds,
i.face-clouds {
    --fa: "\e47d";
}

.fa-user-crown,
i.user-crown {
    --fa: "\f6a4";
}

.fa-basket-shopping-plus,
i.basket-shopping-plus {
    --fa: "\e653";
}

.fa-truck-field,
i.truck-field {
    --fa: "\e58d";
}

.fa-route,
i.route {
    --fa: "\f4d7";
}

.fa-cart-circle-check,
i.cart-circle-check {
    --fa: "\e3f1";
}

.fa-clipboard-question,
i.clipboard-question {
    --fa: "\e4e3";
}

.fa-panorama,
i.panorama {
    --fa: "\e209";
}

.fa-comment-medical,
i.comment-medical {
    --fa: "\f7f5";
}

.fa-teeth-open,
i.teeth-open {
    --fa: "\f62f";
}

.fa-user-tie-hair-long,
i.user-tie-hair-long {
    --fa: "\e460";
}

.fa-file-circle-minus,
i.file-circle-minus {
    --fa: "\e4ed";
}

.fa-head-side-medical,
i.head-side-medical {
    --fa: "\f809";
}

.fa-arrow-turn-right,
i.arrow-turn-right {
    --fa: "\e635";
}

.fa-tags,
i.tags {
    --fa: "\f02c";
}

.fa-wine-glass,
i.wine-glass {
    --fa: "\f4e3";
}

.fa-forward-fast,
i.forward-fast {
    --fa: "\f050";
}

.fa-fast-forward,
i.fast-forward {
    --fa: "\f050";
}

.fa-face-meh-blank,
i.face-meh-blank {
    --fa: "\f5a4";
}

.fa-meh-blank,
i.meh-blank {
    --fa: "\f5a4";
}

.fa-user-robot,
i.user-robot {
    --fa: "\e04b";
}

.fa-square-parking,
i.square-parking {
    --fa: "\f540";
}

.fa-parking,
i.parking {
    --fa: "\f540";
}

.fa-card-diamond,
i.card-diamond {
    --fa: "\e3ea";
}

.fa-face-zipper,
i.face-zipper {
    --fa: "\e3a5";
}

.fa-face-raised-eyebrow,
i.face-raised-eyebrow {
    --fa: "\e388";
}

.fa-house-signal,
i.house-signal {
    --fa: "\e012";
}

.fa-square-chevron-up,
i.square-chevron-up {
    --fa: "\f32c";
}

.fa-chevron-square-up,
i.chevron-square-up {
    --fa: "\f32c";
}

.fa-bars-progress,
i.bars-progress {
    --fa: "\f828";
}

.fa-tasks-alt,
i.tasks-alt {
    --fa: "\f828";
}

.fa-faucet-drip,
i.faucet-drip {
    --fa: "\e006";
}

.fa-arrows-to-line,
i.arrows-to-line {
    --fa: "\e0a7";
}

.fa-dolphin,
i.dolphin {
    --fa: "\e168";
}

.fa-arrow-up-right,
i.arrow-up-right {
    --fa: "\e09f";
}

.fa-circle-r,
i.circle-r {
    --fa: "\e120";
}

.fa-cart-flatbed,
i.cart-flatbed {
    --fa: "\f474";
}

.fa-dolly-flatbed,
i.dolly-flatbed {
    --fa: "\f474";
}

.fa-ban-smoking,
i.ban-smoking {
    --fa: "\f54d";
}

.fa-smoking-ban,
i.smoking-ban {
    --fa: "\f54d";
}

.fa-circle-sort-up,
i.circle-sort-up {
    --fa: "\e032";
}

.fa-sort-circle-up,
i.sort-circle-up {
    --fa: "\e032";
}

.fa-terminal,
i.terminal {
    --fa: "\f120";
}

.fa-mobile-button,
i.mobile-button {
    --fa: "\f10b";
}

.fa-house-medical-flag,
i.house-medical-flag {
    --fa: "\e514";
}

.fa-basket-shopping,
i.basket-shopping {
    --fa: "\f291";
}

.fa-shopping-basket,
i.shopping-basket {
    --fa: "\f291";
}

.fa-tape,
i.tape {
    --fa: "\f4db";
}

.fa-chestnut,
i.chestnut {
    --fa: "\e3f6";
}

.fa-bus-simple,
i.bus-simple {
    --fa: "\f55e";
}

.fa-bus-alt,
i.bus-alt {
    --fa: "\f55e";
}

.fa-eye,
i.eye {
    --fa: "\f06e";
}

.fa-face-sad-cry,
i.face-sad-cry {
    --fa: "\f5b3";
}

.fa-sad-cry,
i.sad-cry {
    --fa: "\f5b3";
}

.fa-heat,
i.heat {
    --fa: "\e00c";
}

.fa-ticket-airline,
i.ticket-airline {
    --fa: "\e29a";
}

.fa-ticket-perforated-plane,
i.ticket-perforated-plane {
    --fa: "\e29a";
}

.fa-ticket-plane,
i.ticket-plane {
    --fa: "\e29a";
}

.fa-boot-heeled,
i.boot-heeled {
    --fa: "\e33f";
}

.fa-arrows-minimize,
i.arrows-minimize {
    --fa: "\e0a5";
}

.fa-compress-arrows,
i.compress-arrows {
    --fa: "\e0a5";
}

.fa-audio-description,
i.audio-description {
    --fa: "\f29e";
}

.fa-person-military-to-person,
i.person-military-to-person {
    --fa: "\e54c";
}

.fa-file-shield,
i.file-shield {
    --fa: "\e4f0";
}

.fa-hexagon,
i.hexagon {
    --fa: "\f312";
}

.fa-manhole,
i.manhole {
    --fa: "\e1d6";
}

.fa-user-slash,
i.user-slash {
    --fa: "\f506";
}

.fa-pen,
i.pen {
    --fa: "\f304";
}

.fa-tower-observation,
i.tower-observation {
    --fa: "\e586";
}

.fa-floppy-disks,
i.floppy-disks {
    --fa: "\e183";
}

.fa-toilet-paper-blank-under,
i.toilet-paper-blank-under {
    --fa: "\e29f";
}

.fa-toilet-paper-reverse-alt,
i.toilet-paper-reverse-alt {
    --fa: "\e29f";
}

.fa-file-code,
i.file-code {
    --fa: "\f1c9";
}

.fa-signal,
i.signal {
    --fa: "\f012";
}

.fa-signal-5,
i.signal-5 {
    --fa: "\f012";
}

.fa-signal-perfect,
i.signal-perfect {
    --fa: "\f012";
}

.fa-pump,
i.pump {
    --fa: "\e442";
}

.fa-bus,
i.bus {
    --fa: "\f207";
}

.fa-heart-circle-xmark,
i.heart-circle-xmark {
    --fa: "\e501";
}

.fa-arrow-up-left-from-circle,
i.arrow-up-left-from-circle {
    --fa: "\e09e";
}

.fa-house-chimney,
i.house-chimney {
    --fa: "\e3af";
}

.fa-home-lg,
i.home-lg {
    --fa: "\e3af";
}

.fa-window-maximize,
i.window-maximize {
    --fa: "\f2d0";
}

.fa-dryer,
i.dryer {
    --fa: "\f861";
}

.fa-face-frown,
i.face-frown {
    --fa: "\f119";
}

.fa-frown,
i.frown {
    --fa: "\f119";
}

.fa-chess-bishop-piece,
i.chess-bishop-piece {
    --fa: "\f43b";
}

.fa-chess-bishop-alt,
i.chess-bishop-alt {
    --fa: "\f43b";
}

.fa-shirt-tank-top,
i.shirt-tank-top {
    --fa: "\e3c9";
}

.fa-diploma,
i.diploma {
    --fa: "\f5ea";
}

.fa-scroll-ribbon,
i.scroll-ribbon {
    --fa: "\f5ea";
}

.fa-screencast,
i.screencast {
    --fa: "\e23e";
}

.fa-walker,
i.walker {
    --fa: "\f831";
}

.fa-prescription,
i.prescription {
    --fa: "\f5b1";
}

.fa-shop,
i.shop {
    --fa: "\f54f";
}

.fa-store-alt,
i.store-alt {
    --fa: "\f54f";
}

.fa-floppy-disk,
i.floppy-disk {
    --fa: "\f0c7";
}

.fa-save,
i.save {
    --fa: "\f0c7";
}

.fa-vihara,
i.vihara {
    --fa: "\f6a7";
}

.fa-face-kiss-closed-eyes,
i.face-kiss-closed-eyes {
    --fa: "\e37d";
}

.fa-scale-unbalanced,
i.scale-unbalanced {
    --fa: "\f515";
}

.fa-balance-scale-left,
i.balance-scale-left {
    --fa: "\f515";
}

.fa-file-user,
i.file-user {
    --fa: "\f65c";
}

.fa-user-police-tie,
i.user-police-tie {
    --fa: "\e334";
}

.fa-face-tongue-money,
i.face-tongue-money {
    --fa: "\e39d";
}

.fa-tennis-ball,
i.tennis-ball {
    --fa: "\f45e";
}

.fa-square-l,
i.square-l {
    --fa: "\e275";
}

.fa-sort-up,
i.sort-up {
    --fa: "\f0de";
}

.fa-sort-asc,
i.sort-asc {
    --fa: "\f0de";
}

.fa-calendar-arrow-up,
i.calendar-arrow-up {
    --fa: "\e0d1";
}

.fa-calendar-upload,
i.calendar-upload {
    --fa: "\e0d1";
}

.fa-comment-dots,
i.comment-dots {
    --fa: "\f4ad";
}

.fa-commenting,
i.commenting {
    --fa: "\f4ad";
}

.fa-plant-wilt,
i.plant-wilt {
    --fa: "\e5aa";
}

.fa-scarf,
i.scarf {
    --fa: "\f7c1";
}

.fa-album-circle-plus,
i.album-circle-plus {
    --fa: "\e48c";
}

.fa-user-nurse-hair-long,
i.user-nurse-hair-long {
    --fa: "\e45e";
}

.fa-diamond,
i.diamond {
    --fa: "\f219";
}

.fa-square-left,
i.square-left {
    --fa: "\f351";
}

.fa-arrow-alt-square-left,
i.arrow-alt-square-left {
    --fa: "\f351";
}

.fa-face-grin-squint,
i.face-grin-squint {
    --fa: "\f585";
}

.fa-grin-squint,
i.grin-squint {
    --fa: "\f585";
}

.fa-circle-ellipsis-vertical,
i.circle-ellipsis-vertical {
    --fa: "\e10b";
}

.fa-hand-holding-dollar,
i.hand-holding-dollar {
    --fa: "\f4c0";
}

.fa-hand-holding-usd,
i.hand-holding-usd {
    --fa: "\f4c0";
}

.fa-grid-dividers,
i.grid-dividers {
    --fa: "\e3ad";
}

.fa-bacterium,
i.bacterium {
    --fa: "\e05a";
}

.fa-hand-pointer,
i.hand-pointer {
    --fa: "\f25a";
}

.fa-drum-steelpan,
i.drum-steelpan {
    --fa: "\f56a";
}

.fa-hand-scissors,
i.hand-scissors {
    --fa: "\f257";
}

.fa-hands-praying,
i.hands-praying {
    --fa: "\f684";
}

.fa-praying-hands,
i.praying-hands {
    --fa: "\f684";
}

.fa-face-pensive,
i.face-pensive {
    --fa: "\e384";
}

.fa-user-music,
i.user-music {
    --fa: "\f8eb";
}

.fa-arrow-rotate-right,
i.arrow-rotate-right {
    --fa: "\f01e";
}

.fa-arrow-right-rotate,
i.arrow-right-rotate {
    --fa: "\f01e";
}

.fa-arrow-rotate-forward,
i.arrow-rotate-forward {
    --fa: "\f01e";
}

.fa-redo,
i.redo {
    --fa: "\f01e";
}

.fa-messages-dollar,
i.messages-dollar {
    --fa: "\f652";
}

.fa-comments-alt-dollar,
i.comments-alt-dollar {
    --fa: "\f652";
}

.fa-sensor-on,
i.sensor-on {
    --fa: "\e02b";
}

.fa-balloon,
i.balloon {
    --fa: "\e2e3";
}

.fa-biohazard,
i.biohazard {
    --fa: "\f780";
}

.fa-chess-queen-piece,
i.chess-queen-piece {
    --fa: "\f446";
}

.fa-chess-queen-alt,
i.chess-queen-alt {
    --fa: "\f446";
}

.fa-location-crosshairs,
i.location-crosshairs {
    --fa: "\f601";
}

.fa-location,
i.location {
    --fa: "\f601";
}

.fa-mars-double,
i.mars-double {
    --fa: "\f227";
}

.fa-left-from-bracket,
i.left-from-bracket {
    --fa: "\e66c";
}

.fa-house-person-leave,
i.house-person-leave {
    --fa: "\e00f";
}

.fa-house-leave,
i.house-leave {
    --fa: "\e00f";
}

.fa-house-person-depart,
i.house-person-depart {
    --fa: "\e00f";
}

.fa-ruler-triangle,
i.ruler-triangle {
    --fa: "\f61c";
}

.fa-card-club,
i.card-club {
    --fa: "\e3e9";
}

.fa-child-dress,
i.child-dress {
    --fa: "\e59c";
}

.fa-users-between-lines,
i.users-between-lines {
    --fa: "\e591";
}

.fa-lungs-virus,
i.lungs-virus {
    --fa: "\e067";
}

.fa-spinner-third,
i.spinner-third {
    --fa: "\f3f4";
}

.fa-face-grin-tears,
i.face-grin-tears {
    --fa: "\f588";
}

.fa-grin-tears,
i.grin-tears {
    --fa: "\f588";
}

.fa-phone,
i.phone {
    --fa: "\f095";
}

.fa-computer-mouse-scrollwheel,
i.computer-mouse-scrollwheel {
    --fa: "\f8cd";
}

.fa-mouse-alt,
i.mouse-alt {
    --fa: "\f8cd";
}

.fa-calendar-xmark,
i.calendar-xmark {
    --fa: "\f273";
}

.fa-calendar-times,
i.calendar-times {
    --fa: "\f273";
}

.fa-child-reaching,
i.child-reaching {
    --fa: "\e59d";
}

.fa-table-layout,
i.table-layout {
    --fa: "\e290";
}

.fa-narwhal,
i.narwhal {
    --fa: "\f6fe";
}

.fa-ramp-loading,
i.ramp-loading {
    --fa: "\f4d4";
}

.fa-calendar-circle-plus,
i.calendar-circle-plus {
    --fa: "\e470";
}

.fa-toothbrush,
i.toothbrush {
    --fa: "\f635";
}

.fa-border-inner,
i.border-inner {
    --fa: "\f84e";
}

.fa-paw-claws,
i.paw-claws {
    --fa: "\f702";
}

.fa-kiwi-fruit,
i.kiwi-fruit {
    --fa: "\e30c";
}

.fa-traffic-light-slow,
i.traffic-light-slow {
    --fa: "\f639";
}

.fa-rectangle-code,
i.rectangle-code {
    --fa: "\e322";
}

.fa-head-side-virus,
i.head-side-virus {
    --fa: "\e064";
}

.fa-keyboard-brightness,
i.keyboard-brightness {
    --fa: "\e1c0";
}

.fa-books-medical,
i.books-medical {
    --fa: "\f7e8";
}

.fa-lightbulb-slash,
i.lightbulb-slash {
    --fa: "\f673";
}

.fa-house-blank,
i.house-blank {
    --fa: "\e487";
}

.fa-home-blank,
i.home-blank {
    --fa: "\e487";
}

.fa-square-5,
i.square-5 {
    --fa: "\e25a";
}

.fa-square-heart,
i.square-heart {
    --fa: "\f4c8";
}

.fa-heart-square,
i.heart-square {
    --fa: "\f4c8";
}

.fa-puzzle,
i.puzzle {
    --fa: "\e443";
}

.fa-user-gear,
i.user-gear {
    --fa: "\f4fe";
}

.fa-user-cog,
i.user-cog {
    --fa: "\f4fe";
}

.fa-pipe-circle-check,
i.pipe-circle-check {
    --fa: "\e436";
}

.fa-arrow-up-1-9,
i.arrow-up-1-9 {
    --fa: "\f163";
}

.fa-sort-numeric-up,
i.sort-numeric-up {
    --fa: "\f163";
}

.fa-octagon-exclamation,
i.octagon-exclamation {
    --fa: "\e204";
}

.fa-dial-low,
i.dial-low {
    --fa: "\e15d";
}

.fa-door-closed,
i.door-closed {
    --fa: "\f52a";
}

.fa-laptop-mobile,
i.laptop-mobile {
    --fa: "\f87a";
}

.fa-phone-laptop,
i.phone-laptop {
    --fa: "\f87a";
}

.fa-conveyor-belt-boxes,
i.conveyor-belt-boxes {
    --fa: "\f46f";
}

.fa-conveyor-belt-alt,
i.conveyor-belt-alt {
    --fa: "\f46f";
}

.fa-shield-virus,
i.shield-virus {
    --fa: "\e06c";
}

.fa-starfighter-twin-ion-engine-advanced,
i.starfighter-twin-ion-engine-advanced {
    --fa: "\e28e";
}

.fa-starfighter-alt-advanced,
i.starfighter-alt-advanced {
    --fa: "\e28e";
}

.fa-dice-six,
i.dice-six {
    --fa: "\f526";
}

.fa-starfighter-twin-ion-engine,
i.starfighter-twin-ion-engine {
    --fa: "\e038";
}

.fa-starfighter-alt,
i.starfighter-alt {
    --fa: "\e038";
}

.fa-rocket-launch,
i.rocket-launch {
    --fa: "\e027";
}

.fa-mosquito-net,
i.mosquito-net {
    --fa: "\e52c";
}

.fa-vent-damper,
i.vent-damper {
    --fa: "\e465";
}

.fa-bridge-water,
i.bridge-water {
    --fa: "\e4ce";
}

.fa-ban-bug,
i.ban-bug {
    --fa: "\f7f9";
}

.fa-debug,
i.debug {
    --fa: "\f7f9";
}

.fa-person-booth,
i.person-booth {
    --fa: "\f756";
}

.fa-text-width,
i.text-width {
    --fa: "\f035";
}

.fa-garage-car,
i.garage-car {
    --fa: "\e00a";
}

.fa-square-kanban,
i.square-kanban {
    --fa: "\e488";
}

.fa-hat-wizard,
i.hat-wizard {
    --fa: "\f6e8";
}

.fa-chart-kanban,
i.chart-kanban {
    --fa: "\e64f";
}

.fa-pen-fancy,
i.pen-fancy {
    --fa: "\f5ac";
}

.fa-coffee-pot,
i.coffee-pot {
    --fa: "\e002";
}

.fa-mouse-field,
i.mouse-field {
    --fa: "\e5a8";
}

.fa-person-digging,
i.person-digging {
    --fa: "\f85e";
}

.fa-digging,
i.digging {
    --fa: "\f85e";
}

.fa-shower-down,
i.shower-down {
    --fa: "\e24d";
}

.fa-shower-alt,
i.shower-alt {
    --fa: "\e24d";
}

.fa-box-circle-check,
i.box-circle-check {
    --fa: "\e0c4";
}

.fa-brightness,
i.brightness {
    --fa: "\e0c9";
}

.fa-car-side-bolt,
i.car-side-bolt {
    --fa: "\e344";
}

.fa-file-xml,
i.file-xml {
    --fa: "\e654";
}

.fa-ornament,
i.ornament {
    --fa: "\f7b8";
}

.fa-phone-arrow-down-left,
i.phone-arrow-down-left {
    --fa: "\e223";
}

.fa-phone-arrow-down,
i.phone-arrow-down {
    --fa: "\e223";
}

.fa-phone-incoming,
i.phone-incoming {
    --fa: "\e223";
}

.fa-cloud-word,
i.cloud-word {
    --fa: "\e138";
}

.fa-hand-fingers-crossed,
i.hand-fingers-crossed {
    --fa: "\e1a3";
}

.fa-trash,
i.trash {
    --fa: "\f1f8";
}

.fa-gauge-simple,
i.gauge-simple {
    --fa: "\f629";
}

.fa-gauge-simple-med,
i.gauge-simple-med {
    --fa: "\f629";
}

.fa-tachometer-average,
i.tachometer-average {
    --fa: "\f629";
}

.fa-arrow-down-small-big,
i.arrow-down-small-big {
    --fa: "\f88d";
}

.fa-sort-size-down-alt,
i.sort-size-down-alt {
    --fa: "\f88d";
}

.fa-book-medical,
i.book-medical {
    --fa: "\f7e6";
}

.fa-face-melting,
i.face-melting {
    --fa: "\e483";
}

.fa-poo,
i.poo {
    --fa: "\f2fe";
}

.fa-pen-clip-slash,
i.pen-clip-slash {
    --fa: "\e20f";
}

.fa-pen-alt-slash,
i.pen-alt-slash {
    --fa: "\e20f";
}

.fa-quote-right,
i.quote-right {
    --fa: "\f10e";
}

.fa-quote-right-alt,
i.quote-right-alt {
    --fa: "\f10e";
}

.fa-scroll-old,
i.scroll-old {
    --fa: "\f70f";
}

.fa-guitars,
i.guitars {
    --fa: "\f8bf";
}

.fa-phone-xmark,
i.phone-xmark {
    --fa: "\e227";
}

.fa-hose,
i.hose {
    --fa: "\e419";
}

.fa-clock-six,
i.clock-six {
    --fa: "\e352";
}

.fa-shirt,
i.shirt {
    --fa: "\f553";
}

.fa-t-shirt,
i.t-shirt {
    --fa: "\f553";
}

.fa-tshirt,
i.tshirt {
    --fa: "\f553";
}

.fa-billboard,
i.billboard {
    --fa: "\e5cd";
}

.fa-square-r,
i.square-r {
    --fa: "\e27c";
}

.fa-cubes,
i.cubes {
    --fa: "\f1b3";
}

.fa-envelope-open-dollar,
i.envelope-open-dollar {
    --fa: "\f657";
}

.fa-divide,
i.divide {
    --fa: "\f529";
}

.fa-sun-cloud,
i.sun-cloud {
    --fa: "\f763";
}

.fa-lamp-floor,
i.lamp-floor {
    --fa: "\e015";
}

.fa-square-7,
i.square-7 {
    --fa: "\e25c";
}

.fa-tenge-sign,
i.tenge-sign {
    --fa: "\f7d7";
}

.fa-tenge,
i.tenge {
    --fa: "\f7d7";
}

.fa-headphones,
i.headphones {
    --fa: "\f025";
}

.fa-hands-holding,
i.hands-holding {
    --fa: "\f4c2";
}

.fa-campfire,
i.campfire {
    --fa: "\f6ba";
}

.fa-circle-ampersand,
i.circle-ampersand {
    --fa: "\e0f8";
}

.fa-snowflakes,
i.snowflakes {
    --fa: "\f7cf";
}

.fa-hands-clapping,
i.hands-clapping {
    --fa: "\e1a8";
}

.fa-republican,
i.republican {
    --fa: "\f75e";
}

.fa-leaf-maple,
i.leaf-maple {
    --fa: "\f6f6";
}

.fa-arrow-left,
i.arrow-left {
    --fa: "\f060";
}

.fa-person-circle-xmark,
i.person-circle-xmark {
    --fa: "\e543";
}

.fa-ruler,
i.ruler {
    --fa: "\f545";
}

.fa-arrow-left-from-bracket,
i.arrow-left-from-bracket {
    --fa: "\e668";
}

.fa-cup-straw-swoosh,
i.cup-straw-swoosh {
    --fa: "\e364";
}

.fa-temperature-sun,
i.temperature-sun {
    --fa: "\f76a";
}

.fa-temperature-hot,
i.temperature-hot {
    --fa: "\f76a";
}

.fa-align-left,
i.align-left {
    --fa: "\f036";
}

.fa-dice-d6,
i.dice-d6 {
    --fa: "\f6d1";
}

.fa-restroom,
i.restroom {
    --fa: "\f7bd";
}

.fa-high-definition,
i.high-definition {
    --fa: "\e1ae";
}

.fa-rectangle-hd,
i.rectangle-hd {
    --fa: "\e1ae";
}

.fa-j,
i.j {
    --fa: "\4a";
}

.fa-galaxy,
i.galaxy {
    --fa: "\e008";
}

.fa-users-viewfinder,
i.users-viewfinder {
    --fa: "\e595";
}

.fa-file-video,
i.file-video {
    --fa: "\f1c8";
}

.fa-cherries,
i.cherries {
    --fa: "\e0ec";
}

.fa-up-right-from-square,
i.up-right-from-square {
    --fa: "\f35d";
}

.fa-external-link-alt,
i.external-link-alt {
    --fa: "\f35d";
}

.fa-circle-sort,
i.circle-sort {
    --fa: "\e030";
}

.fa-sort-circle,
i.sort-circle {
    --fa: "\e030";
}

.fa-table-cells,
i.table-cells {
    --fa: "\f00a";
}

.fa-th,
i.th {
    --fa: "\f00a";
}

.fa-bag-shopping-minus,
i.bag-shopping-minus {
    --fa: "\e650";
}

.fa-file-pdf,
i.file-pdf {
    --fa: "\f1c1";
}

.fa-siren,
i.siren {
    --fa: "\e02d";
}

.fa-arrow-up-to-dotted-line,
i.arrow-up-to-dotted-line {
    --fa: "\e0a1";
}

.fa-image-landscape,
i.image-landscape {
    --fa: "\e1b5";
}

.fa-landscape,
i.landscape {
    --fa: "\e1b5";
}

.fa-tank-water,
i.tank-water {
    --fa: "\e452";
}

.fa-curling-stone,
i.curling-stone {
    --fa: "\f44a";
}

.fa-curling,
i.curling {
    --fa: "\f44a";
}

.fa-gamepad-modern,
i.gamepad-modern {
    --fa: "\e5a2";
}

.fa-gamepad-alt,
i.gamepad-alt {
    --fa: "\e5a2";
}

.fa-messages-question,
i.messages-question {
    --fa: "\e1e7";
}

.fa-book-bible,
i.book-bible {
    --fa: "\f647";
}

.fa-bible,
i.bible {
    --fa: "\f647";
}

.fa-o,
i.o {
    --fa: "\4f";
}

.fa-suitcase-medical,
i.suitcase-medical {
    --fa: "\f0fa";
}

.fa-medkit,
i.medkit {
    --fa: "\f0fa";
}

.fa-briefcase-arrow-right,
i.briefcase-arrow-right {
    --fa: "\e2f2";
}

.fa-expand-wide,
i.expand-wide {
    --fa: "\f320";
}

.fa-clock-eleven-thirty,
i.clock-eleven-thirty {
    --fa: "\e348";
}

.fa-rv,
i.rv {
    --fa: "\f7be";
}

.fa-user-secret,
i.user-secret {
    --fa: "\f21b";
}

.fa-otter,
i.otter {
    --fa: "\f700";
}

.fa-dreidel,
i.dreidel {
    --fa: "\f792";
}

.fa-person-dress,
i.person-dress {
    --fa: "\f182";
}

.fa-female,
i.female {
    --fa: "\f182";
}

.fa-comment-dollar,
i.comment-dollar {
    --fa: "\f651";
}

.fa-business-time,
i.business-time {
    --fa: "\f64a";
}

.fa-briefcase-clock,
i.briefcase-clock {
    --fa: "\f64a";
}

.fa-flower-tulip,
i.flower-tulip {
    --fa: "\f801";
}

.fa-people-pants-simple,
i.people-pants-simple {
    --fa: "\e21a";
}

.fa-cloud-drizzle,
i.cloud-drizzle {
    --fa: "\f738";
}

.fa-table-cells-large,
i.table-cells-large {
    --fa: "\f009";
}

.fa-th-large,
i.th-large {
    --fa: "\f009";
}

.fa-book-tanakh,
i.book-tanakh {
    --fa: "\f827";
}

.fa-tanakh,
i.tanakh {
    --fa: "\f827";
}

.fa-solar-system,
i.solar-system {
    --fa: "\e02f";
}

.fa-seal-question,
i.seal-question {
    --fa: "\e243";
}

.fa-phone-volume,
i.phone-volume {
    --fa: "\f2a0";
}

.fa-volume-control-phone,
i.volume-control-phone {
    --fa: "\f2a0";
}

.fa-disc-drive,
i.disc-drive {
    --fa: "\f8b5";
}

.fa-hat-cowboy-side,
i.hat-cowboy-side {
    --fa: "\f8c1";
}

.fa-table-rows,
i.table-rows {
    --fa: "\e292";
}

.fa-rows,
i.rows {
    --fa: "\e292";
}

.fa-location-exclamation,
i.location-exclamation {
    --fa: "\f608";
}

.fa-map-marker-exclamation,
i.map-marker-exclamation {
    --fa: "\f608";
}

.fa-face-fearful,
i.face-fearful {
    --fa: "\e375";
}

.fa-clipboard-user,
i.clipboard-user {
    --fa: "\f7f3";
}

.fa-bus-school,
i.bus-school {
    --fa: "\f5dd";
}

.fa-film-slash,
i.film-slash {
    --fa: "\e179";
}

.fa-square-arrow-down-right,
i.square-arrow-down-right {
    --fa: "\e262";
}

.fa-book-sparkles,
i.book-sparkles {
    --fa: "\f6b8";
}

.fa-book-spells,
i.book-spells {
    --fa: "\f6b8";
}

.fa-washing-machine,
i.washing-machine {
    --fa: "\f898";
}

.fa-washer,
i.washer {
    --fa: "\f898";
}

.fa-child,
i.child {
    --fa: "\f1ae";
}

.fa-lira-sign,
i.lira-sign {
    --fa: "\f195";
}

.fa-user-visor,
i.user-visor {
    --fa: "\e04c";
}

.fa-file-plus-minus,
i.file-plus-minus {
    --fa: "\e177";
}

.fa-chess-clock-flip,
i.chess-clock-flip {
    --fa: "\f43e";
}

.fa-chess-clock-alt,
i.chess-clock-alt {
    --fa: "\f43e";
}

.fa-satellite,
i.satellite {
    --fa: "\f7bf";
}

.fa-truck-fire,
i.truck-fire {
    --fa: "\e65a";
}

.fa-plane-lock,
i.plane-lock {
    --fa: "\e558";
}

.fa-steering-wheel,
i.steering-wheel {
    --fa: "\f622";
}

.fa-tag,
i.tag {
    --fa: "\f02b";
}

.fa-stretcher,
i.stretcher {
    --fa: "\f825";
}

.fa-book-section,
i.book-section {
    --fa: "\e0c1";
}

.fa-book-law,
i.book-law {
    --fa: "\e0c1";
}

.fa-inboxes,
i.inboxes {
    --fa: "\e1bb";
}

.fa-coffee-bean,
i.coffee-bean {
    --fa: "\e13e";
}

.fa-circle-yen,
i.circle-yen {
    --fa: "\e5d0";
}

.fa-brackets-curly,
i.brackets-curly {
    --fa: "\f7ea";
}

.fa-ellipsis-stroke-vertical,
i.ellipsis-stroke-vertical {
    --fa: "\f39c";
}

.fa-ellipsis-v-alt,
i.ellipsis-v-alt {
    --fa: "\f39c";
}

.fa-comment,
i.comment {
    --fa: "\f075";
}

.fa-square-1,
i.square-1 {
    --fa: "\e256";
}

.fa-cake-candles,
i.cake-candles {
    --fa: "\f1fd";
}

.fa-birthday-cake,
i.birthday-cake {
    --fa: "\f1fd";
}

.fa-cake,
i.cake {
    --fa: "\f1fd";
}

.fa-head-side,
i.head-side {
    --fa: "\f6e9";
}

.fa-truck-ladder,
i.truck-ladder {
    --fa: "\e657";
}

.fa-envelope,
i.envelope {
    --fa: "\f0e0";
}

.fa-dolly-empty,
i.dolly-empty {
    --fa: "\f473";
}

.fa-face-tissue,
i.face-tissue {
    --fa: "\e39c";
}

.fa-angles-up,
i.angles-up {
    --fa: "\f102";
}

.fa-angle-double-up,
i.angle-double-up {
    --fa: "\f102";
}

.fa-bin-recycle,
i.bin-recycle {
    --fa: "\e5f7";
}

.fa-paperclip,
i.paperclip {
    --fa: "\f0c6";
}

.fa-chart-line-down,
i.chart-line-down {
    --fa: "\f64d";
}

.fa-arrow-right-to-city,
i.arrow-right-to-city {
    --fa: "\e4b3";
}

.fa-lock-a,
i.lock-a {
    --fa: "\e422";
}

.fa-ribbon,
i.ribbon {
    --fa: "\f4d6";
}

.fa-lungs,
i.lungs {
    --fa: "\f604";
}

.fa-person-pinball,
i.person-pinball {
    --fa: "\e21d";
}

.fa-arrow-up-9-1,
i.arrow-up-9-1 {
    --fa: "\f887";
}

.fa-sort-numeric-up-alt,
i.sort-numeric-up-alt {
    --fa: "\f887";
}

.fa-apple-core,
i.apple-core {
    --fa: "\e08f";
}

.fa-circle-y,
i.circle-y {
    --fa: "\e12f";
}

.fa-h6,
i.h6 {
    --fa: "\e413";
}

.fa-litecoin-sign,
i.litecoin-sign {
    --fa: "\e1d3";
}

.fa-bottle-baby,
i.bottle-baby {
    --fa: "\e673";
}

.fa-circle-small,
i.circle-small {
    --fa: "\e122";
}

.fa-border-none,
i.border-none {
    --fa: "\f850";
}

.fa-arrow-turn-down-left,
i.arrow-turn-down-left {
    --fa: "\e2e1";
}

.fa-circle-wifi-circle-wifi,
i.circle-wifi-circle-wifi {
    --fa: "\e67e";
}

.fa-circle-wifi-group,
i.circle-wifi-group {
    --fa: "\e67e";
}

.fa-circle-nodes,
i.circle-nodes {
    --fa: "\e4e2";
}

.fa-parachute-box,
i.parachute-box {
    --fa: "\f4cd";
}

.fa-reflect-horizontal,
i.reflect-horizontal {
    --fa: "\e664";
}

.fa-message-medical,
i.message-medical {
    --fa: "\f7f4";
}

.fa-comment-alt-medical,
i.comment-alt-medical {
    --fa: "\f7f4";
}

.fa-rugby-ball,
i.rugby-ball {
    --fa: "\e3c6";
}

.fa-comment-music,
i.comment-music {
    --fa: "\f8b0";
}

.fa-indent,
i.indent {
    --fa: "\f03c";
}

.fa-tree-deciduous,
i.tree-deciduous {
    --fa: "\f400";
}

.fa-tree-alt,
i.tree-alt {
    --fa: "\f400";
}

.fa-puzzle-piece-simple,
i.puzzle-piece-simple {
    --fa: "\e231";
}

.fa-puzzle-piece-alt,
i.puzzle-piece-alt {
    --fa: "\e231";
}

.fa-truck-field-un,
i.truck-field-un {
    --fa: "\e58e";
}

.fa-nfc-trash,
i.nfc-trash {
    --fa: "\e1fd";
}

.fa-hourglass,
i.hourglass {
    --fa: "\f254";
}

.fa-hourglass-empty,
i.hourglass-empty {
    --fa: "\f254";
}

.fa-mountain,
i.mountain {
    --fa: "\f6fc";
}

.fa-file-xmark,
i.file-xmark {
    --fa: "\f317";
}

.fa-file-times,
i.file-times {
    --fa: "\f317";
}

.fa-house-heart,
i.house-heart {
    --fa: "\f4c9";
}

.fa-home-heart,
i.home-heart {
    --fa: "\f4c9";
}

.fa-house-chimney-blank,
i.house-chimney-blank {
    --fa: "\e3b0";
}

.fa-meter-bolt,
i.meter-bolt {
    --fa: "\e1e9";
}

.fa-user-doctor,
i.user-doctor {
    --fa: "\f0f0";
}

.fa-user-md,
i.user-md {
    --fa: "\f0f0";
}

.fa-slash-back,
i.slash-back {
    --fa: "\5c";
}

.fa-circle-info,
i.circle-info {
    --fa: "\f05a";
}

.fa-info-circle,
i.info-circle {
    --fa: "\f05a";
}

.fa-fishing-rod,
i.fishing-rod {
    --fa: "\e3a8";
}

.fa-hammer-crash,
i.hammer-crash {
    --fa: "\e414";
}

.fa-message-heart,
i.message-heart {
    --fa: "\e5c9";
}

.fa-cloud-meatball,
i.cloud-meatball {
    --fa: "\f73b";
}

.fa-camera-polaroid,
i.camera-polaroid {
    --fa: "\f8aa";
}

.fa-camera,
i.camera {
    --fa: "\f030";
}

.fa-camera-alt,
i.camera-alt {
    --fa: "\f030";
}

.fa-square-virus,
i.square-virus {
    --fa: "\e578";
}

.fa-cart-arrow-up,
i.cart-arrow-up {
    --fa: "\e3ee";
}

.fa-meteor,
i.meteor {
    --fa: "\f753";
}

.fa-car-on,
i.car-on {
    --fa: "\e4dd";
}

.fa-sleigh,
i.sleigh {
    --fa: "\f7cc";
}

.fa-arrow-down-1-9,
i.arrow-down-1-9 {
    --fa: "\f162";
}

.fa-sort-numeric-asc,
i.sort-numeric-asc {
    --fa: "\f162";
}

.fa-sort-numeric-down,
i.sort-numeric-down {
    --fa: "\f162";
}

.fa-buoy-mooring,
i.buoy-mooring {
    --fa: "\e5b6";
}

.fa-square-4,
i.square-4 {
    --fa: "\e259";
}

.fa-hand-holding-droplet,
i.hand-holding-droplet {
    --fa: "\f4c1";
}

.fa-hand-holding-water,
i.hand-holding-water {
    --fa: "\f4c1";
}

.fa-file-eps,
i.file-eps {
    --fa: "\e644";
}

.fa-tricycle-adult,
i.tricycle-adult {
    --fa: "\e5c4";
}

.fa-waveform,
i.waveform {
    --fa: "\f8f1";
}

.fa-water,
i.water {
    --fa: "\f773";
}

.fa-star-sharp-half-stroke,
i.star-sharp-half-stroke {
    --fa: "\e28d";
}

.fa-star-sharp-half-alt,
i.star-sharp-half-alt {
    --fa: "\e28d";
}

.fa-nfc-signal,
i.nfc-signal {
    --fa: "\e1fb";
}

.fa-plane-prop,
i.plane-prop {
    --fa: "\e22b";
}

.fa-calendar-check,
i.calendar-check {
    --fa: "\f274";
}

.fa-clock-desk,
i.clock-desk {
    --fa: "\e134";
}

.fa-calendar-clock,
i.calendar-clock {
    --fa: "\e0d2";
}

.fa-calendar-time,
i.calendar-time {
    --fa: "\e0d2";
}

.fa-braille,
i.braille {
    --fa: "\f2a1";
}

.fa-prescription-bottle-medical,
i.prescription-bottle-medical {
    --fa: "\f486";
}

.fa-prescription-bottle-alt,
i.prescription-bottle-alt {
    --fa: "\f486";
}

.fa-plate-utensils,
i.plate-utensils {
    --fa: "\e43b";
}

.fa-family-pants,
i.family-pants {
    --fa: "\e302";
}

.fa-hose-reel,
i.hose-reel {
    --fa: "\e41a";
}

.fa-house-window,
i.house-window {
    --fa: "\e3b3";
}

.fa-landmark,
i.landmark {
    --fa: "\f66f";
}

.fa-truck,
i.truck {
    --fa: "\f0d1";
}

.fa-music-magnifying-glass,
i.music-magnifying-glass {
    --fa: "\e662";
}

.fa-crosshairs,
i.crosshairs {
    --fa: "\f05b";
}

.fa-cloud-rainbow,
i.cloud-rainbow {
    --fa: "\f73e";
}

.fa-person-cane,
i.person-cane {
    --fa: "\e53c";
}

.fa-alien,
i.alien {
    --fa: "\f8f5";
}

.fa-tent,
i.tent {
    --fa: "\e57d";
}

.fa-laptop-binary,
i.laptop-binary {
    --fa: "\e5e7";
}

.fa-vest-patches,
i.vest-patches {
    --fa: "\e086";
}

.fa-people-dress-simple,
i.people-dress-simple {
    --fa: "\e218";
}

.fa-check-double,
i.check-double {
    --fa: "\f560";
}

.fa-arrow-down-a-z,
i.arrow-down-a-z {
    --fa: "\f15d";
}

.fa-sort-alpha-asc,
i.sort-alpha-asc {
    --fa: "\f15d";
}

.fa-sort-alpha-down,
i.sort-alpha-down {
    --fa: "\f15d";
}

.fa-bowling-ball-pin,
i.bowling-ball-pin {
    --fa: "\e0c3";
}

.fa-bell-school-slash,
i.bell-school-slash {
    --fa: "\f5d6";
}

.fa-plus-large,
i.plus-large {
    --fa: "\e59e";
}

.fa-money-bill-wheat,
i.money-bill-wheat {
    --fa: "\e52a";
}

.fa-camera-viewfinder,
i.camera-viewfinder {
    --fa: "\e0da";
}

.fa-screenshot,
i.screenshot {
    --fa: "\e0da";
}

.fa-message-music,
i.message-music {
    --fa: "\f8af";
}

.fa-comment-alt-music,
i.comment-alt-music {
    --fa: "\f8af";
}

.fa-car-building,
i.car-building {
    --fa: "\f859";
}

.fa-border-bottom-right,
i.border-bottom-right {
    --fa: "\f854";
}

.fa-border-style-alt,
i.border-style-alt {
    --fa: "\f854";
}

.fa-octagon,
i.octagon {
    --fa: "\f306";
}

.fa-comment-arrow-up-right,
i.comment-arrow-up-right {
    --fa: "\e145";
}

.fa-octagon-divide,
i.octagon-divide {
    --fa: "\e203";
}

.fa-cookie,
i.cookie {
    --fa: "\f563";
}

.fa-arrow-rotate-left,
i.arrow-rotate-left {
    --fa: "\f0e2";
}

.fa-arrow-left-rotate,
i.arrow-left-rotate {
    --fa: "\f0e2";
}

.fa-arrow-rotate-back,
i.arrow-rotate-back {
    --fa: "\f0e2";
}

.fa-arrow-rotate-backward,
i.arrow-rotate-backward {
    --fa: "\f0e2";
}

.fa-undo,
i.undo {
    --fa: "\f0e2";
}

.fa-tv-music,
i.tv-music {
    --fa: "\f8e6";
}

.fa-hard-drive,
i.hard-drive {
    --fa: "\f0a0";
}

.fa-hdd,
i.hdd {
    --fa: "\f0a0";
}

.fa-reel,
i.reel {
    --fa: "\e238";
}

.fa-face-grin-squint-tears,
i.face-grin-squint-tears {
    --fa: "\f586";
}

.fa-grin-squint-tears,
i.grin-squint-tears {
    --fa: "\f586";
}

.fa-dumbbell,
i.dumbbell {
    --fa: "\f44b";
}

.fa-rectangle-list,
i.rectangle-list {
    --fa: "\f022";
}

.fa-list-alt,
i.list-alt {
    --fa: "\f022";
}

.fa-tarp-droplet,
i.tarp-droplet {
    --fa: "\e57c";
}

.fa-alarm-exclamation,
i.alarm-exclamation {
    --fa: "\f843";
}

.fa-house-medical-circle-check,
i.house-medical-circle-check {
    --fa: "\e511";
}

.fa-traffic-cone,
i.traffic-cone {
    --fa: "\f636";
}

.fa-grate,
i.grate {
    --fa: "\e193";
}

.fa-arrow-down-right,
i.arrow-down-right {
    --fa: "\e093";
}

.fa-person-skiing-nordic,
i.person-skiing-nordic {
    --fa: "\f7ca";
}

.fa-skiing-nordic,
i.skiing-nordic {
    --fa: "\f7ca";
}

.fa-calendar-plus,
i.calendar-plus {
    --fa: "\f271";
}

.fa-person-from-portal,
i.person-from-portal {
    --fa: "\e023";
}

.fa-portal-exit,
i.portal-exit {
    --fa: "\e023";
}

.fa-plane-arrival,
i.plane-arrival {
    --fa: "\f5af";
}

.fa-cowbell-circle-plus,
i.cowbell-circle-plus {
    --fa: "\f8b4";
}

.fa-cowbell-more,
i.cowbell-more {
    --fa: "\f8b4";
}

.fa-circle-left,
i.circle-left {
    --fa: "\f359";
}

.fa-arrow-alt-circle-left,
i.arrow-alt-circle-left {
    --fa: "\f359";
}

.fa-distribute-spacing-vertical,
i.distribute-spacing-vertical {
    --fa: "\e366";
}

.fa-signal-bars-fair,
i.signal-bars-fair {
    --fa: "\f692";
}

.fa-signal-alt-2,
i.signal-alt-2 {
    --fa: "\f692";
}

.fa-sportsball,
i.sportsball {
    --fa: "\e44b";
}

.fa-game-console-handheld-crank,
i.game-console-handheld-crank {
    --fa: "\e5b9";
}

.fa-train-subway,
i.train-subway {
    --fa: "\f239";
}

.fa-subway,
i.subway {
    --fa: "\f239";
}

.fa-chart-gantt,
i.chart-gantt {
    --fa: "\e0e4";
}

.fa-face-smile-upside-down,
i.face-smile-upside-down {
    --fa: "\e395";
}

.fa-ball-pile,
i.ball-pile {
    --fa: "\f77e";
}

.fa-badge-dollar,
i.badge-dollar {
    --fa: "\f645";
}

.fa-money-bills-simple,
i.money-bills-simple {
    --fa: "\e1f4";
}

.fa-money-bills-alt,
i.money-bills-alt {
    --fa: "\e1f4";
}

.fa-list-timeline,
i.list-timeline {
    --fa: "\e1d1";
}

.fa-indian-rupee-sign,
i.indian-rupee-sign {
    --fa: "\e1bc";
}

.fa-indian-rupee,
i.indian-rupee {
    --fa: "\e1bc";
}

.fa-inr,
i.inr {
    --fa: "\e1bc";
}

.fa-crop-simple,
i.crop-simple {
    --fa: "\f565";
}

.fa-crop-alt,
i.crop-alt {
    --fa: "\f565";
}

.fa-money-bill-1,
i.money-bill-1 {
    --fa: "\f3d1";
}

.fa-money-bill-alt,
i.money-bill-alt {
    --fa: "\f3d1";
}

.fa-left-long,
i.left-long {
    --fa: "\f30a";
}

.fa-long-arrow-alt-left,
i.long-arrow-alt-left {
    --fa: "\f30a";
}

.fa-keyboard-down,
i.keyboard-down {
    --fa: "\e1c2";
}

.fa-circle-up-right,
i.circle-up-right {
    --fa: "\e129";
}

.fa-cloud-bolt-moon,
i.cloud-bolt-moon {
    --fa: "\f76d";
}

.fa-thunderstorm-moon,
i.thunderstorm-moon {
    --fa: "\f76d";
}

.fa-turn-left-up,
i.turn-left-up {
    --fa: "\e638";
}

.fa-dna,
i.dna {
    --fa: "\f471";
}

.fa-virus-slash,
i.virus-slash {
    --fa: "\e075";
}

.fa-bracket-round-right,
i.bracket-round-right {
    --fa: "\29";
}

.fa-circle-sterling,
i.circle-sterling {
    --fa: "\e5cf";
}

.fa-circle-5,
i.circle-5 {
    --fa: "\e0f2";
}

.fa-minus,
i.minus {
    --fa: "\f068";
}

.fa-subtract,
i.subtract {
    --fa: "\f068";
}

.fa-fire-flame,
i.fire-flame {
    --fa: "\f6df";
}

.fa-flame,
i.flame {
    --fa: "\f6df";
}

.fa-right-to-line,
i.right-to-line {
    --fa: "\f34c";
}

.fa-arrow-alt-to-right,
i.arrow-alt-to-right {
    --fa: "\f34c";
}

.fa-gif,
i.gif {
    --fa: "\e190";
}

.fa-chess,
i.chess {
    --fa: "\f439";
}

.fa-trash-slash,
i.trash-slash {
    --fa: "\e2b3";
}

.fa-arrow-left-long,
i.arrow-left-long {
    --fa: "\f177";
}

.fa-long-arrow-left,
i.long-arrow-left {
    --fa: "\f177";
}

.fa-plug-circle-check,
i.plug-circle-check {
    --fa: "\e55c";
}

.fa-font-case,
i.font-case {
    --fa: "\f866";
}

.fa-street-view,
i.street-view {
    --fa: "\f21d";
}

.fa-arrow-down-left,
i.arrow-down-left {
    --fa: "\e091";
}

.fa-franc-sign,
i.franc-sign {
    --fa: "\e18f";
}

.fa-flask-round-poison,
i.flask-round-poison {
    --fa: "\f6e0";
}

.fa-flask-poison,
i.flask-poison {
    --fa: "\f6e0";
}

.fa-volume-off,
i.volume-off {
    --fa: "\f026";
}

.fa-book-circle-arrow-right,
i.book-circle-arrow-right {
    --fa: "\e0bc";
}

.fa-chart-user,
i.chart-user {
    --fa: "\f6a3";
}

.fa-user-chart,
i.user-chart {
    --fa: "\f6a3";
}

.fa-hands-asl-interpreting,
i.hands-asl-interpreting {
    --fa: "\f2a3";
}

.fa-american-sign-language-interpreting,
i.american-sign-language-interpreting {
    --fa: "\f2a3";
}

.fa-asl-interpreting,
i.asl-interpreting {
    --fa: "\f2a3";
}

.fa-hands-american-sign-language-interpreting,
i.hands-american-sign-language-interpreting {
    --fa: "\f2a3";
}

.fa-presentation-screen,
i.presentation-screen {
    --fa: "\f685";
}

.fa-presentation,
i.presentation {
    --fa: "\f685";
}

.fa-circle-bolt,
i.circle-bolt {
    --fa: "\e0fe";
}

.fa-face-smile-halo,
i.face-smile-halo {
    --fa: "\e38f";
}

.fa-cart-circle-arrow-down,
i.cart-circle-arrow-down {
    --fa: "\e3ef";
}

.fa-house-person-return,
i.house-person-return {
    --fa: "\e011";
}

.fa-house-person-arrive,
i.house-person-arrive {
    --fa: "\e011";
}

.fa-house-return,
i.house-return {
    --fa: "\e011";
}

.fa-message-xmark,
i.message-xmark {
    --fa: "\f4ab";
}

.fa-comment-alt-times,
i.comment-alt-times {
    --fa: "\f4ab";
}

.fa-message-times,
i.message-times {
    --fa: "\f4ab";
}

.fa-file-certificate,
i.file-certificate {
    --fa: "\f5f3";
}

.fa-file-award,
i.file-award {
    --fa: "\f5f3";
}

.fa-user-doctor-hair-long,
i.user-doctor-hair-long {
    --fa: "\e459";
}

.fa-camera-security,
i.camera-security {
    --fa: "\f8fe";
}

.fa-camera-home,
i.camera-home {
    --fa: "\f8fe";
}

.fa-gear,
i.gear {
    --fa: "\f013";
}

.fa-cog,
i.cog {
    --fa: "\f013";
}

.fa-droplet-slash,
i.droplet-slash {
    --fa: "\f5c7";
}

.fa-tint-slash,
i.tint-slash {
    --fa: "\f5c7";
}

.fa-book-heart,
i.book-heart {
    --fa: "\f499";
}

.fa-mosque,
i.mosque {
    --fa: "\f678";
}

.fa-duck,
i.duck {
    --fa: "\f6d8";
}

.fa-mosquito,
i.mosquito {
    --fa: "\e52b";
}

.fa-star-of-david,
i.star-of-david {
    --fa: "\f69a";
}

.fa-flag-swallowtail,
i.flag-swallowtail {
    --fa: "\f74c";
}

.fa-flag-alt,
i.flag-alt {
    --fa: "\f74c";
}

.fa-person-military-rifle,
i.person-military-rifle {
    --fa: "\e54b";
}

.fa-car-garage,
i.car-garage {
    --fa: "\f5e2";
}

.fa-cart-shopping,
i.cart-shopping {
    --fa: "\f07a";
}

.fa-shopping-cart,
i.shopping-cart {
    --fa: "\f07a";
}

.fa-book-font,
i.book-font {
    --fa: "\e0bf";
}

.fa-shield-plus,
i.shield-plus {
    --fa: "\e24a";
}

.fa-vials,
i.vials {
    --fa: "\f493";
}

.fa-eye-dropper-full,
i.eye-dropper-full {
    --fa: "\e172";
}

.fa-distribute-spacing-horizontal,
i.distribute-spacing-horizontal {
    --fa: "\e365";
}

.fa-tablet-rugged,
i.tablet-rugged {
    --fa: "\f48f";
}

.fa-temperature-snow,
i.temperature-snow {
    --fa: "\f768";
}

.fa-temperature-frigid,
i.temperature-frigid {
    --fa: "\f768";
}

.fa-moped,
i.moped {
    --fa: "\e3b9";
}

.fa-face-smile-plus,
i.face-smile-plus {
    --fa: "\f5b9";
}

.fa-smile-plus,
i.smile-plus {
    --fa: "\f5b9";
}

.fa-radio-tuner,
i.radio-tuner {
    --fa: "\f8d8";
}

.fa-radio-alt,
i.radio-alt {
    --fa: "\f8d8";
}

.fa-face-swear,
i.face-swear {
    --fa: "\e399";
}

.fa-water-arrow-down,
i.water-arrow-down {
    --fa: "\f774";
}

.fa-water-lower,
i.water-lower {
    --fa: "\f774";
}

.fa-scanner-touchscreen,
i.scanner-touchscreen {
    --fa: "\f48a";
}

.fa-circle-7,
i.circle-7 {
    --fa: "\e0f4";
}

.fa-plug-circle-plus,
i.plug-circle-plus {
    --fa: "\e55f";
}

.fa-person-ski-jumping,
i.person-ski-jumping {
    --fa: "\f7c7";
}

.fa-ski-jump,
i.ski-jump {
    --fa: "\f7c7";
}

.fa-place-of-worship,
i.place-of-worship {
    --fa: "\f67f";
}

.fa-water-arrow-up,
i.water-arrow-up {
    --fa: "\f775";
}

.fa-water-rise,
i.water-rise {
    --fa: "\f775";
}

.fa-waveform-lines,
i.waveform-lines {
    --fa: "\f8f2";
}

.fa-waveform-path,
i.waveform-path {
    --fa: "\f8f2";
}

.fa-split,
i.split {
    --fa: "\e254";
}

.fa-film-canister,
i.film-canister {
    --fa: "\f8b7";
}

.fa-film-cannister,
i.film-cannister {
    --fa: "\f8b7";
}

.fa-folder-xmark,
i.folder-xmark {
    --fa: "\f65f";
}

.fa-folder-times,
i.folder-times {
    --fa: "\f65f";
}

.fa-toilet-paper-blank,
i.toilet-paper-blank {
    --fa: "\f71f";
}

.fa-toilet-paper-alt,
i.toilet-paper-alt {
    --fa: "\f71f";
}

.fa-tablet-screen,
i.tablet-screen {
    --fa: "\f3fc";
}

.fa-tablet-android-alt,
i.tablet-android-alt {
    --fa: "\f3fc";
}

.fa-hexagon-vertical-nft-slanted,
i.hexagon-vertical-nft-slanted {
    --fa: "\e506";
}

.fa-folder-music,
i.folder-music {
    --fa: "\e18d";
}

.fa-display-medical,
i.display-medical {
    --fa: "\e166";
}

.fa-desktop-medical,
i.desktop-medical {
    --fa: "\e166";
}

.fa-share-all,
i.share-all {
    --fa: "\f367";
}

.fa-peapod,
i.peapod {
    --fa: "\e31c";
}

.fa-chess-clock,
i.chess-clock {
    --fa: "\f43d";
}

.fa-axe,
i.axe {
    --fa: "\f6b2";
}

.fa-square-d,
i.square-d {
    --fa: "\e268";
}

.fa-grip-vertical,
i.grip-vertical {
    --fa: "\f58e";
}

.fa-mobile-signal-out,
i.mobile-signal-out {
    --fa: "\e1f0";
}

.fa-arrow-turn-up,
i.arrow-turn-up {
    --fa: "\f148";
}

.fa-level-up,
i.level-up {
    --fa: "\f148";
}

.fa-u,
i.u {
    --fa: "\55";
}

.fa-arrow-up-from-dotted-line,
i.arrow-up-from-dotted-line {
    --fa: "\e09b";
}

.fa-square-root-variable,
i.square-root-variable {
    --fa: "\f698";
}

.fa-square-root-alt,
i.square-root-alt {
    --fa: "\f698";
}

.fa-light-switch-on,
i.light-switch-on {
    --fa: "\e019";
}

.fa-arrow-down-arrow-up,
i.arrow-down-arrow-up {
    --fa: "\f883";
}

.fa-sort-alt,
i.sort-alt {
    --fa: "\f883";
}

.fa-raindrops,
i.raindrops {
    --fa: "\f75c";
}

.fa-dash,
i.dash {
    --fa: "\e404";
}

.fa-minus-large,
i.minus-large {
    --fa: "\e404";
}

.fa-clock,
i.clock {
    --fa: "\f017";
}

.fa-clock-four,
i.clock-four {
    --fa: "\f017";
}

.fa-input-numeric,
i.input-numeric {
    --fa: "\e1bd";
}

.fa-truck-tow,
i.truck-tow {
    --fa: "\e2b8";
}

.fa-backward-step,
i.backward-step {
    --fa: "\f048";
}

.fa-step-backward,
i.step-backward {
    --fa: "\f048";
}

.fa-pallet,
i.pallet {
    --fa: "\f482";
}

.fa-car-bolt,
i.car-bolt {
    --fa: "\e341";
}

.fa-arrows-maximize,
i.arrows-maximize {
    --fa: "\f31d";
}

.fa-expand-arrows,
i.expand-arrows {
    --fa: "\f31d";
}

.fa-faucet,
i.faucet {
    --fa: "\e005";
}

.fa-cloud-sleet,
i.cloud-sleet {
    --fa: "\f741";
}

.fa-lamp-street,
i.lamp-street {
    --fa: "\e1c5";
}

.fa-list-radio,
i.list-radio {
    --fa: "\e1d0";
}

.fa-pen-nib-slash,
i.pen-nib-slash {
    --fa: "\e4a1";
}

.fa-baseball-bat-ball,
i.baseball-bat-ball {
    --fa: "\f432";
}

.fa-square-up-left,
i.square-up-left {
    --fa: "\e282";
}

.fa-overline,
i.overline {
    --fa: "\f876";
}

.fa-s,
i.s {
    --fa: "\53";
}

.fa-timeline,
i.timeline {
    --fa: "\e29c";
}

.fa-keyboard,
i.keyboard {
    --fa: "\f11c";
}

.fa-arrows-from-dotted-line,
i.arrows-from-dotted-line {
    --fa: "\e0a3";
}

.fa-usb-drive,
i.usb-drive {
    --fa: "\f8e9";
}

.fa-ballot,
i.ballot {
    --fa: "\f732";
}

.fa-caret-down,
i.caret-down {
    --fa: "\f0d7";
}

.fa-location-dot-slash,
i.location-dot-slash {
    --fa: "\f605";
}

.fa-map-marker-alt-slash,
i.map-marker-alt-slash {
    --fa: "\f605";
}

.fa-cards,
i.cards {
    --fa: "\e3ed";
}

.fa-house-chimney-medical,
i.house-chimney-medical {
    --fa: "\f7f2";
}

.fa-clinic-medical,
i.clinic-medical {
    --fa: "\f7f2";
}

.fa-boxing-glove,
i.boxing-glove {
    --fa: "\f438";
}

.fa-glove-boxing,
i.glove-boxing {
    --fa: "\f438";
}

.fa-temperature-three-quarters,
i.temperature-three-quarters {
    --fa: "\f2c8";
}

.fa-temperature-3,
i.temperature-3 {
    --fa: "\f2c8";
}

.fa-thermometer-3,
i.thermometer-3 {
    --fa: "\f2c8";
}

.fa-thermometer-three-quarters,
i.thermometer-three-quarters {
    --fa: "\f2c8";
}

.fa-bell-school,
i.bell-school {
    --fa: "\f5d5";
}

.fa-mobile-screen,
i.mobile-screen {
    --fa: "\f3cf";
}

.fa-mobile-android-alt,
i.mobile-android-alt {
    --fa: "\f3cf";
}

.fa-plane-up,
i.plane-up {
    --fa: "\e22d";
}

.fa-folder-heart,
i.folder-heart {
    --fa: "\e189";
}

.fa-circle-location-arrow,
i.circle-location-arrow {
    --fa: "\f602";
}

.fa-location-circle,
i.location-circle {
    --fa: "\f602";
}

.fa-face-head-bandage,
i.face-head-bandage {
    --fa: "\e37a";
}

.fa-sushi-roll,
i.sushi-roll {
    --fa: "\e48b";
}

.fa-maki-roll,
i.maki-roll {
    --fa: "\e48b";
}

.fa-makizushi,
i.makizushi {
    --fa: "\e48b";
}

.fa-car-bump,
i.car-bump {
    --fa: "\f5e0";
}

.fa-piggy-bank,
i.piggy-bank {
    --fa: "\f4d3";
}

.fa-racquet,
i.racquet {
    --fa: "\f45a";
}

.fa-car-mirrors,
i.car-mirrors {
    --fa: "\e343";
}

.fa-industry-windows,
i.industry-windows {
    --fa: "\f3b3";
}

.fa-industry-alt,
i.industry-alt {
    --fa: "\f3b3";
}

.fa-bolt-auto,
i.bolt-auto {
    --fa: "\e0b6";
}

.fa-battery-half,
i.battery-half {
    --fa: "\f242";
}

.fa-battery-3,
i.battery-3 {
    --fa: "\f242";
}

.fa-flux-capacitor,
i.flux-capacitor {
    --fa: "\f8ba";
}

.fa-mountain-city,
i.mountain-city {
    --fa: "\e52e";
}

.fa-coins,
i.coins {
    --fa: "\f51e";
}

.fa-honey-pot,
i.honey-pot {
    --fa: "\e418";
}

.fa-olive,
i.olive {
    --fa: "\e316";
}

.fa-khanda,
i.khanda {
    --fa: "\f66d";
}

.fa-filter-list,
i.filter-list {
    --fa: "\e17c";
}

.fa-outlet,
i.outlet {
    --fa: "\e01c";
}

.fa-sliders,
i.sliders {
    --fa: "\f1de";
}

.fa-sliders-h,
i.sliders-h {
    --fa: "\f1de";
}

.fa-cauldron,
i.cauldron {
    --fa: "\f6bf";
}

.fa-people,
i.people {
    --fa: "\e216";
}

.fa-folder-tree,
i.folder-tree {
    --fa: "\f802";
}

.fa-network-wired,
i.network-wired {
    --fa: "\f6ff";
}

.fa-croissant,
i.croissant {
    --fa: "\f7f6";
}

.fa-map-pin,
i.map-pin {
    --fa: "\f276";
}

.fa-hamsa,
i.hamsa {
    --fa: "\f665";
}

.fa-cent-sign,
i.cent-sign {
    --fa: "\e3f5";
}

.fa-swords-laser,
i.swords-laser {
    --fa: "\e03d";
}

.fa-flask,
i.flask {
    --fa: "\f0c3";
}

.fa-person-pregnant,
i.person-pregnant {
    --fa: "\e31e";
}

.fa-square-u,
i.square-u {
    --fa: "\e281";
}

.fa-wand-sparkles,
i.wand-sparkles {
    --fa: "\f72b";
}

.fa-router,
i.router {
    --fa: "\f8da";
}

.fa-ellipsis-vertical,
i.ellipsis-vertical {
    --fa: "\f142";
}

.fa-ellipsis-v,
i.ellipsis-v {
    --fa: "\f142";
}

.fa-sword-laser-alt,
i.sword-laser-alt {
    --fa: "\e03c";
}

.fa-ticket,
i.ticket {
    --fa: "\f145";
}

.fa-power-off,
i.power-off {
    --fa: "\f011";
}

.fa-coin,
i.coin {
    --fa: "\f85c";
}

.fa-laptop-slash,
i.laptop-slash {
    --fa: "\e1c7";
}

.fa-right-long,
i.right-long {
    --fa: "\f30b";
}

.fa-long-arrow-alt-right,
i.long-arrow-alt-right {
    --fa: "\f30b";
}

.fa-circle-b,
i.circle-b {
    --fa: "\e0fd";
}

.fa-person-dress-simple,
i.person-dress-simple {
    --fa: "\e21c";
}

.fa-pipe-collar,
i.pipe-collar {
    --fa: "\e437";
}

.fa-lights-holiday,
i.lights-holiday {
    --fa: "\f7b2";
}

.fa-citrus,
i.citrus {
    --fa: "\e2f4";
}

.fa-flag-usa,
i.flag-usa {
    --fa: "\f74d";
}

.fa-laptop-file,
i.laptop-file {
    --fa: "\e51d";
}

.fa-tty,
i.tty {
    --fa: "\f1e4";
}

.fa-teletype,
i.teletype {
    --fa: "\f1e4";
}

.fa-chart-tree-map,
i.chart-tree-map {
    --fa: "\e0ea";
}

.fa-diagram-next,
i.diagram-next {
    --fa: "\e476";
}

.fa-person-rifle,
i.person-rifle {
    --fa: "\e54e";
}

.fa-clock-five-thirty,
i.clock-five-thirty {
    --fa: "\e34a";
}

.fa-pipe-valve,
i.pipe-valve {
    --fa: "\e439";
}

.fa-lightbulb-message,
i.lightbulb-message {
    --fa: "\e687";
}

.fa-arrow-up-from-arc,
i.arrow-up-from-arc {
    --fa: "\e4b4";
}

.fa-face-spiral-eyes,
i.face-spiral-eyes {
    --fa: "\e485";
}

.fa-compress-wide,
i.compress-wide {
    --fa: "\f326";
}

.fa-circle-phone-hangup,
i.circle-phone-hangup {
    --fa: "\e11d";
}

.fa-phone-circle-down,
i.phone-circle-down {
    --fa: "\e11d";
}

.fa-gear-complex-code,
i.gear-complex-code {
    --fa: "\e5eb";
}

.fa-house-medical-circle-exclamation,
i.house-medical-circle-exclamation {
    --fa: "\e512";
}

.fa-badminton,
i.badminton {
    --fa: "\e33a";
}

.fa-closed-captioning,
i.closed-captioning {
    --fa: "\f20a";
}

.fa-person-hiking,
i.person-hiking {
    --fa: "\f6ec";
}

.fa-hiking,
i.hiking {
    --fa: "\f6ec";
}

.fa-right-from-line,
i.right-from-line {
    --fa: "\f347";
}

.fa-arrow-alt-from-left,
i.arrow-alt-from-left {
    --fa: "\f347";
}

.fa-venus-double,
i.venus-double {
    --fa: "\f226";
}

.fa-images,
i.images {
    --fa: "\f302";
}

.fa-calculator,
i.calculator {
    --fa: "\f1ec";
}

.fa-shuttlecock,
i.shuttlecock {
    --fa: "\f45b";
}

.fa-user-hair,
i.user-hair {
    --fa: "\e45a";
}

.fa-eye-evil,
i.eye-evil {
    --fa: "\f6db";
}

.fa-people-pulling,
i.people-pulling {
    --fa: "\e535";
}

.fa-n,
i.n {
    --fa: "\4e";
}

.fa-swap,
i.swap {
    --fa: "\e609";
}

.fa-garage,
i.garage {
    --fa: "\e009";
}

.fa-cable-car,
i.cable-car {
    --fa: "\f7da";
}

.fa-tram,
i.tram {
    --fa: "\f7da";
}

.fa-shovel-snow,
i.shovel-snow {
    --fa: "\f7c3";
}

.fa-cloud-rain,
i.cloud-rain {
    --fa: "\f73d";
}

.fa-face-lying,
i.face-lying {
    --fa: "\e37e";
}

.fa-sprinkler,
i.sprinkler {
    --fa: "\e035";
}

.fa-building-circle-xmark,
i.building-circle-xmark {
    --fa: "\e4d4";
}

.fa-person-sledding,
i.person-sledding {
    --fa: "\f7cb";
}

.fa-sledding,
i.sledding {
    --fa: "\f7cb";
}

.fa-game-console-handheld,
i.game-console-handheld {
    --fa: "\f8bb";
}

.fa-ship,
i.ship {
    --fa: "\f21a";
}

.fa-clock-six-thirty,
i.clock-six-thirty {
    --fa: "\e353";
}

.fa-battery-slash,
i.battery-slash {
    --fa: "\f377";
}

.fa-tugrik-sign,
i.tugrik-sign {
    --fa: "\e2ba";
}

.fa-arrows-down-to-line,
i.arrows-down-to-line {
    --fa: "\e4b8";
}

.fa-download,
i.download {
    --fa: "\f019";
}

.fa-angles-up-down,
i.angles-up-down {
    --fa: "\e60d";
}

.fa-shelves,
i.shelves {
    --fa: "\f480";
}

.fa-inventory,
i.inventory {
    --fa: "\f480";
}

.fa-cloud-snow,
i.cloud-snow {
    --fa: "\f742";
}

.fa-face-grin,
i.face-grin {
    --fa: "\f580";
}

.fa-grin,
i.grin {
    --fa: "\f580";
}

.fa-delete-left,
i.delete-left {
    --fa: "\f55a";
}

.fa-backspace,
i.backspace {
    --fa: "\f55a";
}

.fa-oven,
i.oven {
    --fa: "\e01d";
}

.fa-cloud-binary,
i.cloud-binary {
    --fa: "\e601";
}

.fa-eye-dropper,
i.eye-dropper {
    --fa: "\f1fb";
}

.fa-eye-dropper-empty,
i.eye-dropper-empty {
    --fa: "\f1fb";
}

.fa-eyedropper,
i.eyedropper {
    --fa: "\f1fb";
}

.fa-comment-captions,
i.comment-captions {
    --fa: "\e146";
}

.fa-comments-question,
i.comments-question {
    --fa: "\e14e";
}

.fa-scribble,
i.scribble {
    --fa: "\e23f";
}

.fa-rotate-exclamation,
i.rotate-exclamation {
    --fa: "\e23c";
}

.fa-file-circle-check,
i.file-circle-check {
    --fa: "\e5a0";
}

.fa-glass,
i.glass {
    --fa: "\f804";
}

.fa-loader,
i.loader {
    --fa: "\e1d4";
}

.fa-forward,
i.forward {
    --fa: "\f04e";
}

.fa-user-pilot,
i.user-pilot {
    --fa: "\e2c0";
}

.fa-mobile,
i.mobile {
    --fa: "\f3ce";
}

.fa-mobile-android,
i.mobile-android {
    --fa: "\f3ce";
}

.fa-mobile-phone,
i.mobile-phone {
    --fa: "\f3ce";
}

.fa-code-pull-request-closed,
i.code-pull-request-closed {
    --fa: "\e3f9";
}

.fa-face-meh,
i.face-meh {
    --fa: "\f11a";
}

.fa-meh,
i.meh {
    --fa: "\f11a";
}

.fa-align-center,
i.align-center {
    --fa: "\f037";
}

.fa-book-skull,
i.book-skull {
    --fa: "\f6b7";
}

.fa-book-dead,
i.book-dead {
    --fa: "\f6b7";
}

.fa-id-card,
i.id-card {
    --fa: "\f2c2";
}

.fa-drivers-license,
i.drivers-license {
    --fa: "\f2c2";
}

.fa-face-dotted,
i.face-dotted {
    --fa: "\e47f";
}

.fa-face-worried,
i.face-worried {
    --fa: "\e3a3";
}

.fa-outdent,
i.outdent {
    --fa: "\f03b";
}

.fa-dedent,
i.dedent {
    --fa: "\f03b";
}

.fa-court-sport,
i.court-sport {
    --fa: "\e643";
}

.fa-heart-circle-exclamation,
i.heart-circle-exclamation {
    --fa: "\e4fe";
}

.fa-house,
i.house {
    --fa: "\f015";
}

.fa-home,
i.home {
    --fa: "\f015";
}

.fa-home-alt,
i.home-alt {
    --fa: "\f015";
}

.fa-home-lg-alt,
i.home-lg-alt {
    --fa: "\f015";
}

.fa-vector-circle,
i.vector-circle {
    --fa: "\e2c6";
}

.fa-car-circle-bolt,
i.car-circle-bolt {
    --fa: "\e342";
}

.fa-calendar-week,
i.calendar-week {
    --fa: "\f784";
}

.fa-flying-disc,
i.flying-disc {
    --fa: "\e3a9";
}

.fa-laptop-medical,
i.laptop-medical {
    --fa: "\f812";
}

.fa-square-down-right,
i.square-down-right {
    --fa: "\e26c";
}

.fa-b,
i.b {
    --fa: "\42";
}

.fa-seat-airline,
i.seat-airline {
    --fa: "\e244";
}

.fa-moon-over-sun,
i.moon-over-sun {
    --fa: "\f74a";
}

.fa-eclipse-alt,
i.eclipse-alt {
    --fa: "\f74a";
}

.fa-pipe,
i.pipe {
    --fa: "\7c";
}

.fa-file-medical,
i.file-medical {
    --fa: "\f477";
}

.fa-potato,
i.potato {
    --fa: "\e440";
}

.fa-dice-one,
i.dice-one {
    --fa: "\f525";
}

.fa-circle-a,
i.circle-a {
    --fa: "\e0f7";
}

.fa-helmet-battle,
i.helmet-battle {
    --fa: "\f6eb";
}

.fa-butter,
i.butter {
    --fa: "\e3e4";
}

.fa-blanket-fire,
i.blanket-fire {
    --fa: "\e3da";
}

.fa-kiwi-bird,
i.kiwi-bird {
    --fa: "\f535";
}

.fa-castle,
i.castle {
    --fa: "\e0de";
}

.fa-golf-club,
i.golf-club {
    --fa: "\f451";
}

.fa-arrow-right-arrow-left,
i.arrow-right-arrow-left {
    --fa: "\f0ec";
}

.fa-exchange,
i.exchange {
    --fa: "\f0ec";
}

.fa-rotate-right,
i.rotate-right {
    --fa: "\f2f9";
}

.fa-redo-alt,
i.redo-alt {
    --fa: "\f2f9";
}

.fa-rotate-forward,
i.rotate-forward {
    --fa: "\f2f9";
}

.fa-utensils,
i.utensils {
    --fa: "\f2e7";
}

.fa-cutlery,
i.cutlery {
    --fa: "\f2e7";
}

.fa-arrow-up-wide-short,
i.arrow-up-wide-short {
    --fa: "\f161";
}

.fa-sort-amount-up,
i.sort-amount-up {
    --fa: "\f161";
}

.fa-chart-pie-simple-circle-dollar,
i.chart-pie-simple-circle-dollar {
    --fa: "\e605";
}

.fa-balloons,
i.balloons {
    --fa: "\e2e4";
}

.fa-mill-sign,
i.mill-sign {
    --fa: "\e1ed";
}

.fa-bowl-rice,
i.bowl-rice {
    --fa: "\e2eb";
}

.fa-timeline-arrow,
i.timeline-arrow {
    --fa: "\e29d";
}

.fa-skull,
i.skull {
    --fa: "\f54c";
}

.fa-game-board-simple,
i.game-board-simple {
    --fa: "\f868";
}

.fa-game-board-alt,
i.game-board-alt {
    --fa: "\f868";
}

.fa-circle-video,
i.circle-video {
    --fa: "\e12b";
}

.fa-video-circle,
i.video-circle {
    --fa: "\e12b";
}

.fa-chart-scatter-bubble,
i.chart-scatter-bubble {
    --fa: "\e0e9";
}

.fa-house-turret,
i.house-turret {
    --fa: "\e1b4";
}

.fa-banana,
i.banana {
    --fa: "\e2e5";
}

.fa-hand-holding-skull,
i.hand-holding-skull {
    --fa: "\e1a4";
}

.fa-people-dress,
i.people-dress {
    --fa: "\e217";
}

.fa-loveseat,
i.loveseat {
    --fa: "\f4cc";
}

.fa-couch-small,
i.couch-small {
    --fa: "\f4cc";
}

.fa-tower-broadcast,
i.tower-broadcast {
    --fa: "\f519";
}

.fa-broadcast-tower,
i.broadcast-tower {
    --fa: "\f519";
}

.fa-truck-pickup,
i.truck-pickup {
    --fa: "\f63c";
}

.fa-block-quote,
i.block-quote {
    --fa: "\e0b5";
}

.fa-up-long,
i.up-long {
    --fa: "\f30c";
}

.fa-long-arrow-alt-up,
i.long-arrow-alt-up {
    --fa: "\f30c";
}

.fa-stop,
i.stop {
    --fa: "\f04d";
}

.fa-code-merge,
i.code-merge {
    --fa: "\f387";
}

.fa-money-check-dollar-pen,
i.money-check-dollar-pen {
    --fa: "\f873";
}

.fa-money-check-edit-alt,
i.money-check-edit-alt {
    --fa: "\f873";
}

.fa-up-from-line,
i.up-from-line {
    --fa: "\f346";
}

.fa-arrow-alt-from-bottom,
i.arrow-alt-from-bottom {
    --fa: "\f346";
}

.fa-upload,
i.upload {
    --fa: "\f093";
}

.fa-hurricane,
i.hurricane {
    --fa: "\f751";
}

.fa-grid-round-2-plus,
i.grid-round-2-plus {
    --fa: "\e5dc";
}

.fa-people-pants,
i.people-pants {
    --fa: "\e219";
}

.fa-mound,
i.mound {
    --fa: "\e52d";
}

.fa-windsock,
i.windsock {
    --fa: "\f777";
}

.fa-circle-half,
i.circle-half {
    --fa: "\e110";
}

.fa-brake-warning,
i.brake-warning {
    --fa: "\e0c7";
}

.fa-toilet-portable,
i.toilet-portable {
    --fa: "\e583";
}

.fa-compact-disc,
i.compact-disc {
    --fa: "\f51f";
}

.fa-file-arrow-down,
i.file-arrow-down {
    --fa: "\f56d";
}

.fa-file-download,
i.file-download {
    --fa: "\f56d";
}

.fa-saxophone-fire,
i.saxophone-fire {
    --fa: "\f8db";
}

.fa-sax-hot,
i.sax-hot {
    --fa: "\f8db";
}

.fa-camera-web-slash,
i.camera-web-slash {
    --fa: "\f833";
}

.fa-webcam-slash,
i.webcam-slash {
    --fa: "\f833";
}

.fa-folder-medical,
i.folder-medical {
    --fa: "\e18c";
}

.fa-folder-gear,
i.folder-gear {
    --fa: "\e187";
}

.fa-folder-cog,
i.folder-cog {
    --fa: "\e187";
}

.fa-hand-wave,
i.hand-wave {
    --fa: "\e1a7";
}

.fa-arrow-up-arrow-down,
i.arrow-up-arrow-down {
    --fa: "\e099";
}

.fa-sort-up-down,
i.sort-up-down {
    --fa: "\e099";
}

.fa-caravan,
i.caravan {
    --fa: "\f8ff";
}

.fa-shield-cat,
i.shield-cat {
    --fa: "\e572";
}

.fa-message-slash,
i.message-slash {
    --fa: "\f4a9";
}

.fa-comment-alt-slash,
i.comment-alt-slash {
    --fa: "\f4a9";
}

.fa-bolt,
i.bolt {
    --fa: "\f0e7";
}

.fa-zap,
i.zap {
    --fa: "\f0e7";
}

.fa-trash-can-check,
i.trash-can-check {
    --fa: "\e2a9";
}

.fa-glass-water,
i.glass-water {
    --fa: "\e4f4";
}

.fa-oil-well,
i.oil-well {
    --fa: "\e532";
}

.fa-table-cells-column-unlock,
i.table-cells-column-unlock {
    --fa: "\e690";
}

.fa-person-simple,
i.person-simple {
    --fa: "\e220";
}

.fa-arrow-turn-left-up,
i.arrow-turn-left-up {
    --fa: "\e634";
}

.fa-vault,
i.vault {
    --fa: "\e2c5";
}

.fa-mars,
i.mars {
    --fa: "\f222";
}

.fa-toilet,
i.toilet {
    --fa: "\f7d8";
}

.fa-plane-circle-xmark,
i.plane-circle-xmark {
    --fa: "\e557";
}

.fa-yen-sign,
i.yen-sign {
    --fa: "\f157";
}

.fa-cny,
i.cny {
    --fa: "\f157";
}

.fa-jpy,
i.jpy {
    --fa: "\f157";
}

.fa-rmb,
i.rmb {
    --fa: "\f157";
}

.fa-yen,
i.yen {
    --fa: "\f157";
}

.fa-gear-code,
i.gear-code {
    --fa: "\e5e8";
}

.fa-notes,
i.notes {
    --fa: "\e202";
}

.fa-ruble-sign,
i.ruble-sign {
    --fa: "\f158";
}

.fa-rouble,
i.rouble {
    --fa: "\f158";
}

.fa-rub,
i.rub {
    --fa: "\f158";
}

.fa-ruble,
i.ruble {
    --fa: "\f158";
}

.fa-trash-undo,
i.trash-undo {
    --fa: "\f895";
}

.fa-trash-arrow-turn-left,
i.trash-arrow-turn-left {
    --fa: "\f895";
}

.fa-champagne-glass,
i.champagne-glass {
    --fa: "\f79e";
}

.fa-glass-champagne,
i.glass-champagne {
    --fa: "\f79e";
}

.fa-objects-align-center-horizontal,
i.objects-align-center-horizontal {
    --fa: "\e3bc";
}

.fa-sun,
i.sun {
    --fa: "\f185";
}

.fa-trash-can-slash,
i.trash-can-slash {
    --fa: "\e2ad";
}

.fa-trash-alt-slash,
i.trash-alt-slash {
    --fa: "\e2ad";
}

.fa-screen-users,
i.screen-users {
    --fa: "\f63d";
}

.fa-users-class,
i.users-class {
    --fa: "\f63d";
}

.fa-guitar,
i.guitar {
    --fa: "\f7a6";
}

.fa-square-arrow-left,
i.square-arrow-left {
    --fa: "\f33a";
}

.fa-arrow-square-left,
i.arrow-square-left {
    --fa: "\f33a";
}

.fa-square-8,
i.square-8 {
    --fa: "\e25d";
}

.fa-face-smile-hearts,
i.face-smile-hearts {
    --fa: "\e390";
}

.fa-brackets-square,
i.brackets-square {
    --fa: "\f7e9";
}

.fa-brackets,
i.brackets {
    --fa: "\f7e9";
}

.fa-laptop-arrow-down,
i.laptop-arrow-down {
    --fa: "\e1c6";
}

.fa-hockey-stick-puck,
i.hockey-stick-puck {
    --fa: "\e3ae";
}

.fa-house-tree,
i.house-tree {
    --fa: "\e1b3";
}

.fa-signal-fair,
i.signal-fair {
    --fa: "\f68d";
}

.fa-signal-2,
i.signal-2 {
    --fa: "\f68d";
}

.fa-face-laugh-wink,
i.face-laugh-wink {
    --fa: "\f59c";
}

.fa-laugh-wink,
i.laugh-wink {
    --fa: "\f59c";
}

.fa-circle-dollar,
i.circle-dollar {
    --fa: "\f2e8";
}

.fa-dollar-circle,
i.dollar-circle {
    --fa: "\f2e8";
}

.fa-usd-circle,
i.usd-circle {
    --fa: "\f2e8";
}

.fa-horse-head,
i.horse-head {
    --fa: "\f7ab";
}

.fa-arrows-repeat,
i.arrows-repeat {
    --fa: "\f364";
}

.fa-repeat-alt,
i.repeat-alt {
    --fa: "\f364";
}

.fa-bore-hole,
i.bore-hole {
    --fa: "\e4c3";
}

.fa-industry,
i.industry {
    --fa: "\f275";
}

.fa-image-polaroid,
i.image-polaroid {
    --fa: "\f8c4";
}

.fa-wave-triangle,
i.wave-triangle {
    --fa: "\f89a";
}

.fa-turn-left-down,
i.turn-left-down {
    --fa: "\e637";
}

.fa-person-running-fast,
i.person-running-fast {
    --fa: "\e5ff";
}

.fa-circle-down,
i.circle-down {
    --fa: "\f358";
}

.fa-arrow-alt-circle-down,
i.arrow-alt-circle-down {
    --fa: "\f358";
}

.fa-grill,
i.grill {
    --fa: "\e5a3";
}

.fa-arrows-turn-to-dots,
i.arrows-turn-to-dots {
    --fa: "\e4c1";
}

.fa-chart-mixed,
i.chart-mixed {
    --fa: "\f643";
}

.fa-analytics,
i.analytics {
    --fa: "\f643";
}

.fa-florin-sign,
i.florin-sign {
    --fa: "\e184";
}

.fa-arrow-down-short-wide,
i.arrow-down-short-wide {
    --fa: "\f884";
}

.fa-sort-amount-desc,
i.sort-amount-desc {
    --fa: "\f884";
}

.fa-sort-amount-down-alt,
i.sort-amount-down-alt {
    --fa: "\f884";
}

.fa-less-than,
i.less-than {
    --fa: "\3c";
}

.fa-display-code,
i.display-code {
    --fa: "\e165";
}

.fa-desktop-code,
i.desktop-code {
    --fa: "\e165";
}

.fa-face-drooling,
i.face-drooling {
    --fa: "\e372";
}

.fa-oil-temperature,
i.oil-temperature {
    --fa: "\f614";
}

.fa-oil-temp,
i.oil-temp {
    --fa: "\f614";
}

.fa-square-question,
i.square-question {
    --fa: "\f2fd";
}

.fa-question-square,
i.question-square {
    --fa: "\f2fd";
}

.fa-air-conditioner,
i.air-conditioner {
    --fa: "\f8f4";
}

.fa-angle-down,
i.angle-down {
    --fa: "\f107";
}

.fa-mountains,
i.mountains {
    --fa: "\f6fd";
}

.fa-omega,
i.omega {
    --fa: "\f67a";
}

.fa-car-tunnel,
i.car-tunnel {
    --fa: "\e4de";
}

.fa-person-dolly-empty,
i.person-dolly-empty {
    --fa: "\f4d1";
}

.fa-pan-food,
i.pan-food {
    --fa: "\e42b";
}

.fa-head-side-cough,
i.head-side-cough {
    --fa: "\e061";
}

.fa-grip-lines,
i.grip-lines {
    --fa: "\f7a4";
}

.fa-thumbs-down,
i.thumbs-down {
    --fa: "\f165";
}

.fa-user-lock,
i.user-lock {
    --fa: "\f502";
}

.fa-arrow-right-long,
i.arrow-right-long {
    --fa: "\f178";
}

.fa-long-arrow-right,
i.long-arrow-right {
    --fa: "\f178";
}

.fa-tickets-airline,
i.tickets-airline {
    --fa: "\e29b";
}

.fa-tickets-perforated-plane,
i.tickets-perforated-plane {
    --fa: "\e29b";
}

.fa-tickets-plane,
i.tickets-plane {
    --fa: "\e29b";
}

.fa-tent-double-peak,
i.tent-double-peak {
    --fa: "\e627";
}

.fa-anchor-circle-xmark,
i.anchor-circle-xmark {
    --fa: "\e4ac";
}

.fa-ellipsis,
i.ellipsis {
    --fa: "\f141";
}

.fa-ellipsis-h,
i.ellipsis-h {
    --fa: "\f141";
}

.fa-nfc-slash,
i.nfc-slash {
    --fa: "\e1fc";
}

.fa-chess-pawn,
i.chess-pawn {
    --fa: "\f443";
}

.fa-kit-medical,
i.kit-medical {
    --fa: "\f479";
}

.fa-first-aid,
i.first-aid {
    --fa: "\f479";
}

.fa-grid-2-plus,
i.grid-2-plus {
    --fa: "\e197";
}

.fa-bells,
i.bells {
    --fa: "\f77f";
}

.fa-person-through-window,
i.person-through-window {
    --fa: "\e5a9";
}

.fa-toolbox,
i.toolbox {
    --fa: "\f552";
}

.fa-globe-wifi,
i.globe-wifi {
    --fa: "\e685";
}

.fa-envelope-dot,
i.envelope-dot {
    --fa: "\e16f";
}

.fa-envelope-badge,
i.envelope-badge {
    --fa: "\e16f";
}

.fa-magnifying-glass-waveform,
i.magnifying-glass-waveform {
    --fa: "\e661";
}

.fa-hands-holding-circle,
i.hands-holding-circle {
    --fa: "\e4fb";
}

.fa-bug,
i.bug {
    --fa: "\f188";
}

.fa-bowl-chopsticks,
i.bowl-chopsticks {
    --fa: "\e2e9";
}

.fa-credit-card,
i.credit-card {
    --fa: "\f09d";
}

.fa-credit-card-alt,
i.credit-card-alt {
    --fa: "\f09d";
}

.fa-circle-s,
i.circle-s {
    --fa: "\e121";
}

.fa-box-ballot,
i.box-ballot {
    --fa: "\f735";
}

.fa-car,
i.car {
    --fa: "\f1b9";
}

.fa-automobile,
i.automobile {
    --fa: "\f1b9";
}

.fa-hand-holding-hand,
i.hand-holding-hand {
    --fa: "\e4f7";
}

.fa-user-tie-hair,
i.user-tie-hair {
    --fa: "\e45f";
}

.fa-podium-star,
i.podium-star {
    --fa: "\f758";
}

.fa-user-hair-mullet,
i.user-hair-mullet {
    --fa: "\e45c";
}

.fa-business-front,
i.business-front {
    --fa: "\e45c";
}

.fa-party-back,
i.party-back {
    --fa: "\e45c";
}

.fa-trian-balbot,
i.trian-balbot {
    --fa: "\e45c";
}

.fa-microphone-stand,
i.microphone-stand {
    --fa: "\f8cb";
}

.fa-book-open-reader,
i.book-open-reader {
    --fa: "\f5da";
}

.fa-book-reader,
i.book-reader {
    --fa: "\f5da";
}

.fa-family-dress,
i.family-dress {
    --fa: "\e301";
}

.fa-circle-x,
i.circle-x {
    --fa: "\e12e";
}

.fa-cabin,
i.cabin {
    --fa: "\e46d";
}

.fa-mountain-sun,
i.mountain-sun {
    --fa: "\e52f";
}

.fa-chart-simple-horizontal,
i.chart-simple-horizontal {
    --fa: "\e474";
}

.fa-arrows-left-right-to-line,
i.arrows-left-right-to-line {
    --fa: "\e4ba";
}

.fa-hand-back-point-left,
i.hand-back-point-left {
    --fa: "\e19f";
}

.fa-message-dots,
i.message-dots {
    --fa: "\f4a3";
}

.fa-comment-alt-dots,
i.comment-alt-dots {
    --fa: "\f4a3";
}

.fa-messaging,
i.messaging {
    --fa: "\f4a3";
}

.fa-file-heart,
i.file-heart {
    --fa: "\e176";
}

.fa-beer-mug,
i.beer-mug {
    --fa: "\e0b3";
}

.fa-beer-foam,
i.beer-foam {
    --fa: "\e0b3";
}

.fa-dice-d20,
i.dice-d20 {
    --fa: "\f6cf";
}

.fa-drone,
i.drone {
    --fa: "\f85f";
}

.fa-truck-droplet,
i.truck-droplet {
    --fa: "\e58c";
}

.fa-file-circle-xmark,
i.file-circle-xmark {
    --fa: "\e5a1";
}

.fa-temperature-arrow-up,
i.temperature-arrow-up {
    --fa: "\e040";
}

.fa-temperature-up,
i.temperature-up {
    --fa: "\e040";
}

.fa-medal,
i.medal {
    --fa: "\f5a2";
}

.fa-person-fairy,
i.person-fairy {
    --fa: "\e608";
}

.fa-bed,
i.bed {
    --fa: "\f236";
}

.fa-book-copy,
i.book-copy {
    --fa: "\e0be";
}

.fa-square-h,
i.square-h {
    --fa: "\f0fd";
}

.fa-h-square,
i.h-square {
    --fa: "\f0fd";
}

.fa-square-c,
i.square-c {
    --fa: "\e266";
}

.fa-clock-two,
i.clock-two {
    --fa: "\e35a";
}

.fa-square-ellipsis-vertical,
i.square-ellipsis-vertical {
    --fa: "\e26f";
}

.fa-calendar-users,
i.calendar-users {
    --fa: "\e5e2";
}

.fa-podcast,
i.podcast {
    --fa: "\f2ce";
}

.fa-bee,
i.bee {
    --fa: "\e0b2";
}

.fa-temperature-full,
i.temperature-full {
    --fa: "\f2c7";
}

.fa-temperature-4,
i.temperature-4 {
    --fa: "\f2c7";
}

.fa-thermometer-4,
i.thermometer-4 {
    --fa: "\f2c7";
}

.fa-thermometer-full,
i.thermometer-full {
    --fa: "\f2c7";
}

.fa-bell,
i.bell {
    --fa: "\f0f3";
}

.fa-candy-bar,
i.candy-bar {
    --fa: "\e3e8";
}

.fa-chocolate-bar,
i.chocolate-bar {
    --fa: "\e3e8";
}

.fa-xmark-large,
i.xmark-large {
    --fa: "\e59b";
}

.fa-pinata,
i.pinata {
    --fa: "\e3c3";
}

.fa-file-ppt,
i.file-ppt {
    --fa: "\e64a";
}

.fa-arrows-from-line,
i.arrows-from-line {
    --fa: "\e0a4";
}

.fa-superscript,
i.superscript {
    --fa: "\f12b";
}

.fa-bowl-spoon,
i.bowl-spoon {
    --fa: "\e3e0";
}

.fa-hexagon-check,
i.hexagon-check {
    --fa: "\e416";
}

.fa-plug-circle-xmark,
i.plug-circle-xmark {
    --fa: "\e560";
}

.fa-star-of-life,
i.star-of-life {
    --fa: "\f621";
}

.fa-phone-slash,
i.phone-slash {
    --fa: "\f3dd";
}

.fa-traffic-light-stop,
i.traffic-light-stop {
    --fa: "\f63a";
}

.fa-paint-roller,
i.paint-roller {
    --fa: "\f5aa";
}

.fa-accent-grave,
i.accent-grave {
    --fa: "\60";
}

.fa-handshake-angle,
i.handshake-angle {
    --fa: "\f4c4";
}

.fa-hands-helping,
i.hands-helping {
    --fa: "\f4c4";
}

.fa-circle-0,
i.circle-0 {
    --fa: "\e0ed";
}

.fa-dial-med-low,
i.dial-med-low {
    --fa: "\e160";
}

.fa-location-dot,
i.location-dot {
    --fa: "\f3c5";
}

.fa-map-marker-alt,
i.map-marker-alt {
    --fa: "\f3c5";
}

.fa-crab,
i.crab {
    --fa: "\e3ff";
}

.fa-box-open-full,
i.box-open-full {
    --fa: "\f49c";
}

.fa-box-full,
i.box-full {
    --fa: "\f49c";
}

.fa-file,
i.file {
    --fa: "\f15b";
}

.fa-greater-than,
i.greater-than {
    --fa: "\3e";
}

.fa-quotes,
i.quotes {
    --fa: "\e234";
}

.fa-pretzel,
i.pretzel {
    --fa: "\e441";
}

.fa-t-rex,
i.t-rex {
    --fa: "\e629";
}

.fa-person-swimming,
i.person-swimming {
    --fa: "\f5c4";
}

.fa-swimmer,
i.swimmer {
    --fa: "\f5c4";
}

.fa-arrow-down,
i.arrow-down {
    --fa: "\f063";
}

.fa-user-robot-xmarks,
i.user-robot-xmarks {
    --fa: "\e4a7";
}

.fa-message-quote,
i.message-quote {
    --fa: "\e1e4";
}

.fa-comment-alt-quote,
i.comment-alt-quote {
    --fa: "\e1e4";
}

.fa-candy-corn,
i.candy-corn {
    --fa: "\f6bd";
}

.fa-folder-magnifying-glass,
i.folder-magnifying-glass {
    --fa: "\e18b";
}

.fa-folder-search,
i.folder-search {
    --fa: "\e18b";
}

.fa-notebook,
i.notebook {
    --fa: "\e201";
}

.fa-circle-wifi,
i.circle-wifi {
    --fa: "\e67d";
}

.fa-droplet,
i.droplet {
    --fa: "\f043";
}

.fa-tint,
i.tint {
    --fa: "\f043";
}

.fa-bullseye-pointer,
i.bullseye-pointer {
    --fa: "\f649";
}

.fa-eraser,
i.eraser {
    --fa: "\f12d";
}

.fa-hexagon-image,
i.hexagon-image {
    --fa: "\e504";
}

.fa-earth-americas,
i.earth-americas {
    --fa: "\f57d";
}

.fa-earth,
i.earth {
    --fa: "\f57d";
}

.fa-earth-america,
i.earth-america {
    --fa: "\f57d";
}

.fa-globe-americas,
i.globe-americas {
    --fa: "\f57d";
}

.fa-file-svg,
i.file-svg {
    --fa: "\e64b";
}

.fa-crate-apple,
i.crate-apple {
    --fa: "\f6b1";
}

.fa-apple-crate,
i.apple-crate {
    --fa: "\f6b1";
}

.fa-person-burst,
i.person-burst {
    --fa: "\e53b";
}

.fa-game-board,
i.game-board {
    --fa: "\f867";
}

.fa-hat-chef,
i.hat-chef {
    --fa: "\f86b";
}

.fa-hand-back-point-right,
i.hand-back-point-right {
    --fa: "\e1a1";
}

.fa-dove,
i.dove {
    --fa: "\f4ba";
}

.fa-snowflake-droplets,
i.snowflake-droplets {
    --fa: "\e5c1";
}

.fa-battery-empty,
i.battery-empty {
    --fa: "\f244";
}

.fa-battery-0,
i.battery-0 {
    --fa: "\f244";
}

.fa-grid-4,
i.grid-4 {
    --fa: "\e198";
}

.fa-socks,
i.socks {
    --fa: "\f696";
}

.fa-face-sunglasses,
i.face-sunglasses {
    --fa: "\e398";
}

.fa-inbox,
i.inbox {
    --fa: "\f01c";
}

.fa-square-0,
i.square-0 {
    --fa: "\e255";
}

.fa-section,
i.section {
    --fa: "\e447";
}

.fa-square-this-way-up,
i.square-this-way-up {
    --fa: "\f49f";
}

.fa-box-up,
i.box-up {
    --fa: "\f49f";
}

.fa-gauge-high,
i.gauge-high {
    --fa: "\f625";
}

.fa-tachometer-alt,
i.tachometer-alt {
    --fa: "\f625";
}

.fa-tachometer-alt-fast,
i.tachometer-alt-fast {
    --fa: "\f625";
}

.fa-square-ampersand,
i.square-ampersand {
    --fa: "\e260";
}

.fa-envelope-open-text,
i.envelope-open-text {
    --fa: "\f658";
}

.fa-lamp-desk,
i.lamp-desk {
    --fa: "\e014";
}

.fa-hospital,
i.hospital {
    --fa: "\f0f8";
}

.fa-hospital-alt,
i.hospital-alt {
    --fa: "\f0f8";
}

.fa-hospital-wide,
i.hospital-wide {
    --fa: "\f0f8";
}

.fa-poll-people,
i.poll-people {
    --fa: "\f759";
}

.fa-whiskey-glass-ice,
i.whiskey-glass-ice {
    --fa: "\f7a1";
}

.fa-glass-whiskey-rocks,
i.glass-whiskey-rocks {
    --fa: "\f7a1";
}

.fa-wine-bottle,
i.wine-bottle {
    --fa: "\f72f";
}

.fa-chess-rook,
i.chess-rook {
    --fa: "\f447";
}

.fa-user-bounty-hunter,
i.user-bounty-hunter {
    --fa: "\e2bf";
}

.fa-bars-staggered,
i.bars-staggered {
    --fa: "\f550";
}

.fa-reorder,
i.reorder {
    --fa: "\f550";
}

.fa-stream,
i.stream {
    --fa: "\f550";
}

.fa-diagram-sankey,
i.diagram-sankey {
    --fa: "\e158";
}

.fa-cloud-hail-mixed,
i.cloud-hail-mixed {
    --fa: "\f73a";
}

.fa-circle-up-left,
i.circle-up-left {
    --fa: "\e128";
}

.fa-dharmachakra,
i.dharmachakra {
    --fa: "\f655";
}

.fa-objects-align-left,
i.objects-align-left {
    --fa: "\e3be";
}

.fa-oil-can-drip,
i.oil-can-drip {
    --fa: "\e205";
}

.fa-face-smiling-hands,
i.face-smiling-hands {
    --fa: "\e396";
}

.fa-broccoli,
i.broccoli {
    --fa: "\e3e2";
}

.fa-route-interstate,
i.route-interstate {
    --fa: "\f61b";
}

.fa-ear-muffs,
i.ear-muffs {
    --fa: "\f795";
}

.fa-hotdog,
i.hotdog {
    --fa: "\f80f";
}

.fa-transporter-empty,
i.transporter-empty {
    --fa: "\e046";
}

.fa-person-walking-with-cane,
i.person-walking-with-cane {
    --fa: "\f29d";
}

.fa-blind,
i.blind {
    --fa: "\f29d";
}

.fa-angle-90,
i.angle-90 {
    --fa: "\e08d";
}

.fa-rectangle-terminal,
i.rectangle-terminal {
    --fa: "\e236";
}

.fa-kite,
i.kite {
    --fa: "\f6f4";
}

.fa-drum,
i.drum {
    --fa: "\f569";
}

.fa-scrubber,
i.scrubber {
    --fa: "\f2f8";
}

.fa-ice-cream,
i.ice-cream {
    --fa: "\f810";
}

.fa-heart-circle-bolt,
i.heart-circle-bolt {
    --fa: "\e4fc";
}

.fa-fish-bones,
i.fish-bones {
    --fa: "\e304";
}

.fa-deer-rudolph,
i.deer-rudolph {
    --fa: "\f78f";
}

.fa-fax,
i.fax {
    --fa: "\f1ac";
}

.fa-paragraph,
i.paragraph {
    --fa: "\f1dd";
}

.fa-head-side-heart,
i.head-side-heart {
    --fa: "\e1aa";
}

.fa-square-e,
i.square-e {
    --fa: "\e26d";
}

.fa-meter-fire,
i.meter-fire {
    --fa: "\e1eb";
}

.fa-cloud-hail,
i.cloud-hail {
    --fa: "\f739";
}

.fa-check-to-slot,
i.check-to-slot {
    --fa: "\f772";
}

.fa-vote-yea,
i.vote-yea {
    --fa: "\f772";
}

.fa-money-from-bracket,
i.money-from-bracket {
    --fa: "\e312";
}

.fa-star-half,
i.star-half {
    --fa: "\f089";
}

.fa-car-bus,
i.car-bus {
    --fa: "\f85a";
}

.fa-speaker,
i.speaker {
    --fa: "\f8df";
}

.fa-timer,
i.timer {
    --fa: "\e29e";
}

.fa-boxes-stacked,
i.boxes-stacked {
    --fa: "\f468";
}

.fa-boxes,
i.boxes {
    --fa: "\f468";
}

.fa-boxes-alt,
i.boxes-alt {
    --fa: "\f468";
}

.fa-landmark-magnifying-glass,
i.landmark-magnifying-glass {
    --fa: "\e622";
}

.fa-grill-hot,
i.grill-hot {
    --fa: "\e5a5";
}

.fa-ballot-check,
i.ballot-check {
    --fa: "\f733";
}

.fa-link,
i.link {
    --fa: "\f0c1";
}

.fa-chain,
i.chain {
    --fa: "\f0c1";
}

.fa-ear-listen,
i.ear-listen {
    --fa: "\f2a2";
}

.fa-assistive-listening-systems,
i.assistive-listening-systems {
    --fa: "\f2a2";
}

.fa-file-minus,
i.file-minus {
    --fa: "\f318";
}

.fa-tree-city,
i.tree-city {
    --fa: "\e587";
}

.fa-play,
i.play {
    --fa: "\f04b";
}

.fa-font,
i.font {
    --fa: "\f031";
}

.fa-cup-togo,
i.cup-togo {
    --fa: "\f6c5";
}

.fa-coffee-togo,
i.coffee-togo {
    --fa: "\f6c5";
}

.fa-square-down-left,
i.square-down-left {
    --fa: "\e26b";
}

.fa-burger-lettuce,
i.burger-lettuce {
    --fa: "\e3e3";
}

.fa-table-cells-row-lock,
i.table-cells-row-lock {
    --fa: "\e67a";
}

.fa-rupiah-sign,
i.rupiah-sign {
    --fa: "\e23d";
}

.fa-magnifying-glass,
i.magnifying-glass {
    --fa: "\f002";
}

.fa-search,
i.search {
    --fa: "\f002";
}

.fa-table-tennis-paddle-ball,
i.table-tennis-paddle-ball {
    --fa: "\f45d";
}

.fa-ping-pong-paddle-ball,
i.ping-pong-paddle-ball {
    --fa: "\f45d";
}

.fa-table-tennis,
i.table-tennis {
    --fa: "\f45d";
}

.fa-person-dots-from-line,
i.person-dots-from-line {
    --fa: "\f470";
}

.fa-diagnoses,
i.diagnoses {
    --fa: "\f470";
}

.fa-chevrons-down,
i.chevrons-down {
    --fa: "\f322";
}

.fa-chevron-double-down,
i.chevron-double-down {
    --fa: "\f322";
}

.fa-trash-can-arrow-up,
i.trash-can-arrow-up {
    --fa: "\f82a";
}

.fa-trash-restore-alt,
i.trash-restore-alt {
    --fa: "\f82a";
}

.fa-signal-good,
i.signal-good {
    --fa: "\f68e";
}

.fa-signal-3,
i.signal-3 {
    --fa: "\f68e";
}

.fa-location-question,
i.location-question {
    --fa: "\f60b";
}

.fa-map-marker-question,
i.map-marker-question {
    --fa: "\f60b";
}

.fa-floppy-disk-circle-xmark,
i.floppy-disk-circle-xmark {
    --fa: "\e181";
}

.fa-floppy-disk-times,
i.floppy-disk-times {
    --fa: "\e181";
}

.fa-save-circle-xmark,
i.save-circle-xmark {
    --fa: "\e181";
}

.fa-save-times,
i.save-times {
    --fa: "\e181";
}

.fa-naira-sign,
i.naira-sign {
    --fa: "\e1f6";
}

.fa-peach,
i.peach {
    --fa: "\e20b";
}

.fa-taxi-bus,
i.taxi-bus {
    --fa: "\e298";
}

.fa-bracket-curly,
i.bracket-curly {
    --fa: "\7b";
}

.fa-bracket-curly-left,
i.bracket-curly-left {
    --fa: "\7b";
}

.fa-lobster,
i.lobster {
    --fa: "\e421";
}

.fa-cart-flatbed-empty,
i.cart-flatbed-empty {
    --fa: "\f476";
}

.fa-dolly-flatbed-empty,
i.dolly-flatbed-empty {
    --fa: "\f476";
}

.fa-colon,
i.colon {
    --fa: "\3a";
}

.fa-cart-arrow-down,
i.cart-arrow-down {
    --fa: "\f218";
}

.fa-wand,
i.wand {
    --fa: "\f72a";
}

.fa-walkie-talkie,
i.walkie-talkie {
    --fa: "\f8ef";
}

.fa-file-pen,
i.file-pen {
    --fa: "\f31c";
}

.fa-file-edit,
i.file-edit {
    --fa: "\f31c";
}

.fa-receipt,
i.receipt {
    --fa: "\f543";
}

.fa-table-picnic,
i.table-picnic {
    --fa: "\e32d";
}

.fa-square-pen,
i.square-pen {
    --fa: "\f14b";
}

.fa-pen-square,
i.pen-square {
    --fa: "\f14b";
}

.fa-pencil-square,
i.pencil-square {
    --fa: "\f14b";
}

.fa-circle-microphone-lines,
i.circle-microphone-lines {
    --fa: "\e117";
}

.fa-microphone-circle-alt,
i.microphone-circle-alt {
    --fa: "\e117";
}

.fa-display-slash,
i.display-slash {
    --fa: "\e2fa";
}

.fa-desktop-slash,
i.desktop-slash {
    --fa: "\e2fa";
}

.fa-suitcase-rolling,
i.suitcase-rolling {
    --fa: "\f5c1";
}

.fa-person-circle-exclamation,
i.person-circle-exclamation {
    --fa: "\e53f";
}

.fa-transporter-2,
i.transporter-2 {
    --fa: "\e044";
}

.fa-user-hoodie,
i.user-hoodie {
    --fa: "\e68a";
}

.fa-hands-holding-diamond,
i.hands-holding-diamond {
    --fa: "\f47c";
}

.fa-hand-receiving,
i.hand-receiving {
    --fa: "\f47c";
}

.fa-money-bill-simple-wave,
i.money-bill-simple-wave {
    --fa: "\e1f2";
}

.fa-chevron-down,
i.chevron-down {
    --fa: "\f078";
}

.fa-battery-full,
i.battery-full {
    --fa: "\f240";
}

.fa-battery,
i.battery {
    --fa: "\f240";
}

.fa-battery-5,
i.battery-5 {
    --fa: "\f240";
}

.fa-bell-plus,
i.bell-plus {
    --fa: "\f849";
}

.fa-book-arrow-right,
i.book-arrow-right {
    --fa: "\e0b9";
}

.fa-hospitals,
i.hospitals {
    --fa: "\f80e";
}

.fa-club,
i.club {
    --fa: "\f327";
}

.fa-skull-crossbones,
i.skull-crossbones {
    --fa: "\f714";
}

.fa-droplet-degree,
i.droplet-degree {
    --fa: "\f748";
}

.fa-dewpoint,
i.dewpoint {
    --fa: "\f748";
}

.fa-code-compare,
i.code-compare {
    --fa: "\e13a";
}

.fa-list-ul,
i.list-ul {
    --fa: "\f0ca";
}

.fa-list-dots,
i.list-dots {
    --fa: "\f0ca";
}

.fa-hand-holding-magic,
i.hand-holding-magic {
    --fa: "\f6e5";
}

.fa-watermelon-slice,
i.watermelon-slice {
    --fa: "\e337";
}

.fa-circle-ellipsis,
i.circle-ellipsis {
    --fa: "\e10a";
}

.fa-school-lock,
i.school-lock {
    --fa: "\e56f";
}

.fa-tower-cell,
i.tower-cell {
    --fa: "\e585";
}

.fa-sd-cards,
i.sd-cards {
    --fa: "\e240";
}

.fa-jug-bottle,
i.jug-bottle {
    --fa: "\e5fb";
}

.fa-down-long,
i.down-long {
    --fa: "\f309";
}

.fa-long-arrow-alt-down,
i.long-arrow-alt-down {
    --fa: "\f309";
}

.fa-envelopes,
i.envelopes {
    --fa: "\e170";
}

.fa-phone-office,
i.phone-office {
    --fa: "\f67d";
}

.fa-ranking-star,
i.ranking-star {
    --fa: "\e561";
}

.fa-chess-king,
i.chess-king {
    --fa: "\f43f";
}

.fa-nfc-pen,
i.nfc-pen {
    --fa: "\e1fa";
}

.fa-person-harassing,
i.person-harassing {
    --fa: "\e549";
}

.fa-magnifying-glass-play,
i.magnifying-glass-play {
    --fa: "\e660";
}

.fa-hat-winter,
i.hat-winter {
    --fa: "\f7a8";
}

.fa-brazilian-real-sign,
i.brazilian-real-sign {
    --fa: "\e46c";
}

.fa-landmark-dome,
i.landmark-dome {
    --fa: "\f752";
}

.fa-landmark-alt,
i.landmark-alt {
    --fa: "\f752";
}

.fa-bone-break,
i.bone-break {
    --fa: "\f5d8";
}

.fa-arrow-up,
i.arrow-up {
    --fa: "\f062";
}

.fa-down-from-dotted-line,
i.down-from-dotted-line {
    --fa: "\e407";
}

.fa-tv,
i.tv {
    --fa: "\f26c";
}

.fa-television,
i.television {
    --fa: "\f26c";
}

.fa-tv-alt,
i.tv-alt {
    --fa: "\f26c";
}

.fa-border-left,
i.border-left {
    --fa: "\f84f";
}

.fa-circle-divide,
i.circle-divide {
    --fa: "\e106";
}

.fa-shrimp,
i.shrimp {
    --fa: "\e448";
}

.fa-list-check,
i.list-check {
    --fa: "\f0ae";
}

.fa-tasks,
i.tasks {
    --fa: "\f0ae";
}

.fa-diagram-subtask,
i.diagram-subtask {
    --fa: "\e479";
}

.fa-jug-detergent,
i.jug-detergent {
    --fa: "\e519";
}

.fa-circle-user,
i.circle-user {
    --fa: "\f2bd";
}

.fa-user-circle,
i.user-circle {
    --fa: "\f2bd";
}

.fa-square-y,
i.square-y {
    --fa: "\e287";
}

.fa-user-doctor-hair,
i.user-doctor-hair {
    --fa: "\e458";
}

.fa-planet-ringed,
i.planet-ringed {
    --fa: "\e020";
}

.fa-mushroom,
i.mushroom {
    --fa: "\e425";
}

.fa-user-shield,
i.user-shield {
    --fa: "\f505";
}

.fa-megaphone,
i.megaphone {
    --fa: "\f675";
}

.fa-wreath-laurel,
i.wreath-laurel {
    --fa: "\e5d2";
}

.fa-circle-exclamation-check,
i.circle-exclamation-check {
    --fa: "\e10d";
}

.fa-wind,
i.wind {
    --fa: "\f72e";
}

.fa-box-dollar,
i.box-dollar {
    --fa: "\f4a0";
}

.fa-box-usd,
i.box-usd {
    --fa: "\f4a0";
}

.fa-car-burst,
i.car-burst {
    --fa: "\f5e1";
}

.fa-car-crash,
i.car-crash {
    --fa: "\f5e1";
}

.fa-y,
i.y {
    --fa: "\59";
}

.fa-user-headset,
i.user-headset {
    --fa: "\f82d";
}

.fa-arrows-retweet,
i.arrows-retweet {
    --fa: "\f361";
}

.fa-retweet-alt,
i.retweet-alt {
    --fa: "\f361";
}

.fa-person-snowboarding,
i.person-snowboarding {
    --fa: "\f7ce";
}

.fa-snowboarding,
i.snowboarding {
    --fa: "\f7ce";
}

.fa-square-chevron-right,
i.square-chevron-right {
    --fa: "\f32b";
}

.fa-chevron-square-right,
i.chevron-square-right {
    --fa: "\f32b";
}

.fa-lacrosse-stick-ball,
i.lacrosse-stick-ball {
    --fa: "\e3b6";
}

.fa-truck-fast,
i.truck-fast {
    --fa: "\f48b";
}

.fa-shipping-fast,
i.shipping-fast {
    --fa: "\f48b";
}

.fa-user-magnifying-glass,
i.user-magnifying-glass {
    --fa: "\e5c5";
}

.fa-star-sharp,
i.star-sharp {
    --fa: "\e28b";
}

.fa-comment-heart,
i.comment-heart {
    --fa: "\e5c8";
}

.fa-circle-1,
i.circle-1 {
    --fa: "\e0ee";
}

.fa-circle-star,
i.circle-star {
    --fa: "\e123";
}

.fa-star-circle,
i.star-circle {
    --fa: "\e123";
}

.fa-fish,
i.fish {
    --fa: "\f578";
}

.fa-cloud-fog,
i.cloud-fog {
    --fa: "\f74e";
}

.fa-fog,
i.fog {
    --fa: "\f74e";
}

.fa-waffle,
i.waffle {
    --fa: "\e466";
}

.fa-music-note,
i.music-note {
    --fa: "\f8cf";
}

.fa-music-alt,
i.music-alt {
    --fa: "\f8cf";
}

.fa-hexagon-exclamation,
i.hexagon-exclamation {
    --fa: "\e417";
}

.fa-cart-shopping-fast,
i.cart-shopping-fast {
    --fa: "\e0dc";
}

.fa-object-union,
i.object-union {
    --fa: "\e49f";
}

.fa-user-graduate,
i.user-graduate {
    --fa: "\f501";
}

.fa-starfighter,
i.starfighter {
    --fa: "\e037";
}

.fa-circle-half-stroke,
i.circle-half-stroke {
    --fa: "\f042";
}

.fa-adjust,
i.adjust {
    --fa: "\f042";
}

.fa-arrow-right-long-to-line,
i.arrow-right-long-to-line {
    --fa: "\e3d5";
}

.fa-square-arrow-down,
i.square-arrow-down {
    --fa: "\f339";
}

.fa-arrow-square-down,
i.arrow-square-down {
    --fa: "\f339";
}

.fa-diamond-half-stroke,
i.diamond-half-stroke {
    --fa: "\e5b8";
}

.fa-clapperboard,
i.clapperboard {
    --fa: "\e131";
}

.fa-square-chevron-left,
i.square-chevron-left {
    --fa: "\f32a";
}

.fa-chevron-square-left,
i.chevron-square-left {
    --fa: "\f32a";
}

.fa-phone-intercom,
i.phone-intercom {
    --fa: "\e434";
}

.fa-link-horizontal,
i.link-horizontal {
    --fa: "\e1cb";
}

.fa-chain-horizontal,
i.chain-horizontal {
    --fa: "\e1cb";
}

.fa-mango,
i.mango {
    --fa: "\e30f";
}

.fa-music-note-slash,
i.music-note-slash {
    --fa: "\f8d0";
}

.fa-music-alt-slash,
i.music-alt-slash {
    --fa: "\f8d0";
}

.fa-circle-radiation,
i.circle-radiation {
    --fa: "\f7ba";
}

.fa-radiation-alt,
i.radiation-alt {
    --fa: "\f7ba";
}

.fa-face-tongue-sweat,
i.face-tongue-sweat {
    --fa: "\e39e";
}

.fa-globe-stand,
i.globe-stand {
    --fa: "\f5f6";
}

.fa-baseball,
i.baseball {
    --fa: "\f433";
}

.fa-baseball-ball,
i.baseball-ball {
    --fa: "\f433";
}

.fa-circle-p,
i.circle-p {
    --fa: "\e11a";
}

.fa-award-simple,
i.award-simple {
    --fa: "\e0ab";
}

.fa-jet-fighter-up,
i.jet-fighter-up {
    --fa: "\e518";
}

.fa-diagram-project,
i.diagram-project {
    --fa: "\f542";
}

.fa-project-diagram,
i.project-diagram {
    --fa: "\f542";
}

.fa-pedestal,
i.pedestal {
    --fa: "\e20d";
}

.fa-chart-pyramid,
i.chart-pyramid {
    --fa: "\e0e6";
}

.fa-sidebar,
i.sidebar {
    --fa: "\e24e";
}

.fa-snowman-head,
i.snowman-head {
    --fa: "\f79b";
}

.fa-frosty-head,
i.frosty-head {
    --fa: "\f79b";
}

.fa-copy,
i.copy {
    --fa: "\f0c5";
}

.fa-burger-glass,
i.burger-glass {
    --fa: "\e0ce";
}

.fa-volume-xmark,
i.volume-xmark {
    --fa: "\f6a9";
}

.fa-volume-mute,
i.volume-mute {
    --fa: "\f6a9";
}

.fa-volume-times,
i.volume-times {
    --fa: "\f6a9";
}

.fa-hand-sparkles,
i.hand-sparkles {
    --fa: "\e05d";
}

.fa-bars-filter,
i.bars-filter {
    --fa: "\e0ad";
}

.fa-paintbrush-pencil,
i.paintbrush-pencil {
    --fa: "\e206";
}

.fa-party-bell,
i.party-bell {
    --fa: "\e31a";
}

.fa-user-vneck-hair,
i.user-vneck-hair {
    --fa: "\e462";
}

.fa-jack-o-lantern,
i.jack-o-lantern {
    --fa: "\f30e";
}

.fa-grip,
i.grip {
    --fa: "\f58d";
}

.fa-grip-horizontal,
i.grip-horizontal {
    --fa: "\f58d";
}

.fa-share-from-square,
i.share-from-square {
    --fa: "\f14d";
}

.fa-share-square,
i.share-square {
    --fa: "\f14d";
}

.fa-keynote,
i.keynote {
    --fa: "\f66c";
}

.fa-child-combatant,
i.child-combatant {
    --fa: "\e4e0";
}

.fa-child-rifle,
i.child-rifle {
    --fa: "\e4e0";
}

.fa-gun,
i.gun {
    --fa: "\e19b";
}

.fa-square-phone,
i.square-phone {
    --fa: "\f098";
}

.fa-phone-square,
i.phone-square {
    --fa: "\f098";
}

.fa-hat-beach,
i.hat-beach {
    --fa: "\e606";
}

.fa-plus,
i.plus {
    --fa: "\2b";
}

.fa-add,
i.add {
    --fa: "\2b";
}

.fa-expand,
i.expand {
    --fa: "\f065";
}

.fa-computer,
i.computer {
    --fa: "\e4e5";
}

.fa-fort,
i.fort {
    --fa: "\e486";
}

.fa-cloud-check,
i.cloud-check {
    --fa: "\e35c";
}

.fa-xmark,
i.xmark {
    --fa: "\f00d";
}

.fa-close,
i.close {
    --fa: "\f00d";
}

.fa-multiply,
i.multiply {
    --fa: "\f00d";
}

.fa-remove,
i.remove {
    --fa: "\f00d";
}

.fa-times,
i.times {
    --fa: "\f00d";
}

.fa-face-smirking,
i.face-smirking {
    --fa: "\e397";
}

.fa-arrows-up-down-left-right,
i.arrows-up-down-left-right {
    --fa: "\f047";
}

.fa-arrows,
i.arrows {
    --fa: "\f047";
}

.fa-chalkboard-user,
i.chalkboard-user {
    --fa: "\f51c";
}

.fa-chalkboard-teacher,
i.chalkboard-teacher {
    --fa: "\f51c";
}

.fa-rhombus,
i.rhombus {
    --fa: "\e23b";
}

.fa-claw-marks,
i.claw-marks {
    --fa: "\f6c2";
}

.fa-peso-sign,
i.peso-sign {
    --fa: "\e222";
}

.fa-face-smile-tongue,
i.face-smile-tongue {
    --fa: "\e394";
}

.fa-cart-circle-xmark,
i.cart-circle-xmark {
    --fa: "\e3f4";
}

.fa-building-shield,
i.building-shield {
    --fa: "\e4d8";
}

.fa-circle-phone-flip,
i.circle-phone-flip {
    --fa: "\e11c";
}

.fa-phone-circle-alt,
i.phone-circle-alt {
    --fa: "\e11c";
}

.fa-baby,
i.baby {
    --fa: "\f77c";
}

.fa-users-line,
i.users-line {
    --fa: "\e592";
}

.fa-quote-left,
i.quote-left {
    --fa: "\f10d";
}

.fa-quote-left-alt,
i.quote-left-alt {
    --fa: "\f10d";
}

.fa-tractor,
i.tractor {
    --fa: "\f722";
}

.fa-down-from-bracket,
i.down-from-bracket {
    --fa: "\e66b";
}

.fa-key-skeleton,
i.key-skeleton {
    --fa: "\f6f3";
}

.fa-trash-arrow-up,
i.trash-arrow-up {
    --fa: "\f829";
}

.fa-trash-restore,
i.trash-restore {
    --fa: "\f829";
}

.fa-arrow-down-up-lock,
i.arrow-down-up-lock {
    --fa: "\e4b0";
}

.fa-arrow-down-to-bracket,
i.arrow-down-to-bracket {
    --fa: "\e094";
}

.fa-lines-leaning,
i.lines-leaning {
    --fa: "\e51e";
}

.fa-square-q,
i.square-q {
    --fa: "\e27b";
}

.fa-ruler-combined,
i.ruler-combined {
    --fa: "\f546";
}

.fa-symbols,
i.symbols {
    --fa: "\f86e";
}

.fa-icons-alt,
i.icons-alt {
    --fa: "\f86e";
}

.fa-copyright,
i.copyright {
    --fa: "\f1f9";
}

.fa-flask-gear,
i.flask-gear {
    --fa: "\e5f1";
}

.fa-highlighter-line,
i.highlighter-line {
    --fa: "\e1af";
}

.fa-bracket-square,
i.bracket-square {
    --fa: "\5b";
}

.fa-bracket,
i.bracket {
    --fa: "\5b";
}

.fa-bracket-left,
i.bracket-left {
    --fa: "\5b";
}

.fa-island-tropical,
i.island-tropical {
    --fa: "\f811";
}

.fa-island-tree-palm,
i.island-tree-palm {
    --fa: "\f811";
}

.fa-arrow-right-from-line,
i.arrow-right-from-line {
    --fa: "\f343";
}

.fa-arrow-from-left,
i.arrow-from-left {
    --fa: "\f343";
}

.fa-h2,
i.h2 {
    --fa: "\f314";
}

.fa-equals,
i.equals {
    --fa: "\3d";
}

.fa-cake-slice,
i.cake-slice {
    --fa: "\e3e5";
}

.fa-shortcake,
i.shortcake {
    --fa: "\e3e5";
}

.fa-building-magnifying-glass,
i.building-magnifying-glass {
    --fa: "\e61c";
}

.fa-peanut,
i.peanut {
    --fa: "\e430";
}

.fa-wrench-simple,
i.wrench-simple {
    --fa: "\e2d1";
}

.fa-blender,
i.blender {
    --fa: "\f517";
}

.fa-teeth,
i.teeth {
    --fa: "\f62e";
}

.fa-tally-2,
i.tally-2 {
    --fa: "\e295";
}

.fa-shekel-sign,
i.shekel-sign {
    --fa: "\f20b";
}

.fa-ils,
i.ils {
    --fa: "\f20b";
}

.fa-shekel,
i.shekel {
    --fa: "\f20b";
}

.fa-sheqel,
i.sheqel {
    --fa: "\f20b";
}

.fa-sheqel-sign,
i.sheqel-sign {
    --fa: "\f20b";
}

.fa-cars,
i.cars {
    --fa: "\f85b";
}

.fa-axe-battle,
i.axe-battle {
    --fa: "\f6b3";
}

.fa-user-hair-long,
i.user-hair-long {
    --fa: "\e45b";
}

.fa-map,
i.map {
    --fa: "\f279";
}

.fa-arrow-left-from-arc,
i.arrow-left-from-arc {
    --fa: "\e615";
}

.fa-file-circle-info,
i.file-circle-info {
    --fa: "\e493";
}

.fa-face-disappointed,
i.face-disappointed {
    --fa: "\e36f";
}

.fa-lasso-sparkles,
i.lasso-sparkles {
    --fa: "\e1c9";
}

.fa-clock-eleven,
i.clock-eleven {
    --fa: "\e347";
}

.fa-rocket,
i.rocket {
    --fa: "\f135";
}

.fa-siren-on,
i.siren-on {
    --fa: "\e02e";
}

.fa-clock-ten,
i.clock-ten {
    --fa: "\e354";
}

.fa-candle-holder,
i.candle-holder {
    --fa: "\f6bc";
}

.fa-video-arrow-down-left,
i.video-arrow-down-left {
    --fa: "\e2c8";
}

.fa-photo-film,
i.photo-film {
    --fa: "\f87c";
}

.fa-photo-video,
i.photo-video {
    --fa: "\f87c";
}

.fa-floppy-disk-circle-arrow-right,
i.floppy-disk-circle-arrow-right {
    --fa: "\e180";
}

.fa-save-circle-arrow-right,
i.save-circle-arrow-right {
    --fa: "\e180";
}

.fa-folder-minus,
i.folder-minus {
    --fa: "\f65d";
}

.fa-planet-moon,
i.planet-moon {
    --fa: "\e01f";
}

.fa-face-eyes-xmarks,
i.face-eyes-xmarks {
    --fa: "\e374";
}

.fa-chart-scatter,
i.chart-scatter {
    --fa: "\f7ee";
}

.fa-circle-gf,
i.circle-gf {
    --fa: "\e67f";
}

.fa-display-arrow-down,
i.display-arrow-down {
    --fa: "\e164";
}

.fa-store,
i.store {
    --fa: "\f54e";
}

.fa-arrow-trend-up,
i.arrow-trend-up {
    --fa: "\e098";
}

.fa-plug-circle-minus,
i.plug-circle-minus {
    --fa: "\e55e";
}

.fa-olive-branch,
i.olive-branch {
    --fa: "\e317";
}

.fa-angle,
i.angle {
    --fa: "\e08c";
}

.fa-vacuum-robot,
i.vacuum-robot {
    --fa: "\e04e";
}

.fa-sign-hanging,
i.sign-hanging {
    --fa: "\f4d9";
}

.fa-sign,
i.sign {
    --fa: "\f4d9";
}

.fa-square-divide,
i.square-divide {
    --fa: "\e26a";
}

.fa-folder-check,
i.folder-check {
    --fa: "\e64e";
}

.fa-signal-stream-slash,
i.signal-stream-slash {
    --fa: "\e250";
}

.fa-bezier-curve,
i.bezier-curve {
    --fa: "\f55b";
}

.fa-eye-dropper-half,
i.eye-dropper-half {
    --fa: "\e173";
}

.fa-store-lock,
i.store-lock {
    --fa: "\e4a6";
}

.fa-bell-slash,
i.bell-slash {
    --fa: "\f1f6";
}

.fa-cloud-bolt-sun,
i.cloud-bolt-sun {
    --fa: "\f76e";
}

.fa-thunderstorm-sun,
i.thunderstorm-sun {
    --fa: "\f76e";
}

.fa-camera-slash,
i.camera-slash {
    --fa: "\e0d9";
}

.fa-comment-quote,
i.comment-quote {
    --fa: "\e14c";
}

.fa-tablet,
i.tablet {
    --fa: "\f3fb";
}

.fa-tablet-android,
i.tablet-android {
    --fa: "\f3fb";
}

.fa-school-flag,
i.school-flag {
    --fa: "\e56e";
}

.fa-message-code,
i.message-code {
    --fa: "\e1df";
}

.fa-glass-half,
i.glass-half {
    --fa: "\e192";
}

.fa-glass-half-empty,
i.glass-half-empty {
    --fa: "\e192";
}

.fa-glass-half-full,
i.glass-half-full {
    --fa: "\e192";
}

.fa-fill,
i.fill {
    --fa: "\f575";
}

.fa-message-minus,
i.message-minus {
    --fa: "\f4a7";
}

.fa-comment-alt-minus,
i.comment-alt-minus {
    --fa: "\f4a7";
}

.fa-angle-up,
i.angle-up {
    --fa: "\f106";
}

.fa-dinosaur,
i.dinosaur {
    --fa: "\e5fe";
}

.fa-drumstick-bite,
i.drumstick-bite {
    --fa: "\f6d7";
}

.fa-link-horizontal-slash,
i.link-horizontal-slash {
    --fa: "\e1cc";
}

.fa-chain-horizontal-slash,
i.chain-horizontal-slash {
    --fa: "\e1cc";
}

.fa-holly-berry,
i.holly-berry {
    --fa: "\f7aa";
}

.fa-nose,
i.nose {
    --fa: "\e5bd";
}

.fa-arrow-left-to-arc,
i.arrow-left-to-arc {
    --fa: "\e616";
}

.fa-chevron-left,
i.chevron-left {
    --fa: "\f053";
}

.fa-bacteria,
i.bacteria {
    --fa: "\e059";
}

.fa-clouds,
i.clouds {
    --fa: "\f744";
}

.fa-money-bill-simple,
i.money-bill-simple {
    --fa: "\e1f1";
}

.fa-hand-lizard,
i.hand-lizard {
    --fa: "\f258";
}

.fa-table-pivot,
i.table-pivot {
    --fa: "\e291";
}

.fa-filter-slash,
i.filter-slash {
    --fa: "\e17d";
}

.fa-trash-can-undo,
i.trash-can-undo {
    --fa: "\f896";
}

.fa-trash-can-arrow-turn-left,
i.trash-can-arrow-turn-left {
    --fa: "\f896";
}

.fa-trash-undo-alt,
i.trash-undo-alt {
    --fa: "\f896";
}

.fa-notdef,
i.notdef {
    --fa: "\e1fe";
}

.fa-disease,
i.disease {
    --fa: "\f7fa";
}

.fa-person-to-door,
i.person-to-door {
    --fa: "\e433";
}

.fa-turntable,
i.turntable {
    --fa: "\f8e4";
}

.fa-briefcase-medical,
i.briefcase-medical {
    --fa: "\f469";
}

.fa-genderless,
i.genderless {
    --fa: "\f22d";
}

.fa-chevron-right,
i.chevron-right {
    --fa: "\f054";
}

.fa-signal-weak,
i.signal-weak {
    --fa: "\f68c";
}

.fa-signal-1,
i.signal-1 {
    --fa: "\f68c";
}

.fa-clock-five,
i.clock-five {
    --fa: "\e349";
}

.fa-retweet,
i.retweet {
    --fa: "\f079";
}

.fa-car-rear,
i.car-rear {
    --fa: "\f5de";
}

.fa-car-alt,
i.car-alt {
    --fa: "\f5de";
}

.fa-pump-soap,
i.pump-soap {
    --fa: "\e06b";
}

.fa-computer-classic,
i.computer-classic {
    --fa: "\f8b1";
}

.fa-frame,
i.frame {
    --fa: "\e495";
}

.fa-video-slash,
i.video-slash {
    --fa: "\f4e2";
}

.fa-battery-quarter,
i.battery-quarter {
    --fa: "\f243";
}

.fa-battery-2,
i.battery-2 {
    --fa: "\f243";
}

.fa-ellipsis-stroke,
i.ellipsis-stroke {
    --fa: "\f39b";
}

.fa-ellipsis-h-alt,
i.ellipsis-h-alt {
    --fa: "\f39b";
}

.fa-radio,
i.radio {
    --fa: "\f8d7";
}

.fa-baby-carriage,
i.baby-carriage {
    --fa: "\f77d";
}

.fa-carriage-baby,
i.carriage-baby {
    --fa: "\f77d";
}

.fa-face-expressionless,
i.face-expressionless {
    --fa: "\e373";
}

.fa-down-to-dotted-line,
i.down-to-dotted-line {
    --fa: "\e408";
}

.fa-cloud-music,
i.cloud-music {
    --fa: "\f8ae";
}

.fa-traffic-light,
i.traffic-light {
    --fa: "\f637";
}

.fa-cloud-minus,
i.cloud-minus {
    --fa: "\e35d";
}

.fa-thermometer,
i.thermometer {
    --fa: "\f491";
}

.fa-shield-minus,
i.shield-minus {
    --fa: "\e249";
}

.fa-vr-cardboard,
i.vr-cardboard {
    --fa: "\f729";
}

.fa-car-tilt,
i.car-tilt {
    --fa: "\f5e5";
}

.fa-gauge-circle-minus,
i.gauge-circle-minus {
    --fa: "\e497";
}

.fa-brightness-low,
i.brightness-low {
    --fa: "\e0ca";
}

.fa-hand-middle-finger,
i.hand-middle-finger {
    --fa: "\f806";
}

.fa-percent,
i.percent {
    --fa: "\25";
}

.fa-percentage,
i.percentage {
    --fa: "\25";
}

.fa-truck-moving,
i.truck-moving {
    --fa: "\f4df";
}

.fa-glass-water-droplet,
i.glass-water-droplet {
    --fa: "\e4f5";
}

.fa-conveyor-belt,
i.conveyor-belt {
    --fa: "\f46e";
}

.fa-location-check,
i.location-check {
    --fa: "\f606";
}

.fa-map-marker-check,
i.map-marker-check {
    --fa: "\f606";
}

.fa-coin-vertical,
i.coin-vertical {
    --fa: "\e3fd";
}

.fa-display,
i.display {
    --fa: "\e163";
}

.fa-person-sign,
i.person-sign {
    --fa: "\f757";
}

.fa-face-smile,
i.face-smile {
    --fa: "\f118";
}

.fa-smile,
i.smile {
    --fa: "\f118";
}

.fa-phone-hangup,
i.phone-hangup {
    --fa: "\e225";
}

.fa-signature-slash,
i.signature-slash {
    --fa: "\e3cb";
}

.fa-thumbtack,
i.thumbtack {
    --fa: "\f08d";
}

.fa-thumb-tack,
i.thumb-tack {
    --fa: "\f08d";
}

.fa-wheat-slash,
i.wheat-slash {
    --fa: "\e339";
}

.fa-trophy,
i.trophy {
    --fa: "\f091";
}

.fa-clouds-sun,
i.clouds-sun {
    --fa: "\f746";
}

.fa-person-praying,
i.person-praying {
    --fa: "\f683";
}

.fa-pray,
i.pray {
    --fa: "\f683";
}

.fa-hammer,
i.hammer {
    --fa: "\f6e3";
}

.fa-face-vomit,
i.face-vomit {
    --fa: "\e3a0";
}

.fa-speakers,
i.speakers {
    --fa: "\f8e0";
}

.fa-tty-answer,
i.tty-answer {
    --fa: "\e2b9";
}

.fa-teletype-answer,
i.teletype-answer {
    --fa: "\e2b9";
}

.fa-mug-tea-saucer,
i.mug-tea-saucer {
    --fa: "\e1f5";
}

.fa-diagram-lean-canvas,
i.diagram-lean-canvas {
    --fa: "\e156";
}

.fa-alt,
i.alt {
    --fa: "\e08a";
}

.fa-dial,
i.dial {
    --fa: "\e15b";
}

.fa-dial-med-high,
i.dial-med-high {
    --fa: "\e15b";
}

.fa-hand-peace,
i.hand-peace {
    --fa: "\f25b";
}

.fa-circle-trash,
i.circle-trash {
    --fa: "\e126";
}

.fa-trash-circle,
i.trash-circle {
    --fa: "\e126";
}

.fa-rotate,
i.rotate {
    --fa: "\f2f1";
}

.fa-sync-alt,
i.sync-alt {
    --fa: "\f2f1";
}

.fa-circle-quarters,
i.circle-quarters {
    --fa: "\e3f8";
}

.fa-spinner,
i.spinner {
    --fa: "\f110";
}

.fa-tower-control,
i.tower-control {
    --fa: "\e2a2";
}

.fa-arrow-up-triangle-square,
i.arrow-up-triangle-square {
    --fa: "\f88a";
}

.fa-sort-shapes-up,
i.sort-shapes-up {
    --fa: "\f88a";
}

.fa-whale,
i.whale {
    --fa: "\f72c";
}

.fa-robot,
i.robot {
    --fa: "\f544";
}

.fa-peace,
i.peace {
    --fa: "\f67c";
}

.fa-party-horn,
i.party-horn {
    --fa: "\e31b";
}

.fa-gears,
i.gears {
    --fa: "\f085";
}

.fa-cogs,
i.cogs {
    --fa: "\f085";
}

.fa-sun-bright,
i.sun-bright {
    --fa: "\e28f";
}

.fa-sun-alt,
i.sun-alt {
    --fa: "\e28f";
}

.fa-warehouse,
i.warehouse {
    --fa: "\f494";
}

.fa-conveyor-belt-arm,
i.conveyor-belt-arm {
    --fa: "\e5f8";
}

.fa-lock-keyhole-open,
i.lock-keyhole-open {
    --fa: "\f3c2";
}

.fa-lock-open-alt,
i.lock-open-alt {
    --fa: "\f3c2";
}

.fa-square-fragile,
i.square-fragile {
    --fa: "\f49b";
}

.fa-box-fragile,
i.box-fragile {
    --fa: "\f49b";
}

.fa-square-wine-glass-crack,
i.square-wine-glass-crack {
    --fa: "\f49b";
}

.fa-arrow-up-right-dots,
i.arrow-up-right-dots {
    --fa: "\e4b7";
}

.fa-square-n,
i.square-n {
    --fa: "\e277";
}

.fa-splotch,
i.splotch {
    --fa: "\f5bc";
}

.fa-face-grin-hearts,
i.face-grin-hearts {
    --fa: "\f584";
}

.fa-grin-hearts,
i.grin-hearts {
    --fa: "\f584";
}

.fa-meter,
i.meter {
    --fa: "\e1e8";
}

.fa-mandolin,
i.mandolin {
    --fa: "\f6f9";
}

.fa-dice-four,
i.dice-four {
    --fa: "\f524";
}

.fa-sim-card,
i.sim-card {
    --fa: "\f7c4";
}

.fa-transgender,
i.transgender {
    --fa: "\f225";
}

.fa-transgender-alt,
i.transgender-alt {
    --fa: "\f225";
}

.fa-mercury,
i.mercury {
    --fa: "\f223";
}

.fa-up-from-bracket,
i.up-from-bracket {
    --fa: "\e590";
}

.fa-knife-kitchen,
i.knife-kitchen {
    --fa: "\f6f5";
}

.fa-border-right,
i.border-right {
    --fa: "\f852";
}

.fa-arrow-turn-down,
i.arrow-turn-down {
    --fa: "\f149";
}

.fa-level-down,
i.level-down {
    --fa: "\f149";
}

.fa-spade,
i.spade {
    --fa: "\f2f4";
}

.fa-card-spade,
i.card-spade {
    --fa: "\e3ec";
}

.fa-line-columns,
i.line-columns {
    --fa: "\f870";
}

.fa-ant,
i.ant {
    --fa: "\e680";
}

.fa-arrow-right-to-line,
i.arrow-right-to-line {
    --fa: "\f340";
}

.fa-arrow-to-right,
i.arrow-to-right {
    --fa: "\f340";
}

.fa-person-falling-burst,
i.person-falling-burst {
    --fa: "\e547";
}

.fa-flag-pennant,
i.flag-pennant {
    --fa: "\f456";
}

.fa-pennant,
i.pennant {
    --fa: "\f456";
}

.fa-conveyor-belt-empty,
i.conveyor-belt-empty {
    --fa: "\e150";
}

.fa-user-group-simple,
i.user-group-simple {
    --fa: "\e603";
}

.fa-award,
i.award {
    --fa: "\f559";
}

.fa-ticket-simple,
i.ticket-simple {
    --fa: "\f3ff";
}

.fa-ticket-alt,
i.ticket-alt {
    --fa: "\f3ff";
}

.fa-building,
i.building {
    --fa: "\f1ad";
}

.fa-angles-left,
i.angles-left {
    --fa: "\f100";
}

.fa-angle-double-left,
i.angle-double-left {
    --fa: "\f100";
}

.fa-camcorder,
i.camcorder {
    --fa: "\f8a8";
}

.fa-video-handheld,
i.video-handheld {
    --fa: "\f8a8";
}

.fa-pancakes,
i.pancakes {
    --fa: "\e42d";
}

.fa-album-circle-user,
i.album-circle-user {
    --fa: "\e48d";
}

.fa-subtitles-slash,
i.subtitles-slash {
    --fa: "\e610";
}

.fa-qrcode,
i.qrcode {
    --fa: "\f029";
}

.fa-dice-d10,
i.dice-d10 {
    --fa: "\f6cd";
}

.fa-fireplace,
i.fireplace {
    --fa: "\f79a";
}

.fa-browser,
i.browser {
    --fa: "\f37e";
}

.fa-pen-paintbrush,
i.pen-paintbrush {
    --fa: "\f618";
}

.fa-pencil-paintbrush,
i.pencil-paintbrush {
    --fa: "\f618";
}

.fa-fish-cooked,
i.fish-cooked {
    --fa: "\f7fe";
}

.fa-chair-office,
i.chair-office {
    --fa: "\f6c1";
}

.fa-magnifying-glass-music,
i.magnifying-glass-music {
    --fa: "\e65f";
}

.fa-nesting-dolls,
i.nesting-dolls {
    --fa: "\e3ba";
}

.fa-clock-rotate-left,
i.clock-rotate-left {
    --fa: "\f1da";
}

.fa-history,
i.history {
    --fa: "\f1da";
}

.fa-trumpet,
i.trumpet {
    --fa: "\f8e3";
}

.fa-face-grin-beam-sweat,
i.face-grin-beam-sweat {
    --fa: "\f583";
}

.fa-grin-beam-sweat,
i.grin-beam-sweat {
    --fa: "\f583";
}

.fa-fire-smoke,
i.fire-smoke {
    --fa: "\f74b";
}

.fa-phone-missed,
i.phone-missed {
    --fa: "\e226";
}

.fa-file-export,
i.file-export {
    --fa: "\f56e";
}

.fa-arrow-right-from-file,
i.arrow-right-from-file {
    --fa: "\f56e";
}

.fa-shield,
i.shield {
    --fa: "\f132";
}

.fa-shield-blank,
i.shield-blank {
    --fa: "\f132";
}

.fa-arrow-up-short-wide,
i.arrow-up-short-wide {
    --fa: "\f885";
}

.fa-sort-amount-up-alt,
i.sort-amount-up-alt {
    --fa: "\f885";
}

.fa-arrows-repeat-1,
i.arrows-repeat-1 {
    --fa: "\f366";
}

.fa-repeat-1-alt,
i.repeat-1-alt {
    --fa: "\f366";
}

.fa-gun-slash,
i.gun-slash {
    --fa: "\e19c";
}

.fa-avocado,
i.avocado {
    --fa: "\e0aa";
}

.fa-binary,
i.binary {
    --fa: "\e33b";
}

.fa-glasses-round,
i.glasses-round {
    --fa: "\f5f5";
}

.fa-glasses-alt,
i.glasses-alt {
    --fa: "\f5f5";
}

.fa-phone-plus,
i.phone-plus {
    --fa: "\f4d2";
}

.fa-ditto,
i.ditto {
    --fa: "\22";
}

.fa-person-seat,
i.person-seat {
    --fa: "\e21e";
}

.fa-house-medical,
i.house-medical {
    --fa: "\e3b2";
}

.fa-golf-ball-tee,
i.golf-ball-tee {
    --fa: "\f450";
}

.fa-golf-ball,
i.golf-ball {
    --fa: "\f450";
}

.fa-circle-chevron-left,
i.circle-chevron-left {
    --fa: "\f137";
}

.fa-chevron-circle-left,
i.chevron-circle-left {
    --fa: "\f137";
}

.fa-house-chimney-window,
i.house-chimney-window {
    --fa: "\e00d";
}

.fa-scythe,
i.scythe {
    --fa: "\f710";
}

.fa-pen-nib,
i.pen-nib {
    --fa: "\f5ad";
}

.fa-ban-parking,
i.ban-parking {
    --fa: "\f616";
}

.fa-parking-circle-slash,
i.parking-circle-slash {
    --fa: "\f616";
}

.fa-tent-arrow-turn-left,
i.tent-arrow-turn-left {
    --fa: "\e580";
}

.fa-face-diagonal-mouth,
i.face-diagonal-mouth {
    --fa: "\e47e";
}

.fa-diagram-cells,
i.diagram-cells {
    --fa: "\e475";
}

.fa-cricket-bat-ball,
i.cricket-bat-ball {
    --fa: "\f449";
}

.fa-cricket,
i.cricket {
    --fa: "\f449";
}

.fa-tents,
i.tents {
    --fa: "\e582";
}

.fa-wand-magic,
i.wand-magic {
    --fa: "\f0d0";
}

.fa-magic,
i.magic {
    --fa: "\f0d0";
}

.fa-dog,
i.dog {
    --fa: "\f6d3";
}

.fa-pen-line,
i.pen-line {
    --fa: "\e212";
}

.fa-atom-simple,
i.atom-simple {
    --fa: "\f5d3";
}

.fa-atom-alt,
i.atom-alt {
    --fa: "\f5d3";
}

.fa-ampersand,
i.ampersand {
    --fa: "\26";
}

.fa-carrot,
i.carrot {
    --fa: "\f787";
}

.fa-arrow-up-from-line,
i.arrow-up-from-line {
    --fa: "\f342";
}

.fa-arrow-from-bottom,
i.arrow-from-bottom {
    --fa: "\f342";
}

.fa-moon,
i.moon {
    --fa: "\f186";
}

.fa-pen-slash,
i.pen-slash {
    --fa: "\e213";
}

.fa-wine-glass-empty,
i.wine-glass-empty {
    --fa: "\f5ce";
}

.fa-wine-glass-alt,
i.wine-glass-alt {
    --fa: "\f5ce";
}

.fa-square-star,
i.square-star {
    --fa: "\e27f";
}

.fa-cheese,
i.cheese {
    --fa: "\f7ef";
}

.fa-send-backward,
i.send-backward {
    --fa: "\f87f";
}

.fa-yin-yang,
i.yin-yang {
    --fa: "\f6ad";
}

.fa-music,
i.music {
    --fa: "\f001";
}

.fa-compass-slash,
i.compass-slash {
    --fa: "\f5e9";
}

.fa-clock-one,
i.clock-one {
    --fa: "\e34e";
}

.fa-file-music,
i.file-music {
    --fa: "\f8b6";
}

.fa-code-commit,
i.code-commit {
    --fa: "\f386";
}

.fa-temperature-low,
i.temperature-low {
    --fa: "\f76b";
}

.fa-person-biking,
i.person-biking {
    --fa: "\f84a";
}

.fa-biking,
i.biking {
    --fa: "\f84a";
}

.fa-display-chart-up-circle-currency,
i.display-chart-up-circle-currency {
    --fa: "\e5e5";
}

.fa-skeleton,
i.skeleton {
    --fa: "\f620";
}

.fa-circle-g,
i.circle-g {
    --fa: "\e10f";
}

.fa-circle-arrow-up-left,
i.circle-arrow-up-left {
    --fa: "\e0fb";
}

.fa-coin-blank,
i.coin-blank {
    --fa: "\e3fb";
}

.fa-broom,
i.broom {
    --fa: "\f51a";
}

.fa-vacuum,
i.vacuum {
    --fa: "\e04d";
}

.fa-shield-heart,
i.shield-heart {
    --fa: "\e574";
}

.fa-card-heart,
i.card-heart {
    --fa: "\e3eb";
}

.fa-lightbulb-cfl-on,
i.lightbulb-cfl-on {
    --fa: "\e5a7";
}

.fa-melon,
i.melon {
    --fa: "\e310";
}

.fa-gopuram,
i.gopuram {
    --fa: "\f664";
}

.fa-earth-oceania,
i.earth-oceania {
    --fa: "\e47b";
}

.fa-globe-oceania,
i.globe-oceania {
    --fa: "\e47b";
}

.fa-container-storage,
i.container-storage {
    --fa: "\f4b7";
}

.fa-face-pouting,
i.face-pouting {
    --fa: "\e387";
}

.fa-square-xmark,
i.square-xmark {
    --fa: "\f2d3";
}

.fa-times-square,
i.times-square {
    --fa: "\f2d3";
}

.fa-xmark-square,
i.xmark-square {
    --fa: "\f2d3";
}

.fa-face-explode,
i.face-explode {
    --fa: "\e2fe";
}

.fa-exploding-head,
i.exploding-head {
    --fa: "\e2fe";
}

.fa-hashtag,
i.hashtag {
    --fa: "\23";
}

.fa-up-right-and-down-left-from-center,
i.up-right-and-down-left-from-center {
    --fa: "\f424";
}

.fa-expand-alt,
i.expand-alt {
    --fa: "\f424";
}

.fa-oil-can,
i.oil-can {
    --fa: "\f613";
}

.fa-t,
i.t {
    --fa: "\54";
}

.fa-transformer-bolt,
i.transformer-bolt {
    --fa: "\e2a4";
}

.fa-hippo,
i.hippo {
    --fa: "\f6ed";
}

.fa-chart-column,
i.chart-column {
    --fa: "\e0e3";
}

.fa-cassette-vhs,
i.cassette-vhs {
    --fa: "\f8ec";
}

.fa-vhs,
i.vhs {
    --fa: "\f8ec";
}

.fa-infinity,
i.infinity {
    --fa: "\f534";
}

.fa-vial-circle-check,
i.vial-circle-check {
    --fa: "\e596";
}

.fa-chimney,
i.chimney {
    --fa: "\f78b";
}

.fa-object-intersect,
i.object-intersect {
    --fa: "\e49d";
}

.fa-person-arrow-down-to-line,
i.person-arrow-down-to-line {
    --fa: "\e538";
}

.fa-voicemail,
i.voicemail {
    --fa: "\f897";
}

.fa-block-brick,
i.block-brick {
    --fa: "\e3db";
}

.fa-wall-brick,
i.wall-brick {
    --fa: "\e3db";
}

.fa-fan,
i.fan {
    --fa: "\f863";
}

.fa-bags-shopping,
i.bags-shopping {
    --fa: "\f847";
}

.fa-paragraph-left,
i.paragraph-left {
    --fa: "\f878";
}

.fa-paragraph-rtl,
i.paragraph-rtl {
    --fa: "\f878";
}

.fa-person-walking-luggage,
i.person-walking-luggage {
    --fa: "\e554";
}

.fa-caravan-simple,
i.caravan-simple {
    --fa: "\e000";
}

.fa-caravan-alt,
i.caravan-alt {
    --fa: "\e000";
}

.fa-turtle,
i.turtle {
    --fa: "\f726";
}

.fa-pencil-mechanical,
i.pencil-mechanical {
    --fa: "\e5ca";
}

.fa-up-down,
i.up-down {
    --fa: "\f338";
}

.fa-arrows-alt-v,
i.arrows-alt-v {
    --fa: "\f338";
}

.fa-cloud-moon-rain,
i.cloud-moon-rain {
    --fa: "\f73c";
}

.fa-booth-curtain,
i.booth-curtain {
    --fa: "\f734";
}

.fa-calendar,
i.calendar {
    --fa: "\f133";
}

.fa-box-heart,
i.box-heart {
    --fa: "\f49d";
}

.fa-trailer,
i.trailer {
    --fa: "\e041";
}

.fa-user-doctor-message,
i.user-doctor-message {
    --fa: "\f82e";
}

.fa-user-md-chat,
i.user-md-chat {
    --fa: "\f82e";
}

.fa-bahai,
i.bahai {
    --fa: "\f666";
}

.fa-haykal,
i.haykal {
    --fa: "\f666";
}

.fa-lighthouse,
i.lighthouse {
    --fa: "\e612";
}

.fa-amp-guitar,
i.amp-guitar {
    --fa: "\f8a1";
}

.fa-sd-card,
i.sd-card {
    --fa: "\f7c2";
}

.fa-volume-slash,
i.volume-slash {
    --fa: "\f2e2";
}

.fa-border-bottom,
i.border-bottom {
    --fa: "\f84d";
}

.fa-wifi-weak,
i.wifi-weak {
    --fa: "\f6aa";
}

.fa-wifi-1,
i.wifi-1 {
    --fa: "\f6aa";
}

.fa-dragon,
i.dragon {
    --fa: "\f6d5";
}

.fa-shoe-prints,
i.shoe-prints {
    --fa: "\f54b";
}

.fa-circle-plus,
i.circle-plus {
    --fa: "\f055";
}

.fa-plus-circle,
i.plus-circle {
    --fa: "\f055";
}

.fa-face-grin-tongue-wink,
i.face-grin-tongue-wink {
    --fa: "\f58b";
}

.fa-grin-tongue-wink,
i.grin-tongue-wink {
    --fa: "\f58b";
}

.fa-hand-holding,
i.hand-holding {
    --fa: "\f4bd";
}

.fa-plug-circle-exclamation,
i.plug-circle-exclamation {
    --fa: "\e55d";
}

.fa-link-slash,
i.link-slash {
    --fa: "\f127";
}

.fa-chain-broken,
i.chain-broken {
    --fa: "\f127";
}

.fa-chain-slash,
i.chain-slash {
    --fa: "\f127";
}

.fa-unlink,
i.unlink {
    --fa: "\f127";
}

.fa-clone,
i.clone {
    --fa: "\f24d";
}

.fa-person-walking-arrow-loop-left,
i.person-walking-arrow-loop-left {
    --fa: "\e551";
}

.fa-arrow-up-z-a,
i.arrow-up-z-a {
    --fa: "\f882";
}

.fa-sort-alpha-up-alt,
i.sort-alpha-up-alt {
    --fa: "\f882";
}

.fa-fire-flame-curved,
i.fire-flame-curved {
    --fa: "\f7e4";
}

.fa-fire-alt,
i.fire-alt {
    --fa: "\f7e4";
}

.fa-tornado,
i.tornado {
    --fa: "\f76f";
}

.fa-file-circle-plus,
i.file-circle-plus {
    --fa: "\e494";
}

.fa-delete-right,
i.delete-right {
    --fa: "\e154";
}

.fa-book-quran,
i.book-quran {
    --fa: "\f687";
}

.fa-quran,
i.quran {
    --fa: "\f687";
}

.fa-circle-quarter,
i.circle-quarter {
    --fa: "\e11f";
}

.fa-anchor,
i.anchor {
    --fa: "\f13d";
}

.fa-border-all,
i.border-all {
    --fa: "\f84c";
}

.fa-function,
i.function {
    --fa: "\f661";
}

.fa-face-angry,
i.face-angry {
    --fa: "\f556";
}

.fa-angry,
i.angry {
    --fa: "\f556";
}

.fa-people-simple,
i.people-simple {
    --fa: "\e21b";
}

.fa-cookie-bite,
i.cookie-bite {
    --fa: "\f564";
}

.fa-arrow-trend-down,
i.arrow-trend-down {
    --fa: "\e097";
}

.fa-rss,
i.rss {
    --fa: "\f09e";
}

.fa-feed,
i.feed {
    --fa: "\f09e";
}

.fa-face-monocle,
i.face-monocle {
    --fa: "\e380";
}

.fa-draw-polygon,
i.draw-polygon {
    --fa: "\f5ee";
}

.fa-scale-balanced,
i.scale-balanced {
    --fa: "\f24e";
}

.fa-balance-scale,
i.balance-scale {
    --fa: "\f24e";
}

.fa-calendar-lines,
i.calendar-lines {
    --fa: "\e0d5";
}

.fa-calendar-note,
i.calendar-note {
    --fa: "\e0d5";
}

.fa-arrow-down-big-small,
i.arrow-down-big-small {
    --fa: "\f88c";
}

.fa-sort-size-down,
i.sort-size-down {
    --fa: "\f88c";
}

.fa-gauge-simple-high,
i.gauge-simple-high {
    --fa: "\f62a";
}

.fa-tachometer,
i.tachometer {
    --fa: "\f62a";
}

.fa-tachometer-fast,
i.tachometer-fast {
    --fa: "\f62a";
}

.fa-do-not-enter,
i.do-not-enter {
    --fa: "\f5ec";
}

.fa-shower,
i.shower {
    --fa: "\f2cc";
}

.fa-dice-d8,
i.dice-d8 {
    --fa: "\f6d2";
}

.fa-desktop,
i.desktop {
    --fa: "\f390";
}

.fa-desktop-alt,
i.desktop-alt {
    --fa: "\f390";
}

.fa-m,
i.m {
    --fa: "\4d";
}

.fa-spinner-scale,
i.spinner-scale {
    --fa: "\e62a";
}

.fa-grip-dots-vertical,
i.grip-dots-vertical {
    --fa: "\e411";
}

.fa-face-viewfinder,
i.face-viewfinder {
    --fa: "\e2ff";
}

.fa-soft-serve,
i.soft-serve {
    --fa: "\e400";
}

.fa-creemee,
i.creemee {
    --fa: "\e400";
}

.fa-h5,
i.h5 {
    --fa: "\e412";
}

.fa-hand-back-point-down,
i.hand-back-point-down {
    --fa: "\e19e";
}

.fa-table-list,
i.table-list {
    --fa: "\f00b";
}

.fa-th-list,
i.th-list {
    --fa: "\f00b";
}

.fa-basket-shopping-minus,
i.basket-shopping-minus {
    --fa: "\e652";
}

.fa-comment-sms,
i.comment-sms {
    --fa: "\f7cd";
}

.fa-sms,
i.sms {
    --fa: "\f7cd";
}

.fa-rectangle,
i.rectangle {
    --fa: "\f2fa";
}

.fa-rectangle-landscape,
i.rectangle-landscape {
    --fa: "\f2fa";
}

.fa-clipboard-list-check,
i.clipboard-list-check {
    --fa: "\f737";
}

.fa-turkey,
i.turkey {
    --fa: "\f725";
}

.fa-book,
i.book {
    --fa: "\f02d";
}

.fa-user-plus,
i.user-plus {
    --fa: "\f234";
}

.fa-ice-skate,
i.ice-skate {
    --fa: "\f7ac";
}

.fa-check,
i.check {
    --fa: "\f00c";
}

.fa-battery-three-quarters,
i.battery-three-quarters {
    --fa: "\f241";
}

.fa-battery-4,
i.battery-4 {
    --fa: "\f241";
}

.fa-tomato,
i.tomato {
    --fa: "\e330";
}

.fa-sword-laser,
i.sword-laser {
    --fa: "\e03b";
}

.fa-house-circle-check,
i.house-circle-check {
    --fa: "\e509";
}

.fa-buildings,
i.buildings {
    --fa: "\e0cc";
}

.fa-angle-left,
i.angle-left {
    --fa: "\f104";
}

.fa-cart-flatbed-boxes,
i.cart-flatbed-boxes {
    --fa: "\f475";
}

.fa-dolly-flatbed-alt,
i.dolly-flatbed-alt {
    --fa: "\f475";
}

.fa-diagram-successor,
i.diagram-successor {
    --fa: "\e47a";
}

.fa-truck-arrow-right,
i.truck-arrow-right {
    --fa: "\e58b";
}

.fa-square-w,
i.square-w {
    --fa: "\e285";
}

.fa-arrows-split-up-and-left,
i.arrows-split-up-and-left {
    --fa: "\e4bc";
}

.fa-lamp,
i.lamp {
    --fa: "\f4ca";
}

.fa-airplay,
i.airplay {
    --fa: "\e089";
}

.fa-hand-fist,
i.hand-fist {
    --fa: "\f6de";
}

.fa-fist-raised,
i.fist-raised {
    --fa: "\f6de";
}

.fa-shield-quartered,
i.shield-quartered {
    --fa: "\e575";
}

.fa-slash-forward,
i.slash-forward {
    --fa: "\2f";
}

.fa-location-pen,
i.location-pen {
    --fa: "\f607";
}

.fa-map-marker-edit,
i.map-marker-edit {
    --fa: "\f607";
}

.fa-cloud-moon,
i.cloud-moon {
    --fa: "\f6c3";
}

.fa-pot-food,
i.pot-food {
    --fa: "\e43f";
}

.fa-briefcase,
i.briefcase {
    --fa: "\f0b1";
}

.fa-person-falling,
i.person-falling {
    --fa: "\e546";
}

.fa-image-portrait,
i.image-portrait {
    --fa: "\f3e0";
}

.fa-portrait,
i.portrait {
    --fa: "\f3e0";
}

.fa-user-tag,
i.user-tag {
    --fa: "\f507";
}

.fa-rug,
i.rug {
    --fa: "\e569";
}

.fa-print-slash,
i.print-slash {
    --fa: "\f686";
}

.fa-earth-europe,
i.earth-europe {
    --fa: "\f7a2";
}

.fa-globe-europe,
i.globe-europe {
    --fa: "\f7a2";
}

.fa-cart-flatbed-suitcase,
i.cart-flatbed-suitcase {
    --fa: "\f59d";
}

.fa-luggage-cart,
i.luggage-cart {
    --fa: "\f59d";
}

.fa-hand-back-point-ribbon,
i.hand-back-point-ribbon {
    --fa: "\e1a0";
}

.fa-rectangle-xmark,
i.rectangle-xmark {
    --fa: "\f410";
}

.fa-rectangle-times,
i.rectangle-times {
    --fa: "\f410";
}

.fa-times-rectangle,
i.times-rectangle {
    --fa: "\f410";
}

.fa-window-close,
i.window-close {
    --fa: "\f410";
}

.fa-tire-rugged,
i.tire-rugged {
    --fa: "\f634";
}

.fa-lightbulb-dollar,
i.lightbulb-dollar {
    --fa: "\f670";
}

.fa-cowbell,
i.cowbell {
    --fa: "\f8b3";
}

.fa-baht-sign,
i.baht-sign {
    --fa: "\e0ac";
}

.fa-corner,
i.corner {
    --fa: "\e3fe";
}

.fa-chevrons-right,
i.chevrons-right {
    --fa: "\f324";
}

.fa-chevron-double-right,
i.chevron-double-right {
    --fa: "\f324";
}

.fa-book-open,
i.book-open {
    --fa: "\f518";
}

.fa-book-journal-whills,
i.book-journal-whills {
    --fa: "\f66a";
}

.fa-journal-whills,
i.journal-whills {
    --fa: "\f66a";
}

.fa-inhaler,
i.inhaler {
    --fa: "\f5f9";
}

.fa-handcuffs,
i.handcuffs {
    --fa: "\e4f8";
}

.fa-snake,
i.snake {
    --fa: "\f716";
}

.fa-triangle-exclamation,
i.triangle-exclamation {
    --fa: "\f071";
}

.fa-exclamation-triangle,
i.exclamation-triangle {
    --fa: "\f071";
}

.fa-warning,
i.warning {
    --fa: "\f071";
}

.fa-note-medical,
i.note-medical {
    --fa: "\e200";
}

.fa-database,
i.database {
    --fa: "\f1c0";
}

.fa-down-left,
i.down-left {
    --fa: "\e16a";
}

.fa-share,
i.share {
    --fa: "\f064";
}

.fa-mail-forward,
i.mail-forward {
    --fa: "\f064";
}

.fa-face-thinking,
i.face-thinking {
    --fa: "\e39b";
}

.fa-turn-down-right,
i.turn-down-right {
    --fa: "\e455";
}

.fa-bottle-droplet,
i.bottle-droplet {
    --fa: "\e4c4";
}

.fa-mask-face,
i.mask-face {
    --fa: "\e1d7";
}

.fa-hill-rockslide,
i.hill-rockslide {
    --fa: "\e508";
}

.fa-scanner-keyboard,
i.scanner-keyboard {
    --fa: "\f489";
}

.fa-circle-o,
i.circle-o {
    --fa: "\e119";
}

.fa-grid-horizontal,
i.grid-horizontal {
    --fa: "\e307";
}

.fa-message-dollar,
i.message-dollar {
    --fa: "\f650";
}

.fa-comment-alt-dollar,
i.comment-alt-dollar {
    --fa: "\f650";
}

.fa-right-left,
i.right-left {
    --fa: "\f362";
}

.fa-exchange-alt,
i.exchange-alt {
    --fa: "\f362";
}

.fa-columns-3,
i.columns-3 {
    --fa: "\e361";
}

.fa-paper-plane,
i.paper-plane {
    --fa: "\f1d8";
}

.fa-road-circle-exclamation,
i.road-circle-exclamation {
    --fa: "\e565";
}

.fa-dungeon,
i.dungeon {
    --fa: "\f6d9";
}

.fa-hand-holding-box,
i.hand-holding-box {
    --fa: "\f47b";
}

.fa-input-text,
i.input-text {
    --fa: "\e1bf";
}

.fa-window-flip,
i.window-flip {
    --fa: "\f40f";
}

.fa-window-alt,
i.window-alt {
    --fa: "\f40f";
}

.fa-align-right,
i.align-right {
    --fa: "\f038";
}

.fa-scanner-gun,
i.scanner-gun {
    --fa: "\f488";
}

.fa-scanner,
i.scanner {
    --fa: "\f488";
}

.fa-tire,
i.tire {
    --fa: "\f631";
}

.fa-engine,
i.engine {
    --fa: "\e16e";
}

.fa-money-bill-1-wave,
i.money-bill-1-wave {
    --fa: "\f53b";
}

.fa-money-bill-wave-alt,
i.money-bill-wave-alt {
    --fa: "\f53b";
}

.fa-life-ring,
i.life-ring {
    --fa: "\f1cd";
}

.fa-hands,
i.hands {
    --fa: "\f2a7";
}

.fa-sign-language,
i.sign-language {
    --fa: "\f2a7";
}

.fa-signing,
i.signing {
    --fa: "\f2a7";
}

.fa-circle-caret-right,
i.circle-caret-right {
    --fa: "\f330";
}

.fa-caret-circle-right,
i.caret-circle-right {
    --fa: "\f330";
}

.fa-turn-left,
i.turn-left {
    --fa: "\e636";
}

.fa-wheat,
i.wheat {
    --fa: "\f72d";
}

.fa-file-spreadsheet,
i.file-spreadsheet {
    --fa: "\f65b";
}

.fa-audio-description-slash,
i.audio-description-slash {
    --fa: "\e0a8";
}

.fa-bell-ring,
i.bell-ring {
    --fa: "\e62c";
}

.fa-calendar-day,
i.calendar-day {
    --fa: "\f783";
}

.fa-water-ladder,
i.water-ladder {
    --fa: "\f5c5";
}

.fa-ladder-water,
i.ladder-water {
    --fa: "\f5c5";
}

.fa-swimming-pool,
i.swimming-pool {
    --fa: "\f5c5";
}

.fa-arrows-up-down,
i.arrows-up-down {
    --fa: "\f07d";
}

.fa-arrows-v,
i.arrows-v {
    --fa: "\f07d";
}

.fa-chess-pawn-piece,
i.chess-pawn-piece {
    --fa: "\f444";
}

.fa-chess-pawn-alt,
i.chess-pawn-alt {
    --fa: "\f444";
}

.fa-face-grimace,
i.face-grimace {
    --fa: "\f57f";
}

.fa-grimace,
i.grimace {
    --fa: "\f57f";
}

.fa-wheelchair-move,
i.wheelchair-move {
    --fa: "\e2ce";
}

.fa-wheelchair-alt,
i.wheelchair-alt {
    --fa: "\e2ce";
}

.fa-turn-down,
i.turn-down {
    --fa: "\f3be";
}

.fa-level-down-alt,
i.level-down-alt {
    --fa: "\f3be";
}

.fa-square-s,
i.square-s {
    --fa: "\e27d";
}

.fa-rectangle-barcode,
i.rectangle-barcode {
    --fa: "\f463";
}

.fa-barcode-alt,
i.barcode-alt {
    --fa: "\f463";
}

.fa-person-walking-arrow-right,
i.person-walking-arrow-right {
    --fa: "\e552";
}

.fa-square-envelope,
i.square-envelope {
    --fa: "\f199";
}

.fa-envelope-square,
i.envelope-square {
    --fa: "\f199";
}

.fa-dice,
i.dice {
    --fa: "\f522";
}

.fa-unicorn,
i.unicorn {
    --fa: "\f727";
}

.fa-bowling-ball,
i.bowling-ball {
    --fa: "\f436";
}

.fa-pompebled,
i.pompebled {
    --fa: "\e43d";
}

.fa-brain,
i.brain {
    --fa: "\f5dc";
}

.fa-watch-smart,
i.watch-smart {
    --fa: "\e2cc";
}

.fa-book-user,
i.book-user {
    --fa: "\f7e7";
}

.fa-sensor-cloud,
i.sensor-cloud {
    --fa: "\e02c";
}

.fa-sensor-smoke,
i.sensor-smoke {
    --fa: "\e02c";
}

.fa-clapperboard-play,
i.clapperboard-play {
    --fa: "\e132";
}

.fa-bandage,
i.bandage {
    --fa: "\f462";
}

.fa-band-aid,
i.band-aid {
    --fa: "\f462";
}

.fa-calendar-minus,
i.calendar-minus {
    --fa: "\f272";
}

.fa-circle-xmark,
i.circle-xmark {
    --fa: "\f057";
}

.fa-times-circle,
i.times-circle {
    --fa: "\f057";
}

.fa-xmark-circle,
i.xmark-circle {
    --fa: "\f057";
}

.fa-circle-4,
i.circle-4 {
    --fa: "\e0f1";
}

.fa-gifts,
i.gifts {
    --fa: "\f79c";
}

.fa-album-collection,
i.album-collection {
    --fa: "\f8a0";
}

.fa-hotel,
i.hotel {
    --fa: "\f594";
}

.fa-earth-asia,
i.earth-asia {
    --fa: "\f57e";
}

.fa-globe-asia,
i.globe-asia {
    --fa: "\f57e";
}

.fa-id-card-clip,
i.id-card-clip {
    --fa: "\f47f";
}

.fa-id-card-alt,
i.id-card-alt {
    --fa: "\f47f";
}

.fa-magnifying-glass-plus,
i.magnifying-glass-plus {
    --fa: "\f00e";
}

.fa-search-plus,
i.search-plus {
    --fa: "\f00e";
}

.fa-thumbs-up,
i.thumbs-up {
    --fa: "\f164";
}

.fa-cloud-showers,
i.cloud-showers {
    --fa: "\f73f";
}

.fa-user-clock,
i.user-clock {
    --fa: "\f4fd";
}

.fa-onion,
i.onion {
    --fa: "\e427";
}

.fa-clock-twelve-thirty,
i.clock-twelve-thirty {
    --fa: "\e359";
}

.fa-arrow-down-to-dotted-line,
i.arrow-down-to-dotted-line {
    --fa: "\e095";
}

.fa-hand-dots,
i.hand-dots {
    --fa: "\f461";
}

.fa-allergies,
i.allergies {
    --fa: "\f461";
}

.fa-file-invoice,
i.file-invoice {
    --fa: "\f570";
}

.fa-window-minimize,
i.window-minimize {
    --fa: "\f2d1";
}

.fa-rectangle-wide,
i.rectangle-wide {
    --fa: "\f2fc";
}

.fa-comment-arrow-up,
i.comment-arrow-up {
    --fa: "\e144";
}

.fa-garlic,
i.garlic {
    --fa: "\e40e";
}

.fa-mug-saucer,
i.mug-saucer {
    --fa: "\f0f4";
}

.fa-coffee,
i.coffee {
    --fa: "\f0f4";
}

.fa-brush,
i.brush {
    --fa: "\f55d";
}

.fa-tree-decorated,
i.tree-decorated {
    --fa: "\f7dc";
}

.fa-mask,
i.mask {
    --fa: "\f6fa";
}

.fa-calendar-heart,
i.calendar-heart {
    --fa: "\e0d3";
}

.fa-magnifying-glass-minus,
i.magnifying-glass-minus {
    --fa: "\f010";
}

.fa-search-minus,
i.search-minus {
    --fa: "\f010";
}

.fa-flower,
i.flower {
    --fa: "\f7ff";
}

.fa-arrow-down-from-arc,
i.arrow-down-from-arc {
    --fa: "\e614";
}

.fa-right-left-large,
i.right-left-large {
    --fa: "\e5e1";
}

.fa-ruler-vertical,
i.ruler-vertical {
    --fa: "\f548";
}

.fa-circles-overlap,
i.circles-overlap {
    --fa: "\e600";
}

.fa-user-large,
i.user-large {
    --fa: "\f406";
}

.fa-user-alt,
i.user-alt {
    --fa: "\f406";
}

.fa-starship-freighter,
i.starship-freighter {
    --fa: "\e03a";
}

.fa-train-tram,
i.train-tram {
    --fa: "\e5b4";
}

.fa-bridge-suspension,
i.bridge-suspension {
    --fa: "\e4cd";
}

.fa-trash-check,
i.trash-check {
    --fa: "\e2af";
}

.fa-user-nurse,
i.user-nurse {
    --fa: "\f82f";
}

.fa-boombox,
i.boombox {
    --fa: "\f8a5";
}

.fa-syringe,
i.syringe {
    --fa: "\f48e";
}

.fa-cloud-sun,
i.cloud-sun {
    --fa: "\f6c4";
}

.fa-shield-exclamation,
i.shield-exclamation {
    --fa: "\e247";
}

.fa-stopwatch-20,
i.stopwatch-20 {
    --fa: "\e06f";
}

.fa-square-full,
i.square-full {
    --fa: "\f45c";
}

.fa-grip-dots,
i.grip-dots {
    --fa: "\e410";
}

.fa-comment-exclamation,
i.comment-exclamation {
    --fa: "\f4af";
}

.fa-pen-swirl,
i.pen-swirl {
    --fa: "\e214";
}

.fa-falafel,
i.falafel {
    --fa: "\e40a";
}

.fa-circle-2,
i.circle-2 {
    --fa: "\e0ef";
}

.fa-magnet,
i.magnet {
    --fa: "\f076";
}

.fa-jar,
i.jar {
    --fa: "\e516";
}

.fa-gramophone,
i.gramophone {
    --fa: "\f8bd";
}

.fa-dice-d12,
i.dice-d12 {
    --fa: "\f6ce";
}

.fa-note-sticky,
i.note-sticky {
    --fa: "\f249";
}

.fa-sticky-note,
i.sticky-note {
    --fa: "\f249";
}

.fa-down,
i.down {
    --fa: "\f354";
}

.fa-arrow-alt-down,
i.arrow-alt-down {
    --fa: "\f354";
}

.fa-hundred-points,
i.hundred-points {
    --fa: "\e41c";
}

.fa-100,
i.fa-100 {
    --fa: "\e41c";
}

.fa-paperclip-vertical,
i.paperclip-vertical {
    --fa: "\e3c2";
}

.fa-wind-warning,
i.wind-warning {
    --fa: "\f776";
}

.fa-wind-circle-exclamation,
i.wind-circle-exclamation {
    --fa: "\f776";
}

.fa-location-pin-slash,
i.location-pin-slash {
    --fa: "\f60c";
}

.fa-map-marker-slash,
i.map-marker-slash {
    --fa: "\f60c";
}

.fa-face-sad-sweat,
i.face-sad-sweat {
    --fa: "\e38a";
}

.fa-bug-slash,
i.bug-slash {
    --fa: "\e490";
}

.fa-cupcake,
i.cupcake {
    --fa: "\e402";
}

.fa-light-switch-off,
i.light-switch-off {
    --fa: "\e018";
}

.fa-toggle-large-off,
i.toggle-large-off {
    --fa: "\e5b0";
}

.fa-pen-fancy-slash,
i.pen-fancy-slash {
    --fa: "\e210";
}

.fa-truck-container,
i.truck-container {
    --fa: "\f4dc";
}

.fa-boot,
i.boot {
    --fa: "\f782";
}

.fa-arrow-up-from-water-pump,
i.arrow-up-from-water-pump {
    --fa: "\e4b6";
}

.fa-file-check,
i.file-check {
    --fa: "\f316";
}

.fa-bone,
i.bone {
    --fa: "\f5d7";
}

.fa-cards-blank,
i.cards-blank {
    --fa: "\e4df";
}

.fa-circle-3,
i.circle-3 {
    --fa: "\e0f0";
}

.fa-bench-tree,
i.bench-tree {
    --fa: "\e2e7";
}

.fa-keyboard-brightness-low,
i.keyboard-brightness-low {
    --fa: "\e1c1";
}

.fa-ski-boot-ski,
i.ski-boot-ski {
    --fa: "\e3cd";
}

.fa-brain-circuit,
i.brain-circuit {
    --fa: "\e0c6";
}

.fa-table-cells-row-unlock,
i.table-cells-row-unlock {
    --fa: "\e691";
}

.fa-user-injured,
i.user-injured {
    --fa: "\f728";
}

.fa-block-brick-fire,
i.block-brick-fire {
    --fa: "\e3dc";
}

.fa-firewall,
i.firewall {
    --fa: "\e3dc";
}

.fa-face-sad-tear,
i.face-sad-tear {
    --fa: "\f5b4";
}

.fa-sad-tear,
i.sad-tear {
    --fa: "\f5b4";
}

.fa-plane,
i.plane {
    --fa: "\f072";
}

.fa-tent-arrows-down,
i.tent-arrows-down {
    --fa: "\e581";
}

.fa-exclamation,
i.exclamation {
    --fa: "\21";
}

.fa-arrows-spin,
i.arrows-spin {
    --fa: "\e4bb";
}

.fa-face-smile-relaxed,
i.face-smile-relaxed {
    --fa: "\e392";
}

.fa-comment-xmark,
i.comment-xmark {
    --fa: "\f4b5";
}

.fa-comment-times,
i.comment-times {
    --fa: "\f4b5";
}

.fa-print,
i.print {
    --fa: "\f02f";
}

.fa-turkish-lira-sign,
i.turkish-lira-sign {
    --fa: "\e2bb";
}

.fa-try,
i.try {
    --fa: "\e2bb";
}

.fa-turkish-lira,
i.turkish-lira {
    --fa: "\e2bb";
}

.fa-face-nose-steam,
i.face-nose-steam {
    --fa: "\e382";
}

.fa-circle-waveform-lines,
i.circle-waveform-lines {
    --fa: "\e12d";
}

.fa-waveform-circle,
i.waveform-circle {
    --fa: "\e12d";
}

.fa-dollar-sign,
i.dollar-sign {
    --fa: "\24";
}

.fa-dollar,
i.dollar {
    --fa: "\24";
}

.fa-usd,
i.usd {
    --fa: "\24";
}

.fa-ferris-wheel,
i.ferris-wheel {
    --fa: "\e174";
}

.fa-computer-speaker,
i.computer-speaker {
    --fa: "\f8b2";
}

.fa-skull-cow,
i.skull-cow {
    --fa: "\f8de";
}

.fa-x,
i.x {
    --fa: "\58";
}

.fa-magnifying-glass-dollar,
i.magnifying-glass-dollar {
    --fa: "\f688";
}

.fa-search-dollar,
i.search-dollar {
    --fa: "\f688";
}

.fa-users-gear,
i.users-gear {
    --fa: "\f509";
}

.fa-users-cog,
i.users-cog {
    --fa: "\f509";
}

.fa-person-military-pointing,
i.person-military-pointing {
    --fa: "\e54a";
}

.fa-building-columns,
i.building-columns {
    --fa: "\f19c";
}

.fa-bank,
i.bank {
    --fa: "\f19c";
}

.fa-institution,
i.institution {
    --fa: "\f19c";
}

.fa-museum,
i.museum {
    --fa: "\f19c";
}

.fa-university,
i.university {
    --fa: "\f19c";
}

.fa-circle-t,
i.circle-t {
    --fa: "\e124";
}

.fa-sack,
i.sack {
    --fa: "\f81c";
}

.fa-grid-2,
i.grid-2 {
    --fa: "\e196";
}

.fa-camera-cctv,
i.camera-cctv {
    --fa: "\f8ac";
}

.fa-cctv,
i.cctv {
    --fa: "\f8ac";
}

.fa-umbrella,
i.umbrella {
    --fa: "\f0e9";
}

.fa-trowel,
i.trowel {
    --fa: "\e589";
}

.fa-horizontal-rule,
i.horizontal-rule {
    --fa: "\f86c";
}

.fa-bed-front,
i.bed-front {
    --fa: "\f8f7";
}

.fa-bed-alt,
i.bed-alt {
    --fa: "\f8f7";
}

.fa-d,
i.d {
    --fa: "\44";
}

.fa-stapler,
i.stapler {
    --fa: "\e5af";
}

.fa-masks-theater,
i.masks-theater {
    --fa: "\f630";
}

.fa-theater-masks,
i.theater-masks {
    --fa: "\f630";
}

.fa-file-gif,
i.file-gif {
    --fa: "\e645";
}

.fa-kip-sign,
i.kip-sign {
    --fa: "\e1c4";
}

.fa-face-woozy,
i.face-woozy {
    --fa: "\e3a2";
}

.fa-cloud-question,
i.cloud-question {
    --fa: "\e492";
}

.fa-pineapple,
i.pineapple {
    --fa: "\e31f";
}

.fa-hand-point-left,
i.hand-point-left {
    --fa: "\f0a5";
}

.fa-gallery-thumbnails,
i.gallery-thumbnails {
    --fa: "\e3aa";
}

.fa-circle-j,
i.circle-j {
    --fa: "\e112";
}

.fa-eyes,
i.eyes {
    --fa: "\e367";
}

.fa-handshake-simple,
i.handshake-simple {
    --fa: "\f4c6";
}

.fa-handshake-alt,
i.handshake-alt {
    --fa: "\f4c6";
}

.fa-page-caret-up,
i.page-caret-up {
    --fa: "\e42a";
}

.fa-file-caret-up,
i.file-caret-up {
    --fa: "\e42a";
}

.fa-jet-fighter,
i.jet-fighter {
    --fa: "\f0fb";
}

.fa-fighter-jet,
i.fighter-jet {
    --fa: "\f0fb";
}

.fa-comet,
i.comet {
    --fa: "\e003";
}

.fa-square-share-nodes,
i.square-share-nodes {
    --fa: "\f1e1";
}

.fa-share-alt-square,
i.share-alt-square {
    --fa: "\f1e1";
}

.fa-reflect-vertical,
i.reflect-vertical {
    --fa: "\e665";
}

.fa-shield-keyhole,
i.shield-keyhole {
    --fa: "\e248";
}

.fa-file-mp4,
i.file-mp4 {
    --fa: "\e649";
}

.fa-barcode,
i.barcode {
    --fa: "\f02a";
}

.fa-bulldozer,
i.bulldozer {
    --fa: "\e655";
}

.fa-plus-minus,
i.plus-minus {
    --fa: "\e43c";
}

.fa-square-sliders-vertical,
i.square-sliders-vertical {
    --fa: "\f3f2";
}

.fa-sliders-v-square,
i.sliders-v-square {
    --fa: "\f3f2";
}

.fa-video,
i.video {
    --fa: "\f03d";
}

.fa-video-camera,
i.video-camera {
    --fa: "\f03d";
}

.fa-message-middle,
i.message-middle {
    --fa: "\e1e1";
}

.fa-comment-middle-alt,
i.comment-middle-alt {
    --fa: "\e1e1";
}

.fa-graduation-cap,
i.graduation-cap {
    --fa: "\f19d";
}

.fa-mortar-board,
i.mortar-board {
    --fa: "\f19d";
}

.fa-hand-holding-medical,
i.hand-holding-medical {
    --fa: "\e05c";
}

.fa-person-circle-check,
i.person-circle-check {
    --fa: "\e53e";
}

.fa-square-z,
i.square-z {
    --fa: "\e288";
}

.fa-message-text,
i.message-text {
    --fa: "\e1e6";
}

.fa-comment-alt-text,
i.comment-alt-text {
    --fa: "\e1e6";
}

.fa-turn-up,
i.turn-up {
    --fa: "\f3bf";
}

.fa-level-up-alt,
i.level-up-alt {
    --fa: "\f3bf";
}

/* Font Awesome 6 Brands */

.fa-monero,
i.monero {
    --fa: "\f3d0";
}

.fa-hooli,
i.hooli {
    --fa: "\f427";
}

.fa-yelp,
i.yelp {
    --fa: "\f1e9";
}

.fa-cc-visa,
i.cc-visa {
    --fa: "\f1f0";
}

.fa-lastfm,
i.lastfm {
    --fa: "\f202";
}

.fa-shopware,
i.shopware {
    --fa: "\f5b5";
}

.fa-creative-commons-nc,
i.creative-commons-nc {
    --fa: "\f4e8";
}

.fa-aws,
i.aws {
    --fa: "\f375";
}

.fa-redhat,
i.redhat {
    --fa: "\f7bc";
}

.fa-yoast,
i.yoast {
    --fa: "\f2b1";
}

.fa-cloudflare,
i.cloudflare {
    --fa: "\e07d";
}

.fa-ups,
i.ups {
    --fa: "\f7e0";
}

.fa-pixiv,
i.pixiv {
    --fa: "\e640";
}

.fa-wpexplorer,
i.wpexplorer {
    --fa: "\f2de";
}

.fa-dyalog,
i.dyalog {
    --fa: "\f399";
}

.fa-bity,
i.bity {
    --fa: "\f37a";
}

.fa-stackpath,
i.stackpath {
    --fa: "\f842";
}

.fa-buysellads,
i.buysellads {
    --fa: "\f20d";
}

.fa-first-order,
i.first-order {
    --fa: "\f2b0";
}

.fa-modx,
i.modx {
    --fa: "\f285";
}

.fa-guilded,
i.guilded {
    --fa: "\e07e";
}

.fa-vnv,
i.vnv {
    --fa: "\f40b";
}

.fa-square-js,
i.square-js {
    --fa: "\f3b9";
}

.fa-js-square,
i.js-square {
    --fa: "\f3b9";
}

.fa-microsoft,
i.microsoft {
    --fa: "\f3ca";
}

.fa-qq,
i.qq {
    --fa: "\f1d6";
}

.fa-orcid,
i.orcid {
    --fa: "\f8d2";
}

.fa-java,
i.java {
    --fa: "\f4e4";
}

.fa-invision,
i.invision {
    --fa: "\f7b0";
}

.fa-creative-commons-pd-alt,
i.creative-commons-pd-alt {
    --fa: "\f4ed";
}

.fa-centercode,
i.centercode {
    --fa: "\f380";
}

.fa-glide-g,
i.glide-g {
    --fa: "\f2a6";
}

.fa-drupal,
i.drupal {
    --fa: "\f1a9";
}

.fa-jxl,
i.jxl {
    --fa: "\e67b";
}

.fa-dart-lang,
i.dart-lang {
    --fa: "\e693";
}

.fa-hire-a-helper,
i.hire-a-helper {
    --fa: "\f3b0";
}

.fa-creative-commons-by,
i.creative-commons-by {
    --fa: "\f4e7";
}

.fa-unity,
i.unity {
    --fa: "\e049";
}

.fa-whmcs,
i.whmcs {
    --fa: "\f40d";
}

.fa-rocketchat,
i.rocketchat {
    --fa: "\f3e8";
}

.fa-vk,
i.vk {
    --fa: "\f189";
}

.fa-untappd,
i.untappd {
    --fa: "\f405";
}

.fa-mailchimp,
i.mailchimp {
    --fa: "\f59e";
}

.fa-css3-alt,
i.css3-alt {
    --fa: "\f38b";
}

.fa-square-reddit,
i.square-reddit {
    --fa: "\f1a2";
}

.fa-reddit-square,
i.reddit-square {
    --fa: "\f1a2";
}

.fa-vimeo-v,
i.vimeo-v {
    --fa: "\f27d";
}

.fa-contao,
i.contao {
    --fa: "\f26d";
}

.fa-square-font-awesome,
i.square-font-awesome {
    --fa: "\e5ad";
}

.fa-deskpro,
i.deskpro {
    --fa: "\f38f";
}

.fa-brave,
i.brave {
    --fa: "\e63c";
}

.fa-sistrix,
i.sistrix {
    --fa: "\f3ee";
}

.fa-square-instagram,
i.square-instagram {
    --fa: "\e055";
}

.fa-instagram-square,
i.instagram-square {
    --fa: "\e055";
}

.fa-battle-net,
i.battle-net {
    --fa: "\f835";
}

.fa-the-red-yeti,
i.the-red-yeti {
    --fa: "\f69d";
}

.fa-square-hacker-news,
i.square-hacker-news {
    --fa: "\f3af";
}

.fa-hacker-news-square,
i.hacker-news-square {
    --fa: "\f3af";
}

.fa-edge,
i.edge {
    --fa: "\f282";
}

.fa-threads,
i.threads {
    --fa: "\e618";
}

.fa-napster,
i.napster {
    --fa: "\f3d2";
}

.fa-square-snapchat,
i.square-snapchat {
    --fa: "\f2ad";
}

.fa-snapchat-square,
i.snapchat-square {
    --fa: "\f2ad";
}

.fa-google-plus-g,
i.google-plus-g {
    --fa: "\f0d5";
}

.fa-artstation,
i.artstation {
    --fa: "\f77a";
}

.fa-markdown,
i.markdown {
    --fa: "\f60f";
}

.fa-sourcetree,
i.sourcetree {
    --fa: "\f7d3";
}

.fa-google-plus,
i.google-plus {
    --fa: "\f2b3";
}

.fa-diaspora,
i.diaspora {
    --fa: "\f791";
}

.fa-foursquare,
i.foursquare {
    --fa: "\f180";
}

.fa-stack-overflow,
i.stack-overflow {
    --fa: "\f16c";
}

.fa-github-alt,
i.github-alt {
    --fa: "\f113";
}

.fa-phoenix-squadron,
i.phoenix-squadron {
    --fa: "\f511";
}

.fa-pagelines,
i.pagelines {
    --fa: "\f18c";
}

.fa-algolia,
i.algolia {
    --fa: "\f36c";
}

.fa-red-river,
i.red-river {
    --fa: "\f3e3";
}

.fa-creative-commons-sa,
i.creative-commons-sa {
    --fa: "\f4ef";
}

.fa-safari,
i.safari {
    --fa: "\f267";
}

.fa-google,
i.google {
    --fa: "\f1a0";
}

.fa-square-font-awesome-stroke,
i.square-font-awesome-stroke {
    --fa: "\f35c";
}

.fa-font-awesome-alt,
i.font-awesome-alt {
    --fa: "\f35c";
}

.fa-atlassian,
i.atlassian {
    --fa: "\f77b";
}

.fa-linkedin-in,
i.linkedin-in {
    --fa: "\f0e1";
}

.fa-digital-ocean,
i.digital-ocean {
    --fa: "\f391";
}

.fa-nimblr,
i.nimblr {
    --fa: "\f5a8";
}

.fa-chromecast,
i.chromecast {
    --fa: "\f838";
}

.fa-evernote,
i.evernote {
    --fa: "\f839";
}

.fa-hacker-news,
i.hacker-news {
    --fa: "\f1d4";
}

.fa-creative-commons-sampling,
i.creative-commons-sampling {
    --fa: "\f4f0";
}

.fa-adversal,
i.adversal {
    --fa: "\f36a";
}

.fa-creative-commons,
i.creative-commons {
    --fa: "\f25e";
}

.fa-watchman-monitoring,
i.watchman-monitoring {
    --fa: "\e087";
}

.fa-fonticons,
i.fonticons {
    --fa: "\f280";
}

.fa-weixin,
i.weixin {
    --fa: "\f1d7";
}

.fa-shirtsinbulk,
i.shirtsinbulk {
    --fa: "\f214";
}

.fa-codepen,
i.codepen {
    --fa: "\f1cb";
}

.fa-git-alt,
i.git-alt {
    --fa: "\f841";
}

.fa-lyft,
i.lyft {
    --fa: "\f3c3";
}

.fa-rev,
i.rev {
    --fa: "\f5b2";
}

.fa-windows,
i.windows {
    --fa: "\f17a";
}

.fa-wizards-of-the-coast,
i.wizards-of-the-coast {
    --fa: "\f730";
}

.fa-square-viadeo,
i.square-viadeo {
    --fa: "\f2aa";
}

.fa-viadeo-square,
i.viadeo-square {
    --fa: "\f2aa";
}

.fa-meetup,
i.meetup {
    --fa: "\f2e0";
}

.fa-centos,
i.centos {
    --fa: "\f789";
}

.fa-adn,
i.adn {
    --fa: "\f170";
}

.fa-cloudsmith,
i.cloudsmith {
    --fa: "\f384";
}

.fa-opensuse,
i.opensuse {
    --fa: "\e62b";
}

.fa-pied-piper-alt,
i.pied-piper-alt {
    --fa: "\f1a8";
}

.fa-square-dribbble,
i.square-dribbble {
    --fa: "\f397";
}

.fa-dribbble-square,
i.dribbble-square {
    --fa: "\f397";
}

.fa-codiepie,
i.codiepie {
    --fa: "\f284";
}

.fa-node,
i.node {
    --fa: "\f419";
}

.fa-mix,
i.mix {
    --fa: "\f3cb";
}

.fa-steam,
i.steam {
    --fa: "\f1b6";
}

.fa-cc-apple-pay,
i.cc-apple-pay {
    --fa: "\f416";
}

.fa-scribd,
i.scribd {
    --fa: "\f28a";
}

.fa-debian,
i.debian {
    --fa: "\e60b";
}

.fa-openid,
i.openid {
    --fa: "\f19b";
}

.fa-instalod,
i.instalod {
    --fa: "\e081";
}

.fa-expeditedssl,
i.expeditedssl {
    --fa: "\f23e";
}

.fa-sellcast,
i.sellcast {
    --fa: "\f2da";
}

.fa-square-twitter,
i.square-twitter {
    --fa: "\f081";
}

.fa-twitter-square,
i.twitter-square {
    --fa: "\f081";
}

.fa-r-project,
i.r-project {
    --fa: "\f4f7";
}

.fa-delicious,
i.delicious {
    --fa: "\f1a5";
}

.fa-freebsd,
i.freebsd {
    --fa: "\f3a4";
}

.fa-vuejs,
i.vuejs {
    --fa: "\f41f";
}

.fa-accusoft,
i.accusoft {
    --fa: "\f369";
}

.fa-ioxhost,
i.ioxhost {
    --fa: "\f208";
}

.fa-fonticons-fi,
i.fonticons-fi {
    --fa: "\f3a2";
}

.fa-app-store,
i.app-store {
    --fa: "\f36f";
}

.fa-cc-mastercard,
i.cc-mastercard {
    --fa: "\f1f1";
}

.fa-itunes-note,
i.itunes-note {
    --fa: "\f3b5";
}

.fa-golang,
i.golang {
    --fa: "\e40f";
}

.fa-kickstarter,
i.kickstarter {
    --fa: "\f3bb";
}

.fa-square-kickstarter,
i.square-kickstarter {
    --fa: "\f3bb";
}

.fa-grav,
i.grav {
    --fa: "\f2d6";
}

.fa-weibo,
i.weibo {
    --fa: "\f18a";
}

.fa-uncharted,
i.uncharted {
    --fa: "\e084";
}

.fa-firstdraft,
i.firstdraft {
    --fa: "\f3a1";
}

.fa-square-youtube,
i.square-youtube {
    --fa: "\f431";
}

.fa-youtube-square,
i.youtube-square {
    --fa: "\f431";
}

.fa-wikipedia-w,
i.wikipedia-w {
    --fa: "\f266";
}

.fa-wpressr,
i.wpressr {
    --fa: "\f3e4";
}

.fa-rendact,
i.rendact {
    --fa: "\f3e4";
}

.fa-angellist,
i.angellist {
    --fa: "\f209";
}

.fa-galactic-republic,
i.galactic-republic {
    --fa: "\f50c";
}

.fa-nfc-directional,
i.nfc-directional {
    --fa: "\e530";
}

.fa-skype,
i.skype {
    --fa: "\f17e";
}

.fa-joget,
i.joget {
    --fa: "\f3b7";
}

.fa-fedora,
i.fedora {
    --fa: "\f798";
}

.fa-stripe-s,
i.stripe-s {
    --fa: "\f42a";
}

.fa-meta,
i.meta {
    --fa: "\e49b";
}

.fa-laravel,
i.laravel {
    --fa: "\f3bd";
}

.fa-hotjar,
i.hotjar {
    --fa: "\f3b1";
}

.fa-bluetooth-b,
i.bluetooth-b {
    --fa: "\f294";
}

.fa-square-letterboxd,
i.square-letterboxd {
    --fa: "\e62e";
}

.fa-sticker-mule,
i.sticker-mule {
    --fa: "\f3f7";
}

.fa-creative-commons-zero,
i.creative-commons-zero {
    --fa: "\f4f3";
}

.fa-hips,
i.hips {
    --fa: "\f452";
}

.fa-behance,
i.behance {
    --fa: "\f1b4";
}

.fa-reddit,
i.reddit {
    --fa: "\f1a1";
}

.fa-discord,
i.discord {
    --fa: "\f392";
}

.fa-chrome,
i.chrome {
    --fa: "\f268";
}

.fa-app-store-ios,
i.app-store-ios {
    --fa: "\f370";
}

.fa-cc-discover,
i.cc-discover {
    --fa: "\f1f2";
}

.fa-wpbeginner,
i.wpbeginner {
    --fa: "\f297";
}

.fa-confluence,
i.confluence {
    --fa: "\f78d";
}

.fa-shoelace,
i.shoelace {
    --fa: "\e60c";
}

.fa-mdb,
i.mdb {
    --fa: "\f8ca";
}

.fa-dochub,
i.dochub {
    --fa: "\f394";
}

.fa-accessible-icon,
i.accessible-icon {
    --fa: "\f368";
}

.fa-ebay,
i.ebay {
    --fa: "\f4f4";
}

.fa-amazon,
i.amazon {
    --fa: "\f270";
}

.fa-unsplash,
i.unsplash {
    --fa: "\e07c";
}

.fa-yarn,
i.yarn {
    --fa: "\f7e3";
}

.fa-square-steam,
i.square-steam {
    --fa: "\f1b7";
}

.fa-steam-square,
i.steam-square {
    --fa: "\f1b7";
}

.fa-500px,
i.fa-500px {
    --fa: "\f26e";
}

.fa-square-vimeo,
i.square-vimeo {
    --fa: "\f194";
}

.fa-vimeo-square,
i.vimeo-square {
    --fa: "\f194";
}

.fa-asymmetrik,
i.asymmetrik {
    --fa: "\f372";
}

.fa-font-awesome,
i.font-awesome {
    --fa: "\f2b4";
}

.fa-font-awesome-flag,
i.font-awesome-flag {
    --fa: "\f2b4";
}

.fa-font-awesome-logo-full,
i.font-awesome-logo-full {
    --fa: "\f2b4";
}

.fa-gratipay,
i.gratipay {
    --fa: "\f184";
}

.fa-apple,
i.apple {
    --fa: "\f179";
}

.fa-hive,
i.hive {
    --fa: "\e07f";
}

.fa-gitkraken,
i.gitkraken {
    --fa: "\f3a6";
}

.fa-keybase,
i.keybase {
    --fa: "\f4f5";
}

.fa-apple-pay,
i.apple-pay {
    --fa: "\f415";
}

.fa-padlet,
i.padlet {
    --fa: "\e4a0";
}

.fa-amazon-pay,
i.amazon-pay {
    --fa: "\f42c";
}

.fa-square-github,
i.square-github {
    --fa: "\f092";
}

.fa-github-square,
i.github-square {
    --fa: "\f092";
}

.fa-stumbleupon,
i.stumbleupon {
    --fa: "\f1a4";
}

.fa-fedex,
i.fedex {
    --fa: "\f797";
}

.fa-phoenix-framework,
i.phoenix-framework {
    --fa: "\f3dc";
}

.fa-shopify,
i.shopify {
    --fa: "\e057";
}

.fa-neos,
i.neos {
    --fa: "\f612";
}

.fa-square-threads,
i.square-threads {
    --fa: "\e619";
}

.fa-hackerrank,
i.hackerrank {
    --fa: "\f5f7";
}

.fa-researchgate,
i.researchgate {
    --fa: "\f4f8";
}

.fa-swift,
i.swift {
    --fa: "\f8e1";
}

.fa-angular,
i.angular {
    --fa: "\f420";
}

.fa-speakap,
i.speakap {
    --fa: "\f3f3";
}

.fa-angrycreative,
i.angrycreative {
    --fa: "\f36e";
}

.fa-y-combinator,
i.y-combinator {
    --fa: "\f23b";
}

.fa-empire,
i.empire {
    --fa: "\f1d1";
}

.fa-envira,
i.envira {
    --fa: "\f299";
}

.fa-google-scholar,
i.google-scholar {
    --fa: "\e63b";
}

.fa-square-gitlab,
i.square-gitlab {
    --fa: "\e5ae";
}

.fa-gitlab-square,
i.gitlab-square {
    --fa: "\e5ae";
}

.fa-studiovinari,
i.studiovinari {
    --fa: "\f3f8";
}

.fa-pied-piper,
i.pied-piper {
    --fa: "\f2ae";
}

.fa-wordpress,
i.wordpress {
    --fa: "\f19a";
}

.fa-product-hunt,
i.product-hunt {
    --fa: "\f288";
}

.fa-firefox,
i.firefox {
    --fa: "\f269";
}

.fa-linode,
i.linode {
    --fa: "\f2b8";
}

.fa-goodreads,
i.goodreads {
    --fa: "\f3a8";
}

.fa-square-odnoklassniki,
i.square-odnoklassniki {
    --fa: "\f264";
}

.fa-odnoklassniki-square,
i.odnoklassniki-square {
    --fa: "\f264";
}

.fa-jsfiddle,
i.jsfiddle {
    --fa: "\f1cc";
}

.fa-sith,
i.sith {
    --fa: "\f512";
}

.fa-themeisle,
i.themeisle {
    --fa: "\f2b2";
}

.fa-page4,
i.page4 {
    --fa: "\f3d7";
}

.fa-hashnode,
i.hashnode {
    --fa: "\e499";
}

.fa-react,
i.react {
    --fa: "\f41b";
}

.fa-cc-paypal,
i.cc-paypal {
    --fa: "\f1f4";
}

.fa-squarespace,
i.squarespace {
    --fa: "\f5be";
}

.fa-cc-stripe,
i.cc-stripe {
    --fa: "\f1f5";
}

.fa-creative-commons-share,
i.creative-commons-share {
    --fa: "\f4f2";
}

.fa-bitcoin,
i.bitcoin {
    --fa: "\f379";
}

.fa-keycdn,
i.keycdn {
    --fa: "\f3ba";
}

.fa-opera,
i.opera {
    --fa: "\f26a";
}

.fa-itch-io,
i.itch-io {
    --fa: "\f83a";
}

.fa-umbraco,
i.umbraco {
    --fa: "\f8e8";
}

.fa-galactic-senate,
i.galactic-senate {
    --fa: "\f50d";
}

.fa-ubuntu,
i.ubuntu {
    --fa: "\f7df";
}

.fa-draft2digital,
i.draft2digital {
    --fa: "\f396";
}

.fa-stripe,
i.stripe {
    --fa: "\f429";
}

.fa-houzz,
i.houzz {
    --fa: "\f27c";
}

.fa-gg,
i.gg {
    --fa: "\f260";
}

.fa-dhl,
i.dhl {
    --fa: "\f790";
}

.fa-square-pinterest,
i.square-pinterest {
    --fa: "\f0d3";
}

.fa-pinterest-square,
i.pinterest-square {
    --fa: "\f0d3";
}

.fa-xing,
i.xing {
    --fa: "\f168";
}

.fa-blackberry,
i.blackberry {
    --fa: "\f37b";
}

.fa-creative-commons-pd,
i.creative-commons-pd {
    --fa: "\f4ec";
}

.fa-playstation,
i.playstation {
    --fa: "\f3df";
}

.fa-quinscape,
i.quinscape {
    --fa: "\f459";
}

.fa-less,
i.less {
    --fa: "\f41d";
}

.fa-blogger-b,
i.blogger-b {
    --fa: "\f37d";
}

.fa-opencart,
i.opencart {
    --fa: "\f23d";
}

.fa-vine,
i.vine {
    --fa: "\f1ca";
}

.fa-signal-messenger,
i.signal-messenger {
    --fa: "\e663";
}

.fa-paypal,
i.paypal {
    --fa: "\f1ed";
}

.fa-gitlab,
i.gitlab {
    --fa: "\f296";
}

.fa-typo3,
i.typo3 {
    --fa: "\f42b";
}

.fa-reddit-alien,
i.reddit-alien {
    --fa: "\f281";
}

.fa-yahoo,
i.yahoo {
    --fa: "\f19e";
}

.fa-dailymotion,
i.dailymotion {
    --fa: "\e052";
}

.fa-affiliatetheme,
i.affiliatetheme {
    --fa: "\f36b";
}

.fa-pied-piper-pp,
i.pied-piper-pp {
    --fa: "\f1a7";
}

.fa-bootstrap,
i.bootstrap {
    --fa: "\f836";
}

.fa-odnoklassniki,
i.odnoklassniki {
    --fa: "\f263";
}

.fa-nfc-symbol,
i.nfc-symbol {
    --fa: "\e531";
}

.fa-mintbit,
i.mintbit {
    --fa: "\e62f";
}

.fa-ethereum,
i.ethereum {
    --fa: "\f42e";
}

.fa-speaker-deck,
i.speaker-deck {
    --fa: "\f83c";
}

.fa-creative-commons-nc-eu,
i.creative-commons-nc-eu {
    --fa: "\f4e9";
}

.fa-patreon,
i.patreon {
    --fa: "\f3d9";
}

.fa-avianex,
i.avianex {
    --fa: "\f374";
}

.fa-ello,
i.ello {
    --fa: "\f5f1";
}

.fa-gofore,
i.gofore {
    --fa: "\f3a7";
}

.fa-bimobject,
i.bimobject {
    --fa: "\f378";
}

.fa-brave-reverse,
i.brave-reverse {
    --fa: "\e63d";
}

.fa-facebook-f,
i.facebook-f {
    --fa: "\f39e";
}

.fa-square-google-plus,
i.square-google-plus {
    --fa: "\f0d4";
}

.fa-google-plus-square,
i.google-plus-square {
    --fa: "\f0d4";
}

.fa-web-awesome,
i.web-awesome {
    --fa: "\e682";
}

.fa-mandalorian,
i.mandalorian {
    --fa: "\f50f";
}

.fa-first-order-alt,
i.first-order-alt {
    --fa: "\f50a";
}

.fa-osi,
i.osi {
    --fa: "\f41a";
}

.fa-google-wallet,
i.google-wallet {
    --fa: "\f1ee";
}

.fa-d-and-d-beyond,
i.d-and-d-beyond {
    --fa: "\f6ca";
}

.fa-periscope,
i.periscope {
    --fa: "\f3da";
}

.fa-fulcrum,
i.fulcrum {
    --fa: "\f50b";
}

.fa-cloudscale,
i.cloudscale {
    --fa: "\f383";
}

.fa-forumbee,
i.forumbee {
    --fa: "\f211";
}

.fa-mizuni,
i.mizuni {
    --fa: "\f3cc";
}

.fa-schlix,
i.schlix {
    --fa: "\f3ea";
}

.fa-square-xing,
i.square-xing {
    --fa: "\f169";
}

.fa-xing-square,
i.xing-square {
    --fa: "\f169";
}

.fa-bandcamp,
i.bandcamp {
    --fa: "\f2d5";
}

.fa-wpforms,
i.wpforms {
    --fa: "\f298";
}

.fa-cloudversify,
i.cloudversify {
    --fa: "\f385";
}

.fa-usps,
i.usps {
    --fa: "\f7e1";
}

.fa-megaport,
i.megaport {
    --fa: "\f5a3";
}

.fa-magento,
i.magento {
    --fa: "\f3c4";
}

.fa-spotify,
i.spotify {
    --fa: "\f1bc";
}

.fa-optin-monster,
i.optin-monster {
    --fa: "\f23c";
}

.fa-fly,
i.fly {
    --fa: "\f417";
}

.fa-aviato,
i.aviato {
    --fa: "\f421";
}

.fa-itunes,
i.itunes {
    --fa: "\f3b4";
}

.fa-cuttlefish,
i.cuttlefish {
    --fa: "\f38c";
}

.fa-blogger,
i.blogger {
    --fa: "\f37c";
}

.fa-flickr,
i.flickr {
    --fa: "\f16e";
}

.fa-viber,
i.viber {
    --fa: "\f409";
}

.fa-soundcloud,
i.soundcloud {
    --fa: "\f1be";
}

.fa-digg,
i.digg {
    --fa: "\f1a6";
}

.fa-tencent-weibo,
i.tencent-weibo {
    --fa: "\f1d5";
}

.fa-letterboxd,
i.letterboxd {
    --fa: "\e62d";
}

.fa-symfony,
i.symfony {
    --fa: "\f83d";
}

.fa-maxcdn,
i.maxcdn {
    --fa: "\f136";
}

.fa-etsy,
i.etsy {
    --fa: "\f2d7";
}

.fa-facebook-messenger,
i.facebook-messenger {
    --fa: "\f39f";
}

.fa-audible,
i.audible {
    --fa: "\f373";
}

.fa-think-peaks,
i.think-peaks {
    --fa: "\f731";
}

.fa-bilibili,
i.bilibili {
    --fa: "\e3d9";
}

.fa-erlang,
i.erlang {
    --fa: "\f39d";
}

.fa-x-twitter,
i.x-twitter {
    --fa: "\e61b";
}

.fa-cotton-bureau,
i.cotton-bureau {
    --fa: "\f89e";
}

.fa-dashcube,
i.dashcube {
    --fa: "\f210";
}

.fa-42-group,
i.fa-42-group {
    --fa: "\e080";
}

.fa-innosoft,
i.innosoft {
    --fa: "\e080";
}

.fa-stack-exchange,
i.stack-exchange {
    --fa: "\f18d";
}

.fa-elementor,
i.elementor {
    --fa: "\f430";
}

.fa-square-pied-piper,
i.square-pied-piper {
    --fa: "\e01e";
}

.fa-pied-piper-square,
i.pied-piper-square {
    --fa: "\e01e";
}

.fa-creative-commons-nd,
i.creative-commons-nd {
    --fa: "\f4eb";
}

.fa-palfed,
i.palfed {
    --fa: "\f3d8";
}

.fa-superpowers,
i.superpowers {
    --fa: "\f2dd";
}

.fa-resolving,
i.resolving {
    --fa: "\f3e7";
}

.fa-xbox,
i.xbox {
    --fa: "\f412";
}

.fa-square-web-awesome-stroke,
i.square-web-awesome-stroke {
    --fa: "\e684";
}

.fa-searchengin,
i.searchengin {
    --fa: "\f3eb";
}

.fa-tiktok,
i.tiktok {
    --fa: "\e07b";
}

.fa-square-facebook,
i.square-facebook {
    --fa: "\f082";
}

.fa-facebook-square,
i.facebook-square {
    --fa: "\f082";
}

.fa-renren,
i.renren {
    --fa: "\f18b";
}

.fa-linux,
i.linux {
    --fa: "\f17c";
}

.fa-glide,
i.glide {
    --fa: "\f2a5";
}

.fa-linkedin,
i.linkedin {
    --fa: "\f08c";
}

.fa-hubspot,
i.hubspot {
    --fa: "\f3b2";
}

.fa-deploydog,
i.deploydog {
    --fa: "\f38e";
}

.fa-twitch,
i.twitch {
    --fa: "\f1e8";
}

.fa-flutter,
i.flutter {
    --fa: "\e694";
}

.fa-ravelry,
i.ravelry {
    --fa: "\f2d9";
}

.fa-mixer,
i.mixer {
    --fa: "\e056";
}

.fa-square-lastfm,
i.square-lastfm {
    --fa: "\f203";
}

.fa-lastfm-square,
i.lastfm-square {
    --fa: "\f203";
}

.fa-vimeo,
i.vimeo {
    --fa: "\f40a";
}

.fa-mendeley,
i.mendeley {
    --fa: "\f7b3";
}

.fa-uniregistry,
i.uniregistry {
    --fa: "\f404";
}

.fa-figma,
i.figma {
    --fa: "\f799";
}

.fa-creative-commons-remix,
i.creative-commons-remix {
    --fa: "\f4ee";
}

.fa-cc-amazon-pay,
i.cc-amazon-pay {
    --fa: "\f42d";
}

.fa-dropbox,
i.dropbox {
    --fa: "\f16b";
}

.fa-instagram,
i.instagram {
    --fa: "\f16d";
}

.fa-cmplid,
i.cmplid {
    --fa: "\e360";
}

.fa-upwork,
i.upwork {
    --fa: "\e641";
}

.fa-facebook,
i.facebook {
    --fa: "\f09a";
}

.fa-gripfire,
i.gripfire {
    --fa: "\f3ac";
}

.fa-jedi-order,
i.jedi-order {
    --fa: "\f50e";
}

.fa-uikit,
i.uikit {
    --fa: "\f403";
}

.fa-fort-awesome-alt,
i.fort-awesome-alt {
    --fa: "\f3a3";
}

.fa-phabricator,
i.phabricator {
    --fa: "\f3db";
}

.fa-ussunnah,
i.ussunnah {
    --fa: "\f407";
}

.fa-earlybirds,
i.earlybirds {
    --fa: "\f39a";
}

.fa-trade-federation,
i.trade-federation {
    --fa: "\f513";
}

.fa-autoprefixer,
i.autoprefixer {
    --fa: "\f41c";
}

.fa-whatsapp,
i.whatsapp {
    --fa: "\f232";
}

.fa-square-upwork,
i.square-upwork {
    --fa: "\e67c";
}

.fa-slideshare,
i.slideshare {
    --fa: "\f1e7";
}

.fa-google-play,
i.google-play {
    --fa: "\f3ab";
}

.fa-viadeo,
i.viadeo {
    --fa: "\f2a9";
}

.fa-line,
i.line {
    --fa: "\f3c0";
}

.fa-google-drive,
i.google-drive {
    --fa: "\f3aa";
}

.fa-servicestack,
i.servicestack {
    --fa: "\f3ec";
}

.fa-simplybuilt,
i.simplybuilt {
    --fa: "\f215";
}

.fa-bitbucket,
i.bitbucket {
    --fa: "\f171";
}

.fa-imdb,
i.imdb {
    --fa: "\f2d8";
}

.fa-deezer,
i.deezer {
    --fa: "\e077";
}

.fa-raspberry-pi,
i.raspberry-pi {
    --fa: "\f7bb";
}

.fa-jira,
i.jira {
    --fa: "\f7b1";
}

.fa-docker,
i.docker {
    --fa: "\f395";
}

.fa-screenpal,
i.screenpal {
    --fa: "\e570";
}

.fa-bluetooth,
i.bluetooth {
    --fa: "\f293";
}

.fa-gitter,
i.gitter {
    --fa: "\f426";
}

.fa-d-and-d,
i.d-and-d {
    --fa: "\f38d";
}

.fa-microblog,
i.microblog {
    --fa: "\e01a";
}

.fa-cc-diners-club,
i.cc-diners-club {
    --fa: "\f24c";
}

.fa-gg-circle,
i.gg-circle {
    --fa: "\f261";
}

.fa-pied-piper-hat,
i.pied-piper-hat {
    --fa: "\f4e5";
}

.fa-kickstarter-k,
i.kickstarter-k {
    --fa: "\f3bc";
}

.fa-yandex,
i.yandex {
    --fa: "\f413";
}

.fa-readme,
i.readme {
    --fa: "\f4d5";
}

.fa-html5,
i.html5 {
    --fa: "\f13b";
}

.fa-sellsy,
i.sellsy {
    --fa: "\f213";
}

.fa-square-web-awesome,
i.square-web-awesome {
    --fa: "\e683";
}

.fa-sass,
i.sass {
    --fa: "\f41e";
}

.fa-wirsindhandwerk,
i.wirsindhandwerk {
    --fa: "\e2d0";
}

.fa-wsh,
i.wsh {
    --fa: "\e2d0";
}

.fa-buromobelexperte,
i.buromobelexperte {
    --fa: "\f37f";
}

.fa-salesforce,
i.salesforce {
    --fa: "\f83b";
}

.fa-octopus-deploy,
i.octopus-deploy {
    --fa: "\e082";
}

.fa-medapps,
i.medapps {
    --fa: "\f3c6";
}

.fa-ns8,
i.ns8 {
    --fa: "\f3d5";
}

.fa-pinterest-p,
i.pinterest-p {
    --fa: "\f231";
}

.fa-apper,
i.apper {
    --fa: "\f371";
}

.fa-fort-awesome,
i.fort-awesome {
    --fa: "\f286";
}

.fa-waze,
i.waze {
    --fa: "\f83f";
}

.fa-bluesky,
i.bluesky {
    --fa: "\e671";
}

.fa-cc-jcb,
i.cc-jcb {
    --fa: "\f24b";
}

.fa-snapchat,
i.snapchat {
    --fa: "\f2ab";
}

.fa-snapchat-ghost,
i.snapchat-ghost {
    --fa: "\f2ab";
}

.fa-fantasy-flight-games,
i.fantasy-flight-games {
    --fa: "\f6dc";
}

.fa-rust,
i.rust {
    --fa: "\e07a";
}

.fa-wix,
i.wix {
    --fa: "\f5cf";
}

.fa-square-behance,
i.square-behance {
    --fa: "\f1b5";
}

.fa-behance-square,
i.behance-square {
    --fa: "\f1b5";
}

.fa-supple,
i.supple {
    --fa: "\f3f9";
}

.fa-webflow,
i.webflow {
    --fa: "\e65c";
}

.fa-rebel,
i.rebel {
    --fa: "\f1d0";
}

.fa-css3,
i.css3 {
    --fa: "\f13c";
}

.fa-staylinked,
i.staylinked {
    --fa: "\f3f5";
}

.fa-kaggle,
i.kaggle {
    --fa: "\f5fa";
}

.fa-space-awesome,
i.space-awesome {
    --fa: "\e5ac";
}

.fa-deviantart,
i.deviantart {
    --fa: "\f1bd";
}

.fa-cpanel,
i.cpanel {
    --fa: "\f388";
}

.fa-goodreads-g,
i.goodreads-g {
    --fa: "\f3a9";
}

.fa-square-git,
i.square-git {
    --fa: "\f1d2";
}

.fa-git-square,
i.git-square {
    --fa: "\f1d2";
}

.fa-square-tumblr,
i.square-tumblr {
    --fa: "\f174";
}

.fa-tumblr-square,
i.tumblr-square {
    --fa: "\f174";
}

.fa-trello,
i.trello {
    --fa: "\f181";
}

.fa-creative-commons-nc-jp,
i.creative-commons-nc-jp {
    --fa: "\f4ea";
}

.fa-get-pocket,
i.get-pocket {
    --fa: "\f265";
}

.fa-perbyte,
i.perbyte {
    --fa: "\e083";
}

.fa-grunt,
i.grunt {
    --fa: "\f3ad";
}

.fa-weebly,
i.weebly {
    --fa: "\f5cc";
}

.fa-connectdevelop,
i.connectdevelop {
    --fa: "\f20e";
}

.fa-leanpub,
i.leanpub {
    --fa: "\f212";
}

.fa-black-tie,
i.black-tie {
    --fa: "\f27e";
}

.fa-themeco,
i.themeco {
    --fa: "\f5c6";
}

.fa-python,
i.python {
    --fa: "\f3e2";
}

.fa-android,
i.android {
    --fa: "\f17b";
}

.fa-bots,
i.bots {
    --fa: "\e340";
}

.fa-free-code-camp,
i.free-code-camp {
    --fa: "\f2c5";
}

.fa-hornbill,
i.hornbill {
    --fa: "\f592";
}

.fa-js,
i.js {
    --fa: "\f3b8";
}

.fa-ideal,
i.ideal {
    --fa: "\e013";
}

.fa-git,
i.git {
    --fa: "\f1d3";
}

.fa-dev,
i.dev {
    --fa: "\f6cc";
}

.fa-sketch,
i.sketch {
    --fa: "\f7c6";
}

.fa-yandex-international,
i.yandex-international {
    --fa: "\f414";
}

.fa-cc-amex,
i.cc-amex {
    --fa: "\f1f3";
}

.fa-uber,
i.uber {
    --fa: "\f402";
}

.fa-github,
i.github {
    --fa: "\f09b";
}

.fa-php,
i.php {
    --fa: "\f457";
}

.fa-alipay,
i.alipay {
    --fa: "\f642";
}

.fa-youtube,
i.youtube {
    --fa: "\f167";
}

.fa-skyatlas,
i.skyatlas {
    --fa: "\f216";
}

.fa-firefox-browser,
i.firefox-browser {
    --fa: "\e007";
}

.fa-replyd,
i.replyd {
    --fa: "\f3e6";
}

.fa-suse,
i.suse {
    --fa: "\f7d6";
}

.fa-jenkins,
i.jenkins {
    --fa: "\f3b6";
}

.fa-twitter,
i.twitter {
    --fa: "\f099";
}

.fa-rockrms,
i.rockrms {
    --fa: "\f3e9";
}

.fa-pinterest,
i.pinterest {
    --fa: "\f0d2";
}

.fa-buffer,
i.buffer {
    --fa: "\f837";
}

.fa-npm,
i.npm {
    --fa: "\f3d4";
}

.fa-yammer,
i.yammer {
    --fa: "\f840";
}

.fa-btc,
i.btc {
    --fa: "\f15a";
}

.fa-dribbble,
i.dribbble {
    --fa: "\f17d";
}

.fa-stumbleupon-circle,
i.stumbleupon-circle {
    --fa: "\f1a3";
}

.fa-internet-explorer,
i.internet-explorer {
    --fa: "\f26b";
}

.fa-stubber,
i.stubber {
    --fa: "\e5c7";
}

.fa-telegram,
i.telegram {
    --fa: "\f2c6";
}

.fa-telegram-plane,
i.telegram-plane {
    --fa: "\f2c6";
}

.fa-old-republic,
i.old-republic {
    --fa: "\f510";
}

.fa-odysee,
i.odysee {
    --fa: "\e5c6";
}

.fa-square-whatsapp,
i.square-whatsapp {
    --fa: "\f40c";
}

.fa-whatsapp-square,
i.whatsapp-square {
    --fa: "\f40c";
}

.fa-node-js,
i.node-js {
    --fa: "\f3d3";
}

.fa-edge-legacy,
i.edge-legacy {
    --fa: "\e078";
}

.fa-slack,
i.slack {
    --fa: "\f198";
}

.fa-slack-hash,
i.slack-hash {
    --fa: "\f198";
}

.fa-medrt,
i.medrt {
    --fa: "\f3c8";
}

.fa-usb,
i.usb {
    --fa: "\f287";
}

.fa-tumblr,
i.tumblr {
    --fa: "\f173";
}

.fa-vaadin,
i.vaadin {
    --fa: "\f408";
}

.fa-quora,
i.quora {
    --fa: "\f2c4";
}

.fa-square-x-twitter,
i.square-x-twitter {
    --fa: "\e61a";
}

.fa-reacteurope,
i.reacteurope {
    --fa: "\f75d";
}

.fa-medium,
i.medium {
    --fa: "\f23a";
}

.fa-medium-m,
i.medium-m {
    --fa: "\f23a";
}

.fa-amilia,
i.amilia {
    --fa: "\f36d";
}

.fa-mixcloud,
i.mixcloud {
    --fa: "\f289";
}

.fa-flipboard,
i.flipboard {
    --fa: "\f44d";
}

.fa-viacoin,
i.viacoin {
    --fa: "\f237";
}

.fa-critical-role,
i.critical-role {
    --fa: "\f6c9";
}

.fa-sitrox,
i.sitrox {
    --fa: "\e44a";
}

.fa-discourse,
i.discourse {
    --fa: "\f393";
}

.fa-joomla,
i.joomla {
    --fa: "\f1aa";
}

.fa-mastodon,
i.mastodon {
    --fa: "\f4f6";
}

.fa-airbnb,
i.airbnb {
    --fa: "\f834";
}

.fa-wolf-pack-battalion,
i.wolf-pack-battalion {
    --fa: "\f514";
}

.fa-buy-n-large,
i.buy-n-large {
    --fa: "\f8a6";
}

.fa-gulp,
i.gulp {
    --fa: "\f3ae";
}

.fa-creative-commons-sampling-plus,
i.creative-commons-sampling-plus {
    --fa: "\f4f1";
}

.fa-strava,
i.strava {
    --fa: "\f428";
}

.fa-ember,
i.ember {
    --fa: "\f423";
}

.fa-canadian-maple-leaf,
i.canadian-maple-leaf {
    --fa: "\f785";
}

.fa-teamspeak,
i.teamspeak {
    --fa: "\f4f9";
}

.fa-pushed,
i.pushed {
    --fa: "\f3e1";
}

.fa-wordpress-simple,
i.wordpress-simple {
    --fa: "\f411";
}

.fa-nutritionix,
i.nutritionix {
    --fa: "\f3d6";
}

.fa-wodu,
i.wodu {
    --fa: "\e088";
}

.fa-google-pay,
i.google-pay {
    --fa: "\e079";
}

.fa-intercom,
i.intercom {
    --fa: "\f7af";
}

.fa-zhihu,
i.zhihu {
    --fa: "\f63f";
}

.fa-korvue,
i.korvue {
    --fa: "\f42f";
}

.fa-pix,
i.pix {
    --fa: "\e43a";
}

.fa-steam-symbol,
i.steam-symbol {
    --fa: "\f3f6";
}

/* layer: shortcuts */
.container{width:100%;}
.focus-container:focus{width:100%;}
@media (min-width: 40rem){
.container{max-width:40rem;}
.focus-container:focus{max-width:40rem;}
}
@media (min-width: 48rem){
.container{max-width:48rem;}
.focus-container:focus{max-width:48rem;}
}
@media (min-width: 64rem){
.container{max-width:64rem;}
.focus-container:focus{max-width:64rem;}
}
@media (min-width: 80rem){
.container{max-width:80rem;}
.focus-container:focus{max-width:80rem;}
}
@media (min-width: 96rem){
.container{max-width:96rem;}
.focus-container:focus{max-width:96rem;}
}
/* layer: default */
.tab{-moz-tab-size:4;-o-tab-size:4;tab-size:4;}
.my{margin-block:calc(var(--spacing) * 4);}
.ms{margin-inline-start:calc(var(--spacing) * 4);}
.px{padding-inline:calc(var(--spacing) * 4);}
.outline{outline-style:var(--un-outline-style);outline-width:1px;}
.b,
.border{border-width:1px;}
.underline{text-decoration-line:underline;}
.flex,
.layout{display:flex;}
.inline-flex{display:inline-flex;}
.flex-shrink{flex-shrink:1;}
.flex-grow,
.stretch{flex-grow:1;}
.flex-wrap,
.wrapping{flex-wrap:wrap;}
.gap-2{gap:calc(var(--spacing) * 2);}
.h1{height:calc(var(--spacing) * 1);}
.h2{height:calc(var(--spacing) * 2);}
.h3{height:calc(var(--spacing) * 3);}
.h4{height:calc(var(--spacing) * 4);}
.h5{height:calc(var(--spacing) * 5);}
.w0{width:calc(var(--spacing) * 0);}
.contents{display:contents;}
.visible{visibility:visible;}
.collapse{visibility:collapse;}
.resize{resize:both;}
.italic{font-style:italic;}
.shadow,
.shadow\)\<\/span\>\<\/div\>,
.shadowChildren\){--un-shadow:0 1px 3px 0 var(--un-shadow-color, rgb(0 0 0 / 0.1)),0 1px 2px -1px var(--un-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--un-inset-shadow), var(--un-inset-ring-shadow), var(--un-ring-offset-shadow), var(--un-ring-shadow), var(--un-shadow);}
.transform{transform:var(--un-rotate-x) var(--un-rotate-y) var(--un-rotate-z) var(--un-skew-x) var(--un-skew-y);}
.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,--un-gradient-from,--un-gradient-via,--un-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter;transition-timing-function:var(--un-ease, var(--default-transition-timingFunction));transition-duration:var(--un-duration, var(--default-transition-duration));}
.ease{--un-ease:var(--ease-DEFAULT);transition-timing-function:var(--ease-DEFAULT);}
.ease-in-out{--un-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out);}
.ease-out{--un-ease:var(--ease-out);transition-timing-function:var(--ease-out);}
.fixed{position:fixed;}
.sticky{position:sticky;}
.static{position:static;}
.isolate{isolation:isolate;}
.blur{--un-blur:blur(8px);filter:var(--un-blur,) var(--un-brightness,) var(--un-contrast,) var(--un-grayscale,) var(--un-hue-rotate,) var(--un-invert,) var(--un-saturate,) var(--un-sepia,) var(--un-drop-shadow,);}
.filter{filter:var(--un-blur,) var(--un-brightness,) var(--un-contrast,) var(--un-grayscale,) var(--un-hue-rotate,) var(--un-invert,) var(--un-saturate,) var(--un-sepia,) var(--un-drop-shadow,);}
.table{display:table;}
.table-cell{display:table-cell;}
.border-collapse{border-collapse:collapse;}
.lining-nums{--un-numeric-figure:lining-nums;font-variant-numeric:var(--un-ordinal,) var(--un-slashed-zero,) var(--un-numeric-figure,) var(--un-numeric-spacing,) var(--un-numeric-fraction,);}
.tabular-nums{--un-numeric-spacing:tabular-nums;font-variant-numeric:var(--un-ordinal,) var(--un-slashed-zero,) var(--un-numeric-figure,) var(--un-numeric-spacing,) var(--un-numeric-fraction,);}
.tiny{font-size:var(--font-size-tiny);}
.tinier{font-size:var(--font-size-tinier);}
.small{font-size:var(--font-size-small);}
.smaller{font-size:var(--font-size-smaller);}
.medium{font-size:var(--font-size-medium);}
.mediumer{font-size:var(--font-size-mediumer);}
.default{font-size:var(--font-size-default);}
.large{font-size:var(--font-size-large);}
.larger{font-size:var(--font-size-larger);}
.big{font-size:var(--font-size-big);}
.bigger{font-size:var(--font-size-bigger);}
.massive{font-size:var(--font-size-massive);}
.enormous{font-size:var(--font-size-enormous);}
.huge{font-size:var(--font-size-huge);}
.light,
.thin{font-weight:300 !important;}
.bold{font-weight:bold !important;}
.semibold{font-weight:600 !important;}
.all-small-caps *,
.small-caps{font-variant:small-caps;letter-spacing:0.1em;}
.uppercase{text-transform:uppercase;letter-spacing:0.1em;}
.line-through{text-decoration:line-through;}
.underlined{text-decoration:underline;}
.nowrap{white-space:nowrap;}
.subtle{opacity:0.75;}
.faded{opacity:0.5;}
.rounded{border-radius:0.5em;}
.padded-full{padding:1em;}
.padded-medium{padding:0.7em;}
.border-top{border-top:solid 1px var(--shade-2);}
.border-bottom{border-bottom:solid 1px var(--shade-2);}
.border-left{border-left:solid 1px var(--shade-2);}
.border-right{border-right:solid 1px var(--shade-2);}
.inline{display:inline;}
.inline-block{display:inline-block;}
.block{display:block;}
.relative{position:relative;}
.absolute{position:absolute;}
.text-centering{text-align:center;}
.text-left-aligning{text-align:left;}
.horizontal{flex-direction:row;}
.vertical{flex-direction:column;}
.center-aligning{align-items:center;}
.start-aligning{align-items:flex-start;}
.center-justifying{justify-content:center;}
.centering{align-items:center;justify-content:center;}
.grid{display:grid;grid-template-columns:repeat(auto-fit, minmax(var(--grid-column-width, 10em), 1fr));grid-gap:var(--grid-gap);}
.spacing{--grid-gap:var(--spacing);}
.padded{padding:var(--spacing);}
.horizontally-padded{padding-left:var(--spacing);padding-right:var(--spacing);}
.bottom-padded{padding-bottom:var(--spacing);}
.top-padded{padding-top:var(--spacing);}
.double-padded{padding:calc(2 * var(--spacing));}
.half-padded{padding:calc(0.5 * var(--spacing));}
.margined{margin:var(--spacing);}
.negatively-margined{margin:calc(-1 * var(--spacing));}
.vertically-margined{margin-top:var(--spacing);margin-bottom:var(--spacing);}
.horizontally-margined{margin-left:var(--spacing);margin-right:var(--spacing);}
.right-margined{margin-right:var(--spacing);}
.left-margined{margin-left:var(--spacing);}
.bottom-margined{margin-bottom:var(--spacing);}
.top-margined{margin-top:var(--spacing);}
.double-margined{margin:calc(2 * var(--spacing));}
.fit{max-width:100%;max-height:100%;box-sizing:border-box;}
.fit-vertically{max-height:100%;box-sizing:border-box;}
.fill{min-width:100%;min-height:100%;box-sizing:border-box;}
.fill-horizontally{min-width:100%;box-sizing:border-box;}
.hidden{display:none !important;}
.invisible{opacity:0;transform:scale(0);pointer-events:none;}
.non-interactive{pointer-events:none;}
.break-all{word-break:break-all;}
.red{--color-highlight:var(--red);--color-highlight-bg:var(--red-bg);}
.orange{--color-highlight:var(--orange);--color-highlight-bg:var(--orange-bg);}
.green{--color-highlight:var(--green);--color-highlight-bg:var(--green-bg);}
.blue{--color-highlight:var(--blue);--color-highlight-bg:var(--blue-bg);}
.purple{--color-highlight:var(--purple);--color-highlight-bg:var(--purple-bg);}
.black{--color-highlight:var(--black);--color-highlight-bg:var(--black-bg);}
.white{--color-highlight:var(--white);--color-highlight-bg:var(--shade-5);}
.colored-text{color:var(--color-highlight);}
.background{background:var(--color-bg);}
.spin{animation:spin linear 1s infinite;}
.blink{animation:blink 1.3s alternate infinite;}
.rumble{animation:rumble 300ms;}
.\!message{color:var(--color-highlight, rgba(0, 0, 0, 0.5)) !important;border-radius:var(--border-radius) !important;background:var(--color-highlight-bg, var(--shade-1)) !important;border:solid 1px !important;padding:0.8em 1em !important;position:relative !important;margin:1em !important;}
.message{color:var(--color-highlight, rgba(0, 0, 0, 0.5));border-radius:var(--border-radius);background:var(--color-highlight-bg, var(--shade-1));border:solid 1px;padding:0.8em 1em;position:relative;margin:1em;}
.box{color:var(--color-highlight);border-radius:0.5em;border:solid 1px var(--color-highlight, var(--shade-2));position:relative;overflow:hidden;}