.pop-up-special-open {
	overflow: hidden;
}

.pop-up-special {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(0, 0, 0, .72);
	box-sizing: border-box;
	opacity: 0;
	transition: opacity .35s ease;
}

.pop-up-special-window {
	position: relative;
	max-width: min(600px, 92vw);
	max-height: 92vh;
	opacity: 0;
	transform: translateY(18px) scale(.96);
	transition: opacity .35s ease, transform .35s ease;
}

.pop-up-special.is-visible {
	opacity: 1;
}

.pop-up-special.is-visible .pop-up-special-window {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.pop-up-special img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 92vh;
	border: 0;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.pop-up-special-close {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #222;
	font: bold 26px/36px Arial, Helvetica, sans-serif;
	text-align: center;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
}
