* {
	margin: 0;
	padding: 0;
}

body {
	background: #E9ECF4;
	color: #000;
	font-family: 'Roboto', sans-serif;
	width: 100%;
    height: 100vh;
	display: grid;
	grid-template-columns: 20% 60% 20%;
	grid-template-rows: 15% 80% 5%;
	grid-template-areas: "encabezado encabezado encabezado"
						 "lateralIzq divprincipal lateralDer"
						 "pie pie pie";
}
.encabezado {
	background: #f0f6f8;
	grid-area: encabezado;
    border: 1px solid;
    display: flex;
    align-items: center;
	text-align: center;
	box-shadow: 5px 5px 2px rgb(81, 80, 80);
	margin: 10px;
}
.encabezado h1{
	margin: auto auto;
}
.encabezado img{
    width:auto; 
    height:90%;

}
.lateralIzq {
	border: 1px solid;
	background: #d6ebf2;
    grid-area: lateralIzq;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	text-align: center;
	box-shadow: 5px 5px 2px rgb(81, 80, 80);
	margin: 10px;
}
.lateralIzq button{
	margin: 5px 0;
	background: #f2f5f6;
	width:80%;
	height: 30px;
	border-radius: 10px;
	box-shadow: 5px 5px 8px rgb(81, 80, 80);
}
.imgUsu{
	width: 80%;
	height: auto;
	margin-bottom: 10px;
	border-radius: 100px;
	box-shadow: 5px 5px 8px rgb(81, 80, 80);
}
.divprincipal {
	border: 1px solid;
	background: #eaecf5;
	grid-area: divprincipal;
	overflow-y: scroll;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	box-shadow: 5px 5px 8px rgb(81, 80, 80);
	margin: 10px;
}

.lblTitulo{
	display: flex;
	flex-direction: column;
	position: relative;
	height:auto;
	width: 80%;
	border:1px solid;
	border-radius: 10px 10px 10px 10px;
    align-items:center;
    justify-content: center;
	padding: 10px;
	padding-top: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}
.lateralDer .lblTitulo:nth-child(1){
	background-color: darksalmon;
}
.lateralDer .lblTitulo:nth-child(2){
	background-color: rgb(207, 237, 248);
}
.lblTitulo h3{
	margin-top: 1px;
	font-size: 15px;
}
.lblTitulo button{
	margin-top: 15px;
}
.spnDatosApertura{
	font-size: 15px;
	border: 1px solid;
	top: -5px;
	position: absolute;
	background: #FFF;
	padding: 3px;
}
.lateralDer {
	border: 1px solid;
	grid-area: lateralDer;
	box-shadow: 5px 5px 15px rgb(81, 80, 80);
	margin: 10px;
	display: flex;
	flex-direction: column;
	height: auto;
	overflow-y: scroll;
	align-items: center;
}

.pie {
	background: #333c5a;
	grid-area: pie;
	border: 1px solid;
}
.tablasConEsquinasRedondeadas{
	border: 1px solid black;
	border-radius: 5px 5px 5px 5px;
	width: 95%;
	height: 90%;
	margin: auto ;
	text-align: center;
}
#tablas{
	width: 100vw; 
	height: 100vh;
	margin: auto;
}
.btnCerrarTablas{
	margin-left: 80%;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 10px;
}

.perfil{
    display: flex;
    border: 3px solid hsl(234, 29%, 50%);
    border-radius: 10px;
    padding: 5px;
    flex-wrap: 5px;
    width: 90%;
    margin: 5px;
	height: 200px;
	background: #E9ECF4;
	box-shadow: 5px 5px 15px gray;
	margin-bottom: 10px;
	margin-left: 10px;
}
.separador{
    display: grid;
    flex-direction: column;
    width: 50%;
    height: 100%;
    justify-content: center;
    align-items: center;
    
    
}
.separador h4{
    text-align: center;
}
.contenedorBarras{
    display: grid;
    flex-direction: column;
    width: 50%;
    height: 100%;
    padding-left: 5px;
	border-right: 1px solid #111112;
	padding-right: 5px;
}
.barraPadre{
    display: flex;
    position: relative;
    height: 25px;
    width: 100%;
    border: 1px solid;
    background-color: rgb(250, 255, 255);
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3px;
    z-index: 10;
    overflow: hidden;
}
.barraPadre p{
    z-index: 50;
    margin: 0 3px;
}
.lh{
    width: 100%;
    background-color: #000;
    height: 1px;
    margin-bottom: 3px;
}
.barraHijo{
    position: absolute;
    display: flex;
    height: 100%;
    
    
}
.estadistica1{
    width: 100px;
    height: 100px;
    
    border-radius: 50%;
    margin: 0 auto;
}
@media screen and (max-width: 800px){
    .lateralIzq{
        display: none;
    }
	body {
		height: auto;
		grid-template-rows: auto auto auto auto;
        grid-template-areas: "encabezado encabezado encabezado"
						 "lateralDer lateralDer lateralDer"
						 "divprincipal divprincipal divprincipal"
						 "pie pie pie";
        
    }
    .divprincipal{
		
		/*Ocultar scroll para IE, Edge y Firefox*/
		-ms-overflow-style: none;
    	scrollbar-width: none;
	}
	/*Ocultar scroll para chrome, safari y opera*/
	.divprincipal::-webkit-scrollbar{
		display: none;
	}

    .encabezado img{
		width:15%; 
		height:auto; 
	
	}
	.perfil{
        margin: 10px;
		margin-bottom: 5px;
        width: 90%;
    }
	.lblTitulo{
		width: 41%;
		margin: 5px;
	}
	.lateralDer{
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
	}
} 