@import url( 'https://fonts.googleapis.com/css?family=Montserrat:400,600,700' );
* {
	margin: 0px;
	padding: 0px;
}
body, html { height: 100%; }
body { margin: 0; font-family: 'Montserrat', sans-serif; }
a { text-decoration: none; cursor: pointer; }
.backgroundImg {
	position: absolute;
	background: url( '../images/fondo-uno.jpg' );
	background-size: cover;
	background-position: center center;
	width: 70%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
}
.backgroundImg .infoText {
	box-sizing: border-box;
	padding: 50px;
	background-color: rgba( 0, 0, 0, 0.5 );
	color: #fff;
	width: 800px;
	max-width: 90%;
	margin: 0 auto;
}
.backgroundImg .infoText p { margin-bottom: 20px; font-size: 20px; }
.mainLogin {
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	height: 100%;
	background-color: #fff;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding: 20px 50px;
}
.blockDiv { display: block; }
.mainLogin input {
	width: 100%;
	margin: 10px 0;
	padding: 10px;
	border: 2px solid #000;
	box-sizing: border-box;
}
.mainLogin img { margin: 30px auto; }
.boton {
	display: block;
	margin: 20px auto;
	width: 200px;
	text-align: center;
	box-sizing: border-box;
	padding: 15px 0;
	text-decoration: none;
	border: 1px solid #000;
	color: #000;
	text-transform: uppercase;
}
.tCenter { text-align: center; }
.vacio { background: #FEE9EA !important; border: 1px solid #DE888A !important; }
.cargando {
	z-index: 11;
	position: fixed;
	width: 100%;
	text-align: center;
	top: 40%;
	left: 0;
	display: none;
	text-align: center;
	color: #fff;
}
.cargando i { font-size: 65px; }
.cargando h3 { color: #fff; margin: 20px 0; }
.capaNegra {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9;
	background-color: #000;
	opacity: 0.7;
	display: none;
}
.sideBar {
	position: absolute;
	width: 250px;
	height: 100%;
	top: 0;
	left: 0;
	border: 1px solid #333;
	z-index: 1;
	text-align: center;
	max-width: 100%;
	min-width: 240px;
	background-color: #fff;
	transition: all 0.4s;
}
.sideBar img {
	bottom: 50px;
	margin: 0 auto;
	margin-top: 100%;
	max-width: 95%;
}
.menuLateral, .submenuLateral {
	list-style: none;
	padding-left: 0;
}
.submenuLateral { display: none; }
.menuLateral li, .submenuLateral li {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	background-color: #ccc;
	border-bottom: 1px solid #333;
	transition: all 0.4s;
	text-align: left;
	white-space: nowrap;
}
.submenuLateral li { background-color: #fff; }
.menuLateral li a, .submenuLateral li a { color: #000; transition: all 0.4s; }
.menuLateral li:hover { background-color: #000; }
.menuLateral li:hover > a, .submenuLateral li:hover > a { color: #fff; }
.submenuLateral li:hover { background-color: #666; }
#contenidoFrame, #usuarioInfo {
	position: absolute;
	width: 80%;
	height: 100%;
	top: 0;
	right: 0;
	border: none;
	background-color: #fff;
}
#contenidoFrame { display: none; }
#usuarioInfo { display: none; }
.contenidoInfo { box-sizing: border-box; padding: 50px; width: 500px; max-width: 100%; }
.contenidoInfo label {
	display: block;
	width: 100%;
	margin-top: 10px;
}
.contenidoInfo input {
	width: 100%;
	margin-bottom: 10px;
	padding: 10px;
	border: 2px solid #000;
	box-sizing: border-box;
}
.bMobile {
	display: none;
	transition: all 0.4s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	box-sizing: border-box;
	padding: 5px 8px;
	background-color: #ccc;
	border: 1px solid #333;
	width: 36px;
	height: 36px;
	text-align: center;
}
.bMobile:hover { background-color: #000; color: #fff; }
.bMobile.abierto { left: 250px; }
.cierraPC {
	transition: all 0.4s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	font-size: 20px;
	box-sizing: border-box;
	padding: 5px 8px;
	background-color: #ccc;
	border: 1px solid #333;
	width: 36px;
	height: 36px;
	text-align: center;
}
.cierraPC.abierto { left: 250px; }
.sideBar.abierto { width: 250px; }
.sideBar.cerrado { position: fixed; width: 0; overflow: hidden; min-width: 0; }
#imagenLogo { max-width: 100%; height: auto; }
@media screen and ( max-width: 1175px ) {
	#contenidoFrame, #usuarioInfo { width: 70%; }
}
@media screen and ( max-width: 815px ) {
	#contenidoFrame, #usuarioInfo { width: 100%; }
	.sideBar { position: fixed; width: 0; overflow: hidden; min-width: 0; }
	.bMobile { display: block; }
	.cierraPC { display: none; }
	.contenidoInfo { margin: 0 auto; }
}