
.menuresponsive {
    background: white;
//    visibility: hidden;
 //   margin: 50px 0 0 0;
    position: relative;
    top: 2px;
    left: 0;
    z-index: 1;
}

.menuresponsive ul{
    display: none;
  }

.menuresponsive input:checked  ~ ul{
    display:block;
  }

.menuresponsive input {
    display: none;
  }

.menuresponsive label {
    box-sizing: border-box;
    display: inline-block;
    border: 1px solid black;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
    user-select: none;
  }

  /* Estilo del boton cuando se pasa el mouse por encima*/
 .menuresponsive label:hover{
    background: grey;
  }

  /* Estilo del boton cuando el menú está expandido*/
.menuresponsive input:checked ~ label {
    background: lightgrey;
  }

.menuresponsive ul{
    margin-top:0;
    padding: 0;
    width: 200px;

}


.menuresponsive li {
    display: block;
    background: #F4F6F7;
    margin: 0;
    padding: 10px;
    list-style: none;
    border-bottom: 1px solid grey;
}

  /*Estilo cuando el mouse pasa encima de cada link del menu*/
.menuresponsive  li:hover {
    filter: brightness(110%);
 }   

.menuresponsive li a {
    color: black;
    
}

.menuresponsive .active {
    background: #0B2846;
}

.menuresponsive .active a {
    color: white;
}
