
body {
	font-family: Arial, sans-serif;
	
	background-size: cover;
	height: 100vh;
	min-width:450px;
}
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	display:none;  
	overflow-y: hidden;
	z-index:0;
	height:100% !important;
	z-index:10000;
	
}


.overlay:target {
	display:block;
	z-index:10000;

}
.popup {
	margin: 20px auto;
	padding: 30px;
	background: #fff;
	border-radius: 5px;
	width: 85%;
	position: relative;
	overflow:hidden;
	height:90% !important;
	transition: all 5s ease-in-out;
	z-index:10000000;
}
.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
	position: absolute;
	top: 10px;
	right: 20px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.popup .close:hover {
	color: #06D85F;
}
#pic {
	width:auto;
	height:auto;
	max-width:100%;
	display:block;	
	margin: 0 auto;
}
#sidr{
	z-index: 100;	
}
@media screen and (min-width: 801px) {
	.popup .content {
		
		font-size: 16px !important;
	}
}
@media screen and (max-width: 800px) {
	
	.popup .content {
		font-size: 11px !important;
	}
	#pic {
		max-height: 50vh;
	}
	
}
