/* Overlay */

.cw-ajaxpopup-overlay {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.55);
	z-index: 999999;
	padding: 20px;
}

/* Modal */
.cw-ajaxpopup-modal {
	position: relative;
	width: min(648px, 100%);
	max-height: min(80vh, 900px);
	overflow: auto;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* Close button */
.cw-ajaxpopup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.06);
	font-size: 18px;
	line-height: 38px;
}

/* Content */
.cw-ajaxpopup-body {
	padding: 22px;
}

/* Loading / error */
.cw-ajaxpopup-loading {
	padding: 22px;
	opacity: 0.75;
	font-size: 14px;
}
