.payment-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
}

.payment-modal.is-open {
	display: block;
}

.payment-modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}

.payment-modal-dialog {
	position: relative;
	max-width: 1000px;
	width: 92%;
	max-height: 90vh;
	overflow-y: auto;
	margin: 5vh auto;
	background: #fff;
	border-radius: 0.5rem;
	padding: 1.5rem;
	box-sizing: border-box;
}

.payment-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #333;
	z-index: 2;
}

.payment-modal-body iframe {
	width: 100%;
	display: block;
}

body.modal-open {
	overflow: hidden;
}