/*----------------------------Estilos Base----------------------------*/
html {
	min-height: 100%;
	position: relative;
}
body {
	margin: 0;
	margin-bottom: 40px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
.book{
	border:rgba(128, 195, 226, 0.8) solid 3px;
	color: rgba(128, 195, 226, 0.8);
	border-radius: 10px;
	margin: 20px;
	padding: 20px;
	font-size: 10em;	
}
.manual{
	font-size: 2em;
	text-decoration: none;
}

.separador{
	border: 2px solid #e7e7e7;
	margin-top: 10px;
	margin-bottom: 10px;
}

.al_ve{
	display: flex;
    align-items: center;
}

.container-flex{
	width: 80%;
    display: flex; /* bastaria solo con este, pero agregamos opcionales mas abajo */
    flex-flow: row wrap; /* los elemenos que no entren se van hacia abajo */
    justify-content: space-between; /* alinear en el eje horizontal (eje principal) */
    align-items: center; /* alinear eje secundario - vertical en el centro */
	/*align-items: flex-start;*/
	/*border: solid black 1px;*/
}

.container-move
{
	margin-top: 50px;
	margin-bottom: 50px;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	flex-flow: row wrap;
}

.container-body
{
	/*border: solid black 1px;*/
	margin-top: 10px;
	margin-bottom: 50px;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-around;
	flex-flow: row wrap;
}

.container-area
{
	/*border: solid black 1px;*/
	margin-top: 10px;
	width: 85%;
	height: auto;
	display: flex;
	justify-content: space-evenly;
	flex-flow: row wrap;
}

.field_wrapper{
	width: 100%;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}

.form_wrap{
	width: 90%;
	height: auto;
	margin-bottom: 50px;
	background: white;
	display: flex;
	flex-flow: row wrap;
	justify-content:space-around;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
	/*z-index: 3;*/
}

#lista{
	width: 100%;
}
.contenedor_form{
	width: 90%;
	height: auto;
	margin-bottom: 50px;
	background: white;
	display: flex;
	flex-flow: row wrap;
	justify-content:space-around;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
	/*z-index: 3;*/
}

.contenedor_form .form_title{
	padding: 10px;
	color: white;
	width: 100%;
	background: #00689D;
	border-bottom: solid #19486A 2px;
	position: fit;
}

.contact_info:before{
	content: '';
	width: 100%;
	height: 100%;
	
	position: absolute;
	top: 0;
	left: 0;
	background:#00689D;
	opacity: 0.9;
}

.contact_info{
	width: 10%;
	position: relative;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
	background-image: url('../images/logo.png');
	background-size: cover;
	background-position: center center;
}

.info_title,.info_items{
	position: relative;
	z-index: 2;
	color: white;
}

.info_title{
	margin-bottom: 60px;
}

.info_title span{
	font-size: 30px;
	display: block;
	text-align: center;
	margin-bottom: 15px;
}

.info_title h2{
	font-size: 35px;
	text-align: center;
}

.info_items p{
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

.info_items p span{
	font-size: 40px;
	margin-right: 10px;
}

form.form_datos{
	width: 100%;
	padding: 20px 20px;
}

form.form_datos input[type="submit"]{
	width: 100%;
	background: #5090CD;
	padding: 10px;
	border: none;
	border-radius: 10px;
	
	align-self: flex-end;
	
	color: white;
	font-family: 'Noto';
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
}

form.form_contact{
	width: 90%;
	padding: 30px 40px;
}

form.form_contact h2{
	font-size: 25px;
	font-weight: 600;
	color: #626366;
	margin-bottom: 30px;
}

form.form_contact .user_info{
	display: flex;
	flex-direction: column;
}

form.form_contact label{
	font-weight: 600;
}

form.form_contact input, form.form_contact textarea{
	width: 100%;
	padding: 8px 10px 5px;
	margin-bottom: 20px;
	border: none;
	border-bottom: 2px solid #C6C8CA;
	
	font-family: 'Noto';
	color: #626366;
	font-size: 14px;
	font-weight: 400;
}
form input:required{
	border-left: 3px solid #FD6925;
}
form select:required{
	border-left: 3px solid #FD6925;
}

input[type="text"]:focus{
	width: 100%;
	padding: 8px 10px 5px;
	margin-bottom: 20px;
	border: none;
	border-bottom: 2px solid #C6C8CA;
	
	font-family: 'Noto';
	color: #626366;
	font-size: 14px;
	font-weight: 400;
}

form.form_contact textarea{
	max-width: 100%;
	min-width: 100%;
	max-height: 90px;
}

form.form_contact input[type="submit"]{
	width: 180px;
	background: #5090CD;
	padding: 10px;
	border: none;
	border-radius: 25px;
	
	align-self: flex-end;
	
	color: white;
	font-family: 'Noto';
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
}

form.form_contact input[type="submit"]:hover{
	background: #3371B6;
}

/*Ventana de validación*/

.modal_wrap{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.mensaje_modal{
	background: white;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
	border-radius: 10px;
	width: 350px;
	padding: 5px 20px 15px;
}

.mensaje_modal h3{
	color: #000;
	text-align: center;
	font-family: 'Noto';
	font-size: 20px;
	font-weight: 600;
}

.mensaje_modal h3:after{
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #C5C5C5;
	margin: 10px 0px 15px;
}

.mensaje_modal p{
	font-size: 16px;
	color: #606060;
}

.mensaje_modal p:before{
	content: '\6b';
	font-family: "sitio-web";
	display: inline-block;
	color: #E25151;
	margin-right: 8px;
}

.mensaje_modal #btnClose{
	display: inline-block;
	padding: 3px 10px;
	margin-top: 10px;
	
	background: #E25151;
	color: white;
	border: 2px solid #B14141;
	cursor: pointer;
}

.bloque-body
{
	width: 100%;
	/*margin-bottom: 50px;*/
	/*padding: 50px;*/
	/*align-items: top;*/
}

.foto-perfil{
	padding: 10px;
	border: solid #939597 1px;
	border-radius: 10px;
	width: 200px;
}

.campos_body{
	width: 100%;
	padding: 8px 0px 5px;
	margin-bottom: 20px;
	border: none;
	border-bottom: 2px solid #e7e7e7;
	color: #626366;
	font-size: 14px;
	font-weight: 400;
}

.campos_body:focus{
	width: 100%;
	padding: 8px 0px 5px;
	margin-bottom: 20px;
	border: none;
	border-bottom: 2px solid #C6C8CA;
	color: #626366;
	font-size: 14px;
	font-weight: 400;
}

.form-dropzone{
	width: 50%;
	margin: auto;
}

.form-dropzone .dropzone{
	border: 2px dashed #c3c3c3;
	padding: 40px;
}

.form-dropzone .icon i{
	width: 100px;
	height: 150px;
	margin: 10px;
	font-size: 3em;
	text-align: center;
	color: #696767;
	background-color: #dfdddd;
	border-radius: 10px;;
}

.form-dropzone h2, note {
	color: #40405b;
}
.column{
    width: 100%;
    
}

/*----------------------------Estilos Header----------------------------*/
.iconos-header{
	width: 50%;
	margin: 0px;
	padding: 0px;
	/*border: solid 1px black;*/
}

.logo-img{
    width: 300px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.titulo-logo{
	font-family: 'Noto';
	font-weight: bold;
	padding: 1px;
	text-align: right;
}

.rrss-caja{
	text-align: right;
	display: flex;
	flex-flow:row;
	padding:5px;
	justify-content: flex-start;
}
.rrss-logo{
	width: 29px;
	font-size: 17px;
	/*border: 1px solid #19486A;*/
	border-radius: 50%;
	padding: 1px;
	margin-left: 10px;
	text-align: center;
}

.rrss-logo a{
	text-decoration: none;
	color: white;
}

/*----------------------------Estilos del menu----------------------------*/

.main-nav{
    width: 100%;
    position: relative;
    z-index: 100;
    padding: 10px;
}

.objetos-menu{
	/*border: #000 solid 1px;*/
	width: 50%;
	margin: 0px;
	padding: 0px;
	/*border: solid 1px black;*/
}

.icon-menu{
    display: block;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}

.social-icon{
    display: flex;
    justify-content: flex-end;
	align-items: center;
}

.social-icon [class*="icon-"]{
    color: black;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
}

.social-icon__link{
    color: white;
	text-decoration: none;
	padding-left: 5px;
	padding-right: 5px;
}

.menu{
	width: 100%;
    /*justify-content: flex-start;*/
    position: absolute;
    top: 60px;
    left: 0;
    background: rgba(80,144,205,0.8);
    padding: 0;
    margin: 0;
    list-style: none;
    /*text-align: center;*/
    height: 0;
    overflow: hidden;
    transition: height .3s linear;
}

.menu__link{
    display: flex;
	align-items: center;
    padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 5px;
	padding-left: 5px;
    color: white;
    text-decoration: none;
	font-weight: bold;
	font-size: 15px;
}
.menu__link:hover{
    /*background: #C6C8CA;*/
	color: white;
	text-decoration: underline;
}

.menu__link--select{
    /*background: #C6C8CA;*/
	text-decoration: underline;
}
.mostrar{
    height: 200px;  /*Si se pone en auto, funciona pero no se puede animar*/
}

.nav_user{
	position: absolute;
}
ul{
	list-style: none;
}

#menu_user li a:first-child:hover{
	/*color: rgb(63, 65, 98);*/
	color:white;
	background-color: rgba(80,144,205,0);
	text-decoration: none;
}

#menu_user>li{
	float:left;
	text-align: right;
}
#menu_user>li>ul{
	display: none;
}
#menu_user>li:hover>ul{
	position: absolute;
	margin-left: 30px;
	padding-right: 30px;
	display: block;
	background-color: rgba(80,144,205,0.9);
	min-width: 250px;
	border-radius: 5px;
}
/*----------------------------Estilos del banner----------------------------*/
.caja {
	position: relative; /*Para poder ubicar la info dentro de la caja*/
	margin: 10px auto;
}
.caja img {
	border:2px solid black;
}
.info {
	position: absolute; /*Info sobre la imagen*/
	top: 5%;
	left: 10%; /*Desplazamos a partir de la esquina superior izquierda*/
	zoom: 1;
	filter: alpha(opacity=0); /*Opacidad Para IE */
	opacity: 0; /*Inicialmente transparente */
	padding: 5px;
	color: white;
	background: black;
	-moz-transition:all ease .8s; /*Aplicamos una ligera transición*/
	-webkit-transition:all ease .8s ;
	transition:all ease .8s;
}
.caja:hover .info {
	filter: alpha(opacity=80);
	opacity: .8; /*Al hacer hover sobre la caja hacemos visible los datos*/
}
/*----------------------------Estilos Principales----------------------------*/

.row{
	margin: 1px;
}

.nopadding {
	padding: 0 !important;
	margin: 0 !important;
 }

.titulo_seccion{
	width: 100%;
	margin-left: 20px;
	margin-top: 10px;
	margin-bottom: 50px;
}

.recuadro_home{
	/*position: relative;*/
	background-color: rgba(38,189,226,0.95);
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 20px;
	margin: 10px;
	width: 500px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.recuadro_home2{
	/*position: relative;*/
	background-color: rgba(221,19,103,0.8);
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 20px;
	margin: 10px;
	width: 500px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}
.recuadro_home2:hover{
	cursor: pointer;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.9);
}

.recuadro_home3{
	/*position: relative;*/
	background-color: rgba(253,105,37,0.9);
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 20px;
	margin: 10px;
	width: 500px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}
.recuadro_home3:hover{
	cursor: pointer;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.9);
}

.titulo_recuadro{
	color: #fff;
}

.texto_recuadro{
	color: #fff;
	text-align: justify;
}

.titulo_recuadro_b{
	margin-top: 20px;
	color: #fff;
	/*font-weight: 600;*/
}

.texto_recuadro_b{
	color: #fff;
	margin-bottom: 20px;
	/*font-weight: 600;*/
	text-align: justify;
}

.recuadro_img img{
    color: #FCC30B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px; 
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 10px;
	margin-right: 20px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.recuadro_img_home img{
    display: flex;
    justify-content: justify;
	margin: auto;
    align-items: center;
    font-size: 70px; 
    width: 70%;
    height: auto;
    border-radius: 10px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.recuadro_img_home img:hover{
    display: flex;
    justify-content: justify;
	margin: auto;
    align-items: center;
    font-size: 70px; 
    width: 70%;
    height: auto;
    border-radius: 10px;
	cursor: pointer;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.9);
}
.subtitulo-pie{
	z-index: 1;
	display: flex;
	justify-content: center;
	background-color: #19486A;
	width: 70%;
	padding-top: 20px;
	padding-bottom: 10px;
	margin: auto;
	margin-top: -15px;
	color:white;
	border-radius: 10px;
}

.recuadro_img [class*="icon-"]{
    color: #FCC30B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px; 
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.recuadro_img span{
	text-size-adjust: 10px;
}

.recuadro_convocatoria{
	width: 100%;
	position: relative;
	background-color: rgba(80,144,205,0.95);
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 10px;
	margin: 10px;
	width: 98%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.titulo_convocatoria{
	color: #fff;
}
.titulo_convocatoria:hover{
	color: #fff;
	cursor: pointer;
}

hr{
	margin-top: 3px;
	margin-bottom: 3px;
}

p{
	text-align: justify;
}

.foto-boton{
	margin: 5px;
	background-color: #5090CD;
	padding: 10px;
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
}

.foto-boton:hover{
	margin: 5px;
	background-color: #5090CD;
	padding: 10px;
	color: yellow;
	border-radius: 10px;
	text-decoration: none;
}

.foto-boton:focus{
	margin: 5px;
	background-color: #5090CD;
	padding: 10px;
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
}


.tax_link{
	background-color: #FCC30B;
	color: black;
	font-size: 10px;
	padding: 5px;
	border-radius: 5px;
	margin-bottom: 20px;
}
.referencia_convocatoria{
	color: #000;
	text-align: justify;

}

.vigencia{
	width: auto;
	color: white;
	background-color: #19486A;
	padding: 2px;
}
.recuadro_img .nros img{
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px; 
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}
/*
.recuadro_convocatoria{
	position: relative;
	background-color: rgba(80,144,205,0.95);
	/*border: solid 6px #fff;*/
	/*border-radius: 10px;
	padding: 10px;
	margin: 10px;
	width: 98%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}*/

.recuadro_convocatoria_detalles{
	position: relative;
	background-color: rgba(80,144,205,0.1);
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 10px;
	margin: 10px;
	width: 98%;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.recuadro_login{
	/*position: relative;*/
	/*background-color: rgba(86,192,43,0.80);*/
	background-color: rgba(80, 144, 205, 0.9);
	border: solid 6px #fff;
	border-radius: 10px;
	padding: 50px;
	margin: 10px;
	width: 90%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.recuadro_login2{
	/*position: relative;*/
	background-color: rgba(80,144,205,0.95);
	/*background-color: rgba(253,157,36,0.95);*/
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 50px;
	margin: 10px;
	width: 90%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.texto_recuadron{
	color: #fff;
	text-align: justify;
}

.recuadro_menul{
	/*position: relative;*/
	background-color: rgba(253,105,37,0.8);
	/*border: solid 6px #fff;*/
	border-radius: 10px;
	padding: 20px;
	margin: 10px;
	width: 100%;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

label{
	color: #00689D;
}
.enlaces-boton{
	text-align: center;
	padding: 10px;
	border: solid 2px #fff; 
	border-radius:10px;
	background-color: rgba(10,151,217,0.8);
	color: white;
	text-decoration: none;
}
.enlaces-boton:hover{
	color: white;
	text-decoration: none;
}

.numeracion p{
	width: 40px;
	height: 40px;
	border: solid 5px rgba(0,104,157,0.3);
	border-radius: 50%;
	paddin: 5px;
	color: rgba(0,104,157,0.5);
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	align-items: center;
	background-color: white;
}

.pdf{
	border: solid 5px rgba(0,104,157,0.5);
	border-radius: 10px;
	background-color: white;
	margin: 1px;
	padding: 2px;
	font-size: 20px;
	color: red;
}

.btn-flotante {
	font-size: 16px; /* Cambiar el tamaño de la tipografia */
	text-transform: uppercase; /* Texto en mayusculas */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #ffffff; /* Color del texto */
	border-radius: 10px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */
	background-color: #E91E63; /* Color de fondo */
	padding: 18px 30px; /* Relleno del boton */
	position: fixed;
	bottom: 40px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
}

.btn-flotante:hover {
	background-color: #00689D; /* Color de fondo al pasar el cursor */
	color: white;
	text-decoration: none;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
	transform: translateY(-7px);
}

.btn-flotanteinfo {
	width: auto;
	font-size: 10px; /* Cambiar el tamaño de la tipografia */
	font-weight: bold; /* Fuente en negrita o bold */
	color: #ffffff; /* Color del texto */
	border-radius: 10px; /* Borde del boton */
	letter-spacing: 2px; /* Espacio entre letras */
	background-color:rgba(8, 79, 145, 0.9); /* Color de fondo */
	padding: 18px 30px; /* Relleno del boton */
	position: fixed;
	bottom: 100px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	z-index: 99;
}

.icon_convocatorias{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #56C02B;
	margin: 10px;
}

.icon_convocatorias:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_manual{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #56C02B;
	margin: 10px;
}

.icon_manual:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_activar{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color:#19486A;
	margin: 10px;
}

.icon_activar:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_limites{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #56C02B;
	margin: 10px;
}

.icon_limites:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_taxonomia{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #626366;
	margin: 10px;
}

.icon_taxonomia:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_parametros_search{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #DD1367;
	margin: 10px;
}

.icon_parametros_search:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_parametros_faq{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #26BDE2;
	margin: 10px;
}

.icon_parametros_faq:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_parametros_team{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #FCC30B;
	margin: 10px;
}

.icon_parametros_team:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_agencias{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #5090CD;
	margin: 10px;
}

.icon_agencias:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.icon_param_elementos{
	display: block;
    margin-left: auto;
	margin-right: auto;
	color: white;
}

.icon_param_elementos i{
	font-size: 50px;
}

.icon_reportes{
	padding: 10px;
	display: flex;
	flex-flow: row wrap;
	align-items: middle;
	width: 250px;
	border: solid 5px rgba(255,255,255,0.8);
	border-radius: 10px;
	background-color: #E5243B;
	margin: 10px;
}

.icon_reportes:hover{
	border: solid 5px rgba(255,255,255,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.bg_images_param{
	margin: 10px;
	padding: 5px;
	border: solid 5px rgba(86,192,43,1);
	border-radius: 15px;
	cursor: pointer;
	margin-left: auto;
	margin-right: auto;
}

.bg_images_param:hover{
	border: solid 5px rgba(86,192,43,1);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.glyphicon.glyphicon-link.bt{
	font-size: 30px;
}

.borde{
	border: solid 2px rgba(10,151,217,0.2);
	border-radius: 5px;
	padding: 10px;
	padding-bottom: 15px;
}

.areas-trabajo{
	margin-top: 10px;
	margin-bottom: 20px;
	padding-top: 5px;
	padding-bottom: 10px;
	border-left: solid 3px #FD6925;
}

.sobresaliente{
	padding-top: 10px;
	border: solid 5px rgba(253,105,37,0.3);
	box-shadow: 5px 8px 15px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
}

.glyphicon.glyphicon-save-file{
	font-size: 25px;
	color:rgba(80, 144, 205, 0.9);
}

.dorado{
	color: #FCC30B;
}

.graficas{
    width: 100%;
    background: #F3F3F3;
    padding: 1px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;	
}

.icono-info{
	/*color:rgba(80, 144, 205, 0.9);*/
	color:rgba(8, 79, 145, 0.9);
}
/*----------------------------Estilos Footer----------------------------*/

.container-footer
{
	position: fixed;
	bottom: 5px;
	width: 100%;
	height: 30px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;	
}

.footer-content
{
	padding: 20px;;
}

.barra_footer{
	border-top: 1px solid white;
  	height: 2px;
  	max-width: 200px;
  	padding: 0;
  	margin: 20px auto 0 auto;
}

.footer-ficha{
	width: 30%;
	background-color: #19486A;
	padding: 10px;
	text-align: center;
	border-radius: 10px;
}

.footer-ficha:hover{
	box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.titulo_footer{
	margin-bottom: 20px;;
	color: #fff;
	font-size: 12px;
}
.texto_footer{
	color: #fff;
	font-size: 12px;
}
.texto_footer a{
	color: #26BDE2;
}
.footer-link{
	color: #fff;
	text-decoration: none;
}
.footer-link:hover{
	color: #FCC30B;
	text-decoration: none;
}
.footer-link:visited{
	color: #fff;
	text-decoration: none;
}
.footer-link:active{
	color: #fff;
	text-decoration: none;
}
.footer-link:focus{
	color: #fff;
	text-decoration: none;
}

.modal-header{
	background-color: #5090CD;
	color: #fff;
	padding: 10px;
}

.cajon_faq{
	width: 100%;
}

section p{
	overflow: hidden;
	max-height: 0;
	text-align: justify;
	transition: all .3s ease-in-out;
}

section a{
	text-decoration: none;
	display: block;
	text-align: left;
	padding: 10px;
	/*border-bottom: 2px solid gray;*/
}
section a:hover{
	text-decoration: none;
	display: block;
	text-align: left;
	padding: 10px;
	/*border-bottom: 2px solid gray;*/
}

section:target p {
	max-height: 150px;
	padding: 10px;
}

/*----------------------------Estilos Responsive----------------------------*/
@media screen and (min-width:1233px) {
	.main-nav{
        top: 0;
		padding: 0;
		background: rgba(80,144,205,0.5);
    }
	.icon-menu{
		display: none;
	}
	.menu{
        position: static;
        display: flex;
        height: auto;
        width: auto;
		background: none;
    }
	
	.slide1, .slide2, .slide3{
		top: 100px;
	}
	.recuadro_img [class*="icon-"]{
		width: 130px;
		height: 130px;
		font-size: 120px;
	}
	.recuadro_home{
		width: 94%;
	}
	.recuadro_home2{
		width: 45%;
	}
	.recuadro_home3{
		width: 45%;
	}
	
}

@media screen and (min-width:1025px) and (max-width:1232px) {
	.main-nav{
        top: 0;
		padding: 0;
		background: rgba(80,144,205,0.5);
    }
	.icon-menu{
		display: none;
	}
	.menu{
        position: static;
        display: flex;
        height: auto;
        width: auto;
		background: none;
    }
	
	.slide1, .slide2, .slide3{
		top: 100px;
	}
	.recuadro_img [class*="icon-"]{
		width: 80px;
		height: 80px;
		font-size: 60px;
	}
	.recuadro_home{
		width: 94%;
	}
	.recuadro_home2{
		width: 45%;
	}
	.recuadro_home3{
		width: 45%;
	}
	.footer-content{
		padding-top: 10px;
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
	}
	.titulo_footer{
		margin-bottom: 2px;
	}
	.texto_footer{
		margin-bottom: 5px;
	}
}

@media screen and (min-width:751px) and (max-width:1024px){
	.main-nav{
        top: 0;
		padding: 0;
		background: rgba(80,144,205,0.5);
    }
	.icon-menu{
		display: none;
	}
	.menu{
        position: static;
        display: flex;
        height: auto;
        width: auto;
		background: none;
    }
	.container{
		width: 100%;
	}	
	.slide1, .slide2, .slide3{
		top: 100px;
	}
	.recuadro_img [class*="icon-"]{
		display: flex;
		width: 80px;
		height: 80px;
		font-size: 60px;
		text-align: center;
		justify-content: center;
		align-items: center;
	}
	.container-body{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.container-area
	{
		margin-top: 0px;
		margin-bottom: 0px;
		width: 100%;
	}
	.recuadro_home{
		width: 94%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.recuadro_home2{
		width: 45%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.recuadro_home3{
		width: 45%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.footer-content{
		padding-top: 10px;
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
	}
	.titulo_footer{
		margin-bottom: 2px;
	}
	.texto_footer{
		margin-bottom: 5px;
	}
	#menu_user>li:hover>ul{
		margin-left: -20px;
	}
}

@media screen and (min-width:641px) and (max-width:750px){
	.main-nav{
        top: 0;
		padding: 0;
		background: rgba(80,144,205,0.5);
    }
	.icon-menu{
		display: none;
	}
	.menu{
        position: static;
        display: flex;
        height: auto;
        width: auto;
		background: none;
    }
	.container{
		width: 100%;
	}	
	.slide1, .slide2, .slide3{
		top: 100px;
	}
	.recuadro_img [class*="icon-"]{
		width: 20px;
		height: 20px;
		font-size: 15px;
	}
	.container-body{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.container-area
	{
		margin-top: 0px;
		margin-bottom: 0px;
		width: 100%;
	}
	.recuadro_home{
		width: 100%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.recuadro_home2{
		width: 100%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.recuadro_home3{
		width: 100%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.footer-content{
		padding-top: 10px;
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
	}
	.titulo_footer{
		margin-bottom: 2px;
	}
	.texto_footer{
		margin-bottom: 5px;
	}
	#menu_user>li:hover>ul{
		margin-left: -20px;
	}
}

@media screen and (max-width:640px){
	.main-nav{
        top: 0;
		background: rgba(80,144,205,0.5);
    }
	.container{
		width: 100%;
	}
	.contenedor_form{
		width: 100%;
	}
	.iconos-header {
		width: 100%;
		text-align: center;
	}		
	.titulo-logo{
		font-size: 24px;
		text-align: center;
	}
	.slide1, .slide2, .slide3{
		top: 130px;
	}
	.container-flex{
		justify-content: flex-start;
		align-items: center;
	}
	.objetos-menu:first-child{
		width: 10%;
		margin-right: 20px;
	}
	.objetos-menu:nth-child(2){
		width: 80%;
	}
	.recuadro_img [class*="icon-"]{
		width: 20px;
		height: 20px;
		font-size: 15px;
	}
	.container-body{
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.container-area
	{
		margin-top: 0px;
		margin-bottom: 0px;
		width: 100%;
	}
	.recuadro_home{
		width: 100%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.recuadro_home2{
		width: 100%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.recuadro_home3{
		width: 100%;
		padding-top: 5px;
		padding-left: 3px;
		padding-right: 3px;
		padding-bottom: 1px;
		margin-bottom: 5px;
	}
	.footer-content{
		padding-top: 10px;
		padding-left: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
	}
	.titulo_footer{
		margin-bottom: 2px;
	}
	.texto_footer{
		margin-bottom: 5px;
	}
	#menu_user>li:hover>ul{
		margin-left: -20px;
	}
}

@media screen and (max-width:480px){
	.contenedor_form{
		width: 100%;
	}
	.objetos-menu:first-child{
		width: 10%;
		margin-right: 20px;
	}
	.objetos-menu:nth-child(2){
		width: 80%;
	}
	.recuadro_img [class*="icon-"]{
		display: none;
	}
	.recuadro_convocatoria{
		width: 80%;
	}
}

@media screen and (max-width:350px){
	.contenedor_form{
		width: 100%;
	}
	.social-icon [class*="icon-"]{
		display: none;
	}
	.objetos-menu:first-child{
		width: 10%;
		margin-right: 20px;
	}
	.objetos-menu:nth-child(2){
		width: 80%;
		font-size: 12px;
	}
	.recuadro_img [class*="icon-"]{
		display: none;
	}
	.recuadro_convocatoria{
		width: 65%;
	}
	#menu_user>li:hover>ul{
		margin-left: -20px;
	}
}