.ej-popup-trigger {
	display: inline-block;
	background-color: #2271b1;
	color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: bold;
}

.ej-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
}

.ej-popup.ej-popup-active {
	display: block;
}

.ej-popup-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.6);
}

.ej-popup-box {
	position: relative;
	margin: 5vh auto;
	max-height: 90vh;
	max-width: 480px;
	overflow-y: auto;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 32px;
}

.ej-popup-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	line-height: 1;
	background: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: inherit;
}

.ej-popup-image {
	display: block;
	max-width: 100%;
	margin-bottom: 16px;
	border-radius: 4px;
}

.ej-popup-title {
	margin: 0 0 12px;
}

.ej-popup-content {
	margin: 0;
}

body.ej-popup-open {
	overflow: hidden;
}
