body{
    padding: 0px;
    margin: 0x;
    box-sizing: border-box;
}

.Muscia {
    position: relative;
    z-index: 1;
    right: 0px;
    top: 0px;
    width: 250px;
}

/*inicio Dropdown*/
nav{
    position: absolute;
    z-index: 2;
}

nav .dropp-btn{
    width: 200px;
    background: #007bff;
    border-radius: 5px;
    color: #fff;
    padding: 5px 30px;
    cursor: pointer;
    position: relative;
    top: 3px;
}

nav .wrapper{
    position: absolute;
    top: 10px;
    display: flex;
    width: 500px;
    background: #007bff;
    border-radius: 5px;
    display: none;

}

nav .wrapper.show{
    display: block;
    display: flex;
    overflow:auto;
    height: 700px;
}
nav .wrapper.show::-webkit-scrollbar{
    width: 10px;
}
nav .wrapper.show::-webkit-scrollbar-thumb{
    height: 150px;
    background: rgb(2,0,36);
    background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    border-radius: 5px;
}

nav .wrapper ul {
    list-style: none;
    padding: 10px;
}

nav .wrapper li{
    padding: 5px 5px;
}



nav .wrapper ul li a{
    text-decoration: none;
    color: #fff;
    display: flex;
    font-weight: 500;
    font-family: sans-serif;
    padding: 0px 10px;
    align-items: center;
    border-radius: 8px;
}

nav .wrapper ul li:hover a{
    background: #008fff;
}

/*Hasta Dropdown*/

#imgenInicioGeneral{
    max-width: 100%;
    padding: 0px 85px;
}

.sii_img{
    width: 50px;
    border-radius: 100px;
    margin: 5px;
}

/*------------------------------------------------------------------------------*/
/*Celular mobile all*/
/*-------------------------------------------------------------------------------^*/

@media screen and (max-width: 360px){
    nav{
        left: 0px;
    }
    nav .wrapper ul li a{
        font-size: 13.5px;
    }
    nav .wrapper.show{
        display: block;
        display: flex;
        overflow:auto;
        height: 500px;
        max-width: 300px;
    }

    #imgenInicioGeneral{
        max-width: 100%;
        padding: 0px;
    }

}
@media screen and (min-width: 361px) and (max-width: 500px){
    nav{
        left: 0px;
    }
    nav .wrapper ul li a{
        font-size: 15px;
    }
    nav .wrapper.show{
        display: block;
        display: flex;
        overflow:auto;
        max-height: 500px;
        max-width: 350px;
    }

    #imgenInicioGeneral{
        max-width: 100%;
        padding: 0px;
    }

}
@media screen and (min-width: 501px) and (max-width: 768px){
    nav .wrapper ul li a{
        font-size: 15px;
    }
    nav .wrapper.show{
        display: block;
        display: flex;
        overflow:auto;
        max-height: 550px;
        max-width: 350px;
    }

    #imgenInicioGeneral{
        max-width: 100%;
        padding: 0px;
    }

}
@media screen and (min-width: 769px) and (max-width: 1030px){
    nav .wrapper ul li a{
        font-size: 15px;
    }
    nav .wrapper.show{
        display: block;
        display: flex;
        overflow:auto;
        max-height: 600px;
    }
    .navbar-expand-lg .navbar-nav .nav-link{
        white-space: nowrap;
        font-size: 15px;
    }
    .Muscia {
        position: relative;
        z-index: 1;
        right: 0px;
        top: 0px;
        max-width:120px;
    }
}
@media screen and (min-width: 1031px) and (max-width: 1200px){
    .navbar-expand-lg .navbar-nav .nav-link{
        white-space: nowrap;
        font-size: 15px;
    }
    .Muscia {
        position: relative;
        z-index: 1;
        right: 0px;
        top: 0px;
        max-width:120px;
    }
}



