.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.7);
	z-index: 99999;
	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;
}
.popup-content-box{
  background-color: white;
  position: fixed;
  margin: 0px auto;
  top: 50%;
  left: 50%;
  z-index: 11;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}

/*Botao Close POPUP*/
/*----------------*/
.close {
	color: #666;
	border-style:solid;
	border-radius: 50%;
	font-weight:bold;
	line-height: 25px;
	position: absolute;
	right: 15px;
	margin-top:10px;
	text-align: center;
	width: 30px;
	text-decoration: none;
}

.close:hover { color: #fff; }