#payment-processing-disclaimer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.payment-processing-disclaimer-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	max-width: 420px;
	width: 90%;
	padding: 24px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
	.payment-processing-disclaimer-inner {
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
	}
}

.payment-processing-disclaimer-inner p {
	margin: 0 0 16px 0;
	font-size: 15px;
	line-height: 1.4;
}

.payment-processing-disclaimer-loader {
	margin: 0 auto 20px auto;
}

/* registration-links multi-step overlay (members/register, test harness) */
#registration-links-flow {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1001;
	background-color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.registration-flow-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	max-width: 420px;
	width: 90%;
	padding: 28px 24px 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
	text-align: left;
}

@media (max-width: 640px) {
	.registration-flow-inner {
		width: calc(100vw - 32px);
		max-width: calc(100vw - 32px);
	}
}

.registration-steps {
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}

.registration-step {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid #eee;
}

.registration-step:last-of-type {
	border-bottom: none;
}

.registration-step .step-num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	font-weight: 600;
	font-size: 14px;
	background: #e8eaed;
	color: #5f6368;
	flex-shrink: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.registration-step.is-complete .step-num {
	background: #1e8e3e;
	color: #fff;
}

.registration-step .step-label {
	flex: 1;
	font-size: 15px;
	color: #202124;
}

.registration-step .step-status {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.registration-step .step-spinner {
	display: none;
}

.registration-step.is-loading .step-spinner {
	display: block;
}

.registration-step.is-pending .step-spinner,
.registration-step.is-complete .step-spinner {
	display: none !important;
}

.registration-step .step-success {
	display: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #1e8e3e;
	color: #fff;
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	font-weight: bold;
}

.registration-step.is-complete .step-success {
	display: flex;
	align-items: center;
	justify-content: center;
}

.registration-flow-warning {
	margin: 0 0 20px 0;
	font-size: 14px;
	line-height: 1.45;
	color: #5f6368;
	text-align: center;
}

.registration-flow-logo {
	text-align: center;
	margin-top: 4px;
}

.registration-flow-logo img {
	vertical-align: middle;
}

#registration-links-flow .registration-step .loader {
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	animation: payment-processing-loader-spin 2s linear infinite;
	flex-shrink: 0;
}

@keyframes payment-processing-loader-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
