@import url("config-home.css"); 
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
} */
/* Dashboard */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
#Dashboard{
    width: 100%;
    height: 90%;
}
/*Nav Bar*/
.header{
    background-color: var(--bg-navbar);
    box-shadow: 1px 1px 5px 0px var(--color-sombra);
    position: sticky;
    top: 0;
    /* width: 100%; */
}

/* .header > a > img {
    width: 200px;
    height: auto;
} */

.nav {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--bg-navbar);
    overflow: hidden;
    max-height: 0;
    transition: max-height .5s ease-out;
    display: block;
}
.nombre_empresa_menu{
    margin: 18px 0px 18px 18px !important;
    padding: 20px 0px 20px 20px;
    font-size: 1.3em;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
}
@media screen and (max-width: 1000px) {
    .nombre_empresa_menu {
        margin: 0px 0px 0px 0px !important;
        padding: 20px 20px 20px 20px;
    }
    
}

.centrado_menu{
    margin-right: 100%;
    margin-left: auto;
}

/* .nav > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
}
*/
.link_nav {
    display: block;
    padding: 1em;
    font-size: 1.5em;
    text-decoration: none;
} 

.nivel_1_menu {
    color: var(--color-texto-1nivel);
}
.nivel_1_menu:hover {
    color: var(--color-texto-nivel_hover);
}
.nivel_1_menu:focus {
    color: var(--color-texto-nivel_hover);
}
.nivel_2_menu {
    color: var(--color-texto-2nivel);
}
.nivel_2_menu:hover {
    color: var(--color-texto-nivel_hover);
}
.btn_cerrar_session {
    color: var(--color-boton);
    background-color: var(--bg-color-boton);
    border: none;
    text-align: center;
    text-decoration: none;
    padding: 0.7em;
    border-radius: 0.5em;
    cursor: pointer;
    margin-left: auto;
    margin-right: 90px;
    margin-top: 30px;
    
}
.logo > img {
    margin-top: 10px;
    width: 200px;
    height: auto;
}

/* #btn-false a {
    font-weight: 600;
    color: var(--bg-color-boton)
}

.hamb {
    cursor: pointer;
    float: right;
    padding: 30px 20px;
}


.hamb-line {
    background-color: var(--color-icono);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
    
}

.hamb-line::before, .hamb-line::after {
    background-color: var(--color-icono);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamb-line::before {
    top: 5px;
}

.hamb-line::after {
    top: -5px;
}

.side-menu {
    display: none;
}

.side-menu:checked ~ nav {
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

@media screen and (min-width: 768px)
{
    header {
        font-size: 1em;
        display: grid;
        grid-template-columns: auto auto auto;
        justify-content: space-between;
        padding: 0 1em 0 1em;
        align-items: center;
    }
    nav{
        color: #000;
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
        margin-bottom: -1.2em;
    }

    nav ul {
        display: block;
        margin: 0;
    }

    nav ul li {
        float: left;
    }

    nav ul li a {
        color: var(--color-texto);
    }

    nav ul li a:hover {
        color: var(--color-texto-hover)
    }

    #btn {
        color: var(--color-boton);
        background-color: var(--bg-color-boton);
        border: none;
        text-align: center;
        text-decoration: none;
        padding: 0.7em;
        border-radius: 0.5em;
        cursor: pointer;
    }

    #btn:hover {
        color: var(--color-boton-hover);
        background-color: var(--bg-color-boton-hover);
    }

    #btn-false {
        display: none;
    }

    .hamb {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #btn {
        display: none;
    }
}

@media screen and (max-width: 970px) {
    header, #btn {
        font-size: 0.8em;
    }

    img {
        width: 150px;
    }
    nav {
        margin-bottom: -1em;
    }

} */