:root {
	--fabtek-black: #000;
	--fabtek-copy: #111;
	--fabtek-muted: rgba(0, 0, 0, 0.5);
	--fabtek-grey-light: #efefef;
	--fabtek-white: #fff;
	--fabtek-heading-font: "Bai Jamjuree", Arial, sans-serif;
	--fabtek-body-font: "Gotham", Arial, sans-serif;
}

.fabtek-product-page,
.fabtek-enquiry-page,
.fabtek-success-page {
	background: var(--fabtek-white);
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	letter-spacing: 0;
}

.fabtek-product-page *,
.fabtek-product-page *::before,
.fabtek-product-page *::after,
.fabtek-enquiry-page *,
.fabtek-enquiry-page *::before,
.fabtek-enquiry-page *::after,
.fabtek-success-page *,
.fabtek-success-page *::before,
.fabtek-success-page *::after {
	box-sizing: border-box;
}

.fabtek-product-detail {
	padding: 84px 0;
}

.fabtek-product-detail__inner {
	align-items: start;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin: 0 auto;
	max-width: 1200px;
	width: calc(100% - 48px);
}

.fabtek-product-gallery {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.fabtek-product-gallery__main {
	background: var(--fabtek-white);
	height: 460px;
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.fabtek-product-gallery__main-image,
.fabtek-product-gallery__thumb-image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fabtek-product-gallery__thumbs {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
}

.fabtek-product-gallery__thumb {
	appearance: none;
	aspect-ratio: 1 / 1;
	background: var(--fabtek-white);
	border: 0 !important;
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	cursor: pointer;
	display: block;
	line-height: 0;
	outline: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 100%;
}

.fabtek-product-gallery__thumb::before {
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.fabtek-product-gallery__thumb:hover,
.fabtek-product-gallery__thumb:focus {
	background: var(--fabtek-white);
	box-shadow: none;
	color: inherit;
	outline: 0;
}

.fabtek-product-gallery__thumb:focus-visible {
	outline: 2px solid var(--fabtek-black);
	outline-offset: 4px;
}

.fabtek-product-gallery__thumb::after {
	background: var(--fabtek-muted);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.fabtek-product-gallery__thumb.is-active {
	cursor: default;
}

.fabtek-product-gallery__thumb.is-active::before {
	border: 4px solid var(--fabtek-black);
}

.fabtek-product-gallery__thumb.is-active::after {
	content: none;
}

.fabtek-product-summary {
	display: flex;
	flex-direction: column;
	gap: 44px;
	min-width: 0;
}

.fabtek-product-summary__content {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.fabtek-product-heading {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fabtek-product-title {
	color: var(--fabtek-copy);
	font-family: var(--fabtek-heading-font);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.fabtek-product-models {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fabtek-product-models__label,
.fabtek-product-section-title {
	color: var(--fabtek-black);
	font-family: var(--fabtek-heading-font);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.fabtek-product-models__items {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.fabtek-product-model {
	align-items: center;
	appearance: none;
	background: var(--fabtek-grey-light);
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: none;
	color: var(--fabtek-black);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--fabtek-body-font);
	font-size: 14px;
	font-weight: 500;
	justify-content: center;
	line-height: 1.2;
	min-height: 31px;
	padding: 8px 9px;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.fabtek-product-model.is-active {
	border-color: var(--fabtek-black);
}

.fabtek-product-model:hover,
.fabtek-product-model:focus {
	background: var(--fabtek-grey-light);
	border-color: transparent;
	color: var(--fabtek-black);
	outline: 0;
}

.fabtek-product-model.is-active:hover,
.fabtek-product-model.is-active:focus {
	border-color: var(--fabtek-black);
}

.fabtek-product-model:focus-visible {
	outline: 2px solid var(--fabtek-black);
	outline-offset: 4px;
}

.fabtek-product-description {
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.35;
}

.fabtek-product-description p,
.fabtek-product-cta__text p {
	margin: 0;
}

.fabtek-product-description p + p,
.fabtek-product-cta__text p + p {
	margin-top: 0;
}

.fabtek-product-specs {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fabtek-product-specs__table {
	border-top: 1px solid var(--fabtek-grey-light);
	width: 100%;
}

.fabtek-product-specs__row {
	align-items: center;
	border-bottom: 1px solid var(--fabtek-grey-light);
	display: grid;
	gap: 20px;
	grid-template-columns: 23.5% minmax(0, 1fr);
	min-height: 45px;
	padding: 12px 0;
}

.fabtek-product-specs__row.is-hidden {
	display: none;
}

.fabtek-product-specs__label,
.fabtek-product-specs__value,
.fabtek-product-finish {
	font-family: var(--fabtek-body-font);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}

.fabtek-product-specs__label {
	color: var(--fabtek-muted);
}

.fabtek-product-specs__value {
	color: var(--fabtek-black);
}

.fabtek-product-finishes {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.fabtek-product-finish {
	align-items: center;
	color: var(--fabtek-black);
	cursor: pointer;
	display: inline-flex;
	gap: 5px;
	position: relative;
}

.fabtek-product-finish__input {
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	width: 1px;
}

.fabtek-product-finish__radio {
	border: 1px solid var(--fabtek-black);
	border-radius: 999px;
	display: inline-block;
	height: 13px;
	position: relative;
	width: 13px;
}

.fabtek-product-finish.is-selected .fabtek-product-finish__radio::after {
	background: var(--fabtek-black);
	border-radius: 999px;
	content: "";
	height: 9px;
	inset: 1px;
	position: absolute;
	width: 9px;
}

.fabtek-product-cta {
	background: var(--fabtek-grey-light);
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 24px;
}

.fabtek-product-cta__copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fabtek-product-cta__title {
	color: var(--fabtek-black);
	font-family: var(--fabtek-heading-font);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.fabtek-product-cta__text {
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.35;
}

.fabtek-product-page .fabtek-product-cta__button {
	align-items: center;
	background: var(--fabtek-black);
	color: var(--fabtek-white);
	display: inline-flex;
	font-family: var(--fabtek-body-font);
	font-size: 16px;
	font-weight: 400;
	height: 56px;
	justify-content: center;
	line-height: 1.2;
	padding: 13px 32px 15px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100%;
}

.fabtek-product-page a.fabtek-product-cta__button,
.fabtek-product-page a.fabtek-product-cta__button:visited {
	color: var(--fabtek-white);
}

.fabtek-product-page .fabtek-product-cta__button:hover,
.fabtek-product-page .fabtek-product-cta__button:focus {
	background: #1a1a1a;
	color: var(--fabtek-white);
}

.fabtek-product-compare {
	padding: 0 0 84px;
}

.fabtek-product-compare__inner {
	margin: 0 auto;
	max-width: 1440px;
	width: 100%;
}

.fabtek-product-compare__title {
	color: var(--fabtek-black);
	font-family: var(--fabtek-heading-font);
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 54px;
	text-align: center;
	text-transform: uppercase;
}

.fabtek-product-compare__models {
	display: none;
}

.fabtek-product-compare__model {
	appearance: none;
	border: 1px solid transparent;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
}

.fabtek-product-compare__model[aria-pressed="false"],
.fabtek-product-compare__model[aria-pressed="false"]:hover,
.fabtek-product-compare__model[aria-pressed="false"]:focus {
	border-color: transparent;
}

.fabtek-product-compare__model:hover,
.fabtek-product-compare__model:focus {
	background: var(--fabtek-grey-light);
	border-color: transparent;
	color: var(--fabtek-black);
	outline: 0;
}

.fabtek-product-compare__model[aria-pressed="true"],
.fabtek-product-compare__model[aria-pressed="true"]:hover,
.fabtek-product-compare__model[aria-pressed="true"]:focus {
	border-color: var(--fabtek-black);
}

.fabtek-product-compare__model:focus-visible {
	outline: 2px solid var(--fabtek-black);
	outline-offset: 4px;
}

.fabtek-product-compare__scroll {
	margin: 0 auto;
	max-width: 1200px;
	overflow-x: auto;
	width: calc(100% - 48px);
}

.fabtek-product-compare__table {
	border-collapse: collapse;
	min-width: 850px;
	table-layout: fixed;
	width: 100%;
}

.fabtek-product-compare__table th,
.fabtek-product-compare__table td {
	border: 1px solid var(--fabtek-grey-light);
	color: var(--fabtek-black);
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1.25;
	padding: 20px 32px;
	text-align: left;
	vertical-align: middle;
}

.fabtek-product-compare__table th {
	font-family: var(--fabtek-heading-font);
	font-weight: 700;
}

.fabtek-product-compare__table td {
	font-family: var(--fabtek-body-font);
	font-weight: 400;
}

.fabtek-product-compare__table thead th,
.fabtek-product-compare__table tbody th {
	background: var(--fabtek-grey-light);
}

.fabtek-enquiry {
	padding: 84px 0;
}

.fabtek-enquiry__inner {
	align-items: start;
	display: grid;
	gap: 44px;
	grid-template-columns: minmax(0, 1fr) 364px;
	margin: 0 auto;
	max-width: 1200px;
	width: calc(100% - 48px);
}

.fabtek-enquiry__content,
.fabtek-enquiry__form,
.fabtek-enquiry__field-group,
.fabtek-enquiry__cta,
.fabtek-enquiry__summary,
.fabtek-success__inner {
	display: flex;
	flex-direction: column;
}

.fabtek-enquiry__content {
	gap: 44px;
}

.fabtek-enquiry__intro {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fabtek-enquiry__title,
.fabtek-success__title {
	color: var(--fabtek-copy);
	font-family: var(--fabtek-heading-font);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.25;
	margin: 0;
}

.fabtek-enquiry__title {
	font-size: 24px;
}

.fabtek-enquiry__lead,
.fabtek-success__text,
.fabtek-enquiry__privacy {
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	font-weight: 400;
	letter-spacing: 0;
	margin: 0;
}

.fabtek-enquiry__lead {
	font-size: 18px;
	line-height: 1.35;
	max-width: 620px;
	color: var(--fabtek-muted);
}

.fabtek-enquiry__error {
	background: #fdecec;
	border: 1px solid #c62828;
	color: #8a1c1c;
	font-family: var(--fabtek-body-font);
	font-size: 14px;
	line-height: 1.35;
	padding: 14px 16px;
}

.fabtek-enquiry__form {
	gap: 44px;
	max-width: none;
	width: 100%;
}

.fabtek-enquiry__field-group {
	gap: 20px;
}

.fabtek-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.fabtek-field__label {
	color: var(--fabtek-black);
	font-family: var(--fabtek-heading-font);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.fabtek-field__control {
	appearance: none;
	background: var(--fabtek-grey-light);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	height: 43px;
	padding: 12px;
	width: 100%;
}

.fabtek-enquiry-page .fabtek-field input.fabtek-field__control,
.fabtek-enquiry-page .fabtek-field textarea.fabtek-field__control {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	outline: 0;
}

.fabtek-field__control:focus {
	box-shadow: inset 0 0 0 1px var(--fabtek-black);
	outline: 0;
}

.fabtek-enquiry-page .fabtek-field input.fabtek-field__control:focus,
.fabtek-enquiry-page .fabtek-field textarea.fabtek-field__control:focus {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	outline: 0;
}

.fabtek-field__control::placeholder {
	color: #b6b7b9;
	opacity: 1;
}

textarea.fabtek-field__control {
	min-height: 43px;
	resize: none;
}

.fabtek-field__control[readonly] {
	color: var(--fabtek-black);
}

.fabtek-enquiry__submit,
.fabtek-success__button {
	align-items: center;
	border-radius: 0;
	display: inline-flex;
	font-family: var(--fabtek-body-font);
	font-size: 16px;
	font-weight: 400;
	height: 56px;
	justify-content: center;
	line-height: 1.2;
	padding: 13px 32px 15px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.fabtek-enquiry__submit,
.fabtek-success__button--primary {
	appearance: none;
	background: var(--fabtek-black);
	border: 1px solid var(--fabtek-black);
	color: var(--fabtek-white);
	cursor: pointer;
}

.fabtek-success-page a.fabtek-success__button--primary,
.fabtek-success-page a.fabtek-success__button--primary:visited {
	color: var(--fabtek-white);
}

.fabtek-enquiry__cta {
	gap: 18px;
}

.fabtek-enquiry__submit {
	align-self: flex-start;
	width: auto;
}

.fabtek-enquiry__submit:hover,
.fabtek-enquiry__submit:focus,
.fabtek-success__button--primary:hover,
.fabtek-success__button--primary:focus {
	background: #1a1a1a;
	border-color: #1a1a1a;
	color: var(--fabtek-white);
	outline: 0;
}

.fabtek-enquiry__submit:disabled {
	background: #bdbdbd;
	border-color: #bdbdbd;
	color: var(--fabtek-white);
	cursor: not-allowed;
}

.fabtek-enquiry__privacy {
	color: var(--fabtek-muted);
	font-size: 12px;
	line-height: 1.2;
}

.fabtek-enquiry__privacy a,
.fabtek-enquiry__privacy-link {
	color: inherit;
	text-decoration: underline;
}

.fabtek-enquiry__summary {
	background: var(--fabtek-grey-light);
	gap: 16px;
	padding: 24px;
	position: sticky;
	top: 32px;
}

.fabtek-enquiry__summary-image {
	aspect-ratio: 316 / 225;
	background: var(--fabtek-white);
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.fabtek-enquiry__summary-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.fabtek-enquiry__summary-body {
	display: flex;
	flex-direction: column;
}

.fabtek-enquiry__summary-row {
	align-items: center;
	border-bottom: 1px solid #b6b7b9;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 14px 0;
	width: 100%;
}

.fabtek-enquiry__summary-row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.fabtek-enquiry__summary-label {
	color: var(--fabtek-muted);
	font-family: var(--fabtek-body-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
}

.fabtek-enquiry__summary-value {
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	text-align: right;
}

.fabtek-success {
	padding: 144px 0;
}

.fabtek-success__inner {
	align-items: center;
	gap: 28px;
	margin: 0 auto;
	max-width: 760px;
	text-align: center;
	width: calc(100% - 48px);
}

.fabtek-success__icon {
	align-items: center;
	background: #29a65a;
	border-radius: 999px;
	display: inline-flex;
	height: 64px;
	justify-content: center;
	position: relative;
	width: 64px;
}

.fabtek-success__icon::before {
	border-bottom: 4px solid var(--fabtek-white);
	border-right: 4px solid var(--fabtek-white);
	content: "";
	height: 28px;
	margin-top: -5px;
	transform: rotate(45deg);
	width: 15px;
}

.fabtek-success__title {
	font-size: 32px;
	text-transform: uppercase;
}

.fabtek-success__text {
	font-size: 18px;
	line-height: 1.35;
	max-width: 620px;
}

.fabtek-success__reference {
	align-items: center;
	background: var(--fabtek-grey-light);
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	justify-content: center;
	padding: 16px 20px;
}

.fabtek-success__reference-label {
	color: var(--fabtek-muted);
	font-family: var(--fabtek-heading-font);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: uppercase;
}

.fabtek-success__reference-value {
	color: var(--fabtek-black);
	font-family: var(--fabtek-body-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}

.fabtek-success__copy {
	appearance: none;
	background: transparent;
	border: 1px solid var(--fabtek-black);
	border-radius: 0;
	color: var(--fabtek-black);
	cursor: pointer;
	font-family: var(--fabtek-body-font);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	padding: 7px 10px;
	text-transform: uppercase;
}

.fabtek-success__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	width: 100%;
}

.fabtek-success__button {
	min-width: 210px;
}

.fabtek-success__button--secondary {
	background: var(--fabtek-white);
	border: 1px solid var(--fabtek-black);
	color: var(--fabtek-black);
}

.fabtek-success-page a.fabtek-success__button--secondary,
.fabtek-success-page a.fabtek-success__button--secondary:visited {
	color: var(--fabtek-black);
}

.fabtek-success__button--secondary:hover,
.fabtek-success__button--secondary:focus {
	background: var(--fabtek-grey-light);
	color: var(--fabtek-black);
	outline: 0;
}

@media (max-width: 1024px) {
	.fabtek-product-detail {
		padding: 64px 0;
	}

	.fabtek-product-detail__inner {
		gap: 36px;
		grid-template-columns: 1fr;
		max-width: 760px;
	}

	.fabtek-product-gallery__main {
		aspect-ratio: 578 / 460;
		height: auto;
	}

	.fabtek-enquiry__inner {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

@media (max-width: 640px) {
	.fabtek-product-detail {
		padding: 24px 0 46px;
	}

	.fabtek-product-detail__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
		max-width: none;
		padding-inline: 16px;
		width: 100%;
	}

	.fabtek-product-summary,
	.fabtek-product-summary__content {
		display: contents;
	}

	.fabtek-product-heading {
		order: 1;
		width: 100%;
	}

	.fabtek-product-models__items {
		flex-wrap: nowrap;
		gap: 14px;
	}

	.fabtek-product-gallery {
		gap: 10px;
		margin-top: 27px;
		order: 2;
		width: 100%;
	}

	.fabtek-product-gallery__main {
		aspect-ratio: 356 / 264;
		height: auto;
	}

	.fabtek-product-gallery__thumbs {
		gap: 10px;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		justify-content: stretch;
	}

	.fabtek-product-gallery__thumb.is-active::before {
		border-width: 2px;
	}

	.fabtek-product-description {
		margin-top: 24px;
		order: 3;
		width: 100%;
	}

	.fabtek-product-specs {
		margin-top: 42px;
		order: 4;
		width: 100%;
	}

	.fabtek-product-specs__row {
		align-items: center;
		gap: 16px;
		grid-template-columns: minmax(0, 1fr) max-content;
		min-height: 45px;
		padding: 12px 0;
	}

	.fabtek-product-specs__value {
		justify-self: end;
		text-align: right;
	}

	.fabtek-product-finishes {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
		text-align: left;
	}

	.fabtek-product-cta {
		margin-top: 46px;
		order: 5;
		padding: 24px;
		width: 100%;
	}

	.fabtek-product-compare {
		padding: 0 0 56px;
	}

	.fabtek-product-compare__inner {
		max-width: none;
		padding-inline: 16px;
		width: 100%;
	}

	.fabtek-product-compare__title {
		font-size: 22px;
		margin: 0 0 24px;
	}

	.fabtek-product-compare__models {
		display: flex;
		flex-wrap: nowrap;
		gap: 14px;
		justify-content: center;
		margin-bottom: 24px;
	}

	.fabtek-product-compare__scroll {
		max-width: none;
		overflow-x: visible;
		width: 100%;
	}

	.fabtek-product-compare__table {
		min-width: 0;
		table-layout: fixed;
		width: 100%;
	}

	.fabtek-product-compare__table thead {
		display: none;
	}

	.fabtek-product-compare__table td:not(.is-active-column) {
		display: none;
	}

	.fabtek-product-compare__table th,
	.fabtek-product-compare__table td {
		padding: 20px 16px;
		text-align: center;
	}

	.fabtek-product-compare__table tbody th {
		font-size: 18px;
		line-height: 1.25;
		width: 46.35%;
	}

	.fabtek-product-compare__table tbody td {
		font-size: 16px;
		line-height: 1.35;
		width: 53.65%;
	}

	.fabtek-enquiry {
		padding: 24px 0 56px;
	}

	.fabtek-enquiry__inner {
		display: flex;
		flex-direction: column;
		gap: 32px;
		max-width: none;
		padding-inline: 16px;
		width: 100%;
	}

	.fabtek-enquiry__summary {
		order: 1;
		padding: 24px;
		position: static;
		width: 100%;
	}

	.fabtek-enquiry__content {
		gap: 28px;
		order: 2;
		width: 100%;
	}

	.fabtek-enquiry__title {
		font-size: 20px;
	}

	.fabtek-enquiry__lead {
		font-size: 16px;
		max-width: none;
	}

	.fabtek-enquiry__form {
		max-width: none;
		width: 100%;
	}

	.fabtek-enquiry__submit {
		align-self: stretch;
		width: 100%;
	}

	.fabtek-success {
		padding: 80px 0;
	}

	.fabtek-success__inner {
		gap: 24px;
		max-width: none;
		padding-inline: 16px;
		width: 100%;
	}

	.fabtek-success__icon {
		height: 56px;
		width: 56px;
	}

	.fabtek-success__title {
		font-size: 22px;
	}

	.fabtek-success__text {
		font-size: 16px;
		max-width: none;
	}

	.fabtek-success__reference {
		align-items: flex-start;
		flex-direction: column;
		width: 100%;
	}

	.fabtek-success__actions {
		flex-direction: column;
	}

	.fabtek-success__button {
		min-width: 0;
		width: 100%;
	}
}
