/*!
 * Font Awesome Free 6.0.0 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.
 */

/* Core Font Awesome styles */
.fa {
	font-family: var(--fa-style-family, 'Font Awesome 6 Free');
	font-weight: var(--fa-style, 900);
}
.fa,
.fa-brands,
.fa-duotone,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin,
.fab,
.fad,
.fal,
.far,
.fas,
.fat {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

/* Font sizes */
.fa-1x {
	font-size: 1em;
}
.fa-2x {
	font-size: 2em;
}
.fa-3x {
	font-size: 3em;
}
.fa-4x {
	font-size: 4em;
}
.fa-5x {
	font-size: 5em;
}
.fa-6x {
	font-size: 6em;
}
.fa-7x {
	font-size: 7em;
}
.fa-8x {
	font-size: 8em;
}
.fa-9x {
	font-size: 9em;
}
.fa-10x {
	font-size: 10em;
}
.fa-2xs {
	font-size: 0.625em;
	line-height: 0.1em;
	vertical-align: 0.225em;
}
.fa-xs {
	font-size: 0.75em;
	line-height: 0.08333em;
	vertical-align: 0.125em;
}
.fa-sm {
	font-size: 0.875em;
	line-height: 0.07143em;
	vertical-align: 0.05357em;
}
.fa-lg {
	font-size: 1.25em;
	line-height: 0.05em;
	vertical-align: -0.075em;
}
.fa-xl {
	font-size: 1.5em;
	line-height: 0.04167em;
	vertical-align: -0.125em;
}
.fa-2xl {
	font-size: 2em;
	line-height: 0.03125em;
	vertical-align: -0.1875em;
}

/* Utilities */
.fa-fw {
	text-align: center;
	width: 1.25em;
}
.fa-ul {
	list-style-type: none;
	margin-left: var(--fa-li-margin, 2.5em);
	padding-left: 0;
}
.fa-ul > li {
	position: relative;
}
.fa-li {
	left: calc(var(--fa-li-width, 2em) * -1);
	position: absolute;
	text-align: center;
	width: var(--fa-li-width, 2em);
	line-height: inherit;
}
.fa-border {
	border-radius: var(--fa-border-radius, 0.1em);
	border: var(--fa-border-width, 0.08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
	padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.fa-pull-left {
	float: left;
	margin-right: var(--fa-pull-margin, 0.3em);
}
.fa-pull-right {
	float: right;
	margin-left: var(--fa-pull-margin, 0.3em);
}

/* Animations */
.fa-spin {
	-webkit-animation-name: fa-spin;
	animation-name: fa-spin;
	-webkit-animation-delay: var(--fa-animation-delay, 0);
	animation-delay: var(--fa-animation-delay, 0);
	-webkit-animation-direction: var(--fa-animation-direction, normal);
	animation-direction: var(--fa-animation-direction, normal);
	-webkit-animation-duration: var(--fa-animation-duration, 2s);
	animation-duration: var(--fa-animation-duration, 2s);
	-webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	animation-iteration-count: var(--fa-animation-iteration-count, infinite);
	-webkit-animation-timing-function: var(--fa-animation-timing, linear);
	animation-timing-function: var(--fa-animation-timing, linear);
}

@media (prefers-reduced-motion: reduce) {
	.fa-spin {
		-webkit-animation-delay: -1ms;
		animation-delay: -1ms;
		-webkit-animation-duration: 1ms;
		animation-duration: 1ms;
		-webkit-animation-iteration-count: 1;
		animation-iteration-count: 1;
		transition-delay: 0s;
		transition-duration: 0s;
	}
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}
@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

/* Transforms */
.fa-rotate-90 {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.fa-rotate-180 {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.fa-rotate-270 {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg);
}
.fa-flip-horizontal {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.fa-flip-vertical {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
	-webkit-transform: scale(-1);
	transform: scale(-1);
}
.fa-rotate-by {
	-webkit-transform: rotate(var(--fa-rotate-angle, none));
	transform: rotate(var(--fa-rotate-angle, none));
}

/* Stack */
.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: var(--fa-stack-z-index, auto);
}
.fa-stack-1x {
	line-height: inherit;
}
.fa-stack-2x {
	font-size: 2em;
}
.fa-inverse {
	color: var(--fa-inverse, #fff);
}

/* Common icons - only include the ones actually used */
.fa-bars:before,
.fa-navicon:before {
	content: '\f0c9';
}
.fa-times:before,
.fa-xmark:before {
	content: '\f00d';
}
.fa-chevron-down:before {
	content: '\f078';
}
.fa-chevron-up:before {
	content: '\f077';
}
.fa-chevron-left:before {
	content: '\f053';
}
.fa-chevron-right:before {
	content: '\f054';
}
.fa-phone:before {
	content: '\f095';
}
.fa-envelope:before {
	content: '\f0e0';
}
.fa-map-marker-alt:before,
.fa-location-dot:before {
	content: '\f3c5';
}
.fa-star:before {
	content: '\f005';
}
.fa-check:before {
	content: '\f00c';
}
.fa-arrow-right:before {
	content: '\f061';
}
.fa-arrow-left:before {
	content: '\f060';
}
.fa-play:before {
	content: '\f04b';
}
.fa-pause:before {
	content: '\f04c';
}
.fa-search:before,
.fa-magnifying-glass:before {
	content: '\f002';
}
.fa-home:before,
.fa-house:before {
	content: '\f015';
}
.fa-user:before {
	content: '\f007';
}
.fa-calendar:before {
	content: '\f133';
}
.fa-clock:before {
	content: '\f017';
}
.fa-heart:before {
	content: '\f004';
}
.fa-thumbs-up:before {
	content: '\f164';
}
.fa-share:before {
	content: '\f064';
}
.fa-download:before {
	content: '\f019';
}
.fa-upload:before {
	content: '\f093';
}
.fa-external-link:before,
.fa-external-link-alt:before {
	content: '\f35d';
}

/* Financing page icons */
.fa-sliders-h:before {
	content: '\f1de';
}
.fa-shield-alt:before {
	content: '\f3ed';
}
.fa-money-bill-wave:before {
	content: '\f53a';
}
.fa-globe:before {
	content: '\f0ac';
}
.fa-check-circle:before {
	content: '\f058';
}
.fa-building-columns:before {
	content: '\f19c';
}
.fa-bolt:before {
	content: '\f0e7';
}
.fa-dollar-sign:before {
	content: '\f155';
}
.fa-calendar-alt:before {
	content: '\f073';
}
.fa-credit-card:before {
	content: '\f09d';
}

/* Screen reader only */
.fa-sr-only,
.fa-sr-only-focusable:not(:focus),
.sr-only,
.sr-only-focusable:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Font definitions - using local paths */
:host,
:root {
	--fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free';
}

@font-face {
	font-family: 'Font Awesome 6 Free';
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url('/fonts/fa-solid-900.woff2') format('woff2');
}

.fa-solid,
.fas {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

/* Brands font */
:host,
:root {
	--fa-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: swap;
	src: url('/fonts/fa-brands-400.woff2') format('woff2');
}

.fa-brands,
.fab {
	font-family: 'Font Awesome 6 Brands';
	font-weight: 400;
}

/* Common brand icons */
.fa-facebook:before {
	content: '\f09a';
}
.fa-twitter:before {
	content: '\f099';
}
.fa-instagram:before {
	content: '\f16d';
}
.fa-linkedin:before {
	content: '\f08c';
}
.fa-youtube:before {
	content: '\f167';
}
.fa-google:before {
	content: '\f1a0';
}
