/* Estilos generales */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;900&display=swap');
*{
    box-sizing: border-box;
    font-family: 'Inter';
    margin: 0;
    padding: 0;
}

a,
a:hover,
a:focus{
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}


/* Estilos login */
.contenedor-login{
    height: 100vh;
    width: 100%;
    background-color: #e4dfef;
}

.login{
    height:28rem;
    width: 21rem;
    background-color: #ffffff;
    box-shadow: 10px 30px 20px 1px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

.header-login i {
    font-size: 5.2rem;
    background: -webkit-linear-gradient(#4DD3FE,#006CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgb(58, 58, 218);  
}

/* Estilos de wrapper */

.wrapper{
    transition: all 0.3s;
    margin-top: 56px ;
}

/* Estilos de navbar */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index: 3; 
}

.notificacion{
    position: relative;
}

.notificacion span{
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(255, 0, 0);
    margin-left: 9px;
    margin-top: -3px; 
}

/* Estilos de sidebar */

#sidebar{
    max-width: 275px;
    min-width: 275px;
    min-height: 100vh;
    transition: all 0.3s;
    border: solid 1px #D0D0D0;
    border-top: none;
    position: fixed;
    left: 0px;
    z-index: 3;
}

.header-sidebar{
    width: 100%;
    line-height: 20px;
    height: 85px;
    background-image: url("../../assets/img/fondo1.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.header-sidebar p {
    font-size: 17px;
    font-weight: 700; 
}

.header-sidebar span{
    font-size: 14px;
    font-weight: 400;
}

#sidebar.actives{
    margin-left: -275px ;
}

#sidebar ul{
    margin-left: -37px; 
}

#sidebar .sidebar-header{
    padding: 20px;
}

#sidebar ul li a{
    padding: 10px;
    font-size: 1em;
    display: block;
    text-decoration: none;
    font-weight: 500;
    color:#232323;
    transition: 0.5s ease;
}

#sidebar ul li a:hover{
    background-color: #F0F0F0 ;
    color: #0d6efd;
}

#sidebar ul li.active>a,
a[aria-expanded="true"]{
    background-color: #E2E2E2  ;
    color: #737373;
}

.dropdown-toggle::after{
    display: inline-block;
    margin-left: 65%;  
}

ul ul li a{
    font-size: 0.8em !important;
}

/* Estilos de contenido */
#contenido{
    min-height: 100vh;
    transition: all 0.3s;
    background-color: #e4dfef;
}

#contenido.actives{
    margin-left: 275px;
}


@media(max-width: 1024px){
    #sidebar{
        margin-left: -275px;
        position: fixed;
        z-index: 10 !important;
    }

    #sidebar.actives{
        margin-left: 0;
    }

    #contenido{
        margin-left:0px;
        width: 100%;
        min-height: 100vh;
        transition: all 0.3s;
        padding: 20px;
    }
    
    #contenido.actives{
        margin-left: 0;
    }
}


.notifications {
    display: none;
    transition: all 1s ease-in;
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 20px;
    z-index: 1;
  }
  
  .show {
    display: block;
  }
  













