.pvp-form-app {
	--pvp-primary: #3157d5;
	--pvp-primary-dark: #2443ab;
	--pvp-success: #18864b;
	--pvp-error: #c62f3a;
	--pvp-warning: #b7791f;
	--pvp-text: #162033;
	--pvp-muted: #647084;
	--pvp-border: #dfe5ef;
	--pvp-bg: #f5f7fb;
	--pvp-card: #ffffff;
	--pvp-radius: 8px;
	--pvp-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pvp-font-heading: "Outfit", "Inter", system-ui, sans-serif;
	background: var(--pvp-bg);
	color: var(--pvp-text);
	font-family: var(--pvp-font-body);
	padding: 12px;
}

.pvp-form-app * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.pvp-form-shell {
	margin: 0 auto;
	max-width: 820px;
}

.pvp-form-header,
.pvp-form,
.pvp-progress {
	background: var(--pvp-card);
	border: 1px solid var(--pvp-border);
	border-radius: var(--pvp-radius);
	box-shadow: 0 14px 38px rgba(22, 32, 51, 0.07);
}

.pvp-form-header {
	margin-bottom: 14px;
	padding: 16px;
}

.pvp-form-kicker {
	color: var(--pvp-primary);
	font-size: 12px;
	font-weight: 800;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.pvp-form-header h2 {
	font-size: 22px;
	line-height: 1.18;
	margin: 0 0 10px;
}

.pvp-form-header p,
.pvp-step-heading p,
.pvp-help {
	color: var(--pvp-muted);
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
}

.pvp-progress {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin-bottom: 14px;
	padding: 7px;
}

.pvp-progress-step {
	align-items: center;
	background: #fbfcff;
	border: 1px solid var(--pvp-border);
	border-radius: 7px;
	color: var(--pvp-muted);
	display: flex;
	gap: 9px;
	min-height: 42px;
	padding: 6px 8px;
	text-align: left;
}

.pvp-progress-step span {
	align-items: center;
	background: #eef2ff;
	border-radius: 50%;
	color: var(--pvp-primary);
	display: inline-flex;
	flex: 0 0 26px;
	font-size: 13px;
	font-weight: 800;
	height: 26px;
	justify-content: center;
}

.pvp-progress-step strong {
	font-size: 13px;
	overflow-wrap: anywhere;
}

.pvp-progress-step.is-active {
	background: #eef4ff;
	border-color: #b9c8ff;
	color: var(--pvp-text);
}

.pvp-progress-step.is-complete span {
	background: #e8f7ef;
	color: var(--pvp-success);
}

.pvp-form {
	padding: 16px;
}

.pvp-form-step {
	display: none;
}

.pvp-form-step.is-active {
	display: block;
}

.pvp-step-heading {
	margin-bottom: 12px;
}

.pvp-step-heading h3,
.pvp-processing h3,
.pvp-success h3 {
	font-size: 20px;
	line-height: 1.25;
	margin: 0 0 8px;
}

.pvp-upload-zone {
	align-items: center;
	background: #fbfcff;
	border: 2px dashed #b9c8ff;
	border-radius: var(--pvp-radius);
	cursor: pointer;
	display: grid;
	gap: 8px;
	justify-items: center;
	min-height: 132px;
	padding: 16px;
	text-align: center;
	transition: border-color 0.16s ease, background 0.16s ease;
}

.pvp-upload-zone.is-dragover {
	background: #eef4ff;
	border-color: var(--pvp-primary);
}

.pvp-upload-zone input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.pvp-upload-zone span {
	font-size: 15px;
	font-weight: 800;
}

.pvp-upload-zone small {
	color: var(--pvp-muted);
}

.pvp-upload-list {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 16px;
}

.pvp-upload-item {
	border: 1px solid var(--pvp-border);
	border-radius: 7px;
	overflow: hidden;
	position: relative;
}

.pvp-upload-item img {
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.pvp-upload-item button {
	background: rgba(22, 32, 51, 0.86);
	border: 0;
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	min-height: 28px;
	padding: 0 9px;
	position: absolute;
	right: 8px;
	top: 8px;
}

.pvp-field-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pvp-grid-contact-primary,
.pvp-grid-contact-secondary {
	grid-template-columns: 1fr 1fr;
}

.pvp-grid-address-main {
	grid-template-columns: 2fr 2fr 1fr;
}

.pvp-grid-address-detail {
	grid-template-columns: 1fr 1fr 1fr;
}

.pvp-field {
	display: grid;
	gap: 6px;
	margin-bottom: 10px;
}

.pvp-field span {
	font-weight: 800;
}

.pvp-field input,
.pvp-field select,
.pvp-field textarea {
	background: #fff;
	border: 1px solid var(--pvp-border);
	border-radius: 7px;
	color: var(--pvp-text);
	font: inherit;
	min-height: 40px;
	padding: 7px 10px;
	width: 100%;
}

.pvp-field textarea {
	line-height: 1.5;
	resize: vertical;
}

.pvp-field input:focus,
.pvp-field select:focus,
.pvp-field textarea:focus {
	border-color: var(--pvp-primary);
	box-shadow: 0 0 0 3px rgba(49, 87, 213, 0.16);
	outline: none;
}

.pvp-word-row,
.pvp-help {
	color: var(--pvp-muted);
	display: flex;
	gap: 6px;
	margin-top: -6px;
}

.pvp-address-block {
	background: #fbfcff;
	border: 1px solid var(--pvp-border);
	border-radius: var(--pvp-radius);
	margin: 4px 0 12px;
	padding: 12px;
}

.pvp-consent {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.pvp-consent input {
	margin-top: 3px;
}

.pvp-field-error {
	color: var(--pvp-error);
	font-weight: 700;
	margin: 10px 0 0;
	min-height: 20px;
}

.pvp-form-actions {
	align-items: center;
	border-top: 1px solid var(--pvp-border);
	display: flex;
	justify-content: space-between;
	margin-top: 24px;
	padding-top: 18px;
}

.pvp-primary,
.pvp-secondary {
	border: 0;
	border-radius: 7px;
	cursor: pointer;
	font-weight: 800;
	min-height: 40px;
	padding: 0 18px;
}

.pvp-primary {
	background: var(--pvp-primary);
	color: #fff;
}

.pvp-primary:hover,
.pvp-primary:focus {
	background: var(--pvp-primary-dark);
}

.pvp-secondary {
	background: #eef2ff;
	color: var(--pvp-primary);
}

.pvp-primary:disabled,
.pvp-secondary:disabled {
	cursor: not-allowed;
	opacity: 0.45;
}

.pvp-processing {
	text-align: center;
}

.pvp-processing ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 16px auto 0;
	max-width: 420px;
	padding: 0;
	text-align: left;
}

.pvp-processing li {
	background: #fbfcff;
	border: 1px solid var(--pvp-border);
	border-radius: 7px;
	font-weight: 800;
	padding: 11px 13px;
}

.pvp-processing li.is-complete {
	background: #e8f7ef;
	border-color: #bfe6d0;
	color: var(--pvp-success);
}

.pvp-processing li.is-complete::before {
	content: "✓ ";
}

.pvp-success {
	text-align: center;
}

.pvp-success-mark {
	align-items: center;
	background: #e8f7ef;
	border-radius: 50%;
	color: var(--pvp-success);
	display: inline-flex;
	font-size: 30px;
	font-weight: 900;
	height: 62px;
	justify-content: center;
	margin-bottom: 16px;
	width: 62px;
}

.pvp-success dl {
	display: grid;
	gap: 10px;
	margin: 20px auto 0;
	max-width: 440px;
}

.pvp-success dl div {
	align-items: center;
	background: #fbfcff;
	border: 1px solid var(--pvp-border);
	border-radius: 7px;
	display: flex;
	justify-content: space-between;
	padding: 12px 14px;
}

.pvp-success dt {
	color: var(--pvp-muted);
	font-weight: 800;
}

.pvp-success dd {
	font-weight: 900;
	margin: 0;
}

.pvp-honeypot {
	left: -9999px;
	position: absolute;
}

@media (prefers-reduced-motion: reduce) {
	.pvp-form-app *,
	.pvp-form-app *::before,
	.pvp-form-app *::after {
		transition: none !important;
	}
}

@media (max-width: 760px) {
	.pvp-form-app {
		padding: 12px;
	}

	.pvp-form-header,
	.pvp-form {
		padding: 20px;
	}

	.pvp-form-header h2 {
		font-size: 24px;
	}

	.pvp-progress {
		grid-template-columns: 1fr;
	}

	.pvp-progress-step {
		min-height: 40px;
	}

	.pvp-field-grid,
	.pvp-upload-list {
		grid-template-columns: 1fr;
	}

	.pvp-grid-contact-primary,
	.pvp-grid-contact-secondary,
	.pvp-grid-address-main,
	.pvp-grid-address-detail {
		grid-template-columns: 1fr;
	}

	.pvp-form-actions {
		gap: 10px;
	}

	.pvp-primary,
	.pvp-secondary {
		flex: 1;
		padding: 0 12px;
	}
}

/* Final acceptance fixes: typography, word counter and processing cards. */
.pvp-form-app,
.pvp-form-app *,
.pvp-security-note,
.pvp-security-note *,
.pvp-success-note,
.pvp-success-note *,
.pvp-form-footer,
.pvp-form-footer * {
	font-family: var(--pvp-font-body) !important;
}

.pvp-form-app h1,
.pvp-form-app h2,
.pvp-form-app h3,
.pvp-brand strong,
.pvp-progress-step strong,
.pvp-step-count,
.pvp-upload-zone strong,
.pvp-processing li strong,
.pvp-success dt,
.pvp-success dd {
	font-family: var(--pvp-font-heading) !important;
}

.pvp-word-row {
	align-items: center;
	display: flex;
	font-family: var(--pvp-font-body) !important;
	gap: 4px;
	justify-content: flex-start;
	margin-top: 7px;
}

.pvp-processing {
	padding-top: 0;
}

.pvp-process-grid {
	gap: 18px;
	margin-top: 24px;
}

.pvp-processing li {
	align-content: start;
	min-height: 190px;
	padding: 86px 18px 18px;
	overflow: visible;
}

.pvp-processing li::before,
.pvp-processing li.is-complete::before,
.pvp-processing li:nth-child(2)::before,
.pvp-processing li:nth-child(3)::before,
.pvp-processing li.is-complete:nth-child(2)::before,
.pvp-processing li.is-complete:nth-child(3)::before {
	content: none !important;
	display: none !important;
}

.pvp-process-icon {
	align-items: center;
	background: #edf4ff;
	border-radius: 50%;
	color: var(--pvp-primary);
	display: inline-flex !important;
	height: 66px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 18px;
	transform: translateX(-50%);
	width: 66px;
}

.pvp-process-icon::before {
	content: "" !important;
	display: block;
	font-size: 0;
}

.pvp-process-upload::before {
	border: 4px solid var(--pvp-primary);
	border-bottom-width: 7px;
	border-radius: 20px 20px 14px 14px;
	height: 24px;
	width: 40px;
}

.pvp-process-upload::after {
	color: var(--pvp-primary);
	content: "\2191";
	font-size: 34px;
	font-weight: 900;
	left: 50%;
	position: absolute;
	top: 20px;
	transform: translateX(-50%);
}

.pvp-process-lock::before {
	border: 4px solid var(--pvp-primary);
	border-radius: 9px;
	height: 28px;
	width: 32px;
}

.pvp-process-lock::after {
	border: 4px solid var(--pvp-primary);
	border-bottom: 0;
	border-radius: 16px 16px 0 0;
	content: "";
	height: 18px;
	left: 50%;
	position: absolute;
	top: 15px;
	transform: translateX(-50%);
	width: 24px;
}

.pvp-process-send::before {
	border-bottom: 18px solid transparent;
	border-left: 46px solid var(--pvp-primary);
	border-top: 18px solid transparent;
	height: 0;
	transform: rotate(-18deg);
	width: 0;
}

.pvp-processing li.is-complete::after {
	right: 14px;
	top: 18px;
}

/* Reference-aligned step 3, processing and success states. */
.pvp-country-field {
	margin-bottom: 12px;
}

.pvp-country-options {
	gap: 10px;
}

.pvp-country-options label {
	gap: 8px;
	min-height: 44px;
}

.pvp-flag {
	border: 1px solid rgba(7, 17, 36, 0.12);
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(7, 17, 36, 0.08);
	display: inline-block;
	height: 14px;
	width: 20px;
}

.pvp-flag-nl {
	background: linear-gradient(#ae1c28 0 33%, #fff 33% 66%, #21468b 66% 100%);
}

.pvp-flag-be {
	background: linear-gradient(90deg, #000 0 33%, #ffe936 33% 66%, #ef3340 66% 100%);
}

.pvp-grid-contact-secondary {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 8px;
}

.pvp-address-found {
	align-items: center;
	background: #f1fbf5;
	border: 1px solid #d8f1e2;
	border-radius: 6px;
	color: #16834a;
	display: flex;
	font-size: 12px;
	font-weight: 800;
	gap: 8px;
	margin: 0 0 10px;
	min-height: 36px;
	padding: 8px 12px;
}

.pvp-address-found[hidden] {
	display: none;
}

.pvp-address-found span {
	align-items: center;
	background: #dff7e9;
	border-radius: 50%;
	color: #16834a;
	display: inline-flex;
	height: 18px;
	justify-content: center;
	width: 18px;
}

.pvp-address-found span::before {
	content: "\2713";
	font-size: 12px;
	font-weight: 900;
}

.pvp-processing {
	padding-top: 4px;
}

.pvp-processing li {
	min-height: 192px;
	padding: 88px 18px 18px;
}

.pvp-processing li::before,
.pvp-processing li.is-complete::before {
	content: none;
	display: none;
}

.pvp-process-icon {
	align-items: center;
	color: var(--pvp-primary);
	display: inline-flex;
	height: 66px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 22px;
	transform: translateX(-50%);
	width: 76px;
}

.pvp-process-icon::before {
	font-size: 58px;
	font-weight: 900;
	line-height: 1;
}

.pvp-process-upload::before {
	content: "\2601\2191";
}

.pvp-process-lock::before {
	content: "\1F6E1";
}

.pvp-process-send::before {
	content: "\27A4";
}

.pvp-processing li.is-complete::after {
	right: 14px;
	top: 22px;
}

.pvp-security-note,
.pvp-success-note {
	align-items: center;
	background: #f1f7ff;
	border: 1px solid #c9ddff;
	border-radius: 6px;
	color: var(--pvp-primary);
	display: flex;
	font-size: 13px;
	font-weight: 800;
	gap: 10px;
	margin-top: 22px;
	padding: 14px 16px;
}

.pvp-security-note span,
.pvp-success-note span {
	align-items: center;
	border: 2px solid var(--pvp-primary);
	border-radius: 4px;
	display: inline-flex;
	height: 18px;
	justify-content: center;
	width: 16px;
}

.pvp-security-note span::before,
.pvp-success-note span::before {
	content: "";
	border: 2px solid var(--pvp-primary);
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
	height: 8px;
	margin-top: -16px;
	width: 9px;
}

.pvp-success {
	margin: 0 auto;
	max-width: 690px;
	text-align: left;
}

.pvp-success-mark {
	display: flex;
	margin: 0 auto 10px;
	position: relative;
}

.pvp-success-mark::after {
	background:
		radial-gradient(circle, #30c982 0 2px, transparent 3px),
		radial-gradient(circle, #57a8ff 0 2px, transparent 3px),
		radial-gradient(circle, #f0b34d 0 2px, transparent 3px);
	background-position: 0 8px, 58px 4px, 48px 58px;
	background-repeat: no-repeat;
	background-size: 70px 70px;
	content: "";
	height: 82px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 82px;
	z-index: -1;
}

.pvp-success > .pvp-step-count,
.pvp-success > h3 {
	text-align: center;
}

.pvp-success-card {
	background: #fff;
	border: 1px solid #dce6f5;
	border-radius: 7px;
	margin-top: 22px;
	padding: 18px 22px;
}

.pvp-success-card > p {
	color: #253554;
	margin: 0 0 16px;
}

.pvp-success dl {
	gap: 8px;
	margin: 0;
	max-width: none;
}

.pvp-success dl div {
	background: transparent;
	border: 0;
	display: grid;
	grid-template-columns: 190px 1fr;
	justify-content: start;
	padding: 0;
}

.pvp-success dt {
	color: #43516a;
	font-size: 12px;
}

.pvp-success dd {
	color: #071124;
	font-size: 13px;
	font-weight: 800;
}

.pvp-success [data-pvp-success-lead] {
	background: #dff7e9;
	border-radius: 999px;
	color: #16834a;
	display: inline-flex;
	justify-self: start;
	padding: 3px 10px;
}

.pvp-home-button {
	align-items: center;
	background: var(--pvp-primary);
	border-radius: 6px;
	color: #fff;
	display: flex;
	font-size: 13px;
	font-weight: 900;
	justify-content: center;
	margin-top: 18px;
	min-height: 44px;
	text-decoration: none;
	width: 100%;
}

.pvp-home-button:hover,
.pvp-home-button:focus {
	background: var(--pvp-primary-dark);
	color: #fff;
}

.pvp-home-button::before {
	content: "\2302";
	font-size: 15px;
	margin-right: 8px;
}

@media (max-width: 760px) {
	.pvp-grid-contact-secondary {
		grid-template-columns: 1fr;
	}

	.pvp-process-icon {
		top: 18px;
	}

	.pvp-success dl div {
		grid-template-columns: 1fr;
	}
}

/* Compact branded flow, modelled as a product UI instead of a WordPress form. */
.pvp-form-app {
	--pvp-primary: #075fe5;
	--pvp-primary-dark: #054bc0;
	--pvp-navy: #061334;
	--pvp-text: #071124;
	--pvp-muted: #52627a;
	--pvp-border: #d8e2f2;
	--pvp-bg: #f2f6fb;
	padding: 18px 12px;
}

.pvp-form-app h1,
.pvp-form-app h2,
.pvp-form-app h3,
.pvp-brand strong,
.pvp-progress-step strong,
.pvp-step-count,
.pvp-upload-zone strong,
.pvp-processing li strong,
.pvp-success dt,
.pvp-success dd {
	font-family: var(--pvp-font-heading);
}

.pvp-form-app p,
.pvp-form-app span,
.pvp-form-app small,
.pvp-form-app em,
.pvp-form-app label,
.pvp-form-app input,
.pvp-form-app select,
.pvp-form-app textarea,
.pvp-form-app button {
	font-family: var(--pvp-font-body);
}

.pvp-form-shell {
	background: #fff;
	border: 1px solid #dfe7f3;
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(7, 17, 36, 0.12);
	max-width: 860px;
	overflow: hidden;
}

.pvp-form-header,
.pvp-progress,
.pvp-form {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
}

.pvp-form-header {
	align-items: center;
	background: var(--pvp-navy);
	color: #fff;
	display: flex;
	justify-content: space-between;
	min-height: 74px;
	padding: 14px 28px;
}

.pvp-brand,
.pvp-trust {
	align-items: center;
	display: flex;
	gap: 10px;
}

.pvp-brand strong,
.pvp-brand small {
	display: block;
	line-height: 1;
}

.pvp-brand strong {
	font-size: 22px;
	font-weight: 900;
}

.pvp-brand small,
.pvp-trust strong {
	color: rgba(255, 255, 255, 0.84);
	font-size: 12px;
	font-weight: 700;
}

.pvp-brand-mark {
	background: linear-gradient(#ef233c 0 48%, #071124 48% 54%, #fff 54% 100%);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(7, 17, 36, 0.22);
	height: 34px;
	position: relative;
	width: 34px;
}

.pvp-brand-mark::after {
	background: #fff;
	border: 2px solid #071124;
	border-radius: 50%;
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
}

.pvp-trust span {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	display: inline-flex;
	font-size: 0;
	height: 20px;
	justify-content: center;
	width: 20px;
}

.pvp-trust span::before {
	content: "\2713";
	font-size: 12px;
	font-weight: 900;
}

.pvp-progress {
	background: #fff;
	display: grid;
	gap: 0;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	padding: 24px 42px 12px;
	position: relative;
}

.pvp-progress::before {
	background: #d8e4f7;
	content: "";
	height: 2px;
	left: 64px;
	position: absolute;
	right: 64px;
	top: 38px;
}

.pvp-progress-step {
	background: transparent;
	border: 0;
	color: var(--pvp-muted);
	display: grid;
	gap: 8px;
	justify-items: center;
	min-height: 52px;
	padding: 0;
	position: relative;
	text-align: center;
}

.pvp-progress-step span {
	background: #f1f5fb;
	border: 1px solid #d8e4f7;
	color: var(--pvp-muted);
	font-size: 12px;
	height: 30px;
	position: relative;
	width: 30px;
	z-index: 1;
}

.pvp-progress-step strong {
	color: #43516a;
	font-size: 11px;
	font-weight: 800;
}

.pvp-progress-step.is-active span,
.pvp-progress-step.is-complete span {
	background: var(--pvp-primary);
	border-color: var(--pvp-primary);
	color: #fff;
}

.pvp-progress-step.is-complete span {
	font-size: 0;
}

.pvp-progress-step.is-complete span::before {
	content: "\2713";
	font-size: 13px;
}

.pvp-progress-step.is-active,
.pvp-progress-step.is-complete {
	background: transparent;
	color: var(--pvp-text);
}

.pvp-form {
	padding: 16px 54px 22px;
}

.pvp-step-heading {
	margin-bottom: 16px;
}

.pvp-step-count {
	color: #253554;
	font-size: 12px;
	font-weight: 800;
	margin: 0 0 5px;
}

.pvp-step-heading h3,
.pvp-processing h3,
.pvp-success h3 {
	color: var(--pvp-text);
	font-size: 26px;
	line-height: 1.12;
	margin-bottom: 8px;
}

.pvp-form-header p,
.pvp-step-heading p,
.pvp-processing p,
.pvp-success p {
	color: var(--pvp-muted);
	font-size: 14px;
	line-height: 1.45;
}

.pvp-upload-zone {
	background: #fbfdff;
	border: 1px dashed #8cb8ff;
	border-radius: 7px;
	min-height: 178px;
	padding: 22px;
}

.pvp-upload-zone .pvp-upload-icon {
	align-items: center;
	border: 2px solid var(--pvp-primary);
	border-radius: 6px;
	color: var(--pvp-primary);
	display: inline-flex;
	font-size: 28px;
	font-weight: 500;
	height: 38px;
	justify-content: center;
	line-height: 1;
	width: 38px;
}

.pvp-upload-zone strong {
	color: var(--pvp-primary);
	font-size: 14px;
}

.pvp-upload-zone em {
	color: var(--pvp-muted);
	font-size: 12px;
	font-style: normal;
}

.pvp-upload-list {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pvp-upload-item {
	border-radius: 6px;
}

.pvp-upload-item button {
	background: #fff;
	border: 1px solid #dbe4f2;
	color: var(--pvp-text);
	font-size: 0;
	height: 24px;
	min-height: 24px;
	padding: 0;
	right: 5px;
	top: 5px;
	width: 24px;
}

.pvp-upload-item button::before {
	content: "x";
	font-size: 14px;
	font-weight: 900;
}

.pvp-field-grid {
	gap: 10px;
}

.pvp-field {
	gap: 5px;
	margin-bottom: 10px;
}

.pvp-field span {
	color: #253554;
	font-size: 12px;
	font-weight: 800;
}

.pvp-field input,
.pvp-field select,
.pvp-field textarea {
	border-color: #cfdaea;
	border-radius: 6px;
	font-size: 14px;
	min-height: 38px;
	padding: 8px 10px;
}

.pvp-field textarea {
	min-height: 168px;
}

.pvp-country-options {
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pvp-country-options label {
	align-items: center;
	background: #fff;
	border: 1px solid #cfdaea;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	min-height: 38px;
	padding: 8px 10px;
}

.pvp-country-options label.is-active,
.pvp-country-options label:has(input:checked) {
	border-color: var(--pvp-primary);
	box-shadow: 0 0 0 1px var(--pvp-primary);
}

.pvp-country-options input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.pvp-country-options strong {
	font-size: 13px;
}

.pvp-address-block {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
}

.pvp-tip-box,
.pvp-consent {
	background: #f4f8ff;
	border: 1px solid #cddfff;
	border-radius: 7px;
	color: #075fe5;
	font-size: 13px;
	font-weight: 800;
	margin-top: 16px;
	padding: 13px 15px;
}

.pvp-consent {
	color: #253554;
	font-weight: 700;
}

.pvp-word-row {
	font-size: 12px;
	justify-content: space-between;
	margin-top: -2px;
}

.pvp-form-actions {
	border-top: 0;
	margin-top: 18px;
	padding-top: 0;
}

.pvp-primary,
.pvp-secondary {
	border-radius: 6px;
	font-size: 13px;
	min-height: 38px;
	padding: 0 18px;
}

.pvp-secondary {
	background: #f3f6fb;
	color: #60718d;
}

.pvp-processing {
	text-align: left;
}

.pvp-processing .pvp-step-count,
.pvp-processing h3,
.pvp-processing p {
	text-align: left;
}

.pvp-process-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
	margin: 24px 0 0;
	max-width: none;
	padding: 0;
}

.pvp-processing li {
	align-content: start;
	background: #fff;
	border: 1px solid #dce6f5;
	border-radius: 7px;
	display: grid;
	gap: 8px;
	min-height: 148px;
	padding: 48px 16px 16px;
	position: relative;
	text-align: center;
}

.pvp-processing li::before {
	align-items: center;
	background: #edf4ff;
	border-radius: 50%;
	color: var(--pvp-primary);
	content: "\2191";
	display: inline-flex;
	font-size: 26px;
	font-weight: 900;
	height: 54px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: -18px;
	transform: translateX(-50%);
	width: 54px;
}

.pvp-processing li:nth-child(2)::before {
	content: "\1F512";
	font-size: 22px;
}

.pvp-processing li:nth-child(3)::before {
	content: "\2197";
}

.pvp-processing li.is-complete {
	background: #fff;
	border-color: #dce6f5;
	color: var(--pvp-text);
}

.pvp-processing li.is-complete::before {
	content: "\2191";
}

.pvp-processing li.is-complete:nth-child(2)::before {
	content: "\1F512";
}

.pvp-processing li.is-complete:nth-child(3)::before {
	content: "\2197";
}

.pvp-processing li.is-complete::after {
	align-items: center;
	background: #dff7e9;
	border-radius: 50%;
	color: #18864b;
	content: "\2713";
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	height: 28px;
	justify-content: center;
	position: absolute;
	right: 12px;
	top: 12px;
	width: 28px;
}

.pvp-processing li span {
	color: var(--pvp-muted);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
}

.pvp-success {
	text-align: center;
}

.pvp-success-mark {
	background: #dff7e9;
	color: #18864b;
	font-size: 0;
	height: 72px;
	width: 72px;
}

.pvp-success-mark::before {
	content: "\2713";
	font-size: 34px;
}

.pvp-success dl div {
	border-radius: 7px;
	padding: 10px 12px;
}

.pvp-form-footer {
	background: var(--pvp-navy);
	color: rgba(255, 255, 255, 0.9);
	display: grid;
	font-size: 12px;
	font-weight: 700;
	gap: 12px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding: 13px 22px;
	text-align: center;
}

@media (max-width: 760px) {
	.pvp-form-shell {
		max-width: 100%;
	}

	.pvp-form-header {
		align-items: flex-start;
		gap: 12px;
		padding: 14px 16px;
	}

	.pvp-brand strong {
		font-size: 19px;
	}

	.pvp-trust {
		justify-content: flex-end;
		max-width: 150px;
	}

	.pvp-progress {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		padding: 18px 14px 10px;
	}

	.pvp-progress::before {
		left: 30px;
		right: 30px;
		top: 32px;
	}

	.pvp-progress-step {
		min-height: 56px;
	}

	.pvp-progress-step strong {
		font-size: 10px;
	}

	.pvp-form {
		padding: 16px;
	}

	.pvp-step-heading h3,
	.pvp-processing h3,
	.pvp-success h3 {
		font-size: 22px;
	}

	.pvp-upload-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.pvp-process-grid,
	.pvp-form-footer {
		grid-template-columns: 1fr;
	}
}

/* Must remain last: acceptance overrides for typography, counter and step 4. */
.pvp-form-app,
.pvp-form-app *,
.pvp-security-note,
.pvp-security-note *,
.pvp-success-note,
.pvp-success-note *,
.pvp-form-footer,
.pvp-form-footer * {
	font-family: var(--pvp-font-body) !important;
}

.pvp-form-app h1,
.pvp-form-app h2,
.pvp-form-app h3,
.pvp-brand strong,
.pvp-progress-step strong,
.pvp-step-count,
.pvp-upload-zone strong,
.pvp-processing li strong,
.pvp-success dt,
.pvp-success dd {
	font-family: var(--pvp-font-heading) !important;
}

.pvp-word-row {
	align-items: center !important;
	display: flex !important;
	font-family: var(--pvp-font-body) !important;
	gap: 4px !important;
	justify-content: flex-start !important;
	margin-top: 7px !important;
}

.pvp-process-grid {
	gap: 18px !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	margin-top: 24px !important;
	max-width: none !important;
	width: 100% !important;
}

.pvp-processing li {
	align-content: start !important;
	min-height: 190px !important;
	overflow: visible !important;
	padding: 86px 18px 18px !important;
}

.pvp-processing li::before,
.pvp-processing li.is-complete::before,
.pvp-processing li:nth-child(2)::before,
.pvp-processing li:nth-child(3)::before,
.pvp-processing li.is-complete:nth-child(2)::before,
.pvp-processing li.is-complete:nth-child(3)::before {
	content: none !important;
	display: none !important;
}

.pvp-process-icon {
	align-items: center !important;
	background: #edf4ff !important;
	border-radius: 50% !important;
	color: var(--pvp-primary) !important;
	display: inline-flex !important;
	height: 66px !important;
	justify-content: center !important;
	left: 50% !important;
	position: absolute !important;
	top: 18px !important;
	transform: translateX(-50%) !important;
	width: 66px !important;
}

.pvp-process-icon::before {
	content: "" !important;
	display: block !important;
	font-size: 0 !important;
}

.pvp-process-upload::before {
	border: 4px solid var(--pvp-primary) !important;
	border-bottom-width: 7px !important;
	border-radius: 20px 20px 14px 14px !important;
	height: 24px !important;
	width: 40px !important;
}

.pvp-process-upload::after {
	color: var(--pvp-primary) !important;
	content: "\2191" !important;
	font-size: 34px !important;
	font-weight: 900 !important;
	left: 50% !important;
	position: absolute !important;
	top: 20px !important;
	transform: translateX(-50%) !important;
}

.pvp-process-lock::before {
	border: 4px solid var(--pvp-primary) !important;
	border-radius: 9px !important;
	height: 28px !important;
	width: 32px !important;
}

.pvp-process-lock::after {
	border: 4px solid var(--pvp-primary) !important;
	border-bottom: 0 !important;
	border-radius: 16px 16px 0 0 !important;
	content: "" !important;
	height: 18px !important;
	left: 50% !important;
	position: absolute !important;
	top: 15px !important;
	transform: translateX(-50%) !important;
	width: 24px !important;
}

.pvp-process-send::before {
	border-bottom: 18px solid transparent !important;
	border-left: 46px solid var(--pvp-primary) !important;
	border-top: 18px solid transparent !important;
	height: 0 !important;
	transform: rotate(-18deg) !important;
	width: 0 !important;
}

.pvp-processing li.is-complete::after {
	right: 14px !important;
	top: 18px !important;
}

@media (max-width: 760px) {
	.pvp-process-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 560px) {
	.pvp-form-app {
		padding: 8px !important;
	}

	.pvp-form-header {
		align-items: flex-start !important;
		display: grid !important;
		gap: 10px !important;
		grid-template-columns: 1fr !important;
		min-height: 0 !important;
		padding: 14px 16px !important;
	}

	.pvp-brand {
		gap: 9px !important;
	}

	.pvp-brand-mark {
		height: 31px !important;
		width: 31px !important;
	}

	.pvp-brand strong {
		font-size: 18px !important;
	}

	.pvp-brand small {
		font-size: 11px !important;
	}

	.pvp-trust {
		background: rgba(255, 255, 255, 0.08) !important;
		border-radius: 6px !important;
		justify-content: flex-start !important;
		max-width: none !important;
		padding: 8px 9px !important;
		width: 100% !important;
	}

	.pvp-trust strong {
		font-size: 11px !important;
		line-height: 1.25 !important;
	}

	.pvp-progress {
		overflow-x: auto !important;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.pvp-progress-step strong {
		display: none !important;
	}
}
