/* latin */
@font-face {
  font-family: 'Calibri';
  font-style: normal;
  font-weight: 400;
  src: local('Calibri'), url(https://fonts.gstatic.com/l/font?kit=J7afnpV-BGlaFfdAhLEY6w&skey=a1029226f80653a8&v=v10) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*{
	margin: 0;
	padding: 0;
	font-family: Calibri;	
	box-sizing: border-box;
}

a:link{text-decoration:none;}
a:hover{text-decoration: underline;}
a:active, a:active *{outline: none !important; -moz-outline-style: none !important;}
a:focus, a:focus *{outline: none !important; -moz-outline-style: none !important;}

html{
 	height:100%;
 	min-height: 100%;
}

body{
	height: 100%;
}

.contenedor{
	min-height: calc(100vh - 100px);
}

.logo{
	width: 100%;
	padding: 10px;
}

.banner{
	margin-top: -9px;
	width: 100%;
	height: 48px;
	background: #003F98;
}

.titulo{
	width: 100%;
	padding-left: 10%;
	padding-right: 10%;
	margin-top: -2.5px;	
}

.titulo label{	
	color: #34495E;
	font-size: 26.5px;
	font-weight: bold;
}

.buscar{
	display: block;
	width: 32.5%;
	margin-top: 30px;
	text-align: center;
	padding-left: 11px;
	position: button;
}

.btnconsultar{
	width: 50%;
	height: 50px;
	border: solid #0092FF;
	background-color: #0092FF;	
	margin-top: 5px;
}

.btnconsultar label{
	font-size: 18pt;
	color: #fff;
}

.btnconsultar i{
	font-size: 12pt;
	color: #fff;
	margin-right: 5px;
}

.btnconsultar:hover{
	cursor: pointer;	
	background-color: #256AE0;
	border-color: #256AE0;
}

.info{	
	width: 60%;
	height: auto;
	background: #EFF0F2;
	display: none;
	border-radius: 10px;
	text-align: left;
	padding: 15px;
}

.campo{
	display: inline-flex;
	width: 132px;
	color: #34495E;
	font-weight: bolder;
	font-size: 14pt;
}

.valor{
	font-size: 14pt;
	font-weight: bolder;
}

.btnconsultar:hover {
  background-color: RoyalBlue;
}

.listado{
	width: 100%;
	display: block;
	background: #fff;
	height: auto;
	border-radius: 0px 0px 10px 10px;
	padding: 10px;
}

.titulo-listado{
	text-align: center;
}

.titulo-listado label{	
	color: #34495E;
	font-size: 15pt;
	font-weight: bold;
}

.encabezado{
	width: 100%;
	height: auto;
	background: #003F98;
	color: #fff;
	display: flex;
}

.titulo-mensualidades{
	width:45%;
	text-align: center;
	line-height: 30px;
}

.titulo-valores{
	width: 55%;
	display: flex;
	text-align: center;	
}

.titulo-valores label{
	width: 33.3333%;
	text-align: center;
	line-height: 30px;
}

.desc{
	display: flex;
	margin-top: 10px;
}

.descripcion{
	width: 50%;
	display: flex;
	margin-left: 10px;
	line-height: 40px;
}

.valores{
	width: 50%;
	line-height: 40px;	
	display: flex;
	justify-content: space-around;
}

footer {
	width: 100%;
	height: 80px;
  position: static;
  bottom: 0px;
}

hr{
	width: 60%;
}

.conte-iconos{
	width: 60%;
	display: flex;
}

.iconos{
	width: 50%;
	display: flex;
	padding: 10px;
	text-align: left;
}

.bancos{	
	width: 50%;
	padding: 10px;
	text-align: right;		
}

footer label{
	text-align: center;
	font-size: 12pt;
}

.btn-des{
	width: 350px !important;
	height: 45px;
	margin: 0 auto;
	padding: 5px;
	background-color: #C7C7C7;
	border: solid #C7C7C7;
	border-radius: 5px;
	color: white;
	text-align: center;
	cursor: not-allowed;
}

.btn-des:hover{
	background-color: #C7C7C7;
	border: solid #C7C7C7;
	cursor: help;
}

/*------------------------------------------------------------------------------------------------------------------------------
/*PC*/
@media screen and (max-width: 1024px){

}

/*------------------------------------------------------------------------------------------------------------------------------
/*TABLET*/
@media screen and (max-width: 768px){
	.contenedor{
		min-height: calc(100vh - 200px);
	}

	.buscar{
		width: 90%;
		padding: 0px;
	}	

	.info{
		margin-left: -12px;
		width: 88%;
	}

	hr{
		width: 90%;
	}

	.conte-iconos{
		width: 90%;
	}

	.iconos{
		width: 35%;
	}

	.bancos{
		width: 65%;
	}

	footer label{
		width: 85%;
	}
}

/*------------------------------------------------------------------------------------------------------------------------------
/*CELULAR*/
@media (max-width: 500px){
	.contenedor{
		min-height: calc(100vh - 180px);
	}

	.logo{
		text-align:center;
	}
	
	.info{
		margin-left: -6px;
	}

	.encabezado{
		height: auto;
		display: block;
	}

	.titulo-mensualidades{
		width:100%;
		text-align: center;
	}

	.titulo-valores{
		width: 100%;
	}

	.desc{
		display: block;
	}

	.descripcion{
		width: 100%;
	}

	.valores{
		width: 100%;
	}

	.bancos{
		display: flex;
	}
}