@charset "UTF-8";
/* CSS Document */
* {
	padding: 0;
	margin: 0;

	box-sizing:border-box;
}

body {
/*	background-image: url(".. /IMG_6088.mov");*/
	font-family: 'Open Sans', sans-serif;
}

.container_popup {
	margin: 20px auto;
	z-index:50;
	visibility: hidden;
	display: none;
}

.container article {
	line-height: 28px;
}

.container article h1 {
	font-size: 30px;
	text-align: left;
	padding: 50px 0;
}

.container article p {
	margin-bottom: 20px;
}

.container-fluid .nav-item .btn-abrir-popup {
	display: inline-block;
	padding: 0 20px;
	
	margin-top: 10px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: #fff;
	text-shadow: 2px 2px blue;
	background: tranparet;
	border-radius: 3px;
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "Verdana", "sans-serif";
	font-size: 30px;
	cursor: pointer;
	transition: .3s ease all;
	
}

.container-fluid .nav-item .btn-abrir-popup:hover {
	background: rgba(94,125,227, .9);
}

/* ------------------------- */
/* POPUP */
/* ------------------------- */

.overlay {
	background: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	justify-content: center;
	display: flex;
	z-index: 51;
	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: 600px;
	z-index: 500;
	
	transition: .3s ease all;
	transform: scale(0.7);
	opacity: 0;
}

.popup .btn-cerrar-popup {
	font-size: 16px;
	line-height: 16px;
	font-weight: 200;

	display: block;
	text-align: right;
	transition: .3s ease all;
	color: black;
	
}

.popup .btn-cerrar-popup:hover {
	color: red;
}
.popup_title{
	width: 100%;
	align-content: center;
	
}
.popup_message{
	width: 100%;
	align-content: center;
}
 .popup h3{	
	font-size: 36px;
	font-weight: bold;
	color: red;
	
}

.popup h4 {
	font-size: 26px;
	font-weight: 300;
	margin-bottom: 40px;
	opacity: 0;
}

.popup form .container-inputs {
	opacity: 0;
}

.popup form .container-inputs input {
	width: 100%;
	margin-bottom: 20px;
	height: 52px;
	font-size: 18px;
	line-height: 52px;
	text-align: center;
	border: 2px solid #BBBBBB;
}
select{
	font-size: 18px;
	
	text-align: center;
	
}
option{
	font-size: 18px;
	
	text-align: center;
	
}
label{
	font-size: 18px;
	text-align: left;
	
	
}
.select_css{
	width: 100%;
	margin-left: 0;
	
}
.popup form input, textarea{
	width: 100%;
	font-size: 18px;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
}
.popup form .btn-submit {
	padding: 0 20px;
	height: 40px;
	line-height: 40px;
	border: none;
	color: #fff;
	background: #5E7DE3;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	cursor: pointer;
	transition: .3s ease all;
}

.popup form .btn-submit:hover {
	background: rgba(94,125,227, .9);
}

/* ------------------------- */
/* ANIMACIONES */
/* ------------------------- */
.popup.active {	transform: scale(1); opacity: 1; }
.popup.active h3 { animation: entradaTitulo .8s ease .5s forwards; }
.popup.active h4 { animation: entradaSubtitulo .8s ease .5s forwards; }
.popup.active .container-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; }
}

