.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1200;
	opacity: 0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity: 1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 90%;
	max-width: 580px;
	min-width: 280px;
	position: relative;
	margin: 1% auto 10%;
	padding: 5px 20px 5px 32px;
	/*border-radius: 10px;*/
	background: #FFF;
	/*background: linear-gradient(#8198C1, #2B5297) #2B5297;*/
	/*background: -moz-linear-gradient(#FFF, #999);*/
	/*background: -webkit-linear-gradient(#FFF, #999);*/
	/*background: -o-linear-gradient(#FFF, #999);*/
	overflow-y: auto;
	height: auto;
	max-height: calc(100vh - 80px);
	overflow-style: auto;
}

.modalDialog .modalbox h2 {
	margin-top: 8px;
}

.modalclose {
	/*background: #606061;*/
	/*color: #FFFFFF;*/
	line-height: 25px;
	position: absolute;
	right: 13px;
	text-align: center;
	top: 13px;
	width: 20px;
	height: 20px;
	/*text-decoration: none;*/
	/*transform: rotate(45deg);*/
	/*-webkit-border-radius: 12px;*/
	/*-moz-border-radius: 12px;*/
	/*border-radius: 12px;*/
	/*-moz-box-shadow: 1px 1px 3px #000;*/
	/*-webkit-box-shadow: 1px 1px 3px #000;*/
	/*box-shadow: 1px 1px 3px #000;*/
	/*font-size: 55px;*/
}

.modalclose:hover {
	/*background: #003082;*/
	/*transform: rotate(5deg);*/
	filter: hue-rotate(270deg);
}
