body{
	background-image: url(../fondos/fondo1.jpg);
	background-size: cover;
	background-position: center;
	padding: 0;
	margin: 0;
	font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
input{
	outline: none;
	border: 1px solid rgb(200,200,200);
	border-radius: 4px;
	margin-top: 5px;
	padding: 6px 7px 6px 7px;
	width: 100%;
}
.input_error{
  border: 1px solid rgb(250,120,129) !important;
  background: rgb(250,120,129, 0.1) !important;
  transition: 0s !important;
}
.fondo_inicio{
	height: 100vh;
	overflow-y: scroll;
	backdrop-filter: blur(2px);
	width: 100%;
	background: rgb(50, 50, 50, 0.7);
	box-shadow: 0px 162px 46px -13px rgba(0,0,0,0.49) inset;
	-webkit-box-shadow: 0px 162px 46px -13px rgba(0,0,0,0.49) inset;
	-moz-box-shadow: 0px 162px 46px -13px rgba(0,0,0,0.49) inset; 
}
.menu{
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	position: relative;
}
.logo_ed{
	background-image: url(../logos/logo_ed.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 150px;
	height: 150px;
	border-radius: 100%;
}
.item_menu{
	border: none;
	outline: none !important;
	background: transparent;
	color: rgb(230,230,230,0.8);
	width: 100px;
	font-size: 18px;
	padding-bottom: 7px;
	border-bottom: 5px solid rgb(250,250,250,0);
	transition-duration: 0.3s;
	transition-property: border-color;
}
.item_menu-activo{
	color: white;
	border-bottom: 5px solid rgb(250,250,250,0.6);
	transition-duration: 0.3s;
	transition-property: border-color;
}
.contorno_negro{
	padding: 10px;
	display: inline-block;
	border-radius: 10px;
	background: rgb(10, 10, 10, 0.3);
}
.pie_pagina{
	width: 100%;
	padding: 7px;
	color: rgb(240,240,240);
	background: rgb(50,50,50,0.7);
}
a{
	color: white;
	font-weight: bold;
}
a:hover{
	color: white;
	font-weight: bold;
}
.sombra-1{
	box-shadow: -1px 5px 9px 1px rgba(0,0,0,0.44);
	-webkit-box-shadow: -1px 5px 9px 1px rgba(0,0,0,0.44);
	-moz-box-shadow: -1px 5px 9px 1px rgba(0,0,0,0.44);
}
.panel_introduccion{
	padding: 80px;
}
.transicion-1{
	visibility: hidden;
	position: absolute;
	top: 50px;
	opacity: 0;
	transition-duration: 0.3s;
	transition-property: top, opacity, visibility;
	height: 0%;
	overflow: hidden;
}
.transicion-1-show{
	height: auto;
	position: relative;
	visibility: visible;
	top: 0px;
	opacity: 1;
	transition-duration: 1s;
	transition-property: top, opacity;
}
.transicion-2{
	visibility: hidden;
	position: absolute;
	opacity: 0;
	transition-duration: 0.3s;
	transition-property: opacity, visibility;
	height: 0%;
	overflow: hidden;
}
.transicion-2-show{
	height: auto;
	position: relative;
	visibility: visible;
	opacity: 1;
	transition-duration: 1s;
	transition-property: opacity;
}
.item_curso{
	position: relative; 
	padding: 0; 
	cursor: pointer;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	-moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
}
.boton-gris{
	outline: none !important;
	background: rgb(235,235,235);
	border-radius: 20px; 
	border: none;
	padding: 6px 20px 6px 20px;
	font-size: 13px;
}
.boton-gris:hover{
	background: rgb(220,220,220);
}
.boton_cerrarv{
  border: none; 
  background: transparent; 
  position: absolute; 
  top: 10px; 
  right: 10px; 
  opacity: 0.6;
  transition: 0.05s;
  z-index: 4;
}
.boton_cerrarv:hover{
  opacity: 1;
  transition: 0.05s;
}
.fondo-ventana-emergente{
	overflow-y: scroll;
	z-index: 10;
	position: absolute;
	background: rgb(0,0,0,0.2);
	width: 100%;
	height: 100vh;
	top: 0px;
	left: 0px;
	opacity: 0;
	visibility: hidden;
	transition-duration: 0.4s;
	transition-property: opacity, visibility;
}
.fondo-ventana-emergente-show{
	opacity: 1;
	visibility: visible;
	transition-duration: 0.4s;
	transition-property: opacity, visibility;
}
.ventana-emergente{
	position: relative;
	padding: 0;
	overflow: hidden;
	margin-top: 20px;
	margin-bottom: 50PX;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	-moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	transition-duration: 1s;
	transition-property: margin-top;
}
.ventana-emergente-show{
	margin-top: 50px;
	transition-duration: 0.3s;
	transition-property: margin-top;
}
.sombra-1{
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
	-moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.29);
}
.sombra-interna-1{
	box-shadow: 0px -3px 6px rgb(0,0,0,0.2) inset;
}
.panel_login{
	margin-top: -100px;
	width: 500px;
	background: rgb(255,201,14,0.4); 
	border-radius: 20px; 
	color: black; 
	padding: 0; 
	overflow: hidden; 
	position: relative; 
	box-shadow: 0px 4px 15px -2px rgba(0,0,0,0.57);
-webkit-box-shadow: 0px 4px 15px -2px rgba(0,0,0,0.57);
-moz-box-shadow: 0px 4px 15px -2px rgba(0,0,0,0.57);
}
.sub-panel-login{
	padding: 50px 60px 50px 60px;
}
.boton-azul{
	outline: none !important;
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 20px;
	padding-right: 20px;
	border:none;
	background: rgb(0,130,185);
	color: white;
	border-radius: 3px;
	transition: 0.5s;
}
.boton-azul:active{
	background: rgb(0,100,140);
	transition: 0s;
}

@media(max-width: 992px) {
	.panel_introduccion{
		padding: 20px;
	}
}
@media(max-width: 600px) {
	.panel_login{
		width: 90%;
	}
	.sub-panel-login{
		padding: 50px 30px 50px 30px;
	}
}