/*----- BLOG NODE ITEM - Open -----*/
body.category-case-studies #page .field--name-field-category {
	display: none;
}

#page .field--name-field-category {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

#page .field--name-field-category .field__label {
	font-weight: 500;
	font-size: 24px;
	color: #000;
	font-family: var(--secondary-font-family);
}

#page .field--name-field-category a {
	color: #2e333a;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 500;
	line-height: 160%;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	border: 1px solid #90caf9;
	background: #bbdefb;
}

#page .field--name-field-category a:hover {
	color: #2e333a;
	background: #90caf9;
}
/*----- BLOG NODE ITEM - Close -----*/

/*----- BLOG CARD - Open -----*/
#page .blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
#page .blog-card__thumb {
	align-items: center;
	border-radius: var(--border-radius);
	display: flex;
	height: 16rem !important;
	justify-content: center;
	overflow: hidden;
	position: relative;
	width: 100%;
}
#page .blog-card__thumb img {
	border-radius: var(--border-radius);
	display: block !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	width: 100%;
}
#page .blog-card:hover .blog-card__thumb img {
	transform: scale(1.08);
}
#page .blog-card__fake-btn {
	background: var(--color-amber-800);
	border-radius: var(--border-radius) var(--border-radius) 0 0;
	backdrop-filter: blur(4px);
	bottom: 0;
	color: var(--color-white);
	display: block;
	font-size: 0.8125rem;
	font-weight: 650;
	left: 50%;
	letter-spacing: 3px;
	padding: 0.625rem 1rem;
	position: absolute;
	text-transform: uppercase;
	transform: translate(-50%, calc(100% + -1.375rem));
	transition: all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	z-index: 1;
}
#page .blog-card:hover .blog-card__fake-btn {
	background: rgba(236, 62, 19, 0.8);
	padding: 0.625rem 2.5rem;
	transform: translate(-50%, calc(0% + -1.5rem));
}
#page .blog-card__content {
	align-items: flex-start;
	background: linear-gradient(180deg, #ffffff 3%, #f1f5f9 30%, #ffffff 60%);
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin: 0.5rem;
	padding: 1.75rem 2rem 0.5rem 2rem;
	position: relative;
	transform: translateY(-1.5rem);
	transition: all 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
	z-index: 2;
}
#page .blog-card:hover .blog-card__content {
	transform: translateY(-2rem);
}
#page .blog-card__title {
	font-family: var(--secondary-font-family);
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 650;
	line-height: 140%;
	margin-bottom: 0.5rem;
	position: relative;
	transition: all 350ms cubic-bezier(0.645, 0.045, 0.355, 1);
	z-index: 2;
}
#page .blog-card:hover .blog-card__title {
	color: var(--color-element-link-hover);
}
#page .blog-card__body {
	color: var(--color-text);
	font-size: 1.0625rem;
	font-style: normal;
	font-weight: 300;
	position: relative;
	z-index: 2;
}
#page .blog-card__body::after {
	background: linear-gradient(180deg, #ffffff00 0%, #ffffff 100%);
	bottom: 0;
	content: '';
	display: block;
	height: 3rem;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}
/*----- BLOG CARD - Close -----*/

/*----- BLOG GRID - Open -----*/
#page .blog > .view-content {
	column-gap: 1.5rem;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	row-gap: 1.5rem;
}

@media screen and (min-width: 1024px) {
	#page .blog > .view-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Home  */
#page .blog-home-section__title,
#page .blog-home-section__title .apb-sc-body-wrapper > h2 {
	margin-bottom: 2rem !important;
}

#page .blog.blog-home-block > .view-content {
	column-gap: 1.5rem;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	row-gap: 1.5rem;
}

#page .blog-home-block .view-content .views-row {
	overflow: visible !important;
}

@media screen and (min-width: 768px) {
	#page .blog.blog-home-block > .view-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	#page .blog.blog-home-block > .view-content {
		grid-template-columns: repeat(3, 1fr);
	}
}
/*----- BLOG GRID - Close -----*/

/*----- BLOG POST - Open -----*/
@media screen and (min-width: 1025px) {
	/* Define default values for blog posts */
	.page-type-blog-post {
		--blog-post-max-width: 980px;
		--blog-post-width: 64vw;
		--blog-post-border-radius: 0 0 var(--border-radius) var(--border-radius);
		--blog-post-overflow: hidden;
		--blog-post-container-padding: 0;
		--blog-post-title-padding: 0 2rem;
		--blog-post-margin: auto;
	}

	/* Override for case studies */
	.page-type-blog-post.category-case-studies {
		--blog-post-max-width: 100%;
		--blog-post-width: 100%;
		--blog-post-border-radius: 0;
		--blog-post-overflow: visible;
		--blog-post-container-padding: 0 1rem;
		--blog-post-title-padding: 0;
		--blog-post-margin: 0;
	}

	.page-type-blog-post #page .page-header {
		border-radius: var(--blog-post-border-radius);
		overflow: var(--blog-post-overflow);
	}
	.page-type-blog-post #page .page-header .container {
		padding: var(--blog-post-container-padding) !important;
	}
	.page-type-blog-post #page .has-cover-bg-style .page-title-wrap {
		padding: var(--blog-post-title-padding) !important;
	}
	.page-type-blog-post #page .page-header,
	.page-type-blog-post #page .breadcrumb-container,
	.page-type-blog-post #page .node-type-blog-post {
		margin-left: var(--blog-post-margin) !important;
		margin-right: var(--blog-post-margin) !important;
		max-width: var(--blog-post-max-width);
		width: var(--blog-post-width);
	}
}
/*----- BLOG POST - Close -----*/

/*----- BLOG SIDEBAR - Open -----*/
#sidebar-right .block {
	background-color: var(--color-white);
	border-radius: var(--border-radius);
	border: 1px solid var(--color-slate-100);
	padding: 1.75rem 1.5rem 2rem 1.5rem;
}
#sidebar-right .block::before {
	background-color: var(--color-primary);
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	content: '';
	display: block;
	height: 0.375rem;
	left: 1.25rem;
	position: absolute;
	top: -1px;
	width: calc(100% - 2.5rem);
	z-index: 1;
}

#sidebar-right .block h2 {
	font-family: var(--font-family-secondary);
	font-size: 1.75rem;
	font-weight: 650;
}

#page .blog.sidebar > .view-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

#page .blog.sidebar > .view-content .views-row {
	border-bottom: 1px solid var(--color-slate-100);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

#page .blog.sidebar > .view-content .views-row:last-child {
	border: none;
	margin: 0;
	padding: 0;
}

#page .blog.sidebar > .view-content .sidebar-blog-item:hover h5 {
	color: #fa5e1f;
}

#page .blog.sidebar > .view-content .sidebar-blog-item h5 {
	font-family: var(--font-family-secondary);
	font-weight: 500;
	font-size: 17px;
	margin-bottom: 0 !important;
	transition: all 300ms;
}

#page .blog.sidebar > .view-content .sidebar-blog-item .date {
	display: flex;
	gap: 6px;
	font-weight: 500;
	font-size: 0.9375rem;
	color: var(--color-text);
	margin-bottom: 2px;
}

#page .blog.sidebar > .view-content .sidebar-blog-item .date::before {
	color: var(--color-secondary);
	content: '\e0d5';
	font-family: 'Font Awesome 7 Pro';
	font-size: 1.0625rem;
	font-weight: 400;
	transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
	.sidebar-right #sidebar-right,
	.sidebar-right #main {
		width: 100%;
	}
}

/* Sidebar Categories */

#page .blog-category-block > .view-content .views-row {
	border-bottom: 1px solid var(--color-slate-100);
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

#page .blog-category-block > .view-content .views-row:last-child {
	border: none;
	margin: 0;
	padding: 0;
}

#page .blog-category-block > .view-content .views-row a {
	font-weight: 500;
	font-size: 17px;
	margin-bottom: 0 !important;
	transition: all 300ms;
	color: #2e333a;
}

#page .blog-category-block > .view-content .views-row a:hover {
	color: #fa5e1f;
}
/*----- BLOG SIDEBAR - Close -----*/

/*----- PAGINATION - Open -----*/
#page nav.pager {
	margin: 2rem 0 1rem 0;
}

#page .pager__items {
	display: flex;
	align-items: center;
	gap: 4px;
	justify-content: center;
	flex-wrap: wrap;
}

/* #page .pager__items .pager__item--first a::before {
  font-family: "Font Awesome 7 Pro";
  content: "\f323";
  font-size: 0.75rem;
}

#page .pager__items .pager__item--previous a::before {
  font-family: "Font Awesome 7 Pro";
  content: "\f053";
  font-size: 0.75rem;
}

#page .pager__items .pager__item--last a::before {
  font-family: "Font Awesome 7 Pro";
  content: "\f324";
  font-size: 0.75rem;
}

#page .pager__items .pager__item--next a::before {
  font-family: "Font Awesome 7 Pro";
  content: "\f054";
  font-size: 0.75rem;
} */

#page .pager__items .pager__item {
	padding: 0;
}

#page .pager__items .pager__item::before {
	display: none;
}

#page .pager__items .pager__item a {
	min-width: 40px;
	background-color: #1e88e5;
	color: #fff;
	border-radius: 4px;
	line-height: 1;
	padding: 0.625rem;
	border: 1px solid #1e88e5;
	display: inline-block;
}

#page .pager__items .pager__item a:hover {
	color: #fff;
	background-color: #1565c0;
	border: 1px solid #1565c0;
	text-decoration: none !important;
}

#page .pager__items .pager__item.is-active a {
	color: #fff;
	background-color: #fa5e1f;
	border: 1px solid #fa5e1f;
}

#page .pager__items .pager__item.is-active a:hover {
	color: #fff;
	background-color: #ec3f13;
	border: 1px solid #ec3f13;
}

@media (min-width: 1024px) {
	#page .pager__items .pager__item a {
		min-width: 44px;
		padding: 0.75rem;
	}
}
/*----- PAGINATION - Close -----*/

/*----- CASE STUDIES - Open -----*/
#page .case-studies .view-content {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
}

#page .case-studies .view-content .case-studies-item img {
	height: 252px !important;
	width: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 8px;
	box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3);
	margin-bottom: 1rem;
}

#page .case-studies .view-content .case-studies-item h5 {
	margin-bottom: 10px;
}

#page .case-studies .view-content .case-studies-item .body {
	margin-bottom: 12px;
}

#page .case-studies .view-content .case-studies-item .read-more {
	padding: 0.375rem 1rem 0.375rem 1rem;
}

@media (min-width: 768px) {
	#page .case-studies .view-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	#page .case-studies .view-content {
		grid-template-columns: repeat(3, 1fr);
	}
}
/*----- CASE STUDIES - Close -----*/

/*----- PLATFORMS AND APPS - Open -----*/
#page .platforms-and-apps > .views-element-container {
	margin-bottom: 0px !important;
}

#page .platforms-and-apps {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	background-image: url('/themes/custom/aero10/images/bg-platforms-and-apps.jpg');
	padding: 90px 0 80px 0;
	background-repeat: repeat-x;
}

#page .integration-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

#page .integration-container .arc-wrapper {
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 68px;
	margin-bottom: 46px;
	z-index: 5;
}

#page .integration-container .arc {
	display: flex;
	justify-content: center;
	gap: 1rem;
	position: relative;
}

#page .logo-item {
	background: #fff;
	border: 1px solid #e3f2fd;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.arc-top .logo-item:nth-child(1) {
	transform: translateY(0px);
}

.arc-top .logo-item:nth-child(1) img {
	width: 56px;
}

.arc-top .logo-item:nth-child(2) {
	transform: translateY(0px);
}

.arc-top .logo-item:nth-child(3) {
	transform: translateY(0);
}

.arc-top .logo-item:nth-child(4) {
	transform: translateY(0px);
}

.arc-top .logo-item:nth-child(5) {
	transform: translateY(0px);
}

.arc-top .logo-item:nth-child(5) img {
	width: 62px;
}

/* .arc-bottom .logo-item:nth-child(1) {
  transform: translateY(0px);
}

.arc-bottom .logo-item:nth-child(2) {
  transform: translateY(0);
}

.arc-bottom .logo-item:nth-child(3) {
  transform: translateY(0);
}

.arc-bottom .logo-item:nth-child(4) {
  transform: translateY(0px);
} */

.arc-bottom .logo-item:nth-child(1) {
	transform: translateY(0px);
}

.arc-bottom .logo-item:nth-child(2) {
	transform: translateY(0px);
}

.arc-bottom .logo-item:nth-child(3) {
	transform: translateY(0);
}

.arc-bottom .logo-item:nth-child(4) {
	transform: translateY(0px);
}

.arc-bottom .logo-item:nth-child(5) {
	transform: translateY(0px);
}

#page .integration-container .subtitle {
	color: #2e333a;
	text-align: center;
	font-family: var(--font-family-secondary);
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.18px;
	margin-bottom: 2px;
}

#page .integration-container .title {
	color: #1e2022;
	text-align: center;
	font-family: var(--font-family-secondary);
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -0.48px;
}

#page .integration-container .desc {
	max-width: 640px;
	text-align: center;
	margin-bottom: 0 !important;
}

#page .integration-container .arch {
	display: none !important;
	position: absolute;
	top: 40px;
	z-index: 1;
}

#page .integration-container .logos {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
	#page .integration-container .arc-wrapper {
		/* display: flex;
    gap: 34px;
    margin-bottom: 72px; */
		display: flex;
		gap: 24px;
		margin-bottom: 100px;
	}

	#page .integration-container .arc {
		/* gap: 50px; */
		gap: 52px;
	}

	#page .logo-item {
		width: 80px;
		height: 80px;
	}

	.arc-top .logo-item:nth-child(1) {
		transform: translateY(110px);
	}

	.arc-top .logo-item:nth-child(2) {
		transform: translateY(24px);
	}

	.arc-top .logo-item:nth-child(4) {
		transform: translateY(24px);
	}

	.arc-top .logo-item:nth-child(5) {
		transform: translateY(110px);
	}

	/* .arc-bottom .logo-item:nth-child(1) {
    transform: translateY(70px);
  } */

	/* .arc-bottom .logo-item:nth-child(4) {
    transform: translateY(70px);
  } */

	.arc-bottom .logo-item:nth-child(1) {
		/* transform: translateY(110px); */
		transform: translateY(140px);
	}

	.arc-bottom .logo-item:nth-child(2) {
		/* transform: translateY(24px); */
		transform: translateY(30px);
	}

	.arc-bottom .logo-item:nth-child(4) {
		/* transform: translateY(24px); */
		transform: translateY(30px);
	}

	.arc-bottom .logo-item:nth-child(5) {
		/* transform: translateY(110px); */
		transform: translateY(140px);
	}

	#page .integration-container .arch {
		display: block !important;
	}

	#page .integration-container .logos {
		display: none;
	}

	#page .integration-container .subtitle {
		font-size: 36px;
	}

	#page .integration-container .title {
		font-size: 48px;
	}
}

@media (min-width: 1024px) {
	#page .integration-container .arc-wrapper {
		/* gap: 54px;
    margin-bottom: 46px; */
		gap: 46px;
		margin-bottom: 100px;
	}

	#page .integration-container .arc {
		/* gap: 70px; */
		gap: 64px;
	}

	#page .logo-item {
		width: 80px;
		height: 80px;
	}
}

@media (min-width: 1280px) {
	#page .integration-container .arc-wrapper {
		/* gap: 68px; */
		gap: 60px;
	}

	#page .integration-container .arc {
		/* gap: 80px; */
		gap: 76px;
	}

	#page .logo-item {
		width: 100px;
		height: 100px;
	}

	#page .integration-container .desc {
		max-width: 720px;
	}
}
/*----- PLATFORMS AND APPS - Close -----*/

/*----- TAXONOMY PAGE - Open -----*/

body[class*='term--'] .page-header {
	background-color: #1565c0;
}

/* body[class*="term--"] .page-header h1.page-title {
} */

body[class*='term--'] #aero-10 .page-header h1.page-title {
	color: #fff;
}

body[class*='term--'] #aero-10 .page-header .page-title-wrap {
	justify-content: center;
}

#page .taxonomy-page .view-content {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 2rem;
	margin-bottom: 2rem;
}

#page .feed-icons a {
	align-items: center;
	border-radius: var(--border-radius-buttons);
	border: none;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--secondary-font-family);
	font-size: 1rem;
	font-weight: 650;
	line-height: 160%;
	margin: 0 0.1rem 0.25rem 0;
	padding: 0.5rem 1rem 0.625rem 1rem;
	position: relative;
	text-align: center;
	text-decoration: none !important;
	user-select: none;
	vertical-align: middle;
	-webkit-transition: all 250ms ease-out;
	-moz-transition: all 250ms ease-out;
	-ms-transition: all 250ms ease-out;
	-o-transition: all 250ms ease-out;
	transition: all 250ms ease-out;
	background-color: var(--color-blue-600);
	box-shadow: 0 2px 4px rgba(21, 101, 192, 0.2);
	color: var(--color-white) !important;
}

#page .feed-icons a:hover {
	background-color: var(--color-blue-400);
	box-shadow: 0 4px 8px rgba(21, 101, 192, 0.3);
	color: var(--color-white) !important;
	transform: translateY(-1px);
	text-decoration: none !important;
}

@media screen and (min-width: 768px) {
	#page .taxonomy-page .view-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 1024px) {
	#page .taxonomy-page .view-content {
		grid-template-columns: repeat(3, 1fr);
	}
}
/*----- TAXONOMY PAGE - Close -----*/

/*----- THANK YOU - Open -----*/
#page .thank-you-newsletter-section .apb-sc-body-wrapper {
	display: flex;
	justify-content: center;
}

#page .thank-you-newsletter {
	border: 1px solid #bdd3e6;
	border-radius: 8px;
	padding: 2rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
}

#page .thank-you-newsletter h2 {
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

#page .thank-you-newsletter h2::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f00c';
	background-color: #edf5fb;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 500;
}

#page .thank-you-newsletter .important-note {
	border: 1px solid #d5e4f1;
	padding: 1rem;
	margin-bottom: 2rem;
	background-color: #d5e4f1;
	background-color: #edf5fb;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: start;
}

#page .thank-you-newsletter .important-note a::after {
	display: none !important;
}

#page .thank-you-newsletter .important-note::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f0eb';
	color: #1e88e5;
}
/*----- THANK YOU - Close -----*/

/*----- THANK YOU - Open -----*/
#page .thank-you-request-quote-section .apb-sc-body-wrapper {
	display: flex;
	justify-content: center;
}

#page .thank-you-request-quote {
	border: 1px solid #bdd3e6;
	border-radius: 8px;
	padding: 2rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
}

#page .thank-you-request-quote h2 {
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

#page .thank-you-request-quote h2::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f00c';
	background-color: #edf5fb;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 500;
}

#page .thank-you-request-quote .important-note {
	border: 1px solid #d5e4f1;
	padding: 1rem;
	margin-bottom: 2rem;
	background-color: #d5e4f1;
	background-color: #edf5fb;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: start;
}

#page .thank-you-request-quote .important-note span {
	font-weight: 600;
	text-decoration: underline;
}

#page .thank-you-request-quote .important-note::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f017';
	color: #1e88e5;
}

#page .thank-you-request-quote .home {
	width: 100%;
}

#page .thank-you-request-quote .home a {
	width: 100%;
	display: flex;
	align-self: center;
	justify-content: center;
}
/*----- THANK YOU - Close -----*/

/*----- THANK YOU - Open -----*/
#page .thank-you-contact-us-section .apb-sc-body-wrapper {
	display: flex;
	justify-content: center;
}

#page .thank-you-contact-us {
	border: 1px solid #bdd3e6;
	border-radius: 8px;
	padding: 2rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
}

#page .thank-you-contact-us h2 {
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

#page .thank-you-contact-us h2::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f00c';
	background-color: #edf5fb;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 500;
}

#page .thank-you-contact-us .important-note {
	border: 1px solid #d5e4f1;
	padding: 1rem;
	margin-bottom: 2rem;
	background-color: #d5e4f1;
	background-color: #edf5fb;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: start;
}

#page .thank-you-contact-us .important-note span {
	font-weight: 600;
	text-decoration: underline;
}

#page .thank-you-contact-us .important-note::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f0e0';
	color: #1e88e5;
}

#page .thank-you-contact-us .home {
	width: 100%;
}

#page .thank-you-contact-us .home a {
	width: 100%;
	display: flex;
	align-self: center;
	justify-content: center;
}
/*----- THANK YOU - Close -----*/

/*----- THANK YOU SUPPORT - Open -----*/
#page .thank-you-support-section .apb-sc-body-wrapper {
	display: flex;
	justify-content: center;
}

#page .thank-you-support {
	border: 1px solid #bdd3e6;
	border-radius: 8px;
	padding: 2rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 800px;
}

#page .thank-you-support h2 {
	font-weight: 600;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

#page .thank-you-support h2::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f00c';
	background-color: #edf5fb;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-weight: 500;
}

#page .thank-you-support .important-note {
	border: 1px solid #d5e4f1;
	padding: 1rem;
	margin-bottom: 2rem;
	background-color: #d5e4f1;
	background-color: #edf5fb;
	border-radius: 8px;
	display: flex;
	gap: 1rem;
	align-items: start;
}

#page .thank-you-support .important-note span {
	font-weight: 600;
	text-decoration: underline;
}

#page .thank-you-support .important-note::before {
	font-family: 'Font Awesome 7 Pro';
	font-weight: 700;
	content: '\f0e0';
	color: #1e88e5;
}

#page .thank-you-support .home {
	width: 100%;
}

#page .thank-you-support .home a {
	width: 100%;
	display: flex;
	align-self: center;
	justify-content: center;
}
/*----- THANK YOU SUPPORT - Close -----*/
