.acms-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10000;
	width: 50%;
	max-width: 700px;
	max-height: 85vh;
	overflow-y: auto;
	background: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 40px;
	border-radius: 4px;
}

.acms-popup.is-open {
	display: block;
}

.acms-popup-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
}

.acms-popup-overlay.is-open {
	display: block;
}

.acms-popup-close {
	position: absolute;
	top: 16px;
	right: 16px;
	cursor: pointer;
	font-size: 22px;
	line-height: 1;
	background: none;
	border: none;
}

body.acms-popup-visible {
	overflow: hidden;
}

@media (max-width: 767px) {
	.acms-popup {
		width: 90%;
		padding: 24px;
	}
}
