body {
    margin: 0;padding: 0;
}

#map {
    position: absolute;
    top: 100px;
    /* height: 100%; */
    bottom: 0px;
    width: 100%;
    background-color: #ffffff
}
/*
.panelTopIzquierda {
    position: absolute;
    top: 110px;
    left: 10px;
    width: 180px;
    z-index: 1000;
    background-color: rgba(255,255,255,0.9);
    padding: 10px;
    font-size: 16px;
    color: #4eb464;
    border-radius: 5px;
}*/

.panelTopIzquierda label{
    font-size:0.85em;
}

.panelTopIzquierda input[type=range]{
    cursor:pointer;
    width: 95%;
}

.panelTopDerecha {
    position: absolute;
    top: 110px;
    right: 50px;
    width: 160px;
    z-index: 1000;
    background-color: rgba(255,255,255,0.9);
    padding: 10px;
    font-size: 14px;
    color: #4eb464;
    border-radius: 5px;
}

.panelTopDerecha label{
    font-size:0.85em;
}

.panelTopDerecha input[type=range]{
    cursor:pointer;
    width: 95%;
}

.panelTitulo{

    position: absolute;
    top: 5px;
    left: 45%;
    z-index: 5;
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    opacity: 0.9;
    font-size: 22px;

}

/*MENU ACORDEÓN (CATEGORÍAS) */
.accordion {
    position: absolute;
    top: 110px;
    left: 10px;
    width: 190px;
    z-index: 1000;
    background-color: #fff;
    color: #444;
    cursor: pointer;
    /*padding: 5px;*/
    text-align: left;
    border: noe;
    outline: none;
    transition: 0.04s;
    border-radius: 5px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
    padding: 10px 18px;
    background-color: white;
    display: yes;
    overflow: hidden;
  }