.wcg-popup-wrap {
	align-items: center;
	display: none;
	inset: 0;
	justify-content: center;
	padding: 20px;
	position: fixed;
	z-index: 999999;
}

.wcg-popup-wrap.is-active {
	display: flex;
}

.wcg-popup-overlay {
	background: rgba(10, 14, 24, 0.68);
	inset: 0;
	position: absolute;
}

.wcg-popup {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 24px 70px rgba(8, 15, 35, 0.28);
	max-width: 440px;
	padding: 30px;
	position: relative;
	width: min(100%, 440px);
	z-index: 1;
}

.wcg-popup .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.wcg-popup h3 {
	color: #111827;
	font-size: 24px;
	line-height: 1.25;
	margin: 0 36px 12px 0;
}

.wcg-selected-pass {
	color: #4b5563;
	font-size: 15px;
	margin: 0 0 20px;
}

.wcg-selected-pass strong {
	color: #111827;
}

.wcg-close {
	align-items: center;
	background: #f3f4f6;
	border: 0;
	border-radius: 50%;
	color: #111827;
	cursor: pointer;
	display: flex;
	font-size: 26px;
	height: 36px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 18px;
	top: 18px;
	width: 36px;
}

.wcg-close:hover,
.wcg-close:focus {
	background: #e5e7eb;
	outline: none;
}

#wcg-registration-form input[type="text"],
#wcg-registration-form input[type="tel"],
#wcg-registration-form input[type="email"] {
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	box-sizing: border-box;
	color: #111827;
	font-size: 15px;
	height: 48px;
	margin: 0 0 14px;
	padding: 0 14px;
	width: 100%;
}

#otp_code {
	letter-spacing: 4px;
	text-align: center;
}

#wcg-registration-form input:focus {
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
	outline: none;
}

.wcg-otp-widget {
	margin: 2px 0 14px;
}

.wcg-otp-section {
	margin-top: 0;
}

.wcg-otp-section[hidden],
.wcg-verified-badge[hidden],
#wcg-otp-widget[hidden] {
	display: none;
}

.wcg-verified-badge {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: 999px;
	color: #047857;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	margin-top: 12px;
	padding: 8px 14px;
}

.wcg-pay-btn {
	align-items: center;
	background: #1457d9;
	border: 0;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	gap: 10px;
	height: 50px;
	justify-content: center;
	margin-top: 4px;
	padding: 0 18px;
	width: 100%;
}

.wcg-pay-btn:hover,
.wcg-pay-btn:focus {
	background: #0f49ba;
	outline: none;
}

.wcg-pay-btn:disabled {
	cursor: not-allowed;
	opacity: 0.75;
}

.wcg-loader {
	animation: wcg-spin 0.8s linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	border-top-color: #fff;
	display: none;
	height: 18px;
	width: 18px;
}

.wcg-pay-btn.is-loading .wcg-loader {
	display: inline-block;
}

.wcg-message {
	border-radius: 8px;
	display: none;
	font-size: 14px;
	line-height: 1.45;
	margin: 2px 0 14px;
	padding: 10px 12px;
}

.wcg-message.is-error {
	background: #fef2f2;
	color: #991b1b;
	display: block;
}

.wcg-message.is-success {
	background: #ecfdf5;
	color: #065f46;
	display: block;
}

body.wcg-modal-open {
	overflow: hidden;
}

@keyframes wcg-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 480px) {
	.wcg-popup-wrap {
		padding: 14px;
	}

	.wcg-popup {
		border-radius: 12px;
		padding: 24px 18px;
	}

	.wcg-popup h3 {
		font-size: 21px;
	}

}
