.popup {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	overflow-y: auto;
	visibility: hidden;
	transition: 0.3s;
}
.popup.show {
	opacity: 1;
	visibility: visible;
}
.popup-shadow {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: rgba(0,0,0,0.5);
}
.popup-content {
	display: flex;
	position: relative;
	width: 100%;
	max-width: 700px;
	background: #fff;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
	z-index: 1;
}
.popup-content-close {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	background: #fff;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
	border-radius: 50%;
	cursor: pointer;
}
.popup-content h3 {
	display: block;
	padding: 25px 20px 20px;
	margin: 0;
	max-width: 90%;
}
.popup-content p {
	padding: 0 20px 10px;
}
.popup-content img {
	max-width: 100%;
}
@media (max-width: 750px) {
	.popup-content-close {
		top: 5px;
		right: 5px;
		box-shadow: none;
		background: transparent;
	}
	.popup {
		align-items: flex-start;
	}
}
