Commit c33206f3 authored by Sandeepa J.A.G.P's avatar Sandeepa J.A.G.P

commit

parent 2a583408
// animating icons
// --------------------------
.@{fa-css-prefix}-beat {
animation-name: ~'@{fa-css-prefix}-beat';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 1s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, ease-in-out)';
}
.@{fa-css-prefix}-bounce {
animation-name: ~'@{fa-css-prefix}-beat';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 1s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1))';
}
.@{fa-css-prefix}-fade {
animation-name: ~'@{fa-css-prefix}-fade';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 1s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1))';
}
.@{fa-css-prefix}-beat-fade {
animation-name: ~'@{fa-css-prefix}-beat-fade';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 1s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1))';
}
.@{fa-css-prefix}-flip {
animation-name: ~'@{fa-css-prefix}-flip';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 1s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, ease-in-out)';
}
.@{fa-css-prefix}-shake {
animation-name: ~'@{fa-css-prefix}-shake';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 1s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, ease-in-out)';
}
.@{fa-css-prefix}-spin {
animation-name: ~'@{fa-css-prefix}-spin';
animation-delay: ~'var(--@{fa-css-prefix}-animation-delay, 0)';
animation-direction: ~'var(--@{fa-css-prefix}-animation-direction, normal)';
animation-duration: ~'var(--@{fa-css-prefix}-animation-duration, 2s)';
animation-iteration-count: ~'var(--@{fa-css-prefix}-animation-iteration-count, infinite)';
animation-timing-function: ~'var(--@{fa-css-prefix}-animation-timing, linear)';
}
.@{fa-css-prefix}-spin-reverse {
--@{fa-css-prefix}-animation-direction: reverse;
}
// if agent or operating system prefers reduced motion, disable animations
// see: https://www.smashingmagazine.com/2020/09/design-reduced-motion-sensitivities/
// see: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
@media (prefers-reduced-motion: reduce) {
.@{fa-css-prefix}-beat,
.@{fa-css-prefix}-bounce,
.@{fa-css-prefix}-fade,
.@{fa-css-prefix}-beat-fade,
.@{fa-css-prefix}-flip,
.@{fa-css-prefix}-pulse,
.@{fa-css-prefix}-shake,
.@{fa-css-prefix}-spin,
.@{fa-css-prefix}-spin-pulse {
animation-delay: -1ms;
animation-duration: 1ms;
animation-iteration-count: 1;
transition-delay: 0s;
transition-duration: 0s;
}
}
@keyframes ~'@{fa-css-prefix}-beat' {
0%, 90% { transform: scale(1); }
45% { transform: ~'scale(var(--@{fa-css-prefix}-beat-scale, 1.25))'; }
}
@keyframes ~'@{fa-css-prefix}-bounce' {
0% { transform: scale(1,1) translateY(0); }
10% { transform: ~'scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1),var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9))' translateY(0); }
30% { transform: ~'scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9),var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1))' ~'translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em))'; }
50% { transform: ~'scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05),var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95))' translateY(0); }
57% { transform: ~'scale(1,1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em))'; }
64% { transform: scale(1,1) translateY(0); }
100% { transform: scale(1,1) translateY(0); }
}
@keyframes ~'@{fa-css-prefix}-fade' {
50% { opacity: ~'var(--@{fa-css-prefix}-fade-opacity, 0.4)'; }
}
@keyframes ~'@{fa-css-prefix}-beat-fade' {
0%, 100% {
opacity: ~'var(--@{fa-css-prefix}-beat-fade-opacity, 0.4)';
transform: scale(1);
}
50% {
opacity: 1;
transform: ~'scale(var(--@{fa-css-prefix}-beat-fade-scale, 1.125))';
}
}
@keyframes ~'@{fa-css-prefix}-flip' {
50% {
transform: ~'rotate3d(var(--@{fa-css-prefix}-flip-x, 0), var(--@{fa-css-prefix}-flip-y, 1), var(--@{fa-css-prefix}-flip-z, 0), var(--@{fa-css-prefix}-flip-angle, -180deg))';
}
}
@keyframes ~'@{fa-css-prefix}-shake' {
0% { transform: rotate(-15deg); }
4% { transform: rotate(15deg); }
8%, 24% { transform: rotate(-18deg); }
12%, 28% { transform: rotate(18deg); }
16% { transform: rotate(-22deg); }
20% { transform: rotate(22deg); }
32% { transform: rotate(-12deg); }
36% { transform: rotate(12deg); }
40%, 100% { transform: rotate(0deg); }
}
@keyframes ~'@{fa-css-prefix}-spin' {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
// bordered + pulled icons
// -------------------------
.@{fa-css-prefix}-border {
border-color: ~'var(--@{fa-css-prefix}-border-color, @{fa-border-color})';
border-radius: ~'var(--@{fa-css-prefix}-border-radius, @{fa-border-radius})';
border-style: ~'var(--@{fa-css-prefix}-border-style, @{fa-border-style})';
border-width: ~'var(--@{fa-css-prefix}-border-width, @{fa-border-width})';
padding: ~'var(--@{fa-css-prefix}-border-padding, @{fa-border-padding})';
}
.@{fa-css-prefix}-pull-left {
float: left;
margin-right: ~'var(--@{fa-css-prefix}-pull-margin, @{fa-pull-margin})';
}
.@{fa-css-prefix}-pull-right {
float: right;
margin-left: ~'var(--@{fa-css-prefix}-pull-margin, @{fa-pull-margin})';
}
// base icon class definition
// -------------------------
.@{fa-css-prefix} {
font-family: ~'var(--@{fa-css-prefix}-style-family, @{fa-style-family})';
font-weight: ~'var(--@{fa-css-prefix}-style, @{fa-style})';
}
.@{fa-css-prefix},
.fas,
.@{fa-css-prefix}--solid,
.far,
.@{fa-css-prefix}--regular,
.fal,
.@{fa-css-prefix}--light,
.fat,
.@{fa-css-prefix}--thin,
.fad,
.@{fa-css-prefix}--duotone,
.fab,
.@{fa-css-prefix}--brands {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: ~'var(--@{fa-css-prefix}-display, @{fa-display})';
font-style: normal;
font-variant: normal;
text-rendering: auto;
}
// fixed-width icons
// -------------------------
.@{fa-css-prefix}-fw {
text-align: center;
width: @fa-fw-width;
}
// specific icon class definition
// -------------------------
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
each(.fa-icons(), {
.@{fa-css-prefix}-@{key}::before { content: @value; }
});
// icons in a list
// -------------------------
.@{fa-css-prefix}-ul {
list-style-type: none;
margin-left: ~'var(--@{fa-css-prefix}-li-margin, @{fa-li-margin})';
padding-left: 0;
> li { position: relative; }
}
.@{fa-css-prefix}-li {
left: calc(~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})' * -1);
position: absolute;
text-align: center;
width: ~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})';
line-height: inherit;
}
// mixins
// --------------------------
// base rendering for an icon
.fa-icon() {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
}
// sets relative font-sizing and alignment (in _sizing)
.fa-size(@font-size) {
font-size: (@font-size / @fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
line-height: (1 / @font-size) * 1em; // sets the line-height of the icon back to that of it's parent
vertical-align: ((6 / @font-size) - (3 / 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
}
// only display content to screen readers
// see: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
// see: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
.fa-sr-only() {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
// use in conjunction with .sr-only to only display content when it's focused
.fa-sr-only-focusable() {
&:not(:focus) {
.fa-sr-only();
}
}
// convenience mixins for declaring pseudo-elements by CSS variable,
// including all style-specific font properties, and both the ::before
// and ::after elements in the duotone case.
.fa-icon-solid(@fa-var) {
.fa-icon;
.fa-solid;
&::before {
content: @fa-var;
}
}
.fa-icon-regular(@fa-var) {
.fa-icon;
.fa-regular;
&::before {
content: @fa-var;
}
}
.fa-icon-brands(@fa-var) {
.fa-icon;
.fa-brands;
&::before {
content: @fa-var;
}
}
// rotating + flipping icons
// -------------------------
.@{fa-css-prefix}-rotate-90 {
transform: rotate(90deg);
}
.@{fa-css-prefix}-rotate-180 {
transform: rotate(180deg);
}
.@{fa-css-prefix}-rotate-270 {
transform: rotate(270deg);
}
.@{fa-css-prefix}-flip-horizontal {
transform: scale(-1, 1);
}
.@{fa-css-prefix}-flip-vertical {
transform: scale(1, -1);
}
.@{fa-css-prefix}-flip-both,
.@{fa-css-prefix}-flip-horizontal.@{fa-css-prefix}-flip-vertical {
transform: scale(-1, -1);
}
.@{fa-css-prefix}-rotate-by {
transform: rotate(~'var(--@{fa-css-prefix}-rotate-angle, none)');
}
// screen-reader utilities
// -------------------------
// only display content to screen readers
.sr-only,
.@{fa-css-prefix}-sr-only {
.fa-sr-only();
}
// use in conjunction with .sr-only to only display content when it's focused
.sr-only-focusable,
.@{fa-css-prefix}-sr-only-focusable {
.fa-sr-only-focusable();
}
.@{fa-css-prefix}.@{fa-css-prefix}-glass:before { content: @fa-var-martini-glass-empty; }
.@{fa-css-prefix}.@{fa-css-prefix}-envelope-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope; }
.@{fa-css-prefix}.@{fa-css-prefix}-star-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-star-o:before { content: @fa-var-star; }
.@{fa-css-prefix}.@{fa-css-prefix}-remove:before { content: @fa-var-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-close:before { content: @fa-var-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-gear:before { content: @fa-var-gear; }
.@{fa-css-prefix}.@{fa-css-prefix}-trash-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-can; }
.@{fa-css-prefix}.@{fa-css-prefix}-home:before { content: @fa-var-house; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-o:before { content: @fa-var-file; }
.@{fa-css-prefix}.@{fa-css-prefix}-clock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-circle-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-circle-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-play-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-circle-play; }
.@{fa-css-prefix}.@{fa-css-prefix}-repeat:before { content: @fa-var-arrow-rotate-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-rotate-right:before { content: @fa-var-arrow-rotate-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-refresh:before { content: @fa-var-arrows-rotate; }
.@{fa-css-prefix}.@{fa-css-prefix}-list-alt {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-list-alt:before { content: @fa-var-rectangle-list; }
.@{fa-css-prefix}.@{fa-css-prefix}-dedent:before { content: @fa-var-outdent; }
.@{fa-css-prefix}.@{fa-css-prefix}-video-camera:before { content: @fa-var-video; }
.@{fa-css-prefix}.@{fa-css-prefix}-picture-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-picture-o:before { content: @fa-var-image; }
.@{fa-css-prefix}.@{fa-css-prefix}-photo {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-photo:before { content: @fa-var-image; }
.@{fa-css-prefix}.@{fa-css-prefix}-image {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-image:before { content: @fa-var-image; }
.@{fa-css-prefix}.@{fa-css-prefix}-map-marker:before { content: @fa-var-location-dot; }
.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pen-to-square; }
.@{fa-css-prefix}.@{fa-css-prefix}-edit {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-edit:before { content: @fa-var-pen-to-square; }
.@{fa-css-prefix}.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-from-square; }
.@{fa-css-prefix}.@{fa-css-prefix}-check-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-check-square-o:before { content: @fa-var-square-check; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrows:before { content: @fa-var-up-down-left-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-times-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-circle-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-check-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-circle-check; }
.@{fa-css-prefix}.@{fa-css-prefix}-mail-forward:before { content: @fa-var-share; }
.@{fa-css-prefix}.@{fa-css-prefix}-expand:before { content: @fa-var-up-right-and-down-left-from-center; }
.@{fa-css-prefix}.@{fa-css-prefix}-compress:before { content: @fa-var-down-left-and-up-right-to-center; }
.@{fa-css-prefix}.@{fa-css-prefix}-eye {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-eye-slash {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-warning:before { content: @fa-var-triangle-exclamation; }
.@{fa-css-prefix}.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar-days; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrows-v:before { content: @fa-var-up-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrows-h:before { content: @fa-var-left-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart:before { content: @fa-var-chart-column; }
.@{fa-css-prefix}.@{fa-css-prefix}-bar-chart-o:before { content: @fa-var-chart-column; }
.@{fa-css-prefix}.@{fa-css-prefix}-twitter-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-facebook-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gears:before { content: @fa-var-gears; }
.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-heart-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart; }
.@{fa-css-prefix}.@{fa-css-prefix}-sign-out:before { content: @fa-var-right-from-bracket; }
.@{fa-css-prefix}.@{fa-css-prefix}-linkedin-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin; }
.@{fa-css-prefix}.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumbtack; }
.@{fa-css-prefix}.@{fa-css-prefix}-external-link:before { content: @fa-var-up-right-from-square; }
.@{fa-css-prefix}.@{fa-css-prefix}-sign-in:before { content: @fa-var-right-to-bracket; }
.@{fa-css-prefix}.@{fa-css-prefix}-github-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-lemon-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon; }
.@{fa-css-prefix}.@{fa-css-prefix}-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-square-o:before { content: @fa-var-square; }
.@{fa-css-prefix}.@{fa-css-prefix}-bookmark-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-twitter {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-facebook {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook-f; }
.@{fa-css-prefix}.@{fa-css-prefix}-facebook-f {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-facebook-f:before { content: @fa-var-facebook-f; }
.@{fa-css-prefix}.@{fa-css-prefix}-github {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-credit-card {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-feed:before { content: @fa-var-rss; }
.@{fa-css-prefix}.@{fa-css-prefix}-hdd-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hard-drive; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-point-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-point-left; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-point-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-point-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-globe:before { content: @fa-var-earth-americas; }
.@{fa-css-prefix}.@{fa-css-prefix}-tasks:before { content: @fa-var-bars-progress; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-maximize; }
.@{fa-css-prefix}.@{fa-css-prefix}-group:before { content: @fa-var-users; }
.@{fa-css-prefix}.@{fa-css-prefix}-chain:before { content: @fa-var-link; }
.@{fa-css-prefix}.@{fa-css-prefix}-cut:before { content: @fa-var-scissors; }
.@{fa-css-prefix}.@{fa-css-prefix}-files-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-files-o:before { content: @fa-var-copy; }
.@{fa-css-prefix}.@{fa-css-prefix}-floppy-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-disk; }
.@{fa-css-prefix}.@{fa-css-prefix}-save {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-save:before { content: @fa-var-floppy-disk; }
.@{fa-css-prefix}.@{fa-css-prefix}-navicon:before { content: @fa-var-bars; }
.@{fa-css-prefix}.@{fa-css-prefix}-reorder:before { content: @fa-var-bars; }
.@{fa-css-prefix}.@{fa-css-prefix}-magic:before { content: @fa-var-wand-magic-sparkles; }
.@{fa-css-prefix}.@{fa-css-prefix}-pinterest {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pinterest-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus-g; }
.@{fa-css-prefix}.@{fa-css-prefix}-money:before { content: @fa-var-money-bill-1; }
.@{fa-css-prefix}.@{fa-css-prefix}-unsorted:before { content: @fa-var-sort; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-linkedin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin-in; }
.@{fa-css-prefix}.@{fa-css-prefix}-rotate-left:before { content: @fa-var-arrow-rotate-left; }
.@{fa-css-prefix}.@{fa-css-prefix}-legal:before { content: @fa-var-gavel; }
.@{fa-css-prefix}.@{fa-css-prefix}-tachometer:before { content: @fa-var-gauge-high; }
.@{fa-css-prefix}.@{fa-css-prefix}-dashboard:before { content: @fa-var-gauge-high; }
.@{fa-css-prefix}.@{fa-css-prefix}-comment-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment; }
.@{fa-css-prefix}.@{fa-css-prefix}-comments-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments; }
.@{fa-css-prefix}.@{fa-css-prefix}-flash:before { content: @fa-var-bolt; }
.@{fa-css-prefix}.@{fa-css-prefix}-clipboard:before { content: @fa-var-paste; }
.@{fa-css-prefix}.@{fa-css-prefix}-lightbulb-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb; }
.@{fa-css-prefix}.@{fa-css-prefix}-exchange:before { content: @fa-var-right-left; }
.@{fa-css-prefix}.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-arrow-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-arrow-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-bell-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell; }
.@{fa-css-prefix}.@{fa-css-prefix}-cutlery:before { content: @fa-var-utensils; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-text-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-lines; }
.@{fa-css-prefix}.@{fa-css-prefix}-building-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-building-o:before { content: @fa-var-building; }
.@{fa-css-prefix}.@{fa-css-prefix}-hospital-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital; }
.@{fa-css-prefix}.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet-screen-button; }
.@{fa-css-prefix}.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile-screen-button; }
.@{fa-css-prefix}.@{fa-css-prefix}-mobile-phone:before { content: @fa-var-mobile-screen-button; }
.@{fa-css-prefix}.@{fa-css-prefix}-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle; }
.@{fa-css-prefix}.@{fa-css-prefix}-mail-reply:before { content: @fa-var-reply; }
.@{fa-css-prefix}.@{fa-css-prefix}-github-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-folder-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder; }
.@{fa-css-prefix}.@{fa-css-prefix}-folder-open-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open; }
.@{fa-css-prefix}.@{fa-css-prefix}-smile-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-smile-o:before { content: @fa-var-face-smile; }
.@{fa-css-prefix}.@{fa-css-prefix}-frown-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-frown-o:before { content: @fa-var-face-frown; }
.@{fa-css-prefix}.@{fa-css-prefix}-meh-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-meh-o:before { content: @fa-var-face-meh; }
.@{fa-css-prefix}.@{fa-css-prefix}-keyboard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard; }
.@{fa-css-prefix}.@{fa-css-prefix}-flag-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag; }
.@{fa-css-prefix}.@{fa-css-prefix}-mail-reply-all:before { content: @fa-var-reply-all; }
.@{fa-css-prefix}.@{fa-css-prefix}-star-half-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-stroke; }
.@{fa-css-prefix}.@{fa-css-prefix}-star-half-empty {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-star-half-empty:before { content: @fa-var-star-half-stroke; }
.@{fa-css-prefix}.@{fa-css-prefix}-star-half-full {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-star-half-full:before { content: @fa-var-star-half-stroke; }
.@{fa-css-prefix}.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-branch; }
.@{fa-css-prefix}.@{fa-css-prefix}-chain-broken:before { content: @fa-var-link-slash; }
.@{fa-css-prefix}.@{fa-css-prefix}-unlink:before { content: @fa-var-link-slash; }
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar; }
.@{fa-css-prefix}.@{fa-css-prefix}-maxcdn {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-html5 {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-css3 {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock; }
.@{fa-css-prefix}.@{fa-css-prefix}-minus-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-square-minus; }
.@{fa-css-prefix}.@{fa-css-prefix}-level-up:before { content: @fa-var-turn-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-level-down:before { content: @fa-var-turn-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-pencil-square:before { content: @fa-var-square-pen; }
.@{fa-css-prefix}.@{fa-css-prefix}-external-link-square:before { content: @fa-var-square-up-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-compass {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-square-caret-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-down:before { content: @fa-var-square-caret-down; }
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-square-caret-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-up:before { content: @fa-var-square-caret-up; }
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-square-caret-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-right:before { content: @fa-var-square-caret-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-eur:before { content: @fa-var-euro-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-euro:before { content: @fa-var-euro-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-gbp:before { content: @fa-var-sterling-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-usd:before { content: @fa-var-dollar-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-dollar:before { content: @fa-var-dollar-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-inr:before { content: @fa-var-indian-rupee-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-rupee:before { content: @fa-var-indian-rupee-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-jpy:before { content: @fa-var-yen-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-cny:before { content: @fa-var-yen-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-rmb:before { content: @fa-var-yen-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-yen:before { content: @fa-var-yen-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-rub:before { content: @fa-var-ruble-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-ruble:before { content: @fa-var-ruble-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-rouble:before { content: @fa-var-ruble-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-krw:before { content: @fa-var-won-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-won:before { content: @fa-var-won-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-btc {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bitcoin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bitcoin:before { content: @fa-var-btc; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-text:before { content: @fa-var-file-lines; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-arrow-down-a-z; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-arrow-down-z-a; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-arrow-down-short-wide; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-arrow-down-wide-short; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-arrow-down-1-9; }
.@{fa-css-prefix}.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-arrow-down-9-1; }
.@{fa-css-prefix}.@{fa-css-prefix}-youtube-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-youtube {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-xing {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-xing-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-youtube-play {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube; }
.@{fa-css-prefix}.@{fa-css-prefix}-dropbox {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-stack-overflow {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-instagram {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-flickr {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-adn {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket; }
.@{fa-css-prefix}.@{fa-css-prefix}-tumblr {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-tumblr-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-down-long; }
.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-up-long; }
.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-left-long; }
.@{fa-css-prefix}.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-right-long; }
.@{fa-css-prefix}.@{fa-css-prefix}-apple {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-windows {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-android {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-linux {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-dribbble {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-skype {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-foursquare {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-trello {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gratipay {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gittip {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gittip:before { content: @fa-var-gratipay; }
.@{fa-css-prefix}.@{fa-css-prefix}-sun-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun; }
.@{fa-css-prefix}.@{fa-css-prefix}-moon-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon; }
.@{fa-css-prefix}.@{fa-css-prefix}-vk {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-weibo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-renren {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pagelines {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-stack-exchange {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-circle-right; }
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-circle-left; }
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-square-caret-left; }
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-toggle-left:before { content: @fa-var-square-caret-left; }
.@{fa-css-prefix}.@{fa-css-prefix}-dot-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-circle-dot; }
.@{fa-css-prefix}.@{fa-css-prefix}-vimeo-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-try:before { content: @fa-var-turkish-lira-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-turkish-lira:before { content: @fa-var-turkish-lira-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-plus-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-square-plus; }
.@{fa-css-prefix}.@{fa-css-prefix}-slack {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wordpress {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-openid {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-institution:before { content: @fa-var-building-columns; }
.@{fa-css-prefix}.@{fa-css-prefix}-bank:before { content: @fa-var-building-columns; }
.@{fa-css-prefix}.@{fa-css-prefix}-mortar-board:before { content: @fa-var-graduation-cap; }
.@{fa-css-prefix}.@{fa-css-prefix}-yahoo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-reddit {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-reddit-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-stumbleupon-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-stumbleupon {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-delicious {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-digg {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper-pp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-drupal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-joomla {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-behance {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-behance-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-steam {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-steam-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-automobile:before { content: @fa-var-car; }
.@{fa-css-prefix}.@{fa-css-prefix}-cab:before { content: @fa-var-taxi; }
.@{fa-css-prefix}.@{fa-css-prefix}-spotify {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-deviantart {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-soundcloud {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-pdf-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-word-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-excel-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-powerpoint-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-image-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-photo-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-photo-o:before { content: @fa-var-file-image; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-picture-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-picture-o:before { content: @fa-var-file-image; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-archive-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-zipper; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-zip-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-zip-o:before { content: @fa-var-file-zipper; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-audio-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-sound-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-sound-o:before { content: @fa-var-file-audio; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-video-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-movie-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-movie-o:before { content: @fa-var-file-video; }
.@{fa-css-prefix}.@{fa-css-prefix}-file-code-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code; }
.@{fa-css-prefix}.@{fa-css-prefix}-vine {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-codepen {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-jsfiddle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-life-bouy:before { content: @fa-var-life-ring; }
.@{fa-css-prefix}.@{fa-css-prefix}-life-buoy:before { content: @fa-var-life-ring; }
.@{fa-css-prefix}.@{fa-css-prefix}-life-saver:before { content: @fa-var-life-ring; }
.@{fa-css-prefix}.@{fa-css-prefix}-support:before { content: @fa-var-life-ring; }
.@{fa-css-prefix}.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-notch; }
.@{fa-css-prefix}.@{fa-css-prefix}-rebel {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-ra {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-ra:before { content: @fa-var-rebel; }
.@{fa-css-prefix}.@{fa-css-prefix}-resistance {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-resistance:before { content: @fa-var-rebel; }
.@{fa-css-prefix}.@{fa-css-prefix}-empire {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-ge {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-ge:before { content: @fa-var-empire; }
.@{fa-css-prefix}.@{fa-css-prefix}-git-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-git {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hacker-news {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator-square:before { content: @fa-var-hacker-news; }
.@{fa-css-prefix}.@{fa-css-prefix}-yc-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-yc-square:before { content: @fa-var-hacker-news; }
.@{fa-css-prefix}.@{fa-css-prefix}-tencent-weibo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-qq {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-weixin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wechat {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wechat:before { content: @fa-var-weixin; }
.@{fa-css-prefix}.@{fa-css-prefix}-send:before { content: @fa-var-paper-plane; }
.@{fa-css-prefix}.@{fa-css-prefix}-paper-plane-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane; }
.@{fa-css-prefix}.@{fa-css-prefix}-send-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-send-o:before { content: @fa-var-paper-plane; }
.@{fa-css-prefix}.@{fa-css-prefix}-circle-thin {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle; }
.@{fa-css-prefix}.@{fa-css-prefix}-header:before { content: @fa-var-heading; }
.@{fa-css-prefix}.@{fa-css-prefix}-futbol-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol; }
.@{fa-css-prefix}.@{fa-css-prefix}-soccer-ball-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-soccer-ball-o:before { content: @fa-var-futbol; }
.@{fa-css-prefix}.@{fa-css-prefix}-slideshare {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-twitch {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-yelp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-newspaper-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper; }
.@{fa-css-prefix}.@{fa-css-prefix}-paypal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-wallet {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-visa {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-mastercard {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-discover {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-amex {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-paypal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-stripe {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bell-slash-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash; }
.@{fa-css-prefix}.@{fa-css-prefix}-trash:before { content: @fa-var-trash-can; }
.@{fa-css-prefix}.@{fa-css-prefix}-copyright {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eye-dropper; }
.@{fa-css-prefix}.@{fa-css-prefix}-area-chart:before { content: @fa-var-chart-area; }
.@{fa-css-prefix}.@{fa-css-prefix}-pie-chart:before { content: @fa-var-chart-pie; }
.@{fa-css-prefix}.@{fa-css-prefix}-line-chart:before { content: @fa-var-chart-line; }
.@{fa-css-prefix}.@{fa-css-prefix}-lastfm {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-lastfm-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-ioxhost {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-angellist {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc:before { content: @fa-var-closed-captioning; }
.@{fa-css-prefix}.@{fa-css-prefix}-ils:before { content: @fa-var-shekel-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-shekel:before { content: @fa-var-shekel-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-sheqel:before { content: @fa-var-shekel-sign; }
.@{fa-css-prefix}.@{fa-css-prefix}-buysellads {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-connectdevelop {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-dashcube {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-forumbee {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-leanpub {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-sellsy {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-shirtsinbulk {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-simplybuilt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-skyatlas {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-diamond {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-diamond:before { content: @fa-var-gem; }
.@{fa-css-prefix}.@{fa-css-prefix}-transgender:before { content: @fa-var-mars-and-venus; }
.@{fa-css-prefix}.@{fa-css-prefix}-intersex:before { content: @fa-var-mars-and-venus; }
.@{fa-css-prefix}.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender; }
.@{fa-css-prefix}.@{fa-css-prefix}-facebook-official {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook; }
.@{fa-css-prefix}.@{fa-css-prefix}-pinterest-p {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-whatsapp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hotel:before { content: @fa-var-bed; }
.@{fa-css-prefix}.@{fa-css-prefix}-viacoin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-medium {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-y-combinator {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-yc {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-yc:before { content: @fa-var-y-combinator; }
.@{fa-css-prefix}.@{fa-css-prefix}-optin-monster {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-opencart {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-expeditedssl {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-battery-4:before { content: @fa-var-battery-full; }
.@{fa-css-prefix}.@{fa-css-prefix}-battery:before { content: @fa-var-battery-full; }
.@{fa-css-prefix}.@{fa-css-prefix}-battery-3:before { content: @fa-var-battery-three-quarters; }
.@{fa-css-prefix}.@{fa-css-prefix}-battery-2:before { content: @fa-var-battery-half; }
.@{fa-css-prefix}.@{fa-css-prefix}-battery-1:before { content: @fa-var-battery-quarter; }
.@{fa-css-prefix}.@{fa-css-prefix}-battery-0:before { content: @fa-var-battery-empty; }
.@{fa-css-prefix}.@{fa-css-prefix}-object-group {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-object-ungroup {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-sticky-note-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-note-sticky; }
.@{fa-css-prefix}.@{fa-css-prefix}-cc-jcb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-cc-diners-club {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-clone {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-empty; }
.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-1:before { content: @fa-var-hourglass-start; }
.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass; }
.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-2:before { content: @fa-var-hourglass; }
.@{fa-css-prefix}.@{fa-css-prefix}-hourglass-3:before { content: @fa-var-hourglass-end; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-rock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-back-fist; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-grab-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-grab-o:before { content: @fa-var-hand-back-fist; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-paper-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-stop-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-stop-o:before { content: @fa-var-hand; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-scissors-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-lizard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-spock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-pointer-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer; }
.@{fa-css-prefix}.@{fa-css-prefix}-hand-peace-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace; }
.@{fa-css-prefix}.@{fa-css-prefix}-registered {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-creative-commons {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gg {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gg-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-odnoklassniki {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-odnoklassniki-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-get-pocket {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wikipedia-w {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-safari {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-chrome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-firefox {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-opera {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-internet-explorer {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-television:before { content: @fa-var-tv; }
.@{fa-css-prefix}.@{fa-css-prefix}-contao {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-500px {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-amazon {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-plus-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus; }
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-minus-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus; }
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-times-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-check-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check; }
.@{fa-css-prefix}.@{fa-css-prefix}-map-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-map-o:before { content: @fa-var-map; }
.@{fa-css-prefix}.@{fa-css-prefix}-commenting:before { content: @fa-var-comment-dots; }
.@{fa-css-prefix}.@{fa-css-prefix}-commenting-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-commenting-o:before { content: @fa-var-comment-dots; }
.@{fa-css-prefix}.@{fa-css-prefix}-houzz {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-vimeo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo-v; }
.@{fa-css-prefix}.@{fa-css-prefix}-black-tie {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-fonticons {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-reddit-alien {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-edge {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-codiepie {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-modx {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-fort-awesome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-usb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-product-hunt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-mixcloud {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-scribd {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pause-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-circle-pause; }
.@{fa-css-prefix}.@{fa-css-prefix}-stop-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-circle-stop; }
.@{fa-css-prefix}.@{fa-css-prefix}-bluetooth {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-bluetooth-b {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-gitlab {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wpbeginner {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wpforms {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-envira {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wheelchair-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-accessible-icon; }
.@{fa-css-prefix}.@{fa-css-prefix}-question-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-circle-question; }
.@{fa-css-prefix}.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-phone-volume; }
.@{fa-css-prefix}.@{fa-css-prefix}-asl-interpreting:before { content: @fa-var-hands-asl-interpreting; }
.@{fa-css-prefix}.@{fa-css-prefix}-deafness:before { content: @fa-var-ear-deaf; }
.@{fa-css-prefix}.@{fa-css-prefix}-hard-of-hearing:before { content: @fa-var-ear-deaf; }
.@{fa-css-prefix}.@{fa-css-prefix}-glide {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-glide-g {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-signing:before { content: @fa-var-hands; }
.@{fa-css-prefix}.@{fa-css-prefix}-viadeo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-viadeo-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-snapchat {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-ghost {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat; }
.@{fa-css-prefix}.@{fa-css-prefix}-snapchat-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-pied-piper {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-first-order {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-yoast {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-themeisle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-official {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus; }
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-google-plus-circle:before { content: @fa-var-google-plus; }
.@{fa-css-prefix}.@{fa-css-prefix}-font-awesome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-fa {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-fa:before { content: @fa-var-font-awesome; }
.@{fa-css-prefix}.@{fa-css-prefix}-handshake-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake; }
.@{fa-css-prefix}.@{fa-css-prefix}-envelope-open-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open; }
.@{fa-css-prefix}.@{fa-css-prefix}-linode {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-address-book-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book; }
.@{fa-css-prefix}.@{fa-css-prefix}-vcard:before { content: @fa-var-address-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-address-card-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-vcard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-vcard-o:before { content: @fa-var-address-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-user-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-circle-user; }
.@{fa-css-prefix}.@{fa-css-prefix}-user-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-user-o:before { content: @fa-var-user; }
.@{fa-css-prefix}.@{fa-css-prefix}-id-badge {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license:before { content: @fa-var-id-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-id-card-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-drivers-license-o:before { content: @fa-var-id-card; }
.@{fa-css-prefix}.@{fa-css-prefix}-quora {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-free-code-camp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-telegram {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-4:before { content: @fa-var-temperature-full; }
.@{fa-css-prefix}.@{fa-css-prefix}-thermometer:before { content: @fa-var-temperature-full; }
.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-3:before { content: @fa-var-temperature-three-quarters; }
.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-2:before { content: @fa-var-temperature-half; }
.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-1:before { content: @fa-var-temperature-quarter; }
.@{fa-css-prefix}.@{fa-css-prefix}-thermometer-0:before { content: @fa-var-temperature-empty; }
.@{fa-css-prefix}.@{fa-css-prefix}-bathtub:before { content: @fa-var-bath; }
.@{fa-css-prefix}.@{fa-css-prefix}-s15:before { content: @fa-var-bath; }
.@{fa-css-prefix}.@{fa-css-prefix}-window-maximize {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-window-restore {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle:before { content: @fa-var-rectangle-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-window-close-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-window-close-o:before { content: @fa-var-rectangle-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-times-rectangle-o:before { content: @fa-var-rectangle-xmark; }
.@{fa-css-prefix}.@{fa-css-prefix}-bandcamp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-grav {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-etsy {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-imdb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-ravelry {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-eercast {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-eercast:before { content: @fa-var-sellcast; }
.@{fa-css-prefix}.@{fa-css-prefix}-snowflake-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake; }
.@{fa-css-prefix}.@{fa-css-prefix}-superpowers {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-wpexplorer {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.@{fa-css-prefix}.@{fa-css-prefix}-meetup {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
// sizing icons
// -------------------------
// literal magnification scale
.sizes-literal(@factor) when (@factor > 0) {
.sizes-literal((@factor - 1));
.@{fa-css-prefix}-@{factor}x {
font-size: (@factor * 1em);
}
}
.sizes-literal(10);
// step-based scale (with alignment)
each(.fa-sizes(), {
.@{fa-css-prefix}-@{key} {
.fa-size(@value);
}
});
// stacking icons
// -------------------------
.@{fa-css-prefix}-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: @fa-stack-vertical-align;
width: @fa-stack-width;
}
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
left: 0;
position: absolute;
text-align: center;
width: 100%;
z-index: ~'var(--@{fa-css-prefix}-stack-z-index, @{fa-stack-z-index})';
}
.@{fa-css-prefix}-stack-1x {
line-height: inherit;
}
.@{fa-css-prefix}-stack-2x {
font-size: 2em;
}
.@{fa-css-prefix}-inverse {
color: ~'var(--@{fa-css-prefix}-inverse, @{fa-inverse})';
}
This source diff could not be displayed because it is too large. You can view the blob instead.
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
@import "_variables.less";
:root, :host {
--@{fa-css-prefix}-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
@font-face {
font-family: 'Font Awesome 6 Brands';
font-style: normal;
font-weight: 400;
font-display: @fa-font-display;
src: url('@{fa-font-path}/fa-brands-400.woff2') format('woff2'),
url('@{fa-font-path}/fa-brands-400.ttf') format('truetype');
}
.fab,
.@{fa-css-prefix}-brands {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
each(.fa-brand-icons(), {
.@{fa-css-prefix}-@{key}:before { content: @value; }
});
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
// Font Awesome core compile (Web Fonts-based)
// -------------------------
@import "_variables.less";
@import "_mixins.less";
@import "_core.less";
@import "_sizing.less";
@import "_fixed-width.less";
@import "_list.less";
@import "_bordered-pulled.less";
@import "_animated.less";
@import "_rotated-flipped.less";
@import "_stacked.less";
@import "_icons.less";
@import "_screen-reader.less";
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
@import "_variables.less";
:root, :host {
--@{fa-css-prefix}-font-regular: normal 400 1em/1 "@{fa-style-family}";
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 400;
font-display: @fa-font-display;
src: url('@{fa-font-path}/fa-regular-400.woff2') format('woff2'),
url('@{fa-font-path}/fa-regular-400.ttf') format('truetype');
}
.far,
.@{fa-css-prefix}-regular {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
@import "_variables.less";
:root, :host {
--@{fa-css-prefix}-font-solid: normal 900 1em/1 "@{fa-style-family}";
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 900;
font-display: @fa-font-display;
src: url('@{fa-font-path}/fa-solid-900.woff2') format('woff2'),
url('@{fa-font-path}/fa-solid-900.ttf') format('truetype');
}
.fas,
.@{fa-css-prefix}-solid {
font-family: 'Font Awesome 6 Free';
font-weight: 900;
}
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
// V4 shims compile (Web Fonts-based)
// -------------------------
@import '_variables.less';
@import '_shims.less';
accessibility:
icons:
- accessible-icon
- audio-description
- braille
- circle-info
- circle-question
- closed-captioning
- ear-deaf
- ear-listen
- eye
- eye-low-vision
- fingerprint
- hands
- hands-asl-interpreting
- handshake-angle
- person-cane
- person-walking-with-cane
- phone-volume
- question
- tty
- universal-access
- wheelchair
- wheelchair-move
label: Accessibility
alert:
icons:
- bell
- bell-slash
- circle-exclamation
- circle-radiation
- exclamation
- question
- radiation
- skull-crossbones
- triangle-exclamation
label: Alert
alphabet:
icons:
- a
- b
- c
- circle-h
- d
- e
- f
- g
- h
- i
- j
- k
- l
- m
- 'n'
- o
- p
- q
- r
- s
- square-h
- t
- u
- v
- w
- x
- 'y'
- z
label: Alphabet
animals:
icons:
- bugs
- cat
- cow
- crow
- dog
- dove
- dragon
- feather
- feather-pointed
- fish
- fish-fins
- frog
- hippo
- horse
- horse-head
- kiwi-bird
- locust
- mosquito
- otter
- paw
- shield-cat
- shield-dog
- shrimp
- spider
- worm
label: Animals
arrows:
icons:
- angle-down
- angle-left
- angle-right
- angle-up
- angles-down
- angles-left
- angles-right
- angles-up
- arrow-down
- arrow-down-1-9
- arrow-down-9-1
- arrow-down-a-z
- arrow-down-long
- arrow-down-short-wide
- arrow-down-up-across-line
- arrow-down-up-lock
- arrow-down-wide-short
- arrow-down-z-a
- arrow-left
- arrow-left-long
- arrow-pointer
- arrow-right
- arrow-right-arrow-left
- arrow-right-from-bracket
- arrow-right-long
- arrow-right-to-bracket
- arrow-rotate-left
- arrow-rotate-right
- arrow-trend-down
- arrow-trend-up
- arrow-turn-down
- arrow-turn-up
- arrow-up
- arrow-up-1-9
- arrow-up-9-1
- arrow-up-a-z
- arrow-up-from-bracket
- arrow-up-long
- arrow-up-right-dots
- arrow-up-right-from-square
- arrow-up-short-wide
- arrow-up-wide-short
- arrow-up-z-a
- arrows-down-to-line
- arrows-left-right
- arrows-left-right-to-line
- arrows-rotate
- arrows-spin
- arrows-split-up-and-left
- arrows-to-circle
- arrows-to-dot
- arrows-to-eye
- arrows-turn-right
- arrows-turn-to-dots
- arrows-up-down
- arrows-up-down-left-right
- arrows-up-to-line
- caret-down
- caret-left
- caret-right
- caret-up
- chevron-down
- chevron-left
- chevron-right
- chevron-up
- circle-arrow-down
- circle-arrow-left
- circle-arrow-right
- circle-arrow-up
- circle-chevron-down
- circle-chevron-left
- circle-chevron-right
- circle-chevron-up
- circle-down
- circle-left
- circle-right
- circle-up
- clock-rotate-left
- cloud-arrow-down
- cloud-arrow-up
- down-left-and-up-right-to-center
- down-long
- download
- left-long
- left-right
- location-arrow
- maximize
- recycle
- repeat
- reply
- reply-all
- retweet
- right-from-bracket
- right-left
- right-long
- right-to-bracket
- rotate
- rotate-left
- rotate-right
- share
- share-from-square
- shuffle
- sort
- sort-down
- sort-up
- square-arrow-up-right
- square-caret-down
- square-caret-left
- square-caret-right
- square-caret-up
- square-up-right
- turn-down
- turn-up
- up-down
- up-down-left-right
- up-long
- up-right-and-down-left-from-center
- up-right-from-square
- upload
label: Arrows
astronomy:
icons:
- globe
- meteor
- moon
- satellite
- satellite-dish
- shuttle-space
- user-astronaut
label: Astronomy
automotive:
icons:
- bus
- bus-simple
- car
- car-battery
- car-burst
- car-on
- car-rear
- car-side
- car-tunnel
- caravan
- charging-station
- gas-pump
- gauge
- gauge-high
- gauge-simple
- gauge-simple-high
- motorcycle
- oil-can
- spray-can-sparkles
- taxi
- trailer
- truck
- truck-field
- truck-field-un
- truck-medical
- truck-monster
- truck-pickup
- van-shuttle
label: Automotive
buildings:
icons:
- archway
- arrow-right-to-city
- building
- building-circle-arrow-right
- building-circle-check
- building-circle-exclamation
- building-circle-xmark
- building-columns
- building-flag
- building-lock
- building-ngo
- building-shield
- building-un
- building-user
- building-wheat
- campground
- church
- city
- dungeon
- gopuram
- hospital
- hospital-user
- hotel
- house
- house-chimney
- house-chimney-crack
- house-chimney-medical
- house-chimney-window
- house-circle-check
- house-circle-exclamation
- house-circle-xmark
- house-crack
- house-fire
- house-flag
- house-lock
- house-medical
- house-medical-circle-check
- house-medical-circle-exclamation
- house-medical-circle-xmark
- house-medical-flag
- igloo
- industry
- kaaba
- landmark
- landmark-dome
- landmark-flag
- monument
- mosque
- mountain-city
- oil-well
- place-of-worship
- school
- school-circle-check
- school-circle-exclamation
- school-circle-xmark
- school-flag
- school-lock
- shop
- shop-lock
- store
- synagogue
- tent
- tent-arrow-down-to-line
- tent-arrow-left-right
- tent-arrow-turn-left
- tent-arrows-down
- tents
- toilet-portable
- toilets-portable
- torii-gate
- tower-observation
- tree-city
- vihara
- warehouse
label: Buildings
business:
icons:
- address-book
- address-card
- arrows-spin
- arrows-to-dot
- arrows-to-eye
- bars-progress
- bars-staggered
- book
- box-archive
- boxes-packing
- briefcase
- building
- bullhorn
- bullseye
- business-time
- cake-candles
- calculator
- calendar
- calendar-days
- certificate
- chart-line
- chart-pie
- chart-simple
- city
- clipboard
- clipboard-question
- compass
- copy
- copyright
- envelope
- envelope-circle-check
- envelope-open
- eraser
- fax
- file
- file-circle-plus
- file-lines
- floppy-disk
- folder
- folder-minus
- folder-open
- folder-plus
- folder-tree
- glasses
- globe
- highlighter
- house-laptop
- industry
- landmark
- laptop-file
- list-check
- magnifying-glass-arrow-right
- magnifying-glass-chart
- marker
- mug-saucer
- network-wired
- note-sticky
- paperclip
- paste
- pen
- pen-clip
- pen-fancy
- pen-nib
- pen-to-square
- pencil
- percent
- person-chalkboard
- phone
- phone-flip
- phone-slash
- phone-volume
- print
- registered
- scale-balanced
- scale-unbalanced
- scale-unbalanced-flip
- scissors
- signature
- sitemap
- socks
- square-envelope
- square-pen
- square-phone
- square-phone-flip
- square-poll-horizontal
- square-poll-vertical
- table
- table-columns
- tag
- tags
- thumbtack
- timeline
- trademark
- vault
- wallet
label: Business
camping:
icons:
- binoculars
- bottle-water
- bucket
- campground
- caravan
- compass
- faucet
- faucet-drip
- fire
- fire-burner
- fire-flame-curved
- frog
- kit-medical
- map
- map-location
- map-location-dot
- mattress-pillow
- mosquito
- mosquito-net
- mountain
- mountain-sun
- people-roof
- person-hiking
- person-shelter
- route
- signs-post
- tarp
- tarp-droplet
- tent
- tent-arrow-down-to-line
- tent-arrow-left-right
- tent-arrow-turn-left
- tent-arrows-down
- tents
- toilet-paper
- trailer
- tree
label: Camping
charity:
icons:
- circle-dollar-to-slot
- dollar-sign
- dove
- gift
- globe
- hand-holding-dollar
- hand-holding-droplet
- hand-holding-hand
- hand-holding-heart
- hands-holding-child
- hands-holding-circle
- handshake
- handshake-angle
- handshake-simple
- heart
- leaf
- parachute-box
- piggy-bank
- ribbon
- seedling
label: Charity
charts-diagrams:
icons:
- bars-progress
- chart-area
- chart-bar
- chart-column
- chart-gantt
- chart-line
- chart-pie
- chart-simple
- diagram-next
- diagram-predecessor
- diagram-project
- diagram-successor
- square-poll-horizontal
- square-poll-vertical
label: Charts + Diagrams
childhood:
icons:
- apple-whole
- baby
- baby-carriage
- baseball-bat-ball
- bath
- bucket
- cake-candles
- child
- child-dress
- child-reaching
- children
- cookie
- cookie-bite
- cubes-stacked
- gamepad
- hands-holding-child
- ice-cream
- mitten
- person-biking
- person-breastfeeding
- puzzle-piece
- robot
- school
- shapes
- snowman
label: Childhood
clothing-fashion:
icons:
- glasses
- graduation-cap
- hat-cowboy
- hat-cowboy-side
- hat-wizard
- mitten
- shirt
- shoe-prints
- socks
- user-tie
label: Clothing + Fashion
coding:
icons:
- barcode
- bars
- bars-staggered
- bath
- box-archive
- bug
- bug-slash
- circle-nodes
- code
- code-branch
- code-commit
- code-compare
- code-fork
- code-merge
- code-pull-request
- cube
- cubes
- diagram-project
- file
- file-code
- file-lines
- filter
- fire-extinguisher
- folder
- folder-open
- font-awesome
- gears
- keyboard
- laptop-code
- microchip
- mug-saucer
- network-wired
- qrcode
- rectangle-xmark
- shield
- shield-halved
- sitemap
- terminal
- user-secret
- window-maximize
- window-minimize
- window-restore
label: Coding
communication:
icons:
- address-book
- address-card
- at
- blender-phone
- bluetooth-b
- bullhorn
- comment
- comment-dots
- comment-medical
- comment-slash
- comment-sms
- comments
- ear-listen
- envelope
- envelope-circle-check
- envelope-open
- face-frown
- face-meh
- face-smile
- fax
- hands-asl-interpreting
- icons
- inbox
- language
- message
- microphone
- microphone-lines
- microphone-lines-slash
- microphone-slash
- mobile
- mobile-button
- mobile-retro
- mobile-screen
- mobile-screen-button
- paper-plane
- phone
- phone-flip
- phone-slash
- phone-volume
- poo
- quote-left
- quote-right
- square-envelope
- square-phone
- square-phone-flip
- square-rss
- tower-cell
- tty
- video
- video-slash
- voicemail
- walkie-talkie
label: Communication
connectivity:
icons:
- bluetooth
- circle-nodes
- cloud
- cloud-arrow-down
- cloud-arrow-up
- globe
- house-signal
- rss
- satellite-dish
- signal
- tower-broadcast
- tower-cell
- wifi
label: Connectivity
construction:
icons:
- arrow-up-from-ground-water
- bore-hole
- brush
- bucket
- compass-drafting
- dumpster
- dumpster-fire
- hammer
- helmet-safety
- mound
- paint-roller
- pen-ruler
- pencil
- person-digging
- ruler
- ruler-combined
- ruler-horizontal
- ruler-vertical
- screwdriver
- screwdriver-wrench
- sheet-plastic
- tarp
- tarp-droplet
- toilet-portable
- toilets-portable
- toolbox
- trowel
- trowel-bricks
- truck-pickup
- wrench
label: Construction
design:
icons:
- bezier-curve
- brush
- circle-half-stroke
- circle-nodes
- clone
- compass-drafting
- copy
- crop
- crop-simple
- crosshairs
- cube
- cubes
- draw-polygon
- droplet
- droplet-slash
- eraser
- eye
- eye-dropper
- eye-slash
- fill
- fill-drip
- floppy-disk
- font-awesome
- highlighter
- icons
- layer-group
- lines-leaning
- marker
- object-group
- object-ungroup
- paint-roller
- paintbrush
- palette
- paste
- pen
- pen-clip
- pen-fancy
- pen-nib
- pen-ruler
- pen-to-square
- pencil
- ruler-combined
- ruler-horizontal
- ruler-vertical
- scissors
- splotch
- spray-can
- stamp
- swatchbook
- vector-square
- wand-magic
- wand-magic-sparkles
label: Design
devices-hardware:
icons:
- blender-phone
- camera
- camera-retro
- car-battery
- compact-disc
- computer
- computer-mouse
- database
- desktop
- display
- download
- ethernet
- fax
- floppy-disk
- gamepad
- hard-drive
- headphones
- house-laptop
- keyboard
- laptop
- laptop-file
- memory
- microchip
- mobile
- mobile-button
- mobile-retro
- mobile-screen
- mobile-screen-button
- plug
- power-off
- print
- satellite
- satellite-dish
- sd-card
- server
- sim-card
- tablet
- tablet-button
- tablet-screen-button
- tachograph-digital
- tv
- upload
- walkie-talkie
label: Devices + Hardware
disaster:
icons:
- biohazard
- bugs
- burst
- child-rifle
- circle-radiation
- cloud-bolt
- cloud-showers-heavy
- cloud-showers-water
- helmet-un
- hill-avalanche
- hill-rockslide
- house-chimney-crack
- house-crack
- house-fire
- house-flood-water
- house-flood-water-circle-arrow-right
- house-tsunami
- hurricane
- locust
- mosquito
- person-drowning
- person-rifle
- person-walking-arrow-loop-left
- person-walking-arrow-right
- person-walking-dashed-line-arrow-right
- plant-wilt
- radiation
- snowflake
- sun-plant-wilt
- temperature-arrow-down
- temperature-arrow-up
- tornado
- volcano
- wheat-awn-circle-exclamation
- wind
- worm
- xmarks-lines
label: Disaster + Crisis
editing:
icons:
- arrows-rotate
- bandage
- bars
- brush
- chart-simple
- check
- check-double
- circle-check
- circle-half-stroke
- crop
- crop-simple
- cube
- delete-left
- ellipsis
- ellipsis-vertical
- eye-dropper
- eye-slash
- grip
- grip-lines
- grip-lines-vertical
- grip-vertical
- link
- link-slash
- minus
- paintbrush
- pen
- pen-clip
- pen-fancy
- pen-nib
- pen-ruler
- pen-to-square
- pencil
- plus
- rotate
- scissors
- signature
- sliders
- square-check
- square-pen
- trash
- trash-arrow-up
- trash-can
- trash-can-arrow-up
- wand-magic
- wand-magic-sparkles
- xmark
label: Editing
education:
icons:
- apple-whole
- atom
- award
- bell
- bell-slash
- book-open
- book-open-reader
- chalkboard
- chalkboard-user
- graduation-cap
- laptop-code
- laptop-file
- masks-theater
- microscope
- music
- person-chalkboard
- school
- school-circle-check
- school-circle-exclamation
- school-circle-xmark
- school-flag
- school-lock
- shapes
- user-graduate
label: Education
emoji:
icons:
- face-angry
- face-dizzy
- face-flushed
- face-frown
- face-frown-open
- face-grimace
- face-grin
- face-grin-beam
- face-grin-beam-sweat
- face-grin-hearts
- face-grin-squint
- face-grin-squint-tears
- face-grin-stars
- face-grin-tears
- face-grin-tongue
- face-grin-tongue-squint
- face-grin-tongue-wink
- face-grin-wide
- face-grin-wink
- face-kiss
- face-kiss-beam
- face-kiss-wink-heart
- face-laugh
- face-laugh-beam
- face-laugh-squint
- face-laugh-wink
- face-meh
- face-meh-blank
- face-rolling-eyes
- face-sad-cry
- face-sad-tear
- face-smile
- face-smile-beam
- face-smile-wink
- face-surprise
- face-tired
label: Emoji
energy:
icons:
- arrow-up-from-ground-water
- atom
- battery-empty
- battery-full
- battery-half
- battery-quarter
- battery-three-quarters
- bolt
- car-battery
- charging-station
- circle-radiation
- explosion
- fan
- fire
- fire-flame-curved
- fire-flame-simple
- gas-pump
- industry
- leaf
- lightbulb
- oil-well
- plug
- plug-circle-bolt
- plug-circle-check
- plug-circle-exclamation
- plug-circle-minus
- plug-circle-plus
- plug-circle-xmark
- poop
- power-off
- radiation
- seedling
- solar-panel
- sun
- tower-broadcast
- water
- wind
label: Energy
files:
icons:
- box-archive
- clone
- copy
- file
- file-arrow-down
- file-arrow-up
- file-audio
- file-circle-check
- file-circle-exclamation
- file-circle-minus
- file-circle-plus
- file-circle-question
- file-circle-xmark
- file-code
- file-csv
- file-excel
- file-export
- file-image
- file-import
- file-lines
- file-pdf
- file-pen
- file-powerpoint
- file-shield
- file-video
- file-word
- file-zipper
- floppy-disk
- folder
- folder-closed
- folder-open
- note-sticky
- paste
- photo-film
- scissors
label: Files
film-video:
icons:
- audio-description
- circle
- clapperboard
- closed-captioning
- compact-disc
- file-audio
- file-video
- film
- headphones
- microphone
- microphone-lines
- microphone-lines-slash
- microphone-slash
- photo-film
- podcast
- square-rss
- ticket
- tower-broadcast
- tower-cell
- tv
- video
- video-slash
- youtube
label: Film + Video
food-beverage:
icons:
- apple-whole
- bacon
- beer-mug-empty
- blender
- bone
- bottle-droplet
- bottle-water
- bowl-food
- bowl-rice
- bread-slice
- burger
- cake-candles
- candy-cane
- carrot
- champagne-glasses
- cheese
- cloud-meatball
- cookie
- cubes-stacked
- drumstick-bite
- egg
- fish
- fish-fins
- flask
- glass-water
- glass-water-droplet
- hotdog
- ice-cream
- jar
- jar-wheat
- lemon
- martini-glass
- martini-glass-citrus
- martini-glass-empty
- mug-hot
- mug-saucer
- pepper-hot
- pizza-slice
- plate-wheat
- seedling
- shrimp
- stroopwafel
- wheat-awn
- wheat-awn-circle-exclamation
- whiskey-glass
- wine-bottle
- wine-glass
- wine-glass-empty
label: Food + Beverage
fruits-vegetables:
icons:
- apple-whole
- carrot
- leaf
- lemon
- pepper-hot
- seedling
label: Fruits + Vegetables
gaming:
icons:
- book-skull
- chess
- chess-bishop
- chess-board
- chess-king
- chess-knight
- chess-pawn
- chess-queen
- chess-rook
- critical-role
- d-and-d
- d-and-d-beyond
- diamond
- dice
- dice-d20
- dice-d6
- dice-five
- dice-four
- dice-one
- dice-six
- dice-three
- dice-two
- dragon
- dungeon
- fantasy-flight-games
- gamepad
- ghost
- hand-fist
- hat-wizard
- headset
- heart
- playstation
- puzzle-piece
- ring
- scroll
- shield-halved
- skull-crossbones
- square-full
- steam
- steam-square
- steam-symbol
- twitch
- vr-cardboard
- wand-sparkles
- wizards-of-the-coast
- xbox
label: Gaming
gender:
icons:
- genderless
- mars
- mars-and-venus
- mars-double
- mars-stroke
- mars-stroke-right
- mars-stroke-up
- mercury
- neuter
- person-half-dress
- transgender
- venus
- venus-double
- venus-mars
label: Genders
halloween:
icons:
- book-skull
- broom
- cat
- cloud-moon
- crow
- ghost
- hat-wizard
- mask
- skull
- skull-crossbones
- spider
- toilet-paper
- wand-sparkles
label: Halloween
hands:
icons:
- hand
- hand-back-fist
- hand-dots
- hand-fist
- hand-holding
- hand-holding-dollar
- hand-holding-droplet
- hand-holding-hand
- hand-holding-heart
- hand-holding-medical
- hand-lizard
- hand-middle-finger
- hand-peace
- hand-point-down
- hand-point-left
- hand-point-right
- hand-point-up
- hand-pointer
- hand-scissors
- hand-sparkles
- hand-spock
- hands-bound
- hands-bubbles
- hands-clapping
- hands-holding
- hands-holding-child
- hands-holding-circle
- hands-praying
- handshake
- handshake-angle
- handshake-simple
- handshake-simple-slash
- handshake-slash
- thumbs-down
- thumbs-up
label: Hands
holidays:
icons:
- candy-cane
- carrot
- champagne-glasses
- cookie-bite
- face-grin-hearts
- face-kiss-wink-heart
- gift
- gifts
- heart
- holly-berry
- menorah
- mug-hot
- sleigh
- snowman
label: Holidays
household:
icons:
- arrow-up-from-water-pump
- bath
- bed
- bell
- blender
- box-tissue
- chair
- computer
- couch
- door-closed
- door-open
- dungeon
- fan
- faucet
- faucet-drip
- fire-burner
- house-chimney-user
- house-chimney-window
- house-fire
- house-laptop
- house-lock
- house-signal
- house-user
- jar
- jar-wheat
- jug-detergent
- kitchen-set
- lightbulb
- mattress-pillow
- mug-saucer
- people-roof
- plug
- pump-soap
- rug
- sheet-plastic
- shower
- sink
- snowflake
- soap
- spoon
- stairs
- temperature-arrow-down
- temperature-arrow-up
- toilet
- toilet-paper
- toilet-paper-slash
- tv
- utensils
label: Household
humanitarian:
icons:
- anchor
- anchor-circle-check
- anchor-circle-exclamation
- anchor-circle-xmark
- anchor-lock
- arrow-down-up-across-line
- arrow-down-up-lock
- arrow-right-to-city
- arrow-up-from-ground-water
- arrow-up-from-water-pump
- arrow-up-right-dots
- arrow-up-right-from-square
- arrows-down-to-line
- arrows-down-to-people
- arrows-left-right-to-line
- arrows-spin
- arrows-split-up-and-left
- arrows-to-circle
- arrows-to-dot
- arrows-to-eye
- arrows-turn-right
- arrows-turn-to-dots
- arrows-up-to-line
- baby
- bacterium
- ban
- bed
- biohazard
- book-bookmark
- bore-hole
- bottle-droplet
- bottle-water
- bowl-food
- bowl-rice
- boxes-packing
- bridge
- bridge-circle-check
- bridge-circle-exclamation
- bridge-circle-xmark
- bridge-lock
- bridge-water
- bucket
- bugs
- building
- building-circle-arrow-right
- building-circle-check
- building-circle-exclamation
- building-circle-xmark
- building-columns
- building-flag
- building-lock
- building-ngo
- building-shield
- building-un
- building-user
- building-wheat
- burst
- bus
- car
- car-on
- car-tunnel
- child-rifle
- children
- church
- circle-h
- circle-nodes
- clipboard-question
- clipboard-user
- cloud-bolt
- cloud-showers-heavy
- cloud-showers-water
- computer
- cow
- cubes-stacked
- display
- droplet
- envelope
- envelope-circle-check
- explosion
- faucet-drip
- fax
- ferry
- file
- file-circle-check
- file-circle-exclamation
- file-circle-minus
- file-circle-plus
- file-circle-question
- file-circle-xmark
- file-csv
- file-pdf
- file-pen
- file-shield
- fire-burner
- fire-flame-simple
- fish-fins
- flag
- flask-vial
- gas-pump
- glass-water
- glass-water-droplet
- gopuram
- group-arrows-rotate
- hammer
- hand-holding-hand
- handcuffs
- hands-bound
- hands-bubbles
- hands-holding-child
- hands-holding-circle
- handshake-simple
- headset
- heart-circle-bolt
- heart-circle-check
- heart-circle-exclamation
- heart-circle-minus
- heart-circle-plus
- heart-circle-xmark
- helicopter
- helicopter-symbol
- helmet-un
- hill-avalanche
- hill-rockslide
- hospital
- hotel
- house-chimney
- house-chimney-crack
- house-circle-check
- house-circle-exclamation
- house-circle-xmark
- house-fire
- house-flag
- house-flood-water
- house-flood-water-circle-arrow-right
- house-lock
- house-medical
- house-medical-circle-check
- house-medical-circle-exclamation
- house-medical-circle-xmark
- house-medical-flag
- house-signal
- house-tsunami
- hurricane
- id-card
- jar
- jar-wheat
- jet-fighter-up
- jug-detergent
- kitchen-set
- land-mine-on
- landmark
- landmark-dome
- landmark-flag
- laptop
- laptop-file
- life-ring
- lines-leaning
- location-pin-lock
- locust
- lungs
- magnifying-glass-arrow-right
- magnifying-glass-chart
- mars-and-venus
- mars-and-venus-burst
- mask-face
- mask-ventilator
- mattress-pillow
- microscope
- mobile-retro
- mobile-screen
- money-bill-transfer
- money-bill-trend-up
- money-bill-wheat
- money-bills
- mosque
- mosquito
- mosquito-net
- mound
- mountain-city
- mountain-sun
- oil-well
- parachute-box
- people-arrows-left-right
- people-group
- people-line
- people-pulling
- people-robbery
- people-roof
- person
- person-arrow-down-to-line
- person-arrow-up-from-line
- person-breastfeeding
- person-burst
- person-cane
- person-chalkboard
- person-circle-check
- person-circle-exclamation
- person-circle-minus
- person-circle-plus
- person-circle-question
- person-circle-xmark
- person-digging
- person-dress
- person-dress-burst
- person-drowning
- person-falling
- person-falling-burst
- person-half-dress
- person-harassing
- person-military-pointing
- person-military-rifle
- person-military-to-person
- person-pregnant
- person-rays
- person-rifle
- person-shelter
- person-through-window
- person-walking
- person-walking-arrow-loop-left
- person-walking-arrow-right
- person-walking-dashed-line-arrow-right
- person-walking-luggage
- pills
- plane-circle-check
- plane-circle-exclamation
- plane-circle-xmark
- plane-lock
- plane-up
- plant-wilt
- plate-wheat
- plug
- plug-circle-bolt
- plug-circle-check
- plug-circle-exclamation
- plug-circle-minus
- plug-circle-plus
- plug-circle-xmark
- pump-soap
- radiation
- radio
- ranking-star
- road
- road-barrier
- road-bridge
- road-circle-check
- road-circle-exclamation
- road-circle-xmark
- road-lock
- road-spikes
- rug
- sack-dollar
- sack-xmark
- sailboat
- satellite-dish
- scale-balanced
- school
- school-circle-check
- school-circle-exclamation
- school-circle-xmark
- school-flag
- school-lock
- seedling
- sheet-plastic
- shield-cat
- shield-dog
- shield-heart
- ship
- shirt
- shop
- shop-lock
- shower
- skull-crossbones
- snowflake
- soap
- square-nfi
- square-person-confined
- square-virus
- staff-aesculapius
- stethoscope
- suitcase-medical
- sun-plant-wilt
- syringe
- tarp
- tarp-droplet
- temperature-arrow-down
- temperature-arrow-up
- tent
- tent-arrow-down-to-line
- tent-arrow-left-right
- tent-arrow-turn-left
- tent-arrows-down
- tents
- toilet
- toilet-portable
- toilets-portable
- tornado
- tower-broadcast
- tower-cell
- tower-observation
- train-subway
- trash-can
- tree-city
- trowel
- trowel-bricks
- truck
- truck-arrow-right
- truck-droplet
- truck-field
- truck-field-un
- truck-front
- truck-medical
- truck-plane
- user-doctor
- user-injured
- users-between-lines
- users-line
- users-rays
- users-rectangle
- users-viewfinder
- vial-circle-check
- vial-virus
- vihara
- virus
- virus-covid
- volcano
- walkie-talkie
- wheat-awn
- wheat-awn-circle-exclamation
- wheelchair-move
- wifi
- wind
- worm
- xmarks-lines
label: Humanitarian
logistics:
icons:
- anchor
- anchor-circle-check
- anchor-circle-exclamation
- anchor-circle-xmark
- anchor-lock
- box
- boxes-packing
- boxes-stacked
- bridge
- bridge-circle-check
- bridge-circle-exclamation
- bridge-circle-xmark
- bridge-lock
- bridge-water
- bus
- bus-simple
- car
- car-tunnel
- cart-flatbed
- chart-simple
- clipboard-check
- clipboard-list
- clipboard-question
- dolly
- ferry
- gas-pump
- gears
- helicopter
- helicopter-symbol
- helmet-safety
- jet-fighter-up
- pallet
- plane-circle-check
- plane-circle-exclamation
- plane-circle-xmark
- plane-lock
- road
- road-barrier
- road-bridge
- road-circle-check
- road-circle-exclamation
- road-circle-xmark
- road-lock
- sailboat
- square-nfi
- train
- train-subway
- truck
- truck-arrow-right
- truck-fast
- truck-field
- truck-field-un
- truck-front
- truck-plane
- warehouse
- xmarks-lines
label: Logistics
maps:
icons:
- anchor
- bag-shopping
- basket-shopping
- bath
- bed
- beer-mug-empty
- bell
- bell-slash
- bicycle
- binoculars
- bomb
- book
- book-atlas
- bookmark
- bridge
- bridge-water
- briefcase
- building
- building-columns
- cake-candles
- car
- cart-shopping
- circle-info
- crosshairs
- diamond-turn-right
- dollar-sign
- draw-polygon
- droplet
- eye
- eye-low-vision
- eye-slash
- fire
- fire-extinguisher
- fire-flame-curved
- flag
- flag-checkered
- flask
- gamepad
- gavel
- gift
- globe
- graduation-cap
- heart
- heart-pulse
- helicopter
- helicopter-symbol
- hospital
- house
- image
- images
- industry
- info
- jet-fighter
- key
- landmark
- landmark-flag
- layer-group
- leaf
- lemon
- life-ring
- lightbulb
- location-arrow
- location-crosshairs
- location-dot
- location-pin
- location-pin-lock
- magnet
- magnifying-glass
- magnifying-glass-minus
- magnifying-glass-plus
- map
- map-pin
- martini-glass-empty
- money-bill
- money-bill-1
- motorcycle
- mountain-sun
- mug-saucer
- music
- newspaper
- paw
- person
- person-walking-with-cane
- phone
- phone-flip
- phone-volume
- plane
- plug
- plus
- print
- recycle
- restroom
- road
- rocket
- route
- scale-balanced
- scale-unbalanced
- scale-unbalanced-flip
- ship
- shoe-prints
- shower
- signs-post
- snowplow
- spoon
- square-h
- square-parking
- square-phone
- square-phone-flip
- square-plus
- street-view
- suitcase
- suitcase-medical
- tag
- tags
- taxi
- thumbtack
- ticket
- ticket-simple
- traffic-light
- train
- train-subway
- train-tram
- tree
- trophy
- truck
- truck-medical
- tty
- umbrella
- utensils
- vest
- vest-patches
- wheelchair
- wheelchair-move
- wifi
- wine-glass
- wrench
label: Maps
maritime:
icons:
- anchor
- anchor-circle-check
- anchor-circle-exclamation
- anchor-circle-xmark
- anchor-lock
- ferry
- fish
- fish-fins
- otter
- person-swimming
- sailboat
- ship
- shrimp
- water
label: Maritime
marketing:
icons:
- arrows-spin
- arrows-to-dot
- arrows-to-eye
- bullhorn
- bullseye
- chart-simple
- comment-dollar
- comments-dollar
- envelope-open-text
- envelopes-bulk
- filter-circle-dollar
- group-arrows-rotate
- lightbulb
- magnifying-glass-arrow-right
- magnifying-glass-chart
- magnifying-glass-dollar
- magnifying-glass-location
- people-group
- person-rays
- ranking-star
- rectangle-ad
- square-poll-horizontal
- square-poll-vertical
- timeline
label: Marketing
mathematics:
icons:
- calculator
- circle-minus
- circle-plus
- circle-xmark
- divide
- equals
- greater-than
- greater-than-equal
- infinity
- less-than
- less-than-equal
- minus
- not-equal
- percent
- plus
- plus-minus
- square-minus
- square-root-variable
- square-xmark
- subscript
- superscript
- wave-square
- xmark
label: Mathematics
media-playback:
icons:
- arrow-rotate-left
- arrow-rotate-right
- arrows-rotate
- backward
- backward-fast
- backward-step
- circle-pause
- circle-play
- circle-stop
- compress
- down-left-and-up-right-to-center
- eject
- expand
- forward
- forward-fast
- forward-step
- hand
- maximize
- minimize
- music
- pause
- phone-volume
- play
- plus-minus
- repeat
- rotate
- rotate-left
- rotate-right
- rss
- shuffle
- sliders
- stop
- up-right-and-down-left-from-center
- volume-high
- volume-low
- volume-off
- volume-xmark
label: Media Playback
medical-health:
icons:
- accessible-icon
- bacteria
- bacterium
- ban-smoking
- bandage
- bed-pulse
- biohazard
- bone
- bong
- book-medical
- brain
- briefcase-medical
- cannabis
- capsules
- circle-h
- circle-radiation
- clipboard-user
- clock-rotate-left
- comment-medical
- crutch
- disease
- dna
- eye
- eye-dropper
- file-medical
- file-prescription
- file-waveform
- fire-flame-simple
- flask
- flask-vial
- hand-dots
- hand-holding-medical
- head-side-cough
- head-side-cough-slash
- head-side-mask
- head-side-virus
- heart
- heart-circle-bolt
- heart-circle-check
- heart-circle-exclamation
- heart-circle-minus
- heart-circle-plus
- heart-circle-xmark
- heart-pulse
- hospital
- hospital-user
- house-chimney-medical
- house-medical
- house-medical-circle-check
- house-medical-circle-exclamation
- house-medical-circle-xmark
- house-medical-flag
- id-card-clip
- joint
- kit-medical
- laptop-medical
- lungs
- lungs-virus
- mask-face
- mask-ventilator
- microscope
- mortar-pestle
- notes-medical
- pager
- person-breastfeeding
- person-cane
- person-dots-from-line
- person-half-dress
- pills
- plus
- poop
- prescription
- prescription-bottle
- prescription-bottle-medical
- pump-medical
- radiation
- receipt
- shield-virus
- skull
- skull-crossbones
- smoking
- square-h
- square-plus
- square-virus
- staff-aesculapius
- star-of-life
- stethoscope
- suitcase-medical
- syringe
- tablets
- teeth
- teeth-open
- thermometer
- tooth
- truck-medical
- user-doctor
- user-nurse
- vial
- vial-circle-check
- vial-virus
- vials
- virus
- virus-covid
- virus-covid-slash
- virus-slash
- viruses
- weight-scale
- wheelchair
- wheelchair-move
- x-ray
label: Medical + Health
money:
icons:
- austral-sign
- baht-sign
- bitcoin
- bitcoin-sign
- brazilian-real-sign
- btc
- cash-register
- cedi-sign
- cent-sign
- chart-line
- chart-pie
- circle-dollar-to-slot
- coins
- colon-sign
- comment-dollar
- comments-dollar
- credit-card
- cruzeiro-sign
- dollar-sign
- dong-sign
- ethereum
- euro-sign
- file-invoice
- file-invoice-dollar
- florin-sign
- franc-sign
- gg
- gg-circle
- guarani-sign
- hand-holding-dollar
- hryvnia-sign
- indian-rupee-sign
- kip-sign
- landmark
- lari-sign
- lira-sign
- litecoin-sign
- manat-sign
- mill-sign
- money-bill
- money-bill-1
- money-bill-1-wave
- money-bill-transfer
- money-bill-trend-up
- money-bill-wave
- money-bill-wheat
- money-bills
- money-check
- money-check-dollar
- naira-sign
- percent
- peseta-sign
- peso-sign
- piggy-bank
- receipt
- ruble-sign
- rupee-sign
- rupiah-sign
- sack-dollar
- sack-xmark
- scale-balanced
- scale-unbalanced
- scale-unbalanced-flip
- shekel-sign
- stamp
- sterling-sign
- tenge-sign
- turkish-lira-sign
- vault
- wallet
- won-sign
- yen-sign
label: Money
moving:
icons:
- box-archive
- box-open
- boxes-packing
- caravan
- couch
- dolly
- house-chimney
- people-carry-box
- route
- sign-hanging
- suitcase
- tape
- trailer
- truck-moving
- truck-ramp-box
- wine-glass
label: Moving
music-audio:
icons:
- compact-disc
- drum
- drum-steelpan
- file-audio
- guitar
- headphones
- headphones-simple
- microphone
- microphone-lines
- microphone-lines-slash
- microphone-slash
- music
- napster
- radio
- record-vinyl
- sliders
- soundcloud
- spotify
- volume-high
- volume-low
- volume-off
- volume-xmark
label: Music + Audio
nature:
icons:
- binoculars
- bug
- bugs
- cannabis
- cloud-sun
- clover
- feather
- feather-pointed
- fire
- frog
- icicles
- leaf
- locust
- mosquito
- mound
- mountain
- mountain-city
- mountain-sun
- person-hiking
- plant-wilt
- seedling
- signs-post
- spider
- tree
- volcano
- water
- wind
- worm
label: Nature
numbers:
icons:
- '0'
- '1'
- '2'
- '3'
- '4'
- '5'
- '6'
- '7'
- '8'
- '9'
label: Numbers
photos-images:
icons:
- bolt
- bolt-lightning
- camera
- camera-retro
- camera-rotate
- chalkboard
- circle-half-stroke
- clone
- droplet
- eye
- eye-dropper
- eye-slash
- file-image
- film
- id-badge
- id-card
- image
- image-portrait
- images
- minimize
- panorama
- photo-film
- sliders
- unsplash
label: Photos + Images
political:
icons:
- award
- building-flag
- bullhorn
- check-double
- check-to-slot
- circle-dollar-to-slot
- democrat
- dove
- dumpster-fire
- flag-usa
- hand-fist
- handshake
- landmark-dome
- landmark-flag
- person-booth
- piggy-bank
- republican
- scale-balanced
- scale-unbalanced
- scale-unbalanced-flip
label: Political
punctuation-symbols:
icons:
- asterisk
- at
- check
- check-double
- circle-exclamation
- circle-question
- equals
- exclamation
- greater-than
- hashtag
- less-than
- minus
- percent
- plus
- question
- quote-left
- quote-right
- section
label: Punctuation + Symbols
religion:
icons:
- ankh
- atom
- bahai
- book-bible
- book-journal-whills
- book-quran
- church
- cross
- dharmachakra
- dove
- gopuram
- hamsa
- hands-praying
- hanukiah
- jedi
- kaaba
- khanda
- menorah
- mosque
- om
- peace
- person-praying
- place-of-worship
- scroll-torah
- spaghetti-monster-flying
- star-and-crescent
- star-of-david
- synagogue
- torii-gate
- vihara
- yin-yang
label: Religion
science:
icons:
- atom
- biohazard
- brain
- capsules
- circle-radiation
- clipboard-check
- disease
- dna
- eye-dropper
- filter
- fire
- fire-flame-curved
- fire-flame-simple
- flask
- flask-vial
- frog
- magnet
- microscope
- mortar-pestle
- pills
- prescription-bottle
- radiation
- seedling
- skull-crossbones
- square-virus
- syringe
- tablets
- temperature-high
- temperature-low
- vial
- vial-circle-check
- vial-virus
- vials
label: Science
science-fiction:
icons:
- atom
- book-journal-whills
- explosion
- galactic-republic
- galactic-senate
- hand-spock
- jedi
- jedi-order
- old-republic
- robot
- rocket
- user-astronaut
label: Science Fiction
security:
icons:
- ban
- bug
- bug-slash
- building-lock
- building-shield
- burst
- car-on
- door-closed
- door-open
- dungeon
- explosion
- eye
- eye-slash
- file-contract
- file-shield
- file-signature
- fingerprint
- gun
- handcuffs
- hands-bound
- hands-holding-child
- hands-holding-circle
- house-fire
- house-lock
- id-badge
- id-card
- id-card-clip
- key
- land-mine-on
- lock
- lock-open
- mars-and-venus-burst
- mask
- passport
- people-pulling
- people-robbery
- person-burst
- person-dress-burst
- person-falling-burst
- person-harassing
- person-military-pointing
- person-military-rifle
- person-military-to-person
- person-rifle
- person-shelter
- person-through-window
- road-spikes
- shield
- shield-cat
- shield-dog
- shield-halved
- shield-heart
- skull-crossbones
- square-person-confined
- tower-observation
- unlock
- unlock-keyhole
- user-lock
- user-secret
- user-shield
- vault
label: Security
shapes:
icons:
- bookmark
- burst
- calendar
- certificate
- circle
- cloud
- clover
- comment
- crown
- cubes-stacked
- diamond
- file
- folder
- heart
- heart-crack
- lines-leaning
- location-pin
- play
- shapes
- shield
- square
- star
- ticket-simple
label: Shapes
shopping:
icons:
- alipay
- amazon-pay
- apple-pay
- bag-shopping
- barcode
- basket-shopping
- bell
- bitcoin
- bookmark
- btc
- bullhorn
- camera
- camera-retro
- cart-arrow-down
- cart-plus
- cart-shopping
- cash-register
- cc-amazon-pay
- cc-amex
- cc-apple-pay
- cc-diners-club
- cc-discover
- cc-jcb
- cc-mastercard
- cc-paypal
- cc-stripe
- cc-visa
- certificate
- credit-card
- ethereum
- gem
- gift
- gifts
- google-pay
- google-wallet
- handshake
- heart
- key
- money-check
- money-check-dollar
- nfc-directional
- nfc-symbol
- paypal
- person-booth
- receipt
- shirt
- shop
- shop-lock
- shop-slash
- star
- store
- store-slash
- stripe
- stripe-s
- tag
- tags
- thumbs-down
- thumbs-up
- trophy
- truck
- truck-fast
label: Shopping
social:
icons:
- bell
- cake-candles
- camera
- circle-user
- comment
- envelope
- hashtag
- heart
- icons
- image
- images
- location-dot
- location-pin
- message
- photo-film
- retweet
- share
- share-from-square
- share-nodes
- square-poll-horizontal
- square-poll-vertical
- square-share-nodes
- star
- thumbs-down
- thumbs-up
- thumbtack
- user
- user-group
- user-plus
- users
- video
label: Social
spinners:
icons:
- arrows-spin
- asterisk
- atom
- bahai
- certificate
- circle-notch
- compact-disc
- compass
- crosshairs
- dharmachakra
- fan
- gear
- hurricane
- life-ring
- palette
- ring
- rotate
- slash
- snowflake
- spinner
- stroopwafel
- sun
- yin-yang
label: Spinners
sports-fitness:
icons:
- baseball
- baseball-bat-ball
- basketball
- bicycle
- bowling-ball
- broom-ball
- dumbbell
- fire-flame-curved
- fire-flame-simple
- football
- futbol
- golf-ball-tee
- heart
- heart-pulse
- hockey-puck
- medal
- mound
- person-biking
- person-hiking
- person-running
- person-skating
- person-skiing
- person-skiing-nordic
- person-snowboarding
- person-swimming
- person-walking
- ranking-star
- shoe-prints
- spa
- stopwatch-20
- table-tennis-paddle-ball
- volleyball
- weight-hanging
label: Sports + Fitness
text-formatting:
icons:
- align-center
- align-justify
- align-left
- align-right
- bold
- border-all
- border-none
- border-top-left
- check
- check-double
- circle-check
- filter-circle-xmark
- font
- heading
- highlighter
- i-cursor
- icons
- indent
- italic
- list
- list-check
- list-ol
- list-ul
- outdent
- paragraph
- rectangle-list
- spell-check
- square-check
- strikethrough
- subscript
- superscript
- table
- table-cells
- table-cells-large
- table-columns
- table-list
- text-height
- text-slash
- text-width
- underline
label: Text Formatting
time:
icons:
- bell
- bell-slash
- calendar
- calendar-check
- calendar-day
- calendar-days
- calendar-minus
- calendar-plus
- calendar-week
- calendar-xmark
- clock
- hourglass
- hourglass-empty
- hourglass-end
- hourglass-start
- stopwatch
- stopwatch-20
label: Time
toggle:
icons:
- bullseye
- circle
- circle-check
- circle-dot
- location-crosshairs
- microphone
- microphone-slash
- plane-up
- signal
- star
- star-half
- star-half-stroke
- toggle-off
- toggle-on
- wifi
label: Toggle
transportation:
icons:
- accessible-icon
- baby-carriage
- bicycle
- bus
- bus-simple
- car
- car-burst
- car-rear
- car-side
- car-tunnel
- cart-shopping
- ferry
- helicopter
- horse
- jet-fighter
- jet-fighter-up
- motorcycle
- mound
- paper-plane
- plane
- plane-slash
- plane-up
- road
- road-barrier
- road-spikes
- rocket
- sailboat
- ship
- shuttle-space
- sleigh
- snowplow
- taxi
- tractor
- train
- train-subway
- train-tram
- truck
- truck-arrow-right
- truck-droplet
- truck-field
- truck-field-un
- truck-front
- truck-medical
- truck-monster
- truck-pickup
- truck-plane
- van-shuttle
- wheelchair
- wheelchair-move
label: Transportation
travel-hotel:
icons:
- archway
- baby-carriage
- ban-smoking
- bath
- bed
- bell-concierge
- book-atlas
- briefcase
- bus
- bus-simple
- car
- caravan
- cart-flatbed-suitcase
- dice
- dice-five
- door-closed
- door-open
- dumbbell
- earth-africa
- earth-americas
- earth-asia
- earth-europe
- earth-oceania
- elevator
- hot-tub-person
- hotel
- infinity
- key
- kitchen-set
- map
- map-location
- map-location-dot
- martini-glass
- martini-glass-citrus
- martini-glass-empty
- monument
- mountain-city
- mug-saucer
- passport
- person-swimming
- person-walking-luggage
- plane
- plane-arrival
- plane-circle-check
- plane-circle-exclamation
- plane-circle-xmark
- plane-departure
- plane-lock
- plane-slash
- plane-up
- shower
- smoking
- snowflake
- spa
- stairs
- suitcase
- suitcase-rolling
- taxi
- toilet
- train-tram
- tree-city
- tv
- umbrella-beach
- utensils
- van-shuttle
- water-ladder
- wheelchair
- wheelchair-move
- wifi
- wine-glass
- wine-glass-empty
label: Travel + Hotel
users-people:
icons:
- accessible-icon
- address-book
- address-card
- arrows-down-to-people
- baby
- bed
- chalkboard-user
- child
- child-dress
- child-reaching
- children
- circle-user
- clipboard-user
- elevator
- face-frown
- face-meh
- face-smile
- head-side-cough
- head-side-cough-slash
- head-side-mask
- head-side-virus
- hospital-user
- hot-tub-person
- house-chimney-user
- house-user
- id-badge
- id-card
- id-card-clip
- image-portrait
- mars-and-venus-burst
- people-arrows-left-right
- people-carry-box
- people-group
- people-line
- people-pulling
- people-robbery
- people-roof
- person
- person-arrow-down-to-line
- person-arrow-up-from-line
- person-biking
- person-booth
- person-breastfeeding
- person-burst
- person-cane
- person-chalkboard
- person-circle-check
- person-circle-exclamation
- person-circle-minus
- person-circle-plus
- person-circle-question
- person-circle-xmark
- person-digging
- person-dots-from-line
- person-dress
- person-dress-burst
- person-drowning
- person-falling
- person-falling-burst
- person-half-dress
- person-harassing
- person-hiking
- person-military-pointing
- person-military-rifle
- person-military-to-person
- person-praying
- person-pregnant
- person-rays
- person-rifle
- person-running
- person-shelter
- person-skating
- person-skiing
- person-skiing-nordic
- person-snowboarding
- person-swimming
- person-through-window
- person-walking
- person-walking-arrow-loop-left
- person-walking-arrow-right
- person-walking-dashed-line-arrow-right
- person-walking-luggage
- person-walking-with-cane
- poo
- restroom
- skull
- square-person-confined
- street-view
- user
- user-astronaut
- user-check
- user-clock
- user-doctor
- user-gear
- user-graduate
- user-group
- user-injured
- user-large
- user-large-slash
- user-lock
- user-minus
- user-ninja
- user-nurse
- user-pen
- user-plus
- user-secret
- user-shield
- user-slash
- user-tag
- user-tie
- user-xmark
- users
- users-between-lines
- users-gear
- users-line
- users-rays
- users-rectangle
- users-slash
- users-viewfinder
- wheelchair
- wheelchair-move
label: Users + People
weather:
icons:
- bolt
- bolt-lightning
- cloud
- cloud-bolt
- cloud-meatball
- cloud-moon
- cloud-moon-rain
- cloud-rain
- cloud-showers-heavy
- cloud-showers-water
- cloud-sun
- cloud-sun-rain
- house-tsunami
- hurricane
- icicles
- meteor
- moon
- poo-storm
- rainbow
- smog
- snowflake
- sun
- sun-plant-wilt
- temperature-arrow-down
- temperature-arrow-up
- temperature-empty
- temperature-full
- temperature-half
- temperature-high
- temperature-low
- temperature-quarter
- temperature-three-quarters
- tornado
- umbrella
- volcano
- water
- wind
label: Weather
writing:
icons:
- blog
- book
- book-bookmark
- bookmark
- box-archive
- envelope
- envelope-open
- eraser
- file
- file-lines
- folder
- folder-open
- keyboard
- newspaper
- note-sticky
- paper-plane
- paperclip
- paragraph
- pen
- pen-clip
- pen-to-square
- pencil
- quote-left
- quote-right
- signature
- square-pen
- thumbtack
label: Writing
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
[
[
"glass",
null,
"martini-glass-empty"
],
[
"envelope-o",
"far",
"envelope"
],
[
"star-o",
"far",
"star"
],
[
"remove",
null,
"xmark"
],
[
"close",
null,
"xmark"
],
[
"gear",
null,
"gear"
],
[
"trash-o",
"far",
"trash-can"
],
[
"home",
null,
"house"
],
[
"file-o",
"far",
"file"
],
[
"clock-o",
"far",
"clock"
],
[
"arrow-circle-o-down",
"far",
"circle-down"
],
[
"arrow-circle-o-up",
"far",
"circle-up"
],
[
"play-circle-o",
"far",
"circle-play"
],
[
"repeat",
null,
"arrow-rotate-right"
],
[
"rotate-right",
null,
"arrow-rotate-right"
],
[
"refresh",
null,
"arrows-rotate"
],
[
"list-alt",
"far",
"rectangle-list"
],
[
"dedent",
null,
"outdent"
],
[
"video-camera",
null,
"video"
],
[
"picture-o",
"far",
"image"
],
[
"photo",
"far",
"image"
],
[
"image",
"far",
"image"
],
[
"map-marker",
null,
"location-dot"
],
[
"pencil-square-o",
"far",
"pen-to-square"
],
[
"edit",
"far",
"pen-to-square"
],
[
"share-square-o",
null,
"share-from-square"
],
[
"check-square-o",
"far",
"square-check"
],
[
"arrows",
null,
"up-down-left-right"
],
[
"times-circle-o",
"far",
"circle-xmark"
],
[
"check-circle-o",
"far",
"circle-check"
],
[
"mail-forward",
null,
"share"
],
[
"expand",
null,
"up-right-and-down-left-from-center"
],
[
"compress",
null,
"down-left-and-up-right-to-center"
],
[
"eye",
"far",
null
],
[
"eye-slash",
"far",
null
],
[
"warning",
null,
"triangle-exclamation"
],
[
"calendar",
null,
"calendar-days"
],
[
"arrows-v",
null,
"up-down"
],
[
"arrows-h",
null,
"left-right"
],
[
"bar-chart",
null,
"chart-column"
],
[
"bar-chart-o",
null,
"chart-column"
],
[
"twitter-square",
"fab",
null
],
[
"facebook-square",
"fab",
null
],
[
"gears",
null,
"gears"
],
[
"thumbs-o-up",
"far",
"thumbs-up"
],
[
"thumbs-o-down",
"far",
"thumbs-down"
],
[
"heart-o",
"far",
"heart"
],
[
"sign-out",
null,
"right-from-bracket"
],
[
"linkedin-square",
"fab",
"linkedin"
],
[
"thumb-tack",
null,
"thumbtack"
],
[
"external-link",
null,
"up-right-from-square"
],
[
"sign-in",
null,
"right-to-bracket"
],
[
"github-square",
"fab",
null
],
[
"lemon-o",
"far",
"lemon"
],
[
"square-o",
"far",
"square"
],
[
"bookmark-o",
"far",
"bookmark"
],
[
"twitter",
"fab",
null
],
[
"facebook",
"fab",
"facebook-f"
],
[
"facebook-f",
"fab",
"facebook-f"
],
[
"github",
"fab",
null
],
[
"credit-card",
"far",
null
],
[
"feed",
null,
"rss"
],
[
"hdd-o",
"far",
"hard-drive"
],
[
"hand-o-right",
"far",
"hand-point-right"
],
[
"hand-o-left",
"far",
"hand-point-left"
],
[
"hand-o-up",
"far",
"hand-point-up"
],
[
"hand-o-down",
"far",
"hand-point-down"
],
[
"globe",
null,
"earth-americas"
],
[
"tasks",
null,
"bars-progress"
],
[
"arrows-alt",
null,
"maximize"
],
[
"group",
null,
"users"
],
[
"chain",
null,
"link"
],
[
"cut",
null,
"scissors"
],
[
"files-o",
"far",
"copy"
],
[
"floppy-o",
"far",
"floppy-disk"
],
[
"save",
"far",
"floppy-disk"
],
[
"navicon",
null,
"bars"
],
[
"reorder",
null,
"bars"
],
[
"magic",
null,
"wand-magic-sparkles"
],
[
"pinterest",
"fab",
null
],
[
"pinterest-square",
"fab",
null
],
[
"google-plus-square",
"fab",
null
],
[
"google-plus",
"fab",
"google-plus-g"
],
[
"money",
null,
"money-bill-1"
],
[
"unsorted",
null,
"sort"
],
[
"sort-desc",
null,
"sort-down"
],
[
"sort-asc",
null,
"sort-up"
],
[
"linkedin",
"fab",
"linkedin-in"
],
[
"rotate-left",
null,
"arrow-rotate-left"
],
[
"legal",
null,
"gavel"
],
[
"tachometer",
null,
"gauge-high"
],
[
"dashboard",
null,
"gauge-high"
],
[
"comment-o",
"far",
"comment"
],
[
"comments-o",
"far",
"comments"
],
[
"flash",
null,
"bolt"
],
[
"clipboard",
null,
"paste"
],
[
"lightbulb-o",
"far",
"lightbulb"
],
[
"exchange",
null,
"right-left"
],
[
"cloud-download",
null,
"cloud-arrow-down"
],
[
"cloud-upload",
null,
"cloud-arrow-up"
],
[
"bell-o",
"far",
"bell"
],
[
"cutlery",
null,
"utensils"
],
[
"file-text-o",
"far",
"file-lines"
],
[
"building-o",
"far",
"building"
],
[
"hospital-o",
"far",
"hospital"
],
[
"tablet",
null,
"tablet-screen-button"
],
[
"mobile",
null,
"mobile-screen-button"
],
[
"mobile-phone",
null,
"mobile-screen-button"
],
[
"circle-o",
"far",
"circle"
],
[
"mail-reply",
null,
"reply"
],
[
"github-alt",
"fab",
null
],
[
"folder-o",
"far",
"folder"
],
[
"folder-open-o",
"far",
"folder-open"
],
[
"smile-o",
"far",
"face-smile"
],
[
"frown-o",
"far",
"face-frown"
],
[
"meh-o",
"far",
"face-meh"
],
[
"keyboard-o",
"far",
"keyboard"
],
[
"flag-o",
"far",
"flag"
],
[
"mail-reply-all",
null,
"reply-all"
],
[
"star-half-o",
"far",
"star-half-stroke"
],
[
"star-half-empty",
"far",
"star-half-stroke"
],
[
"star-half-full",
"far",
"star-half-stroke"
],
[
"code-fork",
null,
"code-branch"
],
[
"chain-broken",
null,
"link-slash"
],
[
"unlink",
null,
"link-slash"
],
[
"calendar-o",
"far",
"calendar"
],
[
"maxcdn",
"fab",
null
],
[
"html5",
"fab",
null
],
[
"css3",
"fab",
null
],
[
"unlock-alt",
null,
"unlock"
],
[
"minus-square-o",
"far",
"square-minus"
],
[
"level-up",
null,
"turn-up"
],
[
"level-down",
null,
"turn-down"
],
[
"pencil-square",
null,
"square-pen"
],
[
"external-link-square",
null,
"square-up-right"
],
[
"compass",
"far",
null
],
[
"caret-square-o-down",
"far",
"square-caret-down"
],
[
"toggle-down",
"far",
"square-caret-down"
],
[
"caret-square-o-up",
"far",
"square-caret-up"
],
[
"toggle-up",
"far",
"square-caret-up"
],
[
"caret-square-o-right",
"far",
"square-caret-right"
],
[
"toggle-right",
"far",
"square-caret-right"
],
[
"eur",
null,
"euro-sign"
],
[
"euro",
null,
"euro-sign"
],
[
"gbp",
null,
"sterling-sign"
],
[
"usd",
null,
"dollar-sign"
],
[
"dollar",
null,
"dollar-sign"
],
[
"inr",
null,
"indian-rupee-sign"
],
[
"rupee",
null,
"indian-rupee-sign"
],
[
"jpy",
null,
"yen-sign"
],
[
"cny",
null,
"yen-sign"
],
[
"rmb",
null,
"yen-sign"
],
[
"yen",
null,
"yen-sign"
],
[
"rub",
null,
"ruble-sign"
],
[
"ruble",
null,
"ruble-sign"
],
[
"rouble",
null,
"ruble-sign"
],
[
"krw",
null,
"won-sign"
],
[
"won",
null,
"won-sign"
],
[
"btc",
"fab",
null
],
[
"bitcoin",
"fab",
"btc"
],
[
"file-text",
null,
"file-lines"
],
[
"sort-alpha-asc",
null,
"arrow-down-a-z"
],
[
"sort-alpha-desc",
null,
"arrow-down-z-a"
],
[
"sort-amount-asc",
null,
"arrow-down-short-wide"
],
[
"sort-amount-desc",
null,
"arrow-down-wide-short"
],
[
"sort-numeric-asc",
null,
"arrow-down-1-9"
],
[
"sort-numeric-desc",
null,
"arrow-down-9-1"
],
[
"youtube-square",
"fab",
null
],
[
"youtube",
"fab",
null
],
[
"xing",
"fab",
null
],
[
"xing-square",
"fab",
null
],
[
"youtube-play",
"fab",
"youtube"
],
[
"dropbox",
"fab",
null
],
[
"stack-overflow",
"fab",
null
],
[
"instagram",
"fab",
null
],
[
"flickr",
"fab",
null
],
[
"adn",
"fab",
null
],
[
"bitbucket",
"fab",
null
],
[
"bitbucket-square",
"fab",
"bitbucket"
],
[
"tumblr",
"fab",
null
],
[
"tumblr-square",
"fab",
null
],
[
"long-arrow-down",
null,
"down-long"
],
[
"long-arrow-up",
null,
"up-long"
],
[
"long-arrow-left",
null,
"left-long"
],
[
"long-arrow-right",
null,
"right-long"
],
[
"apple",
"fab",
null
],
[
"windows",
"fab",
null
],
[
"android",
"fab",
null
],
[
"linux",
"fab",
null
],
[
"dribbble",
"fab",
null
],
[
"skype",
"fab",
null
],
[
"foursquare",
"fab",
null
],
[
"trello",
"fab",
null
],
[
"gratipay",
"fab",
null
],
[
"gittip",
"fab",
"gratipay"
],
[
"sun-o",
"far",
"sun"
],
[
"moon-o",
"far",
"moon"
],
[
"vk",
"fab",
null
],
[
"weibo",
"fab",
null
],
[
"renren",
"fab",
null
],
[
"pagelines",
"fab",
null
],
[
"stack-exchange",
"fab",
null
],
[
"arrow-circle-o-right",
"far",
"circle-right"
],
[
"arrow-circle-o-left",
"far",
"circle-left"
],
[
"caret-square-o-left",
"far",
"square-caret-left"
],
[
"toggle-left",
"far",
"square-caret-left"
],
[
"dot-circle-o",
"far",
"circle-dot"
],
[
"vimeo-square",
"fab",
null
],
[
"try",
null,
"turkish-lira-sign"
],
[
"turkish-lira",
null,
"turkish-lira-sign"
],
[
"plus-square-o",
"far",
"square-plus"
],
[
"slack",
"fab",
null
],
[
"wordpress",
"fab",
null
],
[
"openid",
"fab",
null
],
[
"institution",
null,
"building-columns"
],
[
"bank",
null,
"building-columns"
],
[
"mortar-board",
null,
"graduation-cap"
],
[
"yahoo",
"fab",
null
],
[
"google",
"fab",
null
],
[
"reddit",
"fab",
null
],
[
"reddit-square",
"fab",
null
],
[
"stumbleupon-circle",
"fab",
null
],
[
"stumbleupon",
"fab",
null
],
[
"delicious",
"fab",
null
],
[
"digg",
"fab",
null
],
[
"pied-piper-pp",
"fab",
null
],
[
"pied-piper-alt",
"fab",
null
],
[
"drupal",
"fab",
null
],
[
"joomla",
"fab",
null
],
[
"behance",
"fab",
null
],
[
"behance-square",
"fab",
null
],
[
"steam",
"fab",
null
],
[
"steam-square",
"fab",
null
],
[
"automobile",
null,
"car"
],
[
"cab",
null,
"taxi"
],
[
"spotify",
"fab",
null
],
[
"deviantart",
"fab",
null
],
[
"soundcloud",
"fab",
null
],
[
"file-pdf-o",
"far",
"file-pdf"
],
[
"file-word-o",
"far",
"file-word"
],
[
"file-excel-o",
"far",
"file-excel"
],
[
"file-powerpoint-o",
"far",
"file-powerpoint"
],
[
"file-image-o",
"far",
"file-image"
],
[
"file-photo-o",
"far",
"file-image"
],
[
"file-picture-o",
"far",
"file-image"
],
[
"file-archive-o",
"far",
"file-zipper"
],
[
"file-zip-o",
"far",
"file-zipper"
],
[
"file-audio-o",
"far",
"file-audio"
],
[
"file-sound-o",
"far",
"file-audio"
],
[
"file-video-o",
"far",
"file-video"
],
[
"file-movie-o",
"far",
"file-video"
],
[
"file-code-o",
"far",
"file-code"
],
[
"vine",
"fab",
null
],
[
"codepen",
"fab",
null
],
[
"jsfiddle",
"fab",
null
],
[
"life-bouy",
null,
"life-ring"
],
[
"life-buoy",
null,
"life-ring"
],
[
"life-saver",
null,
"life-ring"
],
[
"support",
null,
"life-ring"
],
[
"circle-o-notch",
null,
"circle-notch"
],
[
"rebel",
"fab",
null
],
[
"ra",
"fab",
"rebel"
],
[
"resistance",
"fab",
"rebel"
],
[
"empire",
"fab",
null
],
[
"ge",
"fab",
"empire"
],
[
"git-square",
"fab",
null
],
[
"git",
"fab",
null
],
[
"hacker-news",
"fab",
null
],
[
"y-combinator-square",
"fab",
"hacker-news"
],
[
"yc-square",
"fab",
"hacker-news"
],
[
"tencent-weibo",
"fab",
null
],
[
"qq",
"fab",
null
],
[
"weixin",
"fab",
null
],
[
"wechat",
"fab",
"weixin"
],
[
"send",
null,
"paper-plane"
],
[
"paper-plane-o",
"far",
"paper-plane"
],
[
"send-o",
"far",
"paper-plane"
],
[
"circle-thin",
"far",
"circle"
],
[
"header",
null,
"heading"
],
[
"futbol-o",
"far",
"futbol"
],
[
"soccer-ball-o",
"far",
"futbol"
],
[
"slideshare",
"fab",
null
],
[
"twitch",
"fab",
null
],
[
"yelp",
"fab",
null
],
[
"newspaper-o",
"far",
"newspaper"
],
[
"paypal",
"fab",
null
],
[
"google-wallet",
"fab",
null
],
[
"cc-visa",
"fab",
null
],
[
"cc-mastercard",
"fab",
null
],
[
"cc-discover",
"fab",
null
],
[
"cc-amex",
"fab",
null
],
[
"cc-paypal",
"fab",
null
],
[
"cc-stripe",
"fab",
null
],
[
"bell-slash-o",
"far",
"bell-slash"
],
[
"trash",
null,
"trash-can"
],
[
"copyright",
"far",
null
],
[
"eyedropper",
null,
"eye-dropper"
],
[
"area-chart",
null,
"chart-area"
],
[
"pie-chart",
null,
"chart-pie"
],
[
"line-chart",
null,
"chart-line"
],
[
"lastfm",
"fab",
null
],
[
"lastfm-square",
"fab",
null
],
[
"ioxhost",
"fab",
null
],
[
"angellist",
"fab",
null
],
[
"cc",
"far",
"closed-captioning"
],
[
"ils",
null,
"shekel-sign"
],
[
"shekel",
null,
"shekel-sign"
],
[
"sheqel",
null,
"shekel-sign"
],
[
"buysellads",
"fab",
null
],
[
"connectdevelop",
"fab",
null
],
[
"dashcube",
"fab",
null
],
[
"forumbee",
"fab",
null
],
[
"leanpub",
"fab",
null
],
[
"sellsy",
"fab",
null
],
[
"shirtsinbulk",
"fab",
null
],
[
"simplybuilt",
"fab",
null
],
[
"skyatlas",
"fab",
null
],
[
"diamond",
"far",
"gem"
],
[
"transgender",
null,
"mars-and-venus"
],
[
"intersex",
null,
"mars-and-venus"
],
[
"transgender-alt",
null,
"transgender"
],
[
"facebook-official",
"fab",
"facebook"
],
[
"pinterest-p",
"fab",
null
],
[
"whatsapp",
"fab",
null
],
[
"hotel",
null,
"bed"
],
[
"viacoin",
"fab",
null
],
[
"medium",
"fab",
null
],
[
"y-combinator",
"fab",
null
],
[
"yc",
"fab",
"y-combinator"
],
[
"optin-monster",
"fab",
null
],
[
"opencart",
"fab",
null
],
[
"expeditedssl",
"fab",
null
],
[
"battery-4",
null,
"battery-full"
],
[
"battery",
null,
"battery-full"
],
[
"battery-3",
null,
"battery-three-quarters"
],
[
"battery-2",
null,
"battery-half"
],
[
"battery-1",
null,
"battery-quarter"
],
[
"battery-0",
null,
"battery-empty"
],
[
"object-group",
"far",
null
],
[
"object-ungroup",
"far",
null
],
[
"sticky-note-o",
"far",
"note-sticky"
],
[
"cc-jcb",
"fab",
null
],
[
"cc-diners-club",
"fab",
null
],
[
"clone",
"far",
null
],
[
"hourglass-o",
null,
"hourglass-empty"
],
[
"hourglass-1",
null,
"hourglass-start"
],
[
"hourglass-half",
null,
"hourglass"
],
[
"hourglass-2",
null,
"hourglass"
],
[
"hourglass-3",
null,
"hourglass-end"
],
[
"hand-rock-o",
"far",
"hand-back-fist"
],
[
"hand-grab-o",
"far",
"hand-back-fist"
],
[
"hand-paper-o",
"far",
"hand"
],
[
"hand-stop-o",
"far",
"hand"
],
[
"hand-scissors-o",
"far",
"hand-scissors"
],
[
"hand-lizard-o",
"far",
"hand-lizard"
],
[
"hand-spock-o",
"far",
"hand-spock"
],
[
"hand-pointer-o",
"far",
"hand-pointer"
],
[
"hand-peace-o",
"far",
"hand-peace"
],
[
"registered",
"far",
null
],
[
"creative-commons",
"fab",
null
],
[
"gg",
"fab",
null
],
[
"gg-circle",
"fab",
null
],
[
"odnoklassniki",
"fab",
null
],
[
"odnoklassniki-square",
"fab",
null
],
[
"get-pocket",
"fab",
null
],
[
"wikipedia-w",
"fab",
null
],
[
"safari",
"fab",
null
],
[
"chrome",
"fab",
null
],
[
"firefox",
"fab",
null
],
[
"opera",
"fab",
null
],
[
"internet-explorer",
"fab",
null
],
[
"television",
null,
"tv"
],
[
"contao",
"fab",
null
],
[
"500px",
"fab",
null
],
[
"amazon",
"fab",
null
],
[
"calendar-plus-o",
"far",
"calendar-plus"
],
[
"calendar-minus-o",
"far",
"calendar-minus"
],
[
"calendar-times-o",
"far",
"calendar-xmark"
],
[
"calendar-check-o",
"far",
"calendar-check"
],
[
"map-o",
"far",
"map"
],
[
"commenting",
null,
"comment-dots"
],
[
"commenting-o",
"far",
"comment-dots"
],
[
"houzz",
"fab",
null
],
[
"vimeo",
"fab",
"vimeo-v"
],
[
"black-tie",
"fab",
null
],
[
"fonticons",
"fab",
null
],
[
"reddit-alien",
"fab",
null
],
[
"edge",
"fab",
null
],
[
"credit-card-alt",
null,
"credit-card"
],
[
"codiepie",
"fab",
null
],
[
"modx",
"fab",
null
],
[
"fort-awesome",
"fab",
null
],
[
"usb",
"fab",
null
],
[
"product-hunt",
"fab",
null
],
[
"mixcloud",
"fab",
null
],
[
"scribd",
"fab",
null
],
[
"pause-circle-o",
"far",
"circle-pause"
],
[
"stop-circle-o",
"far",
"circle-stop"
],
[
"bluetooth",
"fab",
null
],
[
"bluetooth-b",
"fab",
null
],
[
"gitlab",
"fab",
null
],
[
"wpbeginner",
"fab",
null
],
[
"wpforms",
"fab",
null
],
[
"envira",
"fab",
null
],
[
"wheelchair-alt",
"fab",
"accessible-icon"
],
[
"question-circle-o",
"far",
"circle-question"
],
[
"volume-control-phone",
null,
"phone-volume"
],
[
"asl-interpreting",
null,
"hands-asl-interpreting"
],
[
"deafness",
null,
"ear-deaf"
],
[
"hard-of-hearing",
null,
"ear-deaf"
],
[
"glide",
"fab",
null
],
[
"glide-g",
"fab",
null
],
[
"signing",
null,
"hands"
],
[
"viadeo",
"fab",
null
],
[
"viadeo-square",
"fab",
null
],
[
"snapchat",
"fab",
null
],
[
"snapchat-ghost",
"fab",
"snapchat"
],
[
"snapchat-square",
"fab",
null
],
[
"pied-piper",
"fab",
null
],
[
"first-order",
"fab",
null
],
[
"yoast",
"fab",
null
],
[
"themeisle",
"fab",
null
],
[
"google-plus-official",
"fab",
"google-plus"
],
[
"google-plus-circle",
"fab",
"google-plus"
],
[
"font-awesome",
"fab",
null
],
[
"fa",
"fab",
"font-awesome"
],
[
"handshake-o",
"far",
"handshake"
],
[
"envelope-open-o",
"far",
"envelope-open"
],
[
"linode",
"fab",
null
],
[
"address-book-o",
"far",
"address-book"
],
[
"vcard",
null,
"address-card"
],
[
"address-card-o",
"far",
"address-card"
],
[
"vcard-o",
"far",
"address-card"
],
[
"user-circle-o",
"far",
"circle-user"
],
[
"user-o",
"far",
"user"
],
[
"id-badge",
"far",
null
],
[
"drivers-license",
null,
"id-card"
],
[
"id-card-o",
"far",
"id-card"
],
[
"drivers-license-o",
"far",
"id-card"
],
[
"quora",
"fab",
null
],
[
"free-code-camp",
"fab",
null
],
[
"telegram",
"fab",
null
],
[
"thermometer-4",
null,
"temperature-full"
],
[
"thermometer",
null,
"temperature-full"
],
[
"thermometer-3",
null,
"temperature-three-quarters"
],
[
"thermometer-2",
null,
"temperature-half"
],
[
"thermometer-1",
null,
"temperature-quarter"
],
[
"thermometer-0",
null,
"temperature-empty"
],
[
"bathtub",
null,
"bath"
],
[
"s15",
null,
"bath"
],
[
"window-maximize",
"far",
null
],
[
"window-restore",
"far",
null
],
[
"times-rectangle",
null,
"rectangle-xmark"
],
[
"window-close-o",
"far",
"rectangle-xmark"
],
[
"times-rectangle-o",
"far",
"rectangle-xmark"
],
[
"bandcamp",
"fab",
null
],
[
"grav",
"fab",
null
],
[
"etsy",
"fab",
null
],
[
"imdb",
"fab",
null
],
[
"ravelry",
"fab",
null
],
[
"eercast",
"fab",
"sellcast"
],
[
"snowflake-o",
"far",
"snowflake"
],
[
"superpowers",
"fab",
null
],
[
"wpexplorer",
"fab",
null
],
[
"meetup",
"fab",
null
],
[
61440,
"fas",
"martini-glass-empty"
],
[
61443,
"far",
"envelope"
],
[
61446,
"far",
"star"
],
[
61460,
"far",
"trash-can"
],
[
61462,
"far",
"file"
],
[
61463,
"far",
"clock"
],
[
61466,
"far",
"circle-down"
],
[
61467,
"far",
"circle-up"
],
[
61469,
"far",
"circle-play"
],
[
61470,
"fas",
"arrow-rotate-right"
],
[
61474,
"far",
"rectangle-list"
],
[
61502,
"far",
"image"
],
[
61505,
"fas",
"location-dot"
],
[
61508,
"far",
"pen-to-square"
],
[
61509,
"fas",
"share-from-square"
],
[
61510,
"far",
"square-check"
],
[
61511,
"fas",
"up-down-left-right"
],
[
61532,
"far",
"circle-xmark"
],
[
61533,
"far",
"circle-check"
],
[
61541,
"fas",
"up-right-and-down-left-from-center"
],
[
61542,
"fas",
"down-left-and-up-right-to-center"
],
[
61550,
"far",
"eye"
],
[
61552,
"far",
"eye-slash"
],
[
61555,
"fas",
"calendar-days"
],
[
61565,
"fas",
"up-down"
],
[
61566,
"fas",
"left-right"
],
[
61568,
"fas",
"chart-column"
],
[
61569,
"fab",
"twitter-square"
],
[
61570,
"fab",
"facebook-square"
],
[
61575,
"far",
"thumbs-up"
],
[
61576,
"far",
"thumbs-down"
],
[
61578,
"far",
"heart"
],
[
61579,
"fas",
"right-from-bracket"
],
[
61580,
"fab",
"linkedin"
],
[
61582,
"fas",
"up-right-from-square"
],
[
61584,
"fas",
"right-to-bracket"
],
[
61586,
"fab",
"github-square"
],
[
61588,
"far",
"lemon"
],
[
61590,
"far",
"square"
],
[
61591,
"far",
"bookmark"
],
[
61593,
"fab",
"twitter"
],
[
61594,
"fab",
"facebook-f"
],
[
61595,
"fab",
"github"
],
[
61597,
"far",
"credit-card"
],
[
61600,
"far",
"hard-drive"
],
[
61604,
"far",
"hand-point-right"
],
[
61605,
"far",
"hand-point-left"
],
[
61606,
"far",
"hand-point-up"
],
[
61607,
"far",
"hand-point-down"
],
[
61612,
"fas",
"earth-americas"
],
[
61614,
"fas",
"bars-progress"
],
[
61618,
"fas",
"maximize"
],
[
61632,
"fas",
"users"
],
[
61637,
"far",
"copy"
],
[
61639,
"far",
"floppy-disk"
],
[
61641,
"fas",
"bars"
],
[
61648,
"fas",
"wand-magic-sparkles"
],
[
61650,
"fab",
"pinterest"
],
[
61651,
"fab",
"pinterest-square"
],
[
61652,
"fab",
"google-plus-square"
],
[
61653,
"fab",
"google-plus-g"
],
[
61654,
"fas",
"money-bill-1"
],
[
61665,
"fab",
"linkedin-in"
],
[
61666,
"fas",
"arrow-rotate-left"
],
[
61668,
"fas",
"gauge-high"
],
[
61669,
"far",
"comment"
],
[
61670,
"far",
"comments"
],
[
61671,
"fas",
"bolt"
],
[
61674,
"fas",
"paste"
],
[
61675,
"far",
"lightbulb"
],
[
61676,
"fas",
"right-left"
],
[
61602,
"far",
"bell"
],
[
61685,
"fas",
"utensils"
],
[
61686,
"far",
"file-lines"
],
[
61687,
"far",
"building"
],
[
61688,
"far",
"hospital"
],
[
61706,
"fas",
"tablet-screen-button"
],
[
61707,
"fas",
"mobile-screen-button"
],
[
61708,
"far",
"circle"
],
[
61714,
"fas",
"reply"
],
[
61715,
"fab",
"github-alt"
],
[
61716,
"far",
"folder"
],
[
61717,
"far",
"folder-open"
],
[
61720,
"far",
"face-smile"
],
[
61721,
"far",
"face-frown"
],
[
61722,
"far",
"face-meh"
],
[
61724,
"far",
"keyboard"
],
[
61725,
"far",
"flag"
],
[
61731,
"far",
"star-half-stroke"
],
[
61734,
"fas",
"code-branch"
],
[
61747,
"far",
"calendar"
],
[
61750,
"fab",
"maxcdn"
],
[
61755,
"fab",
"html5"
],
[
61756,
"fab",
"css3"
],
[
61758,
"fas",
"unlock"
],
[
61767,
"far",
"square-minus"
],
[
61768,
"fas",
"turn-up"
],
[
61769,
"fas",
"turn-down"
],
[
61772,
"fas",
"square-up-right"
],
[
61774,
"far",
"compass"
],
[
61776,
"far",
"square-caret-down"
],
[
61777,
"far",
"square-caret-up"
],
[
61778,
"far",
"square-caret-right"
],
[
61781,
"fas",
"dollar-sign"
],
[
61782,
"fas",
"indian-rupee-sign"
],
[
61786,
"fab",
"btc"
],
[
61790,
"fas",
"arrow-down-z-a"
],
[
61792,
"fas",
"arrow-down-short-wide"
],
[
61793,
"fas",
"arrow-down-wide-short"
],
[
61795,
"fas",
"arrow-down-9-1"
],
[
61798,
"fab",
"youtube-square"
],
[
61799,
"fab",
"youtube"
],
[
61800,
"fab",
"xing"
],
[
61801,
"fab",
"xing-square"
],
[
61802,
"fab",
"youtube"
],
[
61803,
"fab",
"dropbox"
],
[
61804,
"fab",
"stack-overflow"
],
[
61805,
"fab",
"instagram"
],
[
61806,
"fab",
"flickr"
],
[
61808,
"fab",
"adn"
],
[
61809,
"fab",
"bitbucket"
],
[
61810,
"fab",
"bitbucket"
],
[
61811,
"fab",
"tumblr"
],
[
61812,
"fab",
"tumblr-square"
],
[
61813,
"fas",
"down-long"
],
[
61814,
"fas",
"up-long"
],
[
61815,
"fas",
"left-long"
],
[
61816,
"fas",
"right-long"
],
[
61817,
"fab",
"apple"
],
[
61818,
"fab",
"windows"
],
[
61819,
"fab",
"android"
],
[
61820,
"fab",
"linux"
],
[
61821,
"fab",
"dribbble"
],
[
61822,
"fab",
"skype"
],
[
61824,
"fab",
"foursquare"
],
[
61825,
"fab",
"trello"
],
[
61828,
"fab",
"gratipay"
],
[
61829,
"far",
"sun"
],
[
61830,
"far",
"moon"
],
[
61833,
"fab",
"vk"
],
[
61834,
"fab",
"weibo"
],
[
61835,
"fab",
"renren"
],
[
61836,
"fab",
"pagelines"
],
[
61837,
"fab",
"stack-exchange"
],
[
61838,
"far",
"circle-right"
],
[
61840,
"far",
"circle-left"
],
[
61841,
"far",
"square-caret-left"
],
[
61842,
"far",
"circle-dot"
],
[
61844,
"fab",
"vimeo-square"
],
[
61845,
"fas",
"turkish-lira-sign"
],
[
61846,
"far",
"square-plus"
],
[
61848,
"fab",
"slack"
],
[
61850,
"fab",
"wordpress"
],
[
61851,
"fab",
"openid"
],
[
61854,
"fab",
"yahoo"
],
[
61856,
"fab",
"google"
],
[
61857,
"fab",
"reddit"
],
[
61858,
"fab",
"reddit-square"
],
[
61859,
"fab",
"stumbleupon-circle"
],
[
61860,
"fab",
"stumbleupon"
],
[
61861,
"fab",
"delicious"
],
[
61862,
"fab",
"digg"
],
[
61863,
"fab",
"pied-piper-pp"
],
[
61864,
"fab",
"pied-piper-alt"
],
[
61865,
"fab",
"drupal"
],
[
61866,
"fab",
"joomla"
],
[
61876,
"fab",
"behance"
],
[
61877,
"fab",
"behance-square"
],
[
61878,
"fab",
"steam"
],
[
61879,
"fab",
"steam-square"
],
[
61884,
"fab",
"spotify"
],
[
61885,
"fab",
"deviantart"
],
[
61886,
"fab",
"soundcloud"
],
[
61889,
"far",
"file-pdf"
],
[
61890,
"far",
"file-word"
],
[
61891,
"far",
"file-excel"
],
[
61892,
"far",
"file-powerpoint"
],
[
61893,
"far",
"file-image"
],
[
61894,
"far",
"file-zipper"
],
[
61895,
"far",
"file-audio"
],
[
61896,
"far",
"file-video"
],
[
61897,
"far",
"file-code"
],
[
61898,
"fab",
"vine"
],
[
61899,
"fab",
"codepen"
],
[
61900,
"fab",
"jsfiddle"
],
[
61901,
"fas",
"life-ring"
],
[
61902,
"fas",
"circle-notch"
],
[
61904,
"fab",
"rebel"
],
[
61905,
"fab",
"empire"
],
[
61906,
"fab",
"git-square"
],
[
61907,
"fab",
"git"
],
[
61908,
"fab",
"hacker-news"
],
[
61909,
"fab",
"tencent-weibo"
],
[
61910,
"fab",
"qq"
],
[
61911,
"fab",
"weixin"
],
[
61912,
"fas",
"paper-plane"
],
[
61913,
"far",
"paper-plane"
],
[
61915,
"far",
"circle"
],
[
61923,
"far",
"futbol"
],
[
61927,
"fab",
"slideshare"
],
[
61928,
"fab",
"twitch"
],
[
61929,
"fab",
"yelp"
],
[
61930,
"far",
"newspaper"
],
[
61933,
"fab",
"paypal"
],
[
61934,
"fab",
"google-wallet"
],
[
61936,
"fab",
"cc-visa"
],
[
61937,
"fab",
"cc-mastercard"
],
[
61938,
"fab",
"cc-discover"
],
[
61939,
"fab",
"cc-amex"
],
[
61940,
"fab",
"cc-paypal"
],
[
61941,
"fab",
"cc-stripe"
],
[
61943,
"far",
"bell-slash"
],
[
61944,
"fas",
"trash-can"
],
[
61945,
"far",
"copyright"
],
[
61954,
"fab",
"lastfm"
],
[
61955,
"fab",
"lastfm-square"
],
[
61960,
"fab",
"ioxhost"
],
[
61961,
"fab",
"angellist"
],
[
61962,
"far",
"closed-captioning"
],
[
61965,
"fab",
"buysellads"
],
[
61966,
"fab",
"connectdevelop"
],
[
61968,
"fab",
"dashcube"
],
[
61969,
"fab",
"forumbee"
],
[
61970,
"fab",
"leanpub"
],
[
61971,
"fab",
"sellsy"
],
[
61972,
"fab",
"shirtsinbulk"
],
[
61973,
"fab",
"simplybuilt"
],
[
61974,
"fab",
"skyatlas"
],
[
61977,
"far",
"gem"
],
[
61988,
"fas",
"mars-and-venus"
],
[
62000,
"fab",
"facebook"
],
[
62001,
"fab",
"pinterest-p"
],
[
62002,
"fab",
"whatsapp"
],
[
62006,
"fas",
"bed"
],
[
62007,
"fab",
"viacoin"
],
[
62010,
"fab",
"medium"
],
[
62011,
"fab",
"y-combinator"
],
[
62012,
"fab",
"optin-monster"
],
[
62013,
"fab",
"opencart"
],
[
62014,
"fab",
"expeditedssl"
],
[
62016,
"fas",
"battery-full"
],
[
62017,
"fas",
"battery-three-quarters"
],
[
62018,
"fas",
"battery-half"
],
[
62019,
"fas",
"battery-quarter"
],
[
62023,
"far",
"object-group"
],
[
62024,
"far",
"object-ungroup"
],
[
62026,
"far",
"note-sticky"
],
[
62027,
"fab",
"cc-jcb"
],
[
62028,
"fab",
"cc-diners-club"
],
[
62029,
"far",
"clone"
],
[
62032,
"fas",
"hourglass-empty"
],
[
62034,
"fas",
"hourglass"
],
[
62037,
"far",
"hand-back-fist"
],
[
62038,
"far",
"hand"
],
[
62039,
"far",
"hand-scissors"
],
[
62040,
"far",
"hand-lizard"
],
[
62041,
"far",
"hand-spock"
],
[
62042,
"far",
"hand-pointer"
],
[
62043,
"far",
"hand-peace"
],
[
62045,
"far",
"registered"
],
[
62046,
"fab",
"creative-commons"
],
[
62048,
"fab",
"gg"
],
[
62049,
"fab",
"gg-circle"
],
[
62051,
"fab",
"odnoklassniki"
],
[
62052,
"fab",
"odnoklassniki-square"
],
[
62053,
"fab",
"get-pocket"
],
[
62054,
"fab",
"wikipedia-w"
],
[
62055,
"fab",
"safari"
],
[
62056,
"fab",
"chrome"
],
[
62057,
"fab",
"firefox"
],
[
62058,
"fab",
"opera"
],
[
62059,
"fab",
"internet-explorer"
],
[
62061,
"fab",
"contao"
],
[
62062,
"fab",
"500px"
],
[
62064,
"fab",
"amazon"
],
[
62065,
"far",
"calendar-plus"
],
[
62066,
"far",
"calendar-minus"
],
[
62067,
"far",
"calendar-xmark"
],
[
62068,
"far",
"calendar-check"
],
[
62072,
"far",
"map"
],
[
62074,
"fas",
"comment-dots"
],
[
62075,
"far",
"comment-dots"
],
[
62076,
"fab",
"houzz"
],
[
62077,
"fab",
"vimeo-v"
],
[
62078,
"fab",
"black-tie"
],
[
62080,
"fab",
"fonticons"
],
[
62081,
"fab",
"reddit-alien"
],
[
62082,
"fab",
"edge"
],
[
62083,
"fas",
"credit-card"
],
[
62084,
"fab",
"codiepie"
],
[
62085,
"fab",
"modx"
],
[
62086,
"fab",
"fort-awesome"
],
[
62087,
"fab",
"usb"
],
[
62088,
"fab",
"product-hunt"
],
[
62089,
"fab",
"mixcloud"
],
[
62090,
"fab",
"scribd"
],
[
62092,
"far",
"circle-pause"
],
[
62094,
"far",
"circle-stop"
],
[
62099,
"fab",
"bluetooth"
],
[
62100,
"fab",
"bluetooth-b"
],
[
62102,
"fab",
"gitlab"
],
[
62103,
"fab",
"wpbeginner"
],
[
62104,
"fab",
"wpforms"
],
[
62105,
"fab",
"envira"
],
[
62107,
"fab",
"accessible-icon"
],
[
62108,
"far",
"circle-question"
],
[
62117,
"fab",
"glide"
],
[
62118,
"fab",
"glide-g"
],
[
62121,
"fab",
"viadeo"
],
[
62122,
"fab",
"viadeo-square"
],
[
62123,
"fab",
"snapchat"
],
[
62124,
"fab",
"snapchat"
],
[
62125,
"fab",
"snapchat-square"
],
[
62126,
"fab",
"pied-piper"
],
[
62128,
"fab",
"first-order"
],
[
62129,
"fab",
"yoast"
],
[
62130,
"fab",
"themeisle"
],
[
62131,
"fab",
"google-plus"
],
[
62132,
"fab",
"font-awesome"
],
[
62133,
"far",
"handshake"
],
[
62135,
"far",
"envelope-open"
],
[
62136,
"fab",
"linode"
],
[
62138,
"far",
"address-book"
],
[
62140,
"far",
"address-card"
],
[
62142,
"far",
"circle-user"
],
[
62144,
"far",
"user"
],
[
62145,
"far",
"id-badge"
],
[
62147,
"far",
"id-card"
],
[
62148,
"fab",
"quora"
],
[
62149,
"fab",
"free-code-camp"
],
[
62150,
"fab",
"telegram"
],
[
62151,
"fas",
"temperature-full"
],
[
62157,
"fas",
"bath"
],
[
62160,
"far",
"window-maximize"
],
[
62162,
"far",
"window-restore"
],
[
62163,
"fas",
"rectangle-xmark"
],
[
62164,
"far",
"rectangle-xmark"
],
[
62165,
"fab",
"bandcamp"
],
[
62166,
"fab",
"grav"
],
[
62167,
"fab",
"etsy"
],
[
62168,
"fab",
"imdb"
],
[
62169,
"fab",
"ravelry"
],
[
62170,
"fab",
"sellcast"
],
[
62172,
"far",
"snowflake"
],
[
62173,
"fab",
"superpowers"
],
[
62174,
"fab",
"wpexplorer"
],
[
62176,
"fab",
"meetup"
]
]
\ No newline at end of file
area-chart:
name: chart-area
arrow-circle-o-down:
name: circle-down
prefix: far
arrow-circle-o-left:
name: circle-left
prefix: far
arrow-circle-o-right:
name: circle-right
prefix: far
arrow-circle-o-up:
name: circle-up
prefix: far
arrows:
name: up-down-left-right
arrows-alt:
name: maximize
arrows-h:
name: left-right
arrows-v:
name: up-down
bar-chart:
name: chart-column
bitbucket-square:
name: bitbucket
prefix: fab
calendar:
name: calendar-days
calendar-o:
name: calendar
prefix: far
caret-square-o-down:
name: square-caret-down
prefix: far
caret-square-o-left:
name: square-caret-left
prefix: far
caret-square-o-right:
name: square-caret-right
prefix: far
caret-square-o-up:
name: square-caret-up
prefix: far
cc:
name: closed-captioning
prefix: far
chain-broken:
name: link-slash
circle-o-notch:
name: circle-notch
circle-thin:
name: circle
prefix: far
clipboard:
name: paste
clone:
prefix: far
cloud-download:
name: cloud-arrow-down
cloud-upload:
name: cloud-arrow-up
code-fork:
name: code-branch
comment-alt:
name: comment-dots
prefix: far
commenting:
name: comment-dots
compass:
prefix: far
compress:
name: down-left-and-up-right-to-center
copyright:
prefix: far
creative-commons:
prefix: fab
credit-card:
prefix: far
credit-card-alt:
name: credit-card
cutlery:
name: utensils
diamond:
name: gem
prefix: far
eercast:
name: sellcast
prefix: fab
eur:
name: euro-sign
exchange:
name: right-left
expand:
name: up-right-and-down-left-from-center
external-link:
name: up-right-from-square
external-link-square:
name: square-up-right
eye:
prefix: far
eye-dropper:
name: eye-dropper
prefix: far
eye-slash:
prefix: far
eyedropper:
name: eye-dropper
facebook:
name: facebook-f
prefix: fab
facebook-official:
name: facebook
prefix: fab
file-text:
name: file-lines
files-o:
name: copy
prefix: far
floppy-o:
name: floppy-disk
prefix: far
gbp:
name: sterling-sign
glass:
name: martini-glass-empty
globe:
name: earth-americas
google-plus:
name: google-plus-g
prefix: fab
google-plus-circle:
name: google-plus
prefix: fab
google-plus-official:
name: google-plus
prefix: fab
hand-o-down:
name: hand-point-down
prefix: far
hand-o-left:
name: hand-point-left
prefix: far
hand-o-right:
name: hand-point-right
prefix: far
hand-o-up:
name: hand-point-up
prefix: far
header:
name: heading
home:
name: house
hourglass-half:
name: hourglass
hourglass-o:
name: hourglass-empty
id-badge:
prefix: far
ils:
name: shekel-sign
inr:
name: indian-rupee-sign
jpy:
name: yen-sign
krw:
name: won-sign
level-down:
name: turn-down
level-up:
name: turn-up
line-chart:
name: chart-line
linkedin:
name: linkedin-in
prefix: fab
linkedin-square:
name: linkedin
prefix: fab
list-alt:
name: rectangle-list
prefix: far
long-arrow-down:
name: down-long
long-arrow-left:
name: left-long
long-arrow-right:
name: right-long
long-arrow-up:
name: up-long
magic:
name: wand-magic-sparkles
map-marker:
name: location-dot
meanpath:
name: font-awesome
prefix: fab
mobile:
name: mobile-screen-button
money:
name: money-bill-1
object-group:
prefix: far
object-ungroup:
prefix: far
paste:
prefix: far
pencil-square:
name: square-pen
pencil-square-o:
name: pen-to-square
prefix: far
picture:
name: image
pie-chart:
name: chart-pie
refresh:
name: arrows-rotate
registered:
prefix: far
repeat:
name: arrow-rotate-right
rub:
name: ruble-sign
share-square-o:
name: share-from-square
sign-in:
name: right-to-bracket
sign-out:
name: right-from-bracket
snapchat-ghost:
name: snapchat
prefix: fab
sort-alpha-asc:
name: arrow-down-a-z
sort-alpha-desc:
name: arrow-down-z-a
sort-amount-asc:
name: arrow-down-short-wide
sort-amount-desc:
name: arrow-down-wide-short
sort-asc:
name: sort-up
sort-desc:
name: sort-down
sort-numeric-asc:
name: arrow-down-1-9
sort-numeric-desc:
name: arrow-down-9-1
star-half-empty:
name: star-half
star-half-full:
name: star-half
star-half-o:
name: star-half-stroke
prefix: far
support:
name: life-ring
prefix: far
tablet:
name: tablet-screen-button
tachometer:
name: gauge-high
tasks:
name: bars-progress
television:
name: tv
thumb-tack:
name: thumbtack
thumbs-o-down:
name: thumbs-down
prefix: far
thumbs-o-up:
name: thumbs-up
prefix: far
transgender:
name: mars-and-venus
transgender-alt:
name: transgender
trash:
name: trash-can
trash-o:
name: trash-can
prefix: far
try:
name: turkish-lira-sign
unlock-alt:
name: unlock
usd:
name: dollar-sign
user-circle-o:
name: circle-user
prefix: far
video-camera:
name: video
vimeo:
name: vimeo-v
prefix: fab
volume-control-phone:
name: phone-volume
wheelchair-alt:
name: accessible-icon
prefix: fab
window-maximize:
prefix: far
window-restore:
prefix: far
youtube-play:
name: youtube
prefix: fab
42-group:
icons:
- 42-group
label: 42.group
url: 'https://42.group'
accusoft:
icons:
- accusoft
label: Accusoft
url: 'https://www.accusoft.com'
administrator-technology:
icons:
- bars-staggered
label: Administrator Technology
url: 'https://administrator.de'
adversal:
icons:
- adversal
label: Adversal
url: 'https://www.adversal.com'
affiliatetheme:
icons:
- affiliatetheme
label: affiliatetheme
url: 'https://affiliatetheme.io/en'
algolia:
icons:
- algolia
label: Algolia
url: 'http://www.algolia.com'
amazon-web-services:
icons:
- aws
label: Amazon Web Services
url: 'https://aws.amazon.com'
amilia:
icons:
- amilia
label: Amilia
url: 'http://www.amilia.com'
angry-creative:
icons:
- angrycreative
label: Angry Creative
url: 'https://angrycreative.se'
app-signal:
icons:
- stroopwafel
label: AppSignal
url: 'https://appsignal.com'
apper-systems-ab:
icons:
- apper
label: Apper Systems AB
url: 'http://www.apper.com'
'asymmetrik,ltd':
icons:
- asymmetrik
label: 'Asymmetrik, Ltd.'
url: 'http://asymmetrik.com'
ausmed-education:
icons:
- user-nurse
label: Ausmed Education
url: 'https://www.ausmed.com.au'
avianex:
icons:
- avianex
label: avianex
url: 'https://www.avianex.de'
bi-mobject:
icons:
- bimobject
label: BIMobject
url: 'http://bimobject.com'
bity:
icons:
- bity
label: Bity
url: 'http://bity.com'
blackpulp-designs:
icons:
- person-praying
label: Blackpulp Designs
url: 'https://www.blackpulp.com'
blissbook:
icons:
- pen-fancy
label: Blissbook
url: 'https://blissbook.com'
bots:
icons:
- bots
label: Bots
url: 'https://www.bots-inc.com'
bryntum:
icons:
- diagram-next
- diagram-predecessor
- diagram-successor
label: Bryntum
url: 'https://bryntum.com'
büromöbel-experte-gmb-h &co-kg:
icons:
- buromobelexperte
label: Büromöbel-Experte GmbH & Co. KG.
url: 'https://www.bueromoebel-experte.de'
c-panel:
icons:
- cpanel
label: cPanel
url: 'http://cpanel.com'
centercode:
icons:
- centercode
label: Centercode
url: 'https://www.centercode.com'
cibltd:
icons:
- drum-steelpan
label: Comprehensive Insurance Brokers Limited
url: 'http://www.cibltd.com'
clear-blue-technologies:
icons:
- solar-panel
label: Clear Blue Technologies
url: 'http://www.clearbluetechnologies.com'
clicdata:
icons:
- chart-column
- chart-gantt
- chart-line
label: ClicData
url: 'https://www.clicdata.com'
cloudflare:
icons:
- cloudflare
label: Cloudflare
url: 'https://www.cloudflare.com'
cloudscale-ch:
icons:
- cloudscale
label: cloudscale.ch
url: 'https://www.cloudscale.ch'
cloudsmith:
icons:
- cloudsmith
label: Cloudsmith
url: 'https://cloudsmith.io'
cloudversify:
icons:
- cloudversify
label: cloudversify
url: 'https://www.cloudversify.com'
cmplid:
icons:
- cmplid
label: Cmplid
url: 'http://cmplid.com'
cuttlefish:
icons:
- cuttlefish
label: Cuttlefish
url: 'http://wearecuttlefish.com'
cymedica:
icons:
- wave-square
label: CyMedica
url: 'https://www.cymedicaortho.com'
darren-wiebe:
icons:
- church
label: Darren Wiebe
deploy-dog:
icons:
- deploydog
label: deploy.dog
url: 'http://deploy.dog'
deskpro:
icons:
- deskpro
label: Deskpro
url: 'http://www.deskpro.com'
discourse:
icons:
- discourse
label: Discourse
url: 'https://discourse.org'
doc-hub:
icons:
- dochub
label: DocHub
url: 'https://dochub.com'
draft2-digital:
icons:
- draft2digital
label: Draft2Digital
url: 'http://draft2digital.com'
dyalog-apl:
icons:
- dyalog
label: Dyalog APL
url: 'http://www.dyalog.com'
econopublish:
icons:
- hat-cowboy-side
label: EconoPublish
url: 'https://www.econopublish.com'
firstdraft:
icons:
- firstdraft
label: firstdraft
url: 'http://www.firstdraft.com'
fleetplan:
icons:
- helicopter
label: FLEETPLAN
url: 'https://www.fleetplan.net'
getaroom:
icons:
- archway
- dumbbell
- hotel
- map-location
- map-location-dot
- monument
- person-swimming
- spa
- water-ladder
label: getaroom
url: 'https://www.getaroom.com'
git-kraken:
icons:
- gitkraken
label: GitKraken
url: 'https://www.gitkraken.com'
gofore:
icons:
- gofore
label: Gofore
url: 'http://gofore.com'
gripfire-inc:
icons:
- gripfire
label: 'Gripfire, Inc.'
url: 'http://gripfire.io'
guilded:
icons:
- guilded
label: Guilded
url: 'https://www.guilded.gg'
harvard-medical-school:
icons:
- bandage
- bed-pulse
- briefcase-medical
- capsules
- circle-h
- dna
- file-medical
- file-waveform
- fire-flame-simple
- hand-dots
- heart
- heart-pulse
- hospital
- id-card-clip
- kit-medical
- notes-medical
- person-dots-from-line
- pills
- plus
- prescription-bottle
- prescription-bottle-medical
- smoking
- stethoscope
- syringe
- tablets
- thermometer
- truck-medical
- user-doctor
- vial
- vials
- weight-scale
- x-ray
label: Harvard Medical School
url: 'https://hms.harvard.edu'
hashnode:
icons:
- hashnode
label: Hashnode
url: 'https://hashnode.com'
hips:
icons:
- hips
label: Hips
url: 'https://hips.com'
hire-a-helper:
icons:
- box-archive
- box-open
- couch
- dolly
- people-carry-box
- route
- sign-hanging
- suitcase
- tape
- truck-moving
- truck-ramp-box
- wine-glass
label: HireAHelper
url: 'https://www.hireahelper.com'
hive:
icons:
- hive
label: Hive Blockchain Network
url: 'https://hive.io'
hornbill:
icons:
- hornbill
label: Hornbill
url: 'https://www.hornbill.com'
hotjar:
icons:
- hotjar
label: Hotjar
url: 'https://www.hotjar.com'
hub-spot:
icons:
- hubspot
label: HubSpot
url: 'http://www.HubSpot.com'
in-site-systems:
icons:
- toolbox
label: InSite Systems
url: 'https://www.insitesystems.com'
inspira-bvba:
icons:
- chess-knight
label: Inspira bvba
url: 'https://www.inspira.be'
instalod:
icons:
- instalod
label: InstaLOD
url: 'https://instalod.com'
joe-emison:
icons:
- blender-phone
label: Joe Emison
joget:
icons:
- joget
label: Joget
url: 'http://www.joget.org'
jon-galloway:
icons:
- crow
label: Jon Galloway
kevin-barone:
icons:
- file-contract
label: Kevin Barone
key-cdn:
icons:
- keycdn
label: KeyCDN
url: 'https://www.keycdn.com'
korvue:
icons:
- korvue
label: Korvue
url: 'https://korvue.com'
max-elman:
icons:
- frog
label: Max Elman
med-apps:
icons:
- medapps
label: MedApps
url: 'http://medapps.com.au'
medapps:
icons:
- book-medical
- clipboard-user
- comment-medical
- crutch
- disease
- hospital-user
- house-medical
- laptop-medical
- pager
label: MedApps
url: 'https://medapps.com.au'
megaport:
icons:
- megaport
label: Megaport
url: 'https://www.megaport.com'
mix:
icons:
- mix
label: Mix
url: 'http://mix.com'
mizuni:
icons:
- mizuni
label: Mizuni
url: 'http://www.mizuni.com'
mrt:
icons:
- medrt
label: MRT
url: 'https://medrt.co.jp'
mylogin-info:
icons:
- user-shield
label: mylogin.info
url: 'https://www.mylogin.info'
napster:
icons:
- napster
label: Napster
url: 'http://www.napster.com'
nfc-forum:
icons:
- nfc-directional
- nfc-symbol
label: NFC Forum
url: 'https://nfc-forum.org'
nimblr:
icons:
- nimblr
label: Nimblr
url: 'https://nimblr.ai'
nompse:
icons:
- chalkboard
- chalkboard-user
label: Nomp.se
url: 'https://nomp.se'
ns8:
icons:
- ns8
label: NS8
url: 'https://www.ns8.com'
nutritionix:
icons:
- nutritionix
label: Nutritionix
url: 'http://www.nutritionix.com'
octopus-deploy:
icons:
- octopus-deploy
label: Octopus Deploy
url: 'https://octopus.com'
padlet:
icons:
- padlet
label: Padlet
url: 'https://padlet.com/'
page4-corporation:
icons:
- page4
label: page4 Corporation
url: 'https://en.page4.com'
pal-fed:
icons:
- palfed
label: PalFed
url: 'https://www.palfed.com'
patch-patrol:
icons:
- vest
- vest-patches
label: Patch Patrol
url: 'https://patchpatrol.com'
pcsg:
icons:
- horse-head
label: PCSG
url: 'https://www.pcsg.de'
perbyte:
icons:
- perbyte
label: PerByte
url: 'https://www.perbyte.com'
phabricator:
icons:
- phabricator
label: Phabricator
url: 'http://phacility.com'
promo-wizard:
icons:
- hat-wizard
label: Promo Wizard
url: 'https://promowizard.co.uk'
pulse-eight:
icons:
- volume-xmark
label: Pulse-Eight
url: 'https://pulse-eight.com'
purely-interactive:
icons:
- kiwi-bird
label: Purely Interactive
url: 'https://www.purelyinteractive.ca'
pushed:
icons:
- pushed
label: Pushed
url: 'https://pushed.co'
quin-scape:
icons:
- quinscape
label: QuinScape
url: 'https://www.quinscape.de'
reacteurope:
icons:
- reacteurope
label: ReactEurope
url: 'https://www.react-europe.org'
readme-io:
icons:
- readme
label: Readme.io
url: 'http://readme.io'
red-river:
icons:
- red-river
label: red river
url: 'https://river.red'
replyd:
icons:
- replyd
label: replyd
resolving:
icons:
- resolving
label: Resolving
url: 'https://resolving.com'
rev-io:
icons:
- rev
label: Rev.io
url: 'https://rev.io'
rock-rms:
icons:
- rockrms
label: Rock RMS
url: 'http://rockrms.com'
rocket-chat:
icons:
- comment
- comment-dots
- comment-slash
- comments
- face-frown
- face-meh
- face-smile
- message
- phone
- phone-slash
- poo
- quote-left
- quote-right
- rocketchat
- video
- video-slash
label: Rocket.Chat
url: 'https://rocket.chat'
rodney-oliver:
icons:
- folder-minus
- folder-plus
label: Rodney Oliver
schlix:
icons:
- schlix
label: SCHLIX
url: 'http://schlix.com'
screenpal:
icons:
- screenpal
label: ScreenPal
url: 'https://screencast-o-matic.com/screenpal'
search-eng-in:
icons:
- searchengin
label: SearchEng.in
url: 'http://searcheng.in'
service-stack:
icons:
- servicestack
label: ServiceStack
url: 'https://servicestack.net'
shawn-storie:
icons:
- teeth
- teeth-open
label: Shawn Storie
shopware:
icons:
- shopware
label: Shopware
url: 'https://shopware.de'
shp:
icons:
- school
label: SHP
url: 'http://shp.com'
silicon-barn-inc:
icons:
- diagram-project
label: Silicon Barn Inc
url: 'https://siliconbarn.com'
sistrix:
icons:
- sistrix
label: SISTRIX
url: 'https://www.sistrix.de'
sitrox:
icons:
- sitrox
label: Sitrox
url: 'https://www.sitrox.com'
smup:
icons:
- shoe-prints
label: Smup
url: 'https://www.atomsoftware.com.au'
speakap:
icons:
- speakap
label: Speakap
url: 'https://speakap.com'
stay-linked:
icons:
- box
- boxes-stacked
- cart-flatbed
- clipboard-check
- clipboard-list
- dolly
- pallet
- truck
- truck-fast
- warehouse
label: StayLinked
url: 'https://www.staylinked.com'
sticker-mule:
icons:
- sticker-mule
label: Sticker Mule
url: 'https://stickermule.com'
studio-vinari:
icons:
- studiovinari
label: Studio Vinari
url: 'https://studiovinari.com'
supple:
icons:
- bullhorn
- bullseye
- comment-dollar
- comments-dollar
- envelope-open-text
- envelopes-bulk
- filter-circle-dollar
- magnifying-glass-dollar
- magnifying-glass-location
- rectangle-ad
- square-poll-horizontal
- square-poll-vertical
- supple
label: Supple
url: 'https://supple.com.au'
the-red-yeti:
icons:
- the-red-yeti
label: The Red Yeti
url: 'http://theredyeti.com'
the-us-sunnah-foundation:
icons:
- circle-dollar-to-slot
- dollar-sign
- dove
- gift
- globe
- hand-holding-dollar
- hand-holding-droplet
- hand-holding-heart
- handshake
- handshake-angle
- handshake-simple
- heart
- leaf
- parachute-box
- piggy-bank
- ribbon
- seedling
label: The us-Sunnah Foundation
url: 'https://www.ussunnah.org'
themeco:
icons:
- themeco
label: Themeco
url: 'https://theme.co'
think-peaks:
icons:
- think-peaks
label: Think Peaks
url: 'https://thinkpeaks.com/'
typo3:
icons:
- typo3
label: Typo3
url: 'https://typo3.org'
un-ocha:
icons:
- anchor-circle-check
- anchor-circle-exclamation
- anchor-circle-xmark
- anchor-lock
- arrow-down-up-across-line
- arrow-down-up-lock
- arrow-right-to-city
- arrow-up-from-ground-water
- arrow-up-from-water-pump
- arrow-up-right-dots
- arrow-up-right-from-square
- arrows-down-to-line
- arrows-down-to-people
- arrows-left-right-to-line
- arrows-spin
- arrows-split-up-and-left
- arrows-to-circle
- arrows-to-dot
- arrows-to-eye
- arrows-turn-right
- arrows-turn-to-dots
- arrows-up-to-line
- bore-hole
- bottle-droplet
- bottle-water
- bowl-food
- bowl-rice
- boxes-packing
- bridge
- bridge-circle-check
- bridge-circle-exclamation
- bridge-circle-xmark
- bridge-lock
- bridge-water
- bucket
- bugs
- building-circle-arrow-right
- building-circle-check
- building-circle-exclamation
- building-circle-xmark
- building-columns
- building-flag
- building-lock
- building-ngo
- building-shield
- building-un
- building-user
- building-wheat
- burst
- car-on
- car-tunnel
- chart-simple
- child-rifle
- children
- circle-nodes
- clipboard-question
- cloud-showers-water
- computer
- cubes-stacked
- envelope-circle-check
- explosion
- ferry
- fire-burner
- fish-fins
- flask-vial
- glass-water
- glass-water-droplet
- group-arrows-rotate
- hand-holding-hand
- handcuffs
- hands-bound
- hands-holding-child
- hands-holding-circle
- heart-circle-bolt
- heart-circle-check
- heart-circle-exclamation
- heart-circle-minus
- heart-circle-plus
- heart-circle-xmark
- helicopter-symbol
- helmet-un
- hill-avalanche
- hill-rockslide
- house-circle-check
- house-circle-exclamation
- house-circle-xmark
- house-fire
- house-flag
- house-flood-water
- house-flood-water-circle-arrow-right
- house-lock
- house-medical
- house-medical-circle-check
- house-medical-circle-exclamation
- house-medical-circle-xmark
- house-medical-flag
- house-tsunami
- jar
- jar-wheat
- jet-fighter-up
- jug-detergent
- kitchen-set
- land-mine-on
- landmark-flag
- lines-leaning
- location-pin-lock
- locust
- magnifying-glass-arrow-right
- magnifying-glass-chart
- mars-and-venus-burst
- mask-face
- mask-ventilator
- mattress-pillow
- mobile-retro
- money-bill-transfer
- money-bill-trend-up
- money-bill-wheat
- mosquito
- mosquito-net
- mound
- mountain-city
- mountain-sun
- oil-well
- people-group
- people-line
- people-pulling
- people-robbery
- people-roof
- person-arrow-down-to-line
- person-arrow-up-from-line
- person-breastfeeding
- person-burst
- person-cane
- person-chalkboard
- person-circle-check
- person-circle-exclamation
- person-circle-minus
- person-circle-plus
- person-circle-question
- person-circle-xmark
- person-dress-burst
- person-drowning
- person-falling
- person-falling-burst
- person-half-dress
- person-harassing
- person-military-pointing
- person-military-rifle
- person-military-to-person
- person-rays
- person-rifle
- person-shelter
- person-through-window
- person-walking-arrow-loop-left
- person-walking-arrow-right
- person-walking-dashed-line-arrow-right
- person-walking-luggage
- plane-circle-check
- plane-circle-exclamation
- plane-circle-xmark
- plane-lock
- plant-wilt
- plate-wheat
- plug-circle-bolt
- plug-circle-check
- plug-circle-exclamation
- plug-circle-minus
- plug-circle-plus
- plug-circle-xmark
- ranking-star
- road
- road-barrier
- road-bridge
- road-circle-check
- road-circle-exclamation
- road-circle-xmark
- road-lock
- road-spikes
- rug
- sack-xmark
- sailboat
- school-circle-check
- school-circle-exclamation
- school-circle-xmark
- school-lock
- sheet-plastic
- shield-cat
- shield-dog
- shield-heart
- shop-lock
- skull-crossbones
- square-nfi
- square-person-confined
- square-virus
- staff-aesculapius
- sun-plant-wilt
- tarp
- tarp-droplet
- tent
- tent-arrow-down-to-line
- tent-arrow-left-right
- tent-arrow-turn-left
- tent-arrows-down
- tents
- toilet-portable
- toilets-portable
- tower-cell
- tower-observation
- tree-city
- trowel
- trowel-bricks
- truck-arrow-right
- truck-droplet
- truck-field
- truck-field-un
- truck-plane
- users-between-lines
- users-line
- users-rays
- users-rectangle
- users-viewfinder
- vial-circle-check
- vial-virus
- wheat-awn-circle-exclamation
- wheelchair-move
- worm
- xmarks-lines
label: United Nations OCHA
url: 'https://www.unocha.org'
uncharted:
icons:
- uncharted
label: Uncharted Software
url: 'https://uncharted.software'
uniregistry:
icons:
- uniregistry
label: Uniregistry
url: 'https://uniregistry.com'
us-sunnah-foundation:
icons:
- ussunnah
label: us-Sunnah Foundation
url: 'https://www.ussunnah.org'
vaadin:
icons:
- vaadin
label: Vaadin
url: 'http://vaadin.com'
via:
icons:
- car-burst
- draw-polygon
- house-crack
- layer-group
- skull-crossbones
- user-injured
label: VIA Traffic Software Solutions
url: 'https://www.via.software'
victor-costan:
icons:
- otter
label: Staphany Park and Victor Costan
vnv:
icons:
- vnv
label: VNV
url: 'https://www.vnv.ch'
watchman-monitoring:
icons:
- watchman-monitoring
label: Watchman Monitoring
url: 'https://www.watchmanmonitoring.com'
weedable:
icons:
- bong
- cannabis
- hippo
- joint
- mortar-pestle
- prescription
label: Weedable
url: 'https://www.weedable.com'
whmcs:
icons:
- whmcs
label: WHMCS
url: 'https://www.whmcs.com'
wirsindhandwerk:
icons:
- wirsindhandwerk
label: wirsindhandwerk.de
url: 'https://www.wirsindhandwerk.de/'
wodu:
icons:
- wodu
label: Wodu Media
url: 'https://www.wodu.com'
workrails:
icons:
- briefcase
label: WorkRails
url: 'https://www.workrails.com'
wpressr:
icons:
- wpressr
label: wpressr
url: 'https://wpressr.com'
// animating icons
// --------------------------
.#{$fa-css-prefix}-beat {
animation-name: #{$fa-css-prefix}-beat;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
}
.#{$fa-css-prefix}-bounce {
animation-name: #{$fa-css-prefix}-bounce;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(0.280, 0.840, 0.420, 1));
}
.#{$fa-css-prefix}-fade {
animation-name: #{$fa-css-prefix}-fade;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
}
.#{$fa-css-prefix}-beat-fade {
animation-name: #{$fa-css-prefix}-beat-fade;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, cubic-bezier(.4,0,.6,1));
}
.#{$fa-css-prefix}-flip {
animation-name: #{$fa-css-prefix}-flip;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, ease-in-out);
}
.#{$fa-css-prefix}-shake {
animation-name: #{$fa-css-prefix}-shake;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
}
.#{$fa-css-prefix}-spin {
animation-name: #{$fa-css-prefix}-spin;
animation-delay: var(--#{$fa-css-prefix}-animation-delay, 0);
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 2s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, linear);
}
.#{$fa-css-prefix}-spin-reverse {
--#{$fa-css-prefix}-animation-direction: reverse;
}
.#{$fa-css-prefix}-pulse,
.#{$fa-css-prefix}-spin-pulse {
animation-name: #{$fa-css-prefix}-spin;
animation-direction: var(--#{$fa-css-prefix}-animation-direction, normal);
animation-duration: var(--#{$fa-css-prefix}-animation-duration, 1s);
animation-iteration-count: var(--#{$fa-css-prefix}-animation-iteration-count, infinite);
animation-timing-function: var(--#{$fa-css-prefix}-animation-timing, steps(8));
}
// if agent or operating system prefers reduced motion, disable animations
// see: https://www.smashingmagazine.com/2020/09/design-reduced-motion-sensitivities/
// see: https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
@media (prefers-reduced-motion: reduce) {
.#{$fa-css-prefix}-beat,
.#{$fa-css-prefix}-bounce,
.#{$fa-css-prefix}-fade,
.#{$fa-css-prefix}-beat-fade,
.#{$fa-css-prefix}-flip,
.#{$fa-css-prefix}-pulse,
.#{$fa-css-prefix}-shake,
.#{$fa-css-prefix}-spin,
.#{$fa-css-prefix}-spin-pulse {
animation-delay: -1ms;
animation-duration: 1ms;
animation-iteration-count: 1;
transition-delay: 0s;
transition-duration: 0s;
}
}
@keyframes #{$fa-css-prefix}-beat {
0%, 90% { transform: scale(1); }
45% { transform: scale(var(--#{$fa-css-prefix}-beat-scale, 1.25)); }
}
@keyframes #{$fa-css-prefix}-bounce {
0% { transform: scale(1,1) translateY(0); }
10% { transform: scale(var(--#{$fa-css-prefix}-bounce-start-scale-x, 1.1),var(--#{$fa-css-prefix}-bounce-start-scale-y, 0.9)) translateY(0); }
30% { transform: scale(var(--#{$fa-css-prefix}-bounce-jump-scale-x, 0.9),var(--#{$fa-css-prefix}-bounce-jump-scale-y, 1.1)) translateY(var(--#{$fa-css-prefix}-bounce-height, -0.5em)); }
50% { transform: scale(var(--#{$fa-css-prefix}-bounce-land-scale-x, 1.05),var(--#{$fa-css-prefix}-bounce-land-scale-y, 0.95)) translateY(0); }
57% { transform: scale(1,1) translateY(var(--#{$fa-css-prefix}-bounce-rebound, -0.125em)); }
64% { transform: scale(1,1) translateY(0); }
100% { transform: scale(1,1) translateY(0); }
}
@keyframes #{$fa-css-prefix}-fade {
50% { opacity: var(--#{$fa-css-prefix}-fade-opacity, 0.4); }
}
@keyframes #{$fa-css-prefix}-beat-fade {
0%, 100% {
opacity: var(--#{$fa-css-prefix}-beat-fade-opacity, 0.4);
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(var(--#{$fa-css-prefix}-beat-fade-scale, 1.125));
}
}
@keyframes #{$fa-css-prefix}-flip {
50% {
transform: rotate3d(var(--#{$fa-css-prefix}-flip-x, 0), var(--#{$fa-css-prefix}-flip-y, 1), var(--#{$fa-css-prefix}-flip-z, 0), var(--#{$fa-css-prefix}-flip-angle, -180deg));
}
}
@keyframes #{$fa-css-prefix}-shake {
0% { transform: rotate(-15deg); }
4% { transform: rotate(15deg); }
8%, 24% { transform: rotate(-18deg); }
12%, 28% { transform: rotate(18deg); }
16% { transform: rotate(-22deg); }
20% { transform: rotate(22deg); }
32% { transform: rotate(-12deg); }
36% { transform: rotate(12deg); }
40%, 100% { transform: rotate(0deg); }
}
@keyframes #{$fa-css-prefix}-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
// bordered + pulled icons
// -------------------------
.#{$fa-css-prefix}-border {
border-color: var(--#{$fa-css-prefix}-border-color, #{$fa-border-color});
border-radius: var(--#{$fa-css-prefix}-border-radius, #{$fa-border-radius});
border-style: var(--#{$fa-css-prefix}-border-style, #{$fa-border-style});
border-width: var(--#{$fa-css-prefix}-border-width, #{$fa-border-width});
padding: var(--#{$fa-css-prefix}-border-padding, #{$fa-border-padding});
}
.#{$fa-css-prefix}-pull-left {
float: left;
margin-right: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
}
.#{$fa-css-prefix}-pull-right {
float: right;
margin-left: var(--#{$fa-css-prefix}-pull-margin, #{$fa-pull-margin});
}
// base icon class definition
// -------------------------
.#{$fa-css-prefix} {
font-family: var(--#{$fa-css-prefix}-style-family, '#{$fa-style-family}');
font-weight: var(--#{$fa-css-prefix}-style, #{$fa-style});
}
.#{$fa-css-prefix},
.fas,
.#{$fa-css-prefix}-solid,
.far,
.#{$fa-css-prefix}-regular,
.fal,
.#{$fa-css-prefix}-light,
.fat,
.#{$fa-css-prefix}-thin,
.fad,
.#{$fa-css-prefix}-duotone,
.fab,
.#{$fa-css-prefix}-brands {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
display: var(--#{$fa-css-prefix}-display, #{$fa-display});
font-style: normal;
font-variant: normal;
line-height: 1;
text-rendering: auto;
}
%fa-icon {
@include fa-icon;
}
// fixed-width icons
// -------------------------
.#{$fa-css-prefix}-fw {
text-align: center;
width: $fa-fw-width;
}
// functions
// --------------------------
// fa-content: convenience function used to set content property
@function fa-content($fa-var) {
@return unquote("\"#{ $fa-var }\"");
}
// fa-divide: Originally obtained from the Bootstrap https://github.com/twbs/bootstrap
//
// Licensed under: The MIT License (MIT)
//
// Copyright (c) 2011-2021 Twitter, Inc.
// Copyright (c) 2011-2021 The Bootstrap Authors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
@function fa-divide($dividend, $divisor, $precision: 10) {
$sign: if($dividend > 0 and $divisor > 0, 1, -1);
$dividend: abs($dividend);
$divisor: abs($divisor);
$quotient: 0;
$remainder: $dividend;
@if $dividend == 0 {
@return 0;
}
@if $divisor == 0 {
@error "Cannot divide by 0";
}
@if $divisor == 1 {
@return $dividend;
}
@while $remainder >= $divisor {
$quotient: $quotient + 1;
$remainder: $remainder - $divisor;
}
@if $remainder > 0 and $precision > 0 {
$remainder: fa-divide($remainder * 10, $divisor, $precision - 1) * .1;
}
@return ($quotient + $remainder) * $sign;
}
// specific icon class definition
// -------------------------
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
@each $name, $icon in $fa-icons {
.#{$fa-css-prefix}-#{$name}::before { content: unquote("\"#{ $icon }\""); }
}
// icons in a list
// -------------------------
.#{$fa-css-prefix}-ul {
list-style-type: none;
margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin});
padding-left: 0;
> li { position: relative; }
}
.#{$fa-css-prefix}-li {
left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1);
position: absolute;
text-align: center;
width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width});
line-height: inherit;
}
// mixins
// --------------------------
// base rendering for an icon
@mixin fa-icon {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 1;
}
// sets relative font-sizing and alignment (in _sizing)
@mixin fa-size ($font-size) {
font-size: fa-divide($font-size, $fa-size-scale-base) * 1em; // converts step in sizing scale into an em-based value that's relative to the scale's base
line-height: fa-divide(1, $font-size) * 1em; // sets the line-height of the icon back to that of it's parent
vertical-align: (fa-divide(6, $font-size) - fa-divide(3, 8)) * 1em; // vertically centers the icon taking into account the surrounding text's descender
}
// only display content to screen readers
// see: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
// see: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
@mixin fa-sr-only() {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}
// use in conjunction with .sr-only to only display content when it's focused
@mixin fa-sr-only-focusable() {
&:not(:focus) {
@include fa-sr-only();
}
}
// convenience mixins for declaring pseudo-elements by CSS variable,
// including all style-specific font properties, and both the ::before
// and ::after elements in the duotone case.
@mixin fa-icon-solid($fa-var) {
@extend %fa-icon;
@extend .fa-solid;
&::before {
content: unquote("\"#{ $fa-var }\"");
}
}
@mixin fa-icon-regular($fa-var) {
@extend %fa-icon;
@extend .fa-regular;
&::before {
content: unquote("\"#{ $fa-var }\"");
}
}
@mixin fa-icon-brands($fa-var) {
@extend %fa-icon;
@extend .fa-brands;
&::before {
content: unquote("\"#{ $fa-var }\"");
}
}
// rotating + flipping icons
// -------------------------
.#{$fa-css-prefix}-rotate-90 {
transform: rotate(90deg);
}
.#{$fa-css-prefix}-rotate-180 {
transform: rotate(180deg);
}
.#{$fa-css-prefix}-rotate-270 {
transform: rotate(270deg);
}
.#{$fa-css-prefix}-flip-horizontal {
transform: scale(-1, 1);
}
.#{$fa-css-prefix}-flip-vertical {
transform: scale(1, -1);
}
.#{$fa-css-prefix}-flip-both,
.#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical {
transform: scale(-1, -1);
}
.#{$fa-css-prefix}-rotate-by {
transform: rotate(var(--#{$fa-css-prefix}-rotate-angle, none));
}
// screen-reader utilities
// -------------------------
// only display content to screen readers
.sr-only,
.#{$fa-css-prefix}-sr-only {
@include fa-sr-only;
}
// use in conjunction with .sr-only to only display content when it's focused
.sr-only-focusable,
.#{$fa-css-prefix}-sr-only-focusable {
@include fa-sr-only-focusable;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-glass:before { content: unquote("\"#{ $fa-var-martini-glass-empty }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-o:before { content: unquote("\"#{ $fa-var-envelope }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-o:before { content: unquote("\"#{ $fa-var-star }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-remove:before { content: unquote("\"#{ $fa-var-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-close:before { content: unquote("\"#{ $fa-var-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-gear:before { content: unquote("\"#{ $fa-var-gear }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash-o:before { content: unquote("\"#{ $fa-var-trash-can }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-home:before { content: unquote("\"#{ $fa-var-house }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-o:before { content: unquote("\"#{ $fa-var-file }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-clock-o:before { content: unquote("\"#{ $fa-var-clock }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-down:before { content: unquote("\"#{ $fa-var-circle-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-up:before { content: unquote("\"#{ $fa-var-circle-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-play-circle-o:before { content: unquote("\"#{ $fa-var-circle-play }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-repeat:before { content: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-right:before { content: unquote("\"#{ $fa-var-arrow-rotate-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-refresh:before { content: unquote("\"#{ $fa-var-arrows-rotate }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-list-alt:before { content: unquote("\"#{ $fa-var-rectangle-list }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-dedent:before { content: unquote("\"#{ $fa-var-outdent }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-video-camera:before { content: unquote("\"#{ $fa-var-video }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-picture-o:before { content: unquote("\"#{ $fa-var-image }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-photo:before { content: unquote("\"#{ $fa-var-image }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-image {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-image:before { content: unquote("\"#{ $fa-var-image }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-marker:before { content: unquote("\"#{ $fa-var-location-dot }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square-o:before { content: unquote("\"#{ $fa-var-pen-to-square }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-edit:before { content: unquote("\"#{ $fa-var-pen-to-square }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-share-square-o:before { content: unquote("\"#{ $fa-var-share-from-square }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-square-o:before { content: unquote("\"#{ $fa-var-square-check }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows:before { content: unquote("\"#{ $fa-var-up-down-left-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-circle-o:before { content: unquote("\"#{ $fa-var-circle-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-check-circle-o:before { content: unquote("\"#{ $fa-var-circle-check }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-forward:before { content: unquote("\"#{ $fa-var-share }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-expand:before { content: unquote("\"#{ $fa-var-up-right-and-down-left-from-center }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-compress:before { content: unquote("\"#{ $fa-var-down-left-and-up-right-to-center }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-eye-slash {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-warning:before { content: unquote("\"#{ $fa-var-triangle-exclamation }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar:before { content: unquote("\"#{ $fa-var-calendar-days }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-v:before { content: unquote("\"#{ $fa-var-up-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-h:before { content: unquote("\"#{ $fa-var-left-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart:before { content: unquote("\"#{ $fa-var-chart-column }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bar-chart-o:before { content: unquote("\"#{ $fa-var-chart-column }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gears:before { content: unquote("\"#{ $fa-var-gears }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-up:before { content: unquote("\"#{ $fa-var-thumbs-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumbs-o-down:before { content: unquote("\"#{ $fa-var-thumbs-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-heart-o:before { content: unquote("\"#{ $fa-var-heart }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-out:before { content: unquote("\"#{ $fa-var-right-from-bracket }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin-square:before { content: unquote("\"#{ $fa-var-linkedin }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thumb-tack:before { content: unquote("\"#{ $fa-var-thumbtack }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link:before { content: unquote("\"#{ $fa-var-up-right-from-square }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sign-in:before { content: unquote("\"#{ $fa-var-right-to-bracket }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-lemon-o:before { content: unquote("\"#{ $fa-var-lemon }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-square-o:before { content: unquote("\"#{ $fa-var-square }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bookmark-o:before { content: unquote("\"#{ $fa-var-bookmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitter {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook:before { content: unquote("\"#{ $fa-var-facebook-f }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-f:before { content: unquote("\"#{ $fa-var-facebook-f }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-github {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-feed:before { content: unquote("\"#{ $fa-var-rss }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hdd-o:before { content: unquote("\"#{ $fa-var-hard-drive }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-right:before { content: unquote("\"#{ $fa-var-hand-point-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-left:before { content: unquote("\"#{ $fa-var-hand-point-left }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-up:before { content: unquote("\"#{ $fa-var-hand-point-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-o-down:before { content: unquote("\"#{ $fa-var-hand-point-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-globe:before { content: unquote("\"#{ $fa-var-earth-americas }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-tasks:before { content: unquote("\"#{ $fa-var-bars-progress }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrows-alt:before { content: unquote("\"#{ $fa-var-maximize }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-group:before { content: unquote("\"#{ $fa-var-users }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain:before { content: unquote("\"#{ $fa-var-link }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cut:before { content: unquote("\"#{ $fa-var-scissors }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-files-o:before { content: unquote("\"#{ $fa-var-copy }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-floppy-o:before { content: unquote("\"#{ $fa-var-floppy-disk }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-save {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-save:before { content: unquote("\"#{ $fa-var-floppy-disk }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-navicon:before { content: unquote("\"#{ $fa-var-bars }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-reorder:before { content: unquote("\"#{ $fa-var-bars }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-magic:before { content: unquote("\"#{ $fa-var-wand-magic-sparkles }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus:before { content: unquote("\"#{ $fa-var-google-plus-g }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-money:before { content: unquote("\"#{ $fa-var-money-bill-1 }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-unsorted:before { content: unquote("\"#{ $fa-var-sort }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-desc:before { content: unquote("\"#{ $fa-var-sort-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-asc:before { content: unquote("\"#{ $fa-var-sort-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-linkedin:before { content: unquote("\"#{ $fa-var-linkedin-in }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rotate-left:before { content: unquote("\"#{ $fa-var-arrow-rotate-left }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-legal:before { content: unquote("\"#{ $fa-var-gavel }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-tachometer:before { content: unquote("\"#{ $fa-var-gauge-high }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashboard:before { content: unquote("\"#{ $fa-var-gauge-high }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-comment-o:before { content: unquote("\"#{ $fa-var-comment }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-comments-o:before { content: unquote("\"#{ $fa-var-comments }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-flash:before { content: unquote("\"#{ $fa-var-bolt }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-clipboard:before { content: unquote("\"#{ $fa-var-paste }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-lightbulb-o:before { content: unquote("\"#{ $fa-var-lightbulb }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-exchange:before { content: unquote("\"#{ $fa-var-right-left }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-download:before { content: unquote("\"#{ $fa-var-cloud-arrow-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cloud-upload:before { content: unquote("\"#{ $fa-var-cloud-arrow-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-o:before { content: unquote("\"#{ $fa-var-bell }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cutlery:before { content: unquote("\"#{ $fa-var-utensils }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text-o:before { content: unquote("\"#{ $fa-var-file-lines }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-building-o:before { content: unquote("\"#{ $fa-var-building }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hospital-o:before { content: unquote("\"#{ $fa-var-hospital }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-tablet:before { content: unquote("\"#{ $fa-var-tablet-screen-button }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile:before { content: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-mobile-phone:before { content: unquote("\"#{ $fa-var-mobile-screen-button }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o:before { content: unquote("\"#{ $fa-var-circle }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply:before { content: unquote("\"#{ $fa-var-reply }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-github-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-o:before { content: unquote("\"#{ $fa-var-folder }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-folder-open-o:before { content: unquote("\"#{ $fa-var-folder-open }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-smile-o:before { content: unquote("\"#{ $fa-var-face-smile }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-frown-o:before { content: unquote("\"#{ $fa-var-face-frown }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-meh-o:before { content: unquote("\"#{ $fa-var-face-meh }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-keyboard-o:before { content: unquote("\"#{ $fa-var-keyboard }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-flag-o:before { content: unquote("\"#{ $fa-var-flag }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-mail-reply-all:before { content: unquote("\"#{ $fa-var-reply-all }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-o:before { content: unquote("\"#{ $fa-var-star-half-stroke }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-empty:before { content: unquote("\"#{ $fa-var-star-half-stroke }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-star-half-full:before { content: unquote("\"#{ $fa-var-star-half-stroke }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-code-fork:before { content: unquote("\"#{ $fa-var-code-branch }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-chain-broken:before { content: unquote("\"#{ $fa-var-link-slash }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlink:before { content: unquote("\"#{ $fa-var-link-slash }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-o:before { content: unquote("\"#{ $fa-var-calendar }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-maxcdn {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-html5 {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-css3 {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-unlock-alt:before { content: unquote("\"#{ $fa-var-unlock }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-minus-square-o:before { content: unquote("\"#{ $fa-var-square-minus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-up:before { content: unquote("\"#{ $fa-var-turn-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-level-down:before { content: unquote("\"#{ $fa-var-turn-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-pencil-square:before { content: unquote("\"#{ $fa-var-square-pen }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-external-link-square:before { content: unquote("\"#{ $fa-var-square-up-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-compass {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-down:before { content: unquote("\"#{ $fa-var-square-caret-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-down:before { content: unquote("\"#{ $fa-var-square-caret-down }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-up:before { content: unquote("\"#{ $fa-var-square-caret-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-up:before { content: unquote("\"#{ $fa-var-square-caret-up }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-right:before { content: unquote("\"#{ $fa-var-square-caret-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-right:before { content: unquote("\"#{ $fa-var-square-caret-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-eur:before { content: unquote("\"#{ $fa-var-euro-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-euro:before { content: unquote("\"#{ $fa-var-euro-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-gbp:before { content: unquote("\"#{ $fa-var-sterling-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-usd:before { content: unquote("\"#{ $fa-var-dollar-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-dollar:before { content: unquote("\"#{ $fa-var-dollar-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-inr:before { content: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rupee:before { content: unquote("\"#{ $fa-var-indian-rupee-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-jpy:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cny:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rmb:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-yen:before { content: unquote("\"#{ $fa-var-yen-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rub:before { content: unquote("\"#{ $fa-var-ruble-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-ruble:before { content: unquote("\"#{ $fa-var-ruble-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rouble:before { content: unquote("\"#{ $fa-var-ruble-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-krw:before { content: unquote("\"#{ $fa-var-won-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-won:before { content: unquote("\"#{ $fa-var-won-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-btc {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitcoin:before { content: unquote("\"#{ $fa-var-btc }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-text:before { content: unquote("\"#{ $fa-var-file-lines }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-asc:before { content: unquote("\"#{ $fa-var-arrow-down-a-z }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-alpha-desc:before { content: unquote("\"#{ $fa-var-arrow-down-z-a }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-asc:before { content: unquote("\"#{ $fa-var-arrow-down-short-wide }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-amount-desc:before { content: unquote("\"#{ $fa-var-arrow-down-wide-short }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-asc:before { content: unquote("\"#{ $fa-var-arrow-down-1-9 }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sort-numeric-desc:before { content: unquote("\"#{ $fa-var-arrow-down-9-1 }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-xing-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-youtube-play:before { content: unquote("\"#{ $fa-var-youtube }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-dropbox {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-overflow {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-instagram {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-flickr {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-adn {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bitbucket-square:before { content: unquote("\"#{ $fa-var-bitbucket }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-tumblr-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-down:before { content: unquote("\"#{ $fa-var-down-long }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-up:before { content: unquote("\"#{ $fa-var-up-long }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-left:before { content: unquote("\"#{ $fa-var-left-long }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-long-arrow-right:before { content: unquote("\"#{ $fa-var-right-long }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-apple {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-windows {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-android {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-linux {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-dribbble {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-skype {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-foursquare {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-trello {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gratipay {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gittip:before { content: unquote("\"#{ $fa-var-gratipay }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-sun-o:before { content: unquote("\"#{ $fa-var-sun }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-moon-o:before { content: unquote("\"#{ $fa-var-moon }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-vk {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-weibo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-renren {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pagelines {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-stack-exchange {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-right:before { content: unquote("\"#{ $fa-var-circle-right }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-arrow-circle-o-left:before { content: unquote("\"#{ $fa-var-circle-left }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-caret-square-o-left:before { content: unquote("\"#{ $fa-var-square-caret-left }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-toggle-left:before { content: unquote("\"#{ $fa-var-square-caret-left }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-dot-circle-o:before { content: unquote("\"#{ $fa-var-circle-dot }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-try:before { content: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-turkish-lira:before { content: unquote("\"#{ $fa-var-turkish-lira-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-plus-square-o:before { content: unquote("\"#{ $fa-var-square-plus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-slack {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wordpress {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-openid {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-institution:before { content: unquote("\"#{ $fa-var-building-columns }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bank:before { content: unquote("\"#{ $fa-var-building-columns }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-mortar-board:before { content: unquote("\"#{ $fa-var-graduation-cap }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-yahoo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-stumbleupon {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-delicious {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-digg {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-pp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-drupal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-joomla {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-behance-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-steam-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-automobile:before { content: unquote("\"#{ $fa-var-car }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cab:before { content: unquote("\"#{ $fa-var-taxi }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-spotify {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-deviantart {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-soundcloud {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-pdf-o:before { content: unquote("\"#{ $fa-var-file-pdf }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-word-o:before { content: unquote("\"#{ $fa-var-file-word }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-excel-o:before { content: unquote("\"#{ $fa-var-file-excel }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-powerpoint-o:before { content: unquote("\"#{ $fa-var-file-powerpoint }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-image-o:before { content: unquote("\"#{ $fa-var-file-image }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-photo-o:before { content: unquote("\"#{ $fa-var-file-image }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-picture-o:before { content: unquote("\"#{ $fa-var-file-image }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-archive-o:before { content: unquote("\"#{ $fa-var-file-zipper }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-zip-o:before { content: unquote("\"#{ $fa-var-file-zipper }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-audio-o:before { content: unquote("\"#{ $fa-var-file-audio }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-sound-o:before { content: unquote("\"#{ $fa-var-file-audio }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-video-o:before { content: unquote("\"#{ $fa-var-file-video }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-movie-o:before { content: unquote("\"#{ $fa-var-file-video }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-file-code-o:before { content: unquote("\"#{ $fa-var-file-code }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-vine {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-codepen {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-jsfiddle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-bouy:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-buoy:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-life-saver:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-support:before { content: unquote("\"#{ $fa-var-life-ring }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-o-notch:before { content: unquote("\"#{ $fa-var-circle-notch }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-rebel {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-ra:before { content: unquote("\"#{ $fa-var-rebel }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-resistance:before { content: unquote("\"#{ $fa-var-rebel }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-empire {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-ge:before { content: unquote("\"#{ $fa-var-empire }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-git-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-git {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hacker-news {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator-square:before { content: unquote("\"#{ $fa-var-hacker-news }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc-square:before { content: unquote("\"#{ $fa-var-hacker-news }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-tencent-weibo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-qq {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-weixin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wechat:before { content: unquote("\"#{ $fa-var-weixin }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-send:before { content: unquote("\"#{ $fa-var-paper-plane }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-paper-plane-o:before { content: unquote("\"#{ $fa-var-paper-plane }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-send-o:before { content: unquote("\"#{ $fa-var-paper-plane }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-circle-thin:before { content: unquote("\"#{ $fa-var-circle }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-header:before { content: unquote("\"#{ $fa-var-heading }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-futbol-o:before { content: unquote("\"#{ $fa-var-futbol }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-soccer-ball-o:before { content: unquote("\"#{ $fa-var-futbol }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-slideshare {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-twitch {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-yelp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-newspaper-o:before { content: unquote("\"#{ $fa-var-newspaper }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-paypal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-wallet {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-visa {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-mastercard {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-discover {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-amex {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-paypal {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-stripe {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bell-slash-o:before { content: unquote("\"#{ $fa-var-bell-slash }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-trash:before { content: unquote("\"#{ $fa-var-trash-can }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-copyright {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-eyedropper:before { content: unquote("\"#{ $fa-var-eye-dropper }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-area-chart:before { content: unquote("\"#{ $fa-var-chart-area }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-pie-chart:before { content: unquote("\"#{ $fa-var-chart-pie }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-line-chart:before { content: unquote("\"#{ $fa-var-chart-line }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-lastfm-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-ioxhost {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-angellist {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc:before { content: unquote("\"#{ $fa-var-closed-captioning }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-ils:before { content: unquote("\"#{ $fa-var-shekel-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-shekel:before { content: unquote("\"#{ $fa-var-shekel-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-sheqel:before { content: unquote("\"#{ $fa-var-shekel-sign }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-buysellads {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-connectdevelop {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-dashcube {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-forumbee {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-leanpub {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-sellsy {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-shirtsinbulk {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-simplybuilt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-skyatlas {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-diamond:before { content: unquote("\"#{ $fa-var-gem }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender:before { content: unquote("\"#{ $fa-var-mars-and-venus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-intersex:before { content: unquote("\"#{ $fa-var-mars-and-venus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-transgender-alt:before { content: unquote("\"#{ $fa-var-transgender }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-facebook-official:before { content: unquote("\"#{ $fa-var-facebook }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-pinterest-p {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-whatsapp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hotel:before { content: unquote("\"#{ $fa-var-bed }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-viacoin {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-medium {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-y-combinator {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-yc:before { content: unquote("\"#{ $fa-var-y-combinator }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-optin-monster {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-opencart {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-expeditedssl {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-4:before { content: unquote("\"#{ $fa-var-battery-full }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery:before { content: unquote("\"#{ $fa-var-battery-full }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-3:before { content: unquote("\"#{ $fa-var-battery-three-quarters }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-2:before { content: unquote("\"#{ $fa-var-battery-half }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-1:before { content: unquote("\"#{ $fa-var-battery-quarter }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-battery-0:before { content: unquote("\"#{ $fa-var-battery-empty }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-group {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-object-ungroup {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-sticky-note-o:before { content: unquote("\"#{ $fa-var-note-sticky }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-jcb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-cc-diners-club {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-clone {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-o:before { content: unquote("\"#{ $fa-var-hourglass-empty }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-1:before { content: unquote("\"#{ $fa-var-hourglass-start }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-half:before { content: unquote("\"#{ $fa-var-hourglass }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-2:before { content: unquote("\"#{ $fa-var-hourglass }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hourglass-3:before { content: unquote("\"#{ $fa-var-hourglass-end }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-rock-o:before { content: unquote("\"#{ $fa-var-hand-back-fist }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-grab-o:before { content: unquote("\"#{ $fa-var-hand-back-fist }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-paper-o:before { content: unquote("\"#{ $fa-var-hand }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-stop-o:before { content: unquote("\"#{ $fa-var-hand }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-scissors-o:before { content: unquote("\"#{ $fa-var-hand-scissors }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-lizard-o:before { content: unquote("\"#{ $fa-var-hand-lizard }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-spock-o:before { content: unquote("\"#{ $fa-var-hand-spock }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-pointer-o:before { content: unquote("\"#{ $fa-var-hand-pointer }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-hand-peace-o:before { content: unquote("\"#{ $fa-var-hand-peace }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-registered {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-creative-commons {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gg-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-odnoklassniki-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-get-pocket {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wikipedia-w {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-safari {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-chrome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-firefox {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-opera {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-internet-explorer {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-television:before { content: unquote("\"#{ $fa-var-tv }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-contao {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-500px {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-amazon {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-plus-o:before { content: unquote("\"#{ $fa-var-calendar-plus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-minus-o:before { content: unquote("\"#{ $fa-var-calendar-minus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-times-o:before { content: unquote("\"#{ $fa-var-calendar-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-calendar-check-o:before { content: unquote("\"#{ $fa-var-calendar-check }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-map-o:before { content: unquote("\"#{ $fa-var-map }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting:before { content: unquote("\"#{ $fa-var-comment-dots }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-commenting-o:before { content: unquote("\"#{ $fa-var-comment-dots }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-houzz {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-vimeo:before { content: unquote("\"#{ $fa-var-vimeo-v }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-black-tie {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-fonticons {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-reddit-alien {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-edge {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-credit-card-alt:before { content: unquote("\"#{ $fa-var-credit-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-codiepie {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-modx {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-fort-awesome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-usb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-product-hunt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-mixcloud {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-scribd {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pause-circle-o:before { content: unquote("\"#{ $fa-var-circle-pause }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-stop-circle-o:before { content: unquote("\"#{ $fa-var-circle-stop }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-bluetooth-b {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-gitlab {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpbeginner {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpforms {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-envira {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wheelchair-alt:before { content: unquote("\"#{ $fa-var-accessible-icon }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-question-circle-o:before { content: unquote("\"#{ $fa-var-circle-question }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-volume-control-phone:before { content: unquote("\"#{ $fa-var-phone-volume }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-asl-interpreting:before { content: unquote("\"#{ $fa-var-hands-asl-interpreting }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-deafness:before { content: unquote("\"#{ $fa-var-ear-deaf }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-hard-of-hearing:before { content: unquote("\"#{ $fa-var-ear-deaf }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-glide-g {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-signing:before { content: unquote("\"#{ $fa-var-hands }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-viadeo-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-ghost:before { content: unquote("\"#{ $fa-var-snapchat }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-snapchat-square {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-pied-piper {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-first-order {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-yoast {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-themeisle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-official:before { content: unquote("\"#{ $fa-var-google-plus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-google-plus-circle:before { content: unquote("\"#{ $fa-var-google-plus }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-font-awesome {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-fa:before { content: unquote("\"#{ $fa-var-font-awesome }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-handshake-o:before { content: unquote("\"#{ $fa-var-handshake }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-envelope-open-o:before { content: unquote("\"#{ $fa-var-envelope-open }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-linode {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-book-o:before { content: unquote("\"#{ $fa-var-address-book }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard:before { content: unquote("\"#{ $fa-var-address-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-address-card-o:before { content: unquote("\"#{ $fa-var-address-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-vcard-o:before { content: unquote("\"#{ $fa-var-address-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-circle-o:before { content: unquote("\"#{ $fa-var-circle-user }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-user-o:before { content: unquote("\"#{ $fa-var-user }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-badge {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license:before { content: unquote("\"#{ $fa-var-id-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-id-card-o:before { content: unquote("\"#{ $fa-var-id-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-drivers-license-o:before { content: unquote("\"#{ $fa-var-id-card }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-quora {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-free-code-camp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-telegram {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-4:before { content: unquote("\"#{ $fa-var-temperature-full }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer:before { content: unquote("\"#{ $fa-var-temperature-full }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-3:before { content: unquote("\"#{ $fa-var-temperature-three-quarters }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-2:before { content: unquote("\"#{ $fa-var-temperature-half }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-1:before { content: unquote("\"#{ $fa-var-temperature-quarter }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-thermometer-0:before { content: unquote("\"#{ $fa-var-temperature-empty }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bathtub:before { content: unquote("\"#{ $fa-var-bath }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-s15:before { content: unquote("\"#{ $fa-var-bath }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-maximize {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-restore {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle:before { content: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-window-close-o:before { content: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-times-rectangle-o:before { content: unquote("\"#{ $fa-var-rectangle-xmark }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-bandcamp {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-grav {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-etsy {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-imdb {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-ravelry {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-eercast:before { content: unquote("\"#{ $fa-var-sellcast }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-snowflake-o:before { content: unquote("\"#{ $fa-var-snowflake }\""); }
.#{$fa-css-prefix}.#{$fa-css-prefix}-superpowers {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-wpexplorer {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
.#{$fa-css-prefix}.#{$fa-css-prefix}-meetup {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
// sizing icons
// -------------------------
// literal magnification scale
@for $i from 1 through 10 {
.#{$fa-css-prefix}-#{$i}x {
font-size: $i * 1em;
}
}
// step-based scale (with alignment)
@each $size, $value in $fa-sizes {
.#{$fa-css-prefix}-#{$size} {
@include fa-size($value);
}
}
// stacking icons
// -------------------------
.#{$fa-css-prefix}-stack {
display: inline-block;
height: 2em;
line-height: 2em;
position: relative;
vertical-align: $fa-stack-vertical-align;
width: $fa-stack-width;
}
.#{$fa-css-prefix}-stack-1x,
.#{$fa-css-prefix}-stack-2x {
left: 0;
position: absolute;
text-align: center;
width: 100%;
z-index: var(--#{$fa-css-prefix}-stack-z-index, #{$fa-stack-z-index});
}
.#{$fa-css-prefix}-stack-1x {
line-height: inherit;
}
.#{$fa-css-prefix}-stack-2x {
font-size: 2em;
}
.#{$fa-css-prefix}-inverse {
color: var(--#{$fa-css-prefix}-inverse, #{$fa-inverse});
}
This source diff could not be displayed because it is too large. You can view the blob instead.
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
@import 'functions';
@import 'variables';
:root, :host {
--#{$fa-css-prefix}-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
@font-face {
font-family: 'Font Awesome 6 Brands';
font-style: normal;
font-weight: 400;
font-display: $fa-font-display;
src: url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype');
}
.fab,
.#{$fa-css-prefix}-brands {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
}
@each $name, $icon in $fa-brand-icons {
.#{$fa-css-prefix}-#{$name}:before { content: unquote("\"#{ $icon }\""); }
}
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
// Font Awesome core compile (Web Fonts-based)
// -------------------------
@import 'functions';
@import 'variables';
@import 'mixins';
@import 'core';
@import 'sizing';
@import 'fixed-width';
@import 'list';
@import 'bordered-pulled';
@import 'animated';
@import 'rotated-flipped';
@import 'stacked';
@import 'icons';
@import 'screen-reader';
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
@import 'functions';
@import 'variables';
:root, :host {
--#{$fa-css-prefix}-font-regular: normal 400 1em/1 "#{ $fa-style-family }";
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 400;
font-display: $fa-font-display;
src: url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype');
}
.far,
.#{$fa-css-prefix}-regular {
font-family: 'Font Awesome 6 Free';
font-weight: 400;
}
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
@import 'functions';
@import 'variables';
:root, :host {
--#{$fa-css-prefix}-font-solid: normal 900 1em/1 "#{ $fa-style-family }";
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 900;
font-display: $fa-font-display;
src: url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype');
}
.fas,
.#{$fa-css-prefix}-solid {
font-family: 'Font Awesome 6 Free';
font-weight: 900;
}
/*!
* Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
* Copyright 2022 Fonticons, Inc.
*/
// V4 shims compile (Web Fonts-based)
// -------------------------
@import 'functions';
@import 'variables';
@import 'shims';
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
<svg viewBox="0 0 640 512" xmlns="http://www.w3.org/2000/svg"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M320 96V416C341.011 416 361.818 411.861 381.23 403.821C400.641 395.78 418.28 383.995 433.138 369.138C447.995 354.28 459.78 336.641 467.821 317.23C475.861 297.818 480 277.011 480 256C480 234.989 475.861 214.182 467.821 194.771C459.78 175.359 447.995 157.72 433.138 142.863C418.28 128.005 400.641 116.22 381.23 108.179C361.818 100.139 341.011 96 320 96ZM0 256L160.002 416L320.003 256L160.002 96L0 256ZM480 256C480 277.011 484.138 297.818 492.179 317.23C500.219 336.643 512.005 354.28 526.862 369.138C541.72 383.995 559.357 395.781 578.77 403.821C598.182 411.862 618.989 416 640 416V96C597.565 96 556.869 112.858 526.862 142.863C496.857 172.869 480 213.565 480 256Z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3.3-16 16.5-21.2 23.9l-.5.6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6.2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7.8 0 114.5-36.6 114.5-36.6.5-.6-.1-.1.6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8.5-116.5.6-19.2.1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1.2-9.6.8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6.2 2.5 2 2.6 4.6 3.5 2.7.8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4.4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7.4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6.4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1.2-.1.3-.1.5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2.4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9.1-8.5-.3-16.8-1-25z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M224 373.12c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.61-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.15 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.07 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.72-231.18 115.87-241.56 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.48 114.84 239.09 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.12C280.27 35.93 273.13 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.19 22 349.81-3.22 419.14 48.74 480 111.63 480c21.71 0 60.61-6.06 112.37-62.4 58.68 63.78 101.26 62.4 112.37 62.4 62.89.05 114.85-60.86 89.61-130.19.02-3.89-16.82-38.9-16.82-39.58z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8.9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1.7 1.3.2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7.5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M377.74 32H70.26C31.41 32 0 63.41 0 102.26v307.48C0 448.59 31.41 480 70.26 480h307.48c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.59-60.34-171.6-88.44-32.07 43.97-84.14 81-148.62 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.13 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.44V92.34h50.92v50.42h109.44v19.01H248.63v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100.01 36.04 148.62 52.74V102.26C447.83 63.57 416.43 32 377.74 32zM47.28 322.95c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.87-72.9-44.63-18.68-84.48-31.41-109.44-31.41-67.45 0-79.35 33.06-78.36 50.58z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.88 595.88 0 0 0 127.4 46.3 616.61 616.61 0 0 0 63.2 11.8 603.33 603.33 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.66 603.66 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1-9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.31 473.31 0 0 1-75.1 17.6 431 431 0 0 1-53.2 4.8 21.3 21.3 0 0 0-2.5.3H308a21.3 21.3 0 0 0-2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1-50.4-5.3A448.4 448.4 0 0 1 164 420a443.33 443.33 0 0 1-145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3.6a80.92 80.92 0 0 0-38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1-.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1.1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1.9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1.5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1-1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9.4a148 148 0 0 0-28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7.1 3.3-.1 6.6 0 9.9.1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4.3 8.3.2 16.6.3 24.9a7.84 7.84 0 0 1-.2 1.4c-.5-.1-.9 0-1.3-.1a180.56 180.56 0 0 0-32-4.9c-11.3-.6-22.5.1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4.1 10.9.1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0-.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9.1-7.9.1-11.9.1zm35 127.7a3.33 3.33 0 0 1-1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7.6-11.4.4-16.8-1.8a20.08 20.08 0 0 1-12.4-13.3 32.9 32.9 0 0 1-.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4.7 16.6 2.3 25 3.4 1.6.2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0-21-3.9 147.32 147.32 0 0 0-39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0-3.7 3.5 5.11 5.11 0 0 0-.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4.4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0-1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.91 145.91 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6.8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6.2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1-15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.18 108.18 0 0 0 16.9 2c17.1.4 30.7-6.5 39.5-21.4a131.63 131.63 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0-7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5.3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M420.55,301.93a24,24,0,1,1,24-24,24,24,0,0,1-24,24m-265.1,0a24,24,0,1,1,24-24,24,24,0,0,1-24,24m273.7-144.48,47.94-83a10,10,0,1,0-17.27-10h0l-48.54,84.07a301.25,301.25,0,0,0-246.56,0L116.18,64.45a10,10,0,1,0-17.27,10h0l47.94,83C64.53,202.22,8.24,285.55,0,384H576c-8.24-98.45-64.54-181.78-146.85-226.55"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7.1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3.3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7.1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8.3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1.6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z"/></svg>
\ No newline at end of file
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z"/></svg>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment