/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(70,70,70,0.9);
	overflow-y:auto;
}

/* Overlay closing cross */
.overlay .overlay-close {
	width: 40px;
	height: 40px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	background-size:cover;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 10;
}
.overlay .overlay-close:hover{
	background: url(../img/cross_.png) no-repeat center center;
	background-size:cover;
}


/* Menu style */
.overlay nav {
	text-align: center;
	position: relative;
}

/* Effects */
.overlay-scale {
	z-index: -1;
	visibility: hidden;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	opacity: 0;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s, z-index 0s 0.2s;
	transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, z-index 0s 0.2s;
}

.overlay-scale.open {
	z-index: 20000;
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);	
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}


.popup_container {
	display:table;
	margin:auto;
	padding:50px;
	background:#ffffff;	
	border-radius:5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-ms-border-radius: 5px;
}
.popup_cont {
	display:table; 
	width:100%; 
	max-width:500px; 
	text-align:left;
}
.popup_titulo {
	font-size:20px;
	color:#464646;
	text-transform:uppercase;
	letter-spacing:0.075em;
	font-weight:700;
	padding-bottom:30px;
}
@media only screen and (max-width: 500px) {
	.popup_container {
		padding:30px;	
	}
	.overlay .overlay-close {
		width: 25px;
		height: 25px;
	}
	.popup .divs_50{
		display:table;
		width:100%;
		padding:0 !important;
		height:auto;
	}
}
@media only screen and (max-width: 450px) {
	.popup_container {
		padding:20px;	
	}
}