.site-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.site-popup.is-visible {
	pointer-events: auto;
	opacity: 1;
}
.site-popup__backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}
.site-popup__content {
	position: relative;
	width:800px;
	max-width: 90%;
	max-height: 90%;
	z-index: 10;
}
.site-popup__content img {
	display: block;
	max-width: 100%;
	height: auto;
}
.site-popup__close {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #e43d40;
	color: #fff;
	border: none;
	font-size: 26px;
	width: 32px;
	height: 32px;
	line-height: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
