.zoom_image_popup {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	display: none;
}

.zoom_image_popup.active {
	display: inline-block;
}

.zoom_image_popup img {
	max-width: calc(100vw - 50px);
	max-height: calc(100vh - 50px);
}

@media (max-width: 767px) {
	.zoom_image_popup img {
		max-width: calc(100vw - 20px);
	}
}
