html, body, #mapid {
    height: 572px;
}
body #mapid{
    padding: 0;
    margin-top: 56px;
}

.hidden{
    overflow: hidden;
}

.centrado{
    height: 100vh;
    background-color: wheat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: #fff;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 64px;
    }
    50%, 100% {
      top: 24px;
      height: 32px;
    }
  }
:root{
    --offcanvas-width: 270px;
    --topNavbarHeight: 56px;
}
.sidebar-nav{
    width: var(--offcanvas-width);
}
.sidebar-link{
    display: flex;
    align-items: center;
}

.sidebar-link .right-icon{
    display: inline-flex;
}

.sidebar-link[aria-expanded="true"] .right-icon{
    transform: rotate(180deg);    
}

@media(min-width:992px){
    body{
        overflow: auto !important;
    }
    main{
        margin-left: var(--offcanvas-width) ;
    }
    .offcanvas-backdrop::before{
        display: none;
    }
    .sidebar-nav{
        -webkit-transform: none;
        transform: none;
        visibility: visible !important;
        top: var(--topNavbarHeight);
        height: calc(100% -var(--topNavbarHeight));
    }
}   

.legend {
  opacity: 0.7;
  }

  .info { 
    padding: 6px 8px; 
    font: 14px/16px Arial, Helvetica, sans-serif; 
    background: white; 
    background: rgba(255,255,255,0.8); 
    box-shadow: 0 0 15px rgba(0,0,0,0.2); 
    border-radius: 5px; 
} 

.info h4 { 
    margin: 0 0 5px; 
    color: #777; 
}

