.npwp-no-scroll {
	overflow: hidden;
}

.npwp-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, 0.65);
	opacity: 1;
	visibility: visible;
	transition:
			opacity 0.25s ease,
			visibility 0.25s ease;
}

.npwp-overlay.npwp-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.npwp-popup {
	box-sizing: border-box;
	width: 100%;
	max-width: 520px;
	padding: 30px;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	color: #1d2327;
	font-family:
			-apple-system,
			BlinkMacSystemFont,
			"Segoe UI",
			Roboto,
			Oxygen-Sans,
			Ubuntu,
			Cantarell,
			"Helvetica Neue",
			sans-serif;
}

.npwp-popup h2 {
	margin: 0 0 12px;
	color: #1d2327;
	font-size: 24px;
	line-height: 1.3;
}

.npwp-popup p {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.5;
}

/*
 * Choices
 */
.npwp-row {
	display: grid;
	grid-template-columns: 1fr 3fr;
	gap: 30px;
	align-items: start;
	margin-bottom: 24px;
}

.npwp-label {
	padding-top: 10px;
	font-size: 16px;
	line-height: 1.5;
}

/*
 * Radio choices
 */
.npwp-options {
	margin: 0;
	padding: 0;
	border: 0;
}

.npwp-option {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 12px;
	padding: 10px 12px;
	border: 1px solid #dcdcde;
	border-radius: 4px;
	cursor: pointer;
	background: #fff;
	transition:
			border-color 0.15s ease,
			background-color 0.15s ease;
}

.npwp-option:last-child {
	margin-bottom: 0;
}

.npwp-option:hover {
	border-color: #2271b1;
	background: #f6f7f7;
}

.npwp-option input {
	flex: 0 0 auto;
	margin: 0;
}

.npwp-option span {
	font-size: 16px;
	line-height: 1.4;
}

/*
 * Submit button
 */
.npwp-popup .button {
	min-height: 36px;
	padding: 0 16px;
	cursor: pointer;
}

.npwp-popup .button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/*
 * Error message
 */
.npwp-error {
	margin-top: 15px !important;
	margin-bottom: 0 !important;
	color: #b32d2e;
	font-size: 14px !important;
}

/*
 * Mobile
 */
@media (max-width: 600px) {

	.npwp-overlay {
		padding: 15px;
	}

	.npwp-popup {
		padding: 24px 20px;
	}

	.npwp-popup h2 {
		font-size: 21px;
	}

	.npwp-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.npwp-label {
		padding-top: 0;
	}

	.npwp-option {
		margin-bottom: 10px;
	}
}
