#bbdp-popup-root {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 24px;
	font-family: Arial, Helvetica, sans-serif;
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms ease;
}

#bbdp-popup-root[hidden] {
	display: none;
}

#bbdp-popup-root *,
#bbdp-popup-root *::before,
#bbdp-popup-root *::after {
	box-sizing: border-box;
}

html.bbdp-popup-lock,
html.bbdp-popup-lock body {
	overflow: hidden;
}

#bbdp-popup-root.bbdp-is-open {
	opacity: 1;
	pointer-events: auto;
}

.bbdp-popup-overlay {
	position: absolute;
	inset: 0;
	background: var(--bbdp-overlay-color, #111111);
	opacity: var(--bbdp-overlay-opacity, 0.72);
}

.bbdp-popup-modal {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(var(--bbdp-popup-max-width, 1080px), calc(100vw - 48px));
	max-height: min(var(--bbdp-popup-max-height, 760px), calc(100vh - 48px));
	min-height: min(720px, calc(100vh - 48px));
	background: var(--bbdp-panel-bg, #ffffff);
	border-radius: var(--bbdp-radius, 20px);
	box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
	overflow: hidden;
	outline: none;
	transform: translateY(0);
	opacity: 1;
	transition: transform 260ms ease, opacity 260ms ease;
}

.bbdp-animation-fade .bbdp-popup-modal {
	opacity: 0;
}

.bbdp-animation-fade.bbdp-is-open .bbdp-popup-modal {
	opacity: 1;
}

.bbdp-animation-slide_up .bbdp-popup-modal {
	transform: translateY(36px);
	opacity: 0;
}

.bbdp-animation-slide_up.bbdp-is-open .bbdp-popup-modal {
	transform: translateY(0);
	opacity: 1;
}

.bbdp-animation-zoom .bbdp-popup-modal {
	transform: scale(0.94);
	opacity: 0;
}

.bbdp-animation-zoom.bbdp-is-open .bbdp-popup-modal {
	transform: scale(1);
	opacity: 1;
}

.bbdp-popup-close {
	position: absolute;
	top: 22px;
	right: 24px;
	z-index: 4;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--bbdp-close-color, #343434);
	font-size: 44px;
	line-height: 1;
	font-weight: 300;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.bbdp-popup-close:hover,
.bbdp-popup-close:focus-visible {
	background: rgba(0, 0, 0, 0.06);
	outline: none;
}

.bbdp-popup-image-panel {
	flex: 0 0 var(--bbdp-left-width, 50%);
	min-width: 0;
	background: #d8cfbf;
}

.bbdp-popup-image-panel img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

.bbdp-popup-image-panel--empty {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 9%, transparent 9% 23%, rgba(255, 255, 255, 0.48) 23% 31%, transparent 31% 100%),
		linear-gradient(180deg, #d8cfbf 0%, #f4efe6 46%, #b9ad99 100%);
}

.bbdp-popup-image-placeholder {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 620px;
	overflow: hidden;
}

.bbdp-popup-image-placeholder span,
.bbdp-popup-image-placeholder::before,
.bbdp-popup-image-placeholder::after {
	position: absolute;
	content: "";
	display: block;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
}

.bbdp-popup-image-placeholder::before {
	left: 12%;
	top: 12%;
	width: 30%;
	height: 56%;
	border-radius: 4px;
}

.bbdp-popup-image-placeholder::after {
	right: 14%;
	top: 12%;
	width: 36%;
	height: 56%;
	border-radius: 4px;
}

.bbdp-popup-image-placeholder span {
	left: 50%;
	bottom: 9%;
	width: 160px;
	height: 160px;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.28);
}

.bbdp-popup-content-panel {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bbdp-panel-bg, #ffffff);
	 
}

.bbdp-popup-content {
	width: min(100%, 470px);
	padding: var(--bbdp-padding-desktop, 64px);
	text-align: center;
	color: var(--bbdp-body-color, #444444);
}

.bbdp-popup-logo {
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 calc(var(--bbdp-gap, 24px) * 1.8);
	color: var(--bbdp-offer-color, #004b9b);
	font-size: 18px;
	line-height: 1.1;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.bbdp-popup-logo img {
	display: block;
	max-width: 230px;
	max-height: 84px;
	width: auto;
	height: auto;
}

.bbdp-popup-logo span {
	display: inline-block;
	max-width: 230px;
}

.bbdp-popup-copy h2,
.bbdp-popup-success h2 {
	margin: 0;
	color: var(--bbdp-heading-color, #333333);
	font-size: var(--bbdp-heading-size, 38px);
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0;
}

.bbdp-popup-subheading {
	margin: calc(var(--bbdp-gap, 24px) * 1.35) 0 0;
	color: var(--bbdp-body-color, #444444);
	font-size: var(--bbdp-body-size, 20px);
	line-height: 1.4;
	font-weight: 600;
}

.bbdp-popup-divider {
	display: block;
	width: 52px;
	height: 3px;
	margin: calc(var(--bbdp-gap, 24px) * 0.9) auto calc(var(--bbdp-gap, 24px) * 0.8);
	background: #d8c8ae;
	border-radius: 3px;
}

.bbdp-popup-offer {
	margin: 0 0 calc(var(--bbdp-gap, 24px) * 1.25);
	color: var(--bbdp-offer-color, #004b9b);
	font-size: var(--bbdp-offer-size, 18px);
	line-height: 1.35;
	font-weight: 800;
}

.bbdp-popup-form {
	display: grid;
	gap: calc(var(--bbdp-gap, 24px) * 0.8);
	margin: 0;
}

.bbdp-popup-form.bbdp-is-hidden,
.bbdp-popup-decline.bbdp-is-hidden {
	display: none !important;
}

.bbdp-popup-input-wrap {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 64px;
	border: 1.5px solid var(--bbdp-input-border, #0756a9);
	border-radius: 12px;
	background: #ffffff;
	overflow: hidden;
}

.bbdp-popup-input-wrap:focus-within {
	box-shadow: 0 0 0 3px rgba(0, 77, 168, 0.15);
}

.bbdp-popup-email-icon {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin-left: 26px;
	fill: none;
	stroke: #555555;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.bbdp-popup-input-wrap input[type="email"] {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 22px;
	border: 0;
	outline: none;
	background: transparent;
	color: var(--bbdp-body-color, #444444);
	font-size: 19px;
	line-height: 1.2;
	box-shadow: none;
}

.bbdp-popup-input-wrap input[type="email"]::placeholder {
	color: #8a8a8a;
	opacity: 1;
}

.bbdp-popup-submit {
	width: 100%;
	min-height: 64px;
	padding: 14px 22px;
	border: 0;
	border-radius: 12px;
	background: var(--bbdp-button-bg, #004da8);
	color: var(--bbdp-button-text, #ffffff);
	font-size: 19px;
	line-height: 1.2;
	font-weight: 800;
	letter-spacing: 0;
	cursor: pointer;
	box-shadow: 0 14px 24px rgba(0, 77, 168, 0.22);
	transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bbdp-popup-submit:hover,
.bbdp-popup-submit:focus-visible {
	background: var(--bbdp-button-hover, #003f88);
	transform: translateY(-1px);
	box-shadow: 0 17px 28px rgba(0, 77, 168, 0.26);
	outline: none;
}

.bbdp-popup-submit:disabled {
	cursor: wait;
	opacity: 0.75;
	transform: none;
}

.bbdp-popup-decline {
	display: inline;
	margin: calc(var(--bbdp-gap, 24px) * 1.35) auto 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--bbdp-body-color, #444444);
	font-size: 16px;
	line-height: 1.4;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.bbdp-popup-decline:hover,
.bbdp-popup-decline:focus-visible {
	color: var(--bbdp-offer-color, #004b9b);
	outline: none;
}

.bbdp-popup-response {
	min-height: 20px;
	color: var(--bbdp-body-color, #444444);
	font-size: 14px;
	line-height: 1.35;
	text-align: left;
}

.bbdp-popup-response:empty {
	display: none;
}

.bbdp-popup-response--error {
	color: #b00020;
}

.bbdp-popup-response--success {
	color: #0d6b39;
}

.bbdp-popup-success {
	padding: 8px 0;
	color: var(--bbdp-body-color, #444444);
}

.bbdp-popup-success.bbdp-is-visible {
	display: block !important;
}

.bbdp-popup-success p {
	margin: calc(var(--bbdp-gap, 24px) * 0.9) 0 0;
	font-size: var(--bbdp-body-size, 20px);
	line-height: 1.5;
}

.bbdp-popup-privacy {
	margin: -2px 0 0;
	color: var(--bbdp-body-color, #444444);
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
	opacity: 0.8;
}

.bbdp-popup-privacy a {
	color: var(--bbdp-offer-color, #004b9b);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bbdp-popup-honeypot {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

#bbdp-popup-root .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 980px) {
	#bbdp-popup-root {
		padding: 18px;
	}

	.bbdp-popup-modal {
		width: min(var(--bbdp-popup-max-width, 1080px), calc(100vw - 36px));
		min-height: min(660px, calc(100vh - 36px));
		max-height: calc(100vh - 36px);
	}

	.bbdp-popup-content {
		padding: 48px 42px;
	}

	.bbdp-popup-copy h2,
	.bbdp-popup-success h2 {
		font-size: clamp(28px, 4vw, var(--bbdp-heading-size, 38px));
	}
}

@media (max-width: 760px) {
	#bbdp-popup-root {
		align-items: center;
		padding: 12px;
	}

	.bbdp-popup-modal {
		flex-direction: column;
		width: calc(100vw - 24px);
		min-height: 0;
		max-height: calc(100vh - 24px);
		overflow-y: auto;
	}

	.bbdp-popup-close {
		top: 10px;
		right: 10px;
		width: 42px;
		height: 42px;
		background: rgba(255, 255, 255, 0.78);
		font-size: 38px;
	}

	.bbdp-popup-image-panel {
		flex: 0 0 auto;
		width: 100%;
		height: 210px;
		min-height: 210px;
	}

	.bbdp-hide-image-mobile .bbdp-popup-image-panel {
		display: none;
	}

	.bbdp-popup-content-panel {
		width: 100%;
		overflow: visible;
	}

	.bbdp-popup-content {
		width: 100%;
		padding: var(--bbdp-padding-mobile, 26px);
	}

	.bbdp-popup-logo {
		min-height: 48px;
		margin-bottom: calc(var(--bbdp-gap, 24px) * 0.9);
		padding-right: 42px;
		padding-left: 42px;
		font-size: 14px;
	}

	.bbdp-popup-logo img {
		max-width: 174px;
		max-height: 58px;
	}

	.bbdp-popup-copy h2,
	.bbdp-popup-success h2 {
		font-size: var(--bbdp-heading-mobile-size, 27px);
		line-height: 1.18;
	}

	.bbdp-popup-subheading {
		margin-top: 18px;
		font-size: 18px;
	}

	.bbdp-popup-offer {
		font-size: 16px;
	}

	.bbdp-popup-input-wrap,
	.bbdp-popup-submit {
		min-height: 58px;
		height: 58px;
	}

	.bbdp-popup-email-icon {
		margin-left: 18px;
	}

	.bbdp-popup-input-wrap input[type="email"],
	.bbdp-popup-submit {
		font-size: 17px;
	}
}

@media (max-width: 360px) {
	.bbdp-popup-content {
		padding: 22px 18px;
	}

	.bbdp-popup-copy h2,
	.bbdp-popup-success h2 {
		font-size: 24px;
	}

	.bbdp-popup-logo {
		padding-right: 38px;
		padding-left: 38px;
	}

	.bbdp-popup-input-wrap input[type="email"] {
		padding-right: 14px;
		padding-left: 14px;
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	#bbdp-popup-root,
	.bbdp-popup-modal,
	.bbdp-popup-submit {
		transition: none;
	}
}
