body, html{
	background: black;
	color: #6b6b6b;
	cursor: default;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 16px;
	margin: 0px;
	padding: 0px; 
	width: 100%;
	height: 100vh;
}
*{
	box-sizing:border-box;

}
/*a*/
a{
	color:#03b0f4;
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
.contenedor-principal{
	width: 100%;
	height: auto;
	min-height:100vh;
	padding: 20px 30px;
	position:absolute;
	background: #2D77E9;
}
.contenido{
	height: auto;
}

.titulo-seccion{
	background:#2F4DFF;
	color:white;
	font-size: 150%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
}
.block{
	display: block;
}

.campoVacio{
	color: red;
	display: block;
	text-align:center;
	font-size: 10px;
	width: 10px;
}
.centrar{
	margin:0px auto;
}
.clear{
	clear: both;
}
.centrar-texto{
	text-align:center;
}

.quitar-viñetas{
	list-style:none;
	margin:0px;
	padding:0px;
}

.correcto, .mensaje{
	border-radius: 5px; 
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	width: 100%;
	height: auto;
	min-height: 30px;
}
.correcto{
	border:solid 3px green;
	color:green;
}
.mensaje{
	border:solid 3px #17A05D;
	color: #17A05D;	
}
.errorServer{
	font-size: 120%;
	font-weight: bold;
}
.oculto{
	display:none;
}

/*indicador del estatus de la conexion del websocket*/
.contenedor-img-status{
	width:20px;
	height:20px;
	float:right;
}
.contenedor-img-status img{
	border:solid 1px #6B6B6B;
	border-radius:50%;	
}

/*link para regresar al menu principal*/
.link-menu{
	display:block;
	width:200px;
	margin:0px auto;
	margin-top:2%;
	color:white;
	text-align:center;
}
.link-menu:hover{
	text-decoration:underline;
}