/* ------------------------- */
/* POPUP */
/* ------------------------- */
.overlay {
	background: rgba(0,0,0,.8);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
}
.overlay.active {
	visibility: visible;
}
.popup{
	background: #f8f8f8;
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.3);
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	padding: 20px;
	text-align: center;
	width: 1050px;
	height: 600px;

	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}
.popup .btn-cerrar-poput {
	font-size: 16px;
	line-height: 16px;
	display: block;
	text-align: right;
	color: #000000;
	transition: .3s ease all;
	cursor: pointer;
}
.popup .btn-cerrar-poput:hover {
	color: #000;
}
#btn-abrir-popup:hover {
	cursor: pointer;
}

.popup h3{
	color: #e96b00;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 10px;
	opacity: 0;
}
/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup.active {	transform: scale(1); opacity: 1; }
.popup.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup.active .contenedor-inputs { animation: entradaInputs 1s linear 1s forwards; }

@keyframes entradaTitulo {
	from {
		opacity: 0;
		transform: translateY(-25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaSubtitulo {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes entradaInputs {
	from { opacity: 0; }
	to { opacity: 1; }
}