.hfc-floating-cta-wrap {
	position: fixed;
	right: 0;
	bottom: calc(var(--hfc-fcta-bottom-offset, 20px) + env(safe-area-inset-bottom));
	left: 0;
	z-index: 2147483646;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	padding: 0 10px;
	pointer-events: none;
}

.hfc-fcta-position-left {
	justify-content: flex-start;
}

.hfc-fcta-position-centre {
	justify-content: center;
}

.hfc-fcta-position-right {
	justify-content: flex-end;
}

.hfc-floating-cta,
.hfc-floating-cta * {
	box-sizing: border-box;
}

.hfc-floating-cta {
	display: flex;
	align-items: stretch;
	width: min(100%, var(--hfc-fcta-max-width, 440px)) !important;
	min-height: 74px !important;
	margin: 0 !important;
	padding: 8px 8px 8px 18px !important;
	color: var(--hfc-fcta-message-colour, #00005a);
	font-family: inherit;
	background: var(--hfc-fcta-panel-bg, #fffef3);
	border-radius: 999px;
	box-shadow: 0 7px 22px rgb(0 0 0 / 18%);
	pointer-events: auto;
}

.hfc-floating-cta__message {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 2px 14px 2px 0 !important;
	font-size: 13px !important;
	font-weight: 400;
	line-height: 1.17;
	letter-spacing: -0.015em;
	text-align: center;
}

.hfc-floating-cta__message > :first-child {
	margin-top: 0;
}

.hfc-floating-cta__message > :last-child {
	margin-bottom: 0;
}

.hfc-floating-cta__message p {
	display: block;
	width: 100%;
	margin: 0;
	font: inherit;
	line-height: inherit;
}

.hfc-floating-cta__message .hfc-fcta-line {
	display: block !important;
	white-space: nowrap;
}

.hfc-floating-cta__message strong,
.hfc-floating-cta__message b {
	font-weight: 800;
}

.hfc-floating-cta__message a {
	color: inherit;
}

.hfc-floating-cta__button {
	display: flex;
	flex: 0 0 37.5%;
	align-items: center;
	justify-content: center;
	min-width: 0 !important;
	min-height: 58px !important;
	margin: 0 !important;
	padding: 8px !important;
	overflow-wrap: anywhere;
	color: var(--hfc-fcta-button-text, #ffffff) !important;
	font-family: inherit;
	font-size: 16px !important;
	font-weight: 900;
	font-style: normal;
	line-height: 1;
	text-align: center;
	text-decoration: none !important;
	letter-spacing: -0.015em;
	background: var(--hfc-fcta-button-bg, #00005a);
	border: 2px solid var(--hfc-fcta-button-border, #b4e41a) !important;
	border-radius: 999px;
	box-shadow: none;
	transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease;
}

.hfc-floating-cta__button span {
	margin: 0 !important;
	padding: 0 !important;
	color: var(--hfc-fcta-button-text, #ffffff) !important;
	font: inherit !important;
	line-height: inherit !important;
	letter-spacing: inherit !important;
	text-decoration: none !important;
}

a.hfc-floating-cta__button:hover,
a.hfc-floating-cta__button:focus-visible {
	color: var(--hfc-fcta-button-text, #ffffff) !important;
	filter: brightness(0.96);
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgb(0 0 0 / 14%);
}

a.hfc-floating-cta__button:focus-visible {
	outline: 3px solid var(--hfc-fcta-message-colour, #00005a);
	outline-offset: 3px;
}

.hfc-floating-cta__button--inactive {
	cursor: default;
}

@media (max-width: 767px) {
	.hfc-fcta-hide-mobile {
		display: none !important;
	}

	.hfc-floating-cta-wrap {
		padding: 0 10px;
	}

	.hfc-floating-cta {
		min-height: 68px !important;
		padding: 7px 7px 7px 15px !important;
		box-shadow: 0 6px 20px rgb(0 0 0 / 20%);
	}

	.hfc-floating-cta__message {
		padding-right: 11px !important;
		font-size: clamp(12px, 3.5vw, 13px) !important;
		line-height: 1.12;
	}

	.hfc-floating-cta__button {
		flex-basis: 37.5%;
		min-width: 0;
		min-height: 54px !important;
		padding: 7px 8px !important;
		font-size: clamp(13px, 4vw, 15px) !important;
	}
}

@media (max-width: 280px) {
	.hfc-floating-cta__message {
		font-size: 9px !important;
	}

	.hfc-floating-cta__button {
		font-size: 10px !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hfc-floating-cta__button {
		transition: none;
	}
}
