.modal-window {
	position: fixed;
	background-color: rgba(200, 200, 200, 0.60);
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	width: 100%;
	overflow: scroll;
	scrollbar-width: none;
}

.modal-window::-webkit-scrollbar {display: none;}

.modal-window:target {
	opacity: 1;
	pointer-events: auto;
}

.modal-window>div {
	max-width: 90vh;
	position: relative;
	margin: 10% auto;
	padding: 2rem;
	background: white;
	/* color: #444; */
	border: 1px solid lightgray;
	border-radius: 6px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.modal-close {
	font-size: 70%;
	color: gray;
	position: absolute;
	right: 10px;
	text-align: right;
	bottom: 6px;
	width: 60px;
	text-decoration:none;
}

.modal-close:hover {color: #000; text-decoration:none}
.modal-window h2 {font-size: 130%; margin: 0 0 15px;}
.modal-window img {float:left;width:140px; margin: 0 20px 20px 0; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}