/* GLOBAL */
*:focus {
    outline: none;
}

body {
	margin:						0px;
	padding:					0px;
	background-color:			white;
	overflow-y:					scroll;
	font-family: 				'Montserrat', sans-serif;
	font-size:					16px;
}
@media screen and (max-width: 1690px) and (min-width: 1291px) {
body {
	font-size:					15px;
}
}

@media screen and (max-width: 1290px) and (min-width: 992px) {
body {
	font-size:					14px;
}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
body {
	font-size:					13px;
}
}

@media screen and (max-width: 767px) {
body {
	font-size:					12px;
}
}

.zero {
	margin:  					0px;
	margin-left:  				0px;
	margin-right:  				0px;
	padding:  					0px;
}

#cuerpo {
	width:						100%;
	padding:					0px;
	margin:						0px;
}


div.full_panel {
	display:  					flex;
	flex-wrap:  				wrap;
	padding:					1px;
	margin:						0px;
	width:  					100%;
	background-color:			#fff;
	-ms-transition: 			all ease-in-out .4s;
	-moz-transition: 			all ease-in-out .4s;	
	-webkit-transition: 		all ease-in-out .4s;
	transition: 				all ease-in-out .4s;
}
div.mat_panel {
	display:  					flex;
	flex-wrap:  				wrap;
	padding:					1px;
	margin:						0px 10%;
	width:  					80%;
	background-color:			#fff;
	-ms-transition: 			all ease-in-out .4s;
	-moz-transition: 			all ease-in-out .4s;	
	-webkit-transition: 		all ease-in-out .4s;
	transition: 				all ease-in-out .4s;
}


@media screen and (max-width: 1690px) and (min-width: 1291px) {
div.mat_panel {
	margin:						0px 5%;
	width:  					90%;
}
}

@media screen and (max-width: 1290px) and (min-width: 992px) {
div.mat_panel {
	margin:						0px 2%;
	width:  					96%;
}
}

@media screen and (max-width: 991px) and (min-width: 768px) {
div.mat_panel {
	margin:						0px 1%;
	width:  					98%;
}
}

@media screen and (max-width: 767px) {
div.mat_panel {
	margin:						0px;
	width:  					100%;
}
}

div.mat_subpanel {
	padding:					0px;
	margin:						0px;
	width:						100%;
}

div.cabe {
	float:						left;
}

div.cabe img {
	width:						100%;
}

h1 {
	text-align:					left;
}
@media screen and (max-width: 1600px) {
	h1 {
	font-size:					24px;
}
}

/* PIE DE PAGINA */

a.pie {
	padding:					3px;
	margin:						5px;
	text-decoration:			none;
	color:						#ce2027;
	-ms-transition:				all ease-in-out .4s;
    -moz-transition:			all ease-in-out .4s;	
    -webkit-transition: 		all ease-in-out .4s;
    transition: 				all ease-in-out .4s;
}

a.pie:hover {
	color:						#fff;
	background-color:			#ce2027;
	text-decoration:			none;
}

a.pietel {
	padding:					3px;
	margin:						5px;
	color:						#000;
	text-decoration:			none;
	-ms-transition:				all ease-in-out .4s;
    -moz-transition:			all ease-in-out .4s;	
    -webkit-transition: 		all ease-in-out .4s;
    transition: 				all ease-in-out .4s;
}

a.pietel:hover {
	background-color:			#000;
	color:						#fff;
	text-decoration:			none;
}

/* FORMULARIOS */

div.formulario {
	margin:						3%;
}

label {
    display:					block;
	margin-left:				10px;
}

div.f_campo {
	float:						left;
	max-width:					85%;
	margin-right:				2%;	
	min-width:					250px;
}

input, select {
	padding:					10px;
	margin:						0px 30px 10px 10px!important;
	-ms-transition: 			all ease-in-out .1s;
    -moz-transition: 			all ease-in-out .1s;	
    -webkit-transition: 		all ease-in-out .1s;
    transition: 				all ease-in-out .1s;
	width:						100%;
}

input[type="text"] {
	border-radius: 				3px 3px 3px 3px;
	-moz-border-radius: 		3px 3px 3px 3px;
	-webkit-border-radius: 		3px 3px 3px 3px;
   border:						1px #ccc solid;
}
input[type="text"]:focus {
    box-shadow: 				0 0 15px rgba(0, 0, 0, 0.5);
}

input[type="email"] {
	border-radius: 				3px 3px 3px 3px;
	-moz-border-radius: 		3px 3px 3px 3px;
	-webkit-border-radius: 		3px 3px 3px 3px;
   border:						1px #ccc solid;
}
input[type="email"]:focus {
    box-shadow: 				0 0 15px rgba(0, 0, 0, 0.5);
}

input[type="checkbox"] {
  	width: 						25px;
	height: 					25px;
	line-height:				30px;
}
input[type="radio"] {
  	width: 						25px;
	height: 					25px;
	line-height:				30px;
}

textarea {
	border-radius: 				3px 3px 3px 3px;
	-moz-border-radius: 		3px 3px 3px 3px;
	-webkit-border-radius: 		3px 3px 3px 3px;
	border:						1px #ccc solid;
	padding:					10px;
	margin:						0px;
	-ms-transition: 			all ease-in-out .1s;
    -moz-transition: 			all ease-in-out .1s;	
    -webkit-transition: 		all ease-in-out .1s;
    transition: 				all ease-in-out .1s;
	width:						100%;
}
textarea:focus {
    box-shadow: 				0 0 15px rgba(0, 0, 0, 0.5);
}

select {
	border-radius: 				3px 3px 3px 3px;
	-moz-border-radius: 		3px 3px 3px 3px;
	-webkit-border-radius: 		3px 3px 3px 3px;
	border:						1px #ccc solid;
	padding:					10px;
	margin:						0px;
	-ms-transition: 			all ease-in-out .1s;
    -moz-transition: 			all ease-in-out .1s;	
    -webkit-transition: 		all ease-in-out .1s;
    transition: 				all ease-in-out .1s;
	width:						100%;
}
select:focus {
    box-shadow: 				0 0 15px rgba(0, 0, 0, 0.5);
}

select option {
	padding: 					50px!important;
}

table.tab_form tr td {
	padding:					2px;
	font-size:					16px;
}
@media screen and (max-width: 1290px) {
  table.tab_form tr td {
	padding:					1px;
	font-size:					14px;
}
}

div.legal {
	padding:					1% 20% 1% 1%;
	margin:						0.6%;
	background-color:			#eee;
	color:						#000;
	text-align:					left;
	font-size:					14px;
}
div.legal h4 {
	font-weight:				700;
	font-size:					16px;
}
@media screen and (max-width: 1290px) and (min-width: 992px) {
div.legal {
	padding:					2% 10% 1% 1%;
	font-size:					13px;
}
div.legal h4 {
	font-size:					16px;
}
}

@media screen and (max-width: 991px) {
div.legal {
	padding:					2%;
	font-size:					12px;
}
div.legal h4 {
	font-size:					14px;
}
}


/* MENSAJES FLOTANTES */

#mensaje {
	position:			absolute;	
	padding:			50px;
	text-align:			center;
	left:				0px;
	width:				50%;
	top:				50%;
	margin:				5% 25% 5% 25%;
	border:				1px solid #fff;
	z-index:			999;
	visibility:			hidden;
	opacity:			0;
	color:				#fff;
}

@media screen and (max-width: 1490px) {
  #mensaje {
	position:			absolute;	
	padding:			50px;
	text-align:			center;
	left:				0px;
	width:				100%;
	top:				50%;
	margin:				5% 0px 5% 0px;
	border:				1px solid #fff;
	z-index:			999;
	visibility:			hidden;
	opacity:			0;
	color:				#fff;
}
}

/* BOTONES */
.btn {
  font-weight:					700;
  -ms-transition: 				all ease-in-out .2s;
  -moz-transition: 				all ease-in-out .2s;	
  -webkit-transition: 			all ease-in-out .2s;
  transition: 					all ease-in-out .2s;
  padding:						2% 10%;
  min-height:  					76px;
}

/* Cuadros de Curso */
.mc_contenedor {
	margin: 0.6%;
	padding:  20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.mc_contenedor div span {
	display:  block;
	width: 100%;
}
.mc_contenedor div i {
    width: 32px;
    text-align: center;
    font-size: 22px!important;
}
.mc_direc td {
	vertical-align: top;
}
.mc_contenedor .mc_direc i {
    width: 32px;
    text-align: center;
    font-size: 28px!important;
}

.mc_horar, .mc_direc {
	font-size: 1.2em;
	font-weight: 300;
}

.mc_fecha {
	font-size: 1.4em;
	font-weight: 700;
}

.mc_lugar {
	font-size: 3em;
	font-weight: 500;	
	line-height: 1em;
}

.mc_falta {
	font-size: 1em;
	font-weight: 300;
	color: #900;
	padding-left: 5px;
}

/* PIE DE PÁGINA */
footer {
    border-top: 			solid 15px white;
	display: 				flex;
	width:  				100%;
	flex-wrap: 				wrap;
	justify-content:  		center;
}
.logos {
	display: 				flex;
	width:  				100%;
	flex-wrap: 				wrap;
	justify-content:  		center;
}
.title {
	font-size:  			2em;
	padding:  				6px 0px;
}
.linkscom {
	display: 				flex;
	justify-content: 		center;
	width: 					100%;
	padding:  				10px;
	flex-wrap:  			wrap;
}
.linkscom a {
	margin: 				0px 20px;
	font-size:  			1.1em;
}
.logos div {
	text-align: 			center;
}
.logos img {
    height: 				80px;
}