.contenedor
{
    grid-template-columns: auto;
    grid-template-areas:
    "header"
    "main"
    "main"
	"main2"
    "footer";
}
/*Estilos generales*/
.display-flex
{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3px;
}
/*Estilos*/
header
{
    position: fixed;
    z-index: 1;
}
.divThermo img
{
    width: 100%;
}
.logoSCMI img
{
    width: 60%;
    height: 100%;
}
main
{
    margin-top: 150px;
}
.navegacion
{
    display: none;
}
.big
{
    display: none;
}
nav
{
    position: fixed;
    margin-top: 125px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
nav ul
{
    display: flex;
    height: 100%;
    flex-direction: column;
}
nav ul a
{
    padding: 6px;
    margin: 0 15px;
    text-align: center;
}
.titulo
{
    background: #1E1F1F;
    margin: 10px 0;
    padding: 10px;
    width: 40%;
}
.contenido
{
    display: flex;
    flex-direction: column;
    
    /*border: 1px solid #AECAD9;*/
    /*border-radius: 5px;*/
    padding: 5px;
}
.contenido .wrap
{
    display: flex;
    flex-direction: column;
    
    border: 1px solid #AECAD9;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 15px;
    width: 100%;
}
.tienda
{
    line-height: 40px;
    justify-content: flex-start;
    padding-left: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.barra
{
    padding-right: 3px;
    padding-left: 3px;
}
.valor-temperatura
{
    font-size: 22px;
}
input
{
    font-size: 20px;
}
input[type = date],
input[type = time]
{
    width: 60%;
}
#texto-header-thermo
{
    display: none;
}
#menu_grande
{
    display: none;
}
#logo_ingreso
{
    width: 60%;
    height: 10%;
}