<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.menu-lateral{
    width:      225px;
    max-width:  225px;
    min-width:  225px;
    height:     100%;
    
    background-color: #1c2531;
    color: #666;
    display:flex;
    flex-direction: column;
    z-index:2500;  
    box-shadow: 2px 0px 5px #aaa;
    
}
.menu-lateral .mtop {
    width:100%;
    display:flex;
    flex-direction: column;
    
}
.menu-lateral .mbody{
    width:100%;
    flex:1;
    
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    padding:6px;
}

.menu-lateral .li-father{
    color:turquoise;
    font-weight: bold;
    
}
.menu-lateral .mfooter{
    width:100%;
    height: 55px;
    background-color: blue;
    display: flex;
    flex-direction: row;
    background-color: #1c2531;
    background-color: white;
    padding:9px;
    gap: 10px;
    border-top: thin solid #999;
}

/*SUBCLASES*/
.menu-lateral .search {
    width:100%;
    padding:5px;
    padding-left:35px;
}
.menu-lateral  .numeral  {
    display:flex;
    width:35px;
    min-width:35px;
    padding-left:10px;
}
.menu-lateral .desc   {
    display:block;
    padding-right:5px;
}

.menu-lateral  .cierre {
    display:none;
}


/*MENU UL*/
.menu-lateral ul {
    list-style-type: none;
    margin:0;
    padding-right: 3px;
    padding:0;
    display:flex;
    flex-direction: column;
    max-width: 100%;
}
.menu-lateral ul li {
    min-height: 30px;
    cursor:pointer;
    display:flex;
    align-items: center;
    justify-content: flex-start;
}

.menu-lateral ul ul li  {
    padding:5px;
    padding-left:20px;
    font-size:12px;
    min-height: 25px;    
}
.menu-lateral ul ul li  label {
    font-size:12px;
}

 .menu-lateral ul li a:hover {
     color:#FFF;
 }
 .menu-lateral ul li i {
    width:30px;
    font-size: 16px;
    margin-left:20px;
}
/* EN LUGAR DE I, DONDE NO HAAY ICONO*/
 .menu-lateral ul li span {
    width:30px;
    font-size: 16px;
    margin-left:20px;
}
.menu-lateral ul  label {
    font-size: 16px;
}    


/*LOGOTIPO*/
.menu-lateral .logotipo{
    height:150px;
    width:100%;
    display:flex;
    justify-content: center;
    border-bottom: thin dotted #ccc;
    padding:20px;
    max-width: 300px;
    overflow: hidden;
}
.menu-lateral  .logotipo img{
    height:100%;
}
#container-btn-show-panel{
    width:35px;
    display:none;
}
.menu-lateral ul li a {
    display:flex;
    height:100%;
    width:100%;
    justify-content: flex-start;
    cursor:pointer;
    /*color:#75869f;*/	
    /*DESC-MENU COLOR*/
    color:#e1e1e1;	
    text-decoration: none;
    border-radius: 5px;
    padding:3px;
    transition: background-color 0.3s;
}
.menu-lateral ul li a:hover {
    background-color: dodgerblue;
    color:white;
}
.menu-lateral .active {
    background-color: yellow; /* Add a green color to the "active/current" link */
    color: black !important;
    border-radius:  8px;
}
.menu-lateral .active  a {
    color: black !important;
}
#btnShowPanel{ display: block;  }
#idemCerrarMenuPanel{ display: block;}

@media only screen and (max-width: 600px) {
    #container-btn-show-panel{
        display:block;
    }
    .menu-lateral{
        display: none;
    }
}
@media print{
    .menu-lateral{
        display: none;
    }
}
@keyframes aniMenuLateral{
    0%{width:0px;}
    100%{width:100%;}
}




</pre></body></html>