#main-map {
    min-height: 500px;
    background: #f1f1f1;
}

.container-map {
    position: relative;
    overflow:hidden;
}


  
.leaflet-sidebar {
    position: absolute;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10;
    top:0;
}
  
  .leaflet-sidebar h3 {
      font-size: 1.1rem;
      font-family: 'Montserrat';
      font-weight: 700;
  }
  
  .leaflet-sidebar.left {
    left: -500px;
    transition: left 0.5s, width 0.5s;
    padding-right: 0;
  }
  .leaflet-sidebar.left.visible {
    left: 0;
  }
  .leaflet-sidebar.right {
    right: -500px;
    transition: right 0.5s, width 0.5s;
    padding-left: 0;
  }
  .leaflet-sidebar.right.visible {
    right: 0;
  }
  .leaflet-sidebar > .leaflet-control {
    height: 100%;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.1em;
    background: white;
    box-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
  
  }
  .leaflet-touch .leaflet-sidebar > .leaflet-control {
    box-shadow: none;
    background-clip: padding-box;
  }
  @media (max-width: 767px) {
    .leaflet-sidebar {
      width: 100%;
      padding: 0;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
      left: 100%;
    }
    .leaflet-sidebar.right.visible ~ .leaflet-right {
      right: 100%;
    }
    .leaflet-sidebar.left {
      left: -100%;
    }
    .leaflet-sidebar.left.visible {
      left: 0;
    }
    .leaflet-sidebar.right {
      right: -100%;
    }
    .leaflet-sidebar.right.visible {
      right: 0;
    }
    .leaflet-sidebar > .leaflet-control {
      box-shadow: none;
      -webkit-border-radius: 0;
      border-radius: 0;
    }
    .leaflet-touch .leaflet-sidebar > .leaflet-control {
      border: 0;
    }
  }
  @media (min-width: 768px) and (max-width: 991px) {
    .leaflet-sidebar {
      width: 305px;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
      left: 305px;
    }
    .leaflet-sidebar.right.visible ~ .leaflet-right {
      right: 305px;
    }
  }
  @media (min-width: 992px) and (max-width: 1199px) {
    .leaflet-sidebar {
      width: 390px;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
      left: 390px;
    }
    .leaflet-sidebar.right.visible ~ .leaflet-right {
      right: 390px;
    }
  }
  @media (min-width: 1200px) {
    .leaflet-sidebar {
      width: 460px;
    }
    .leaflet-sidebar.left.visible ~ .leaflet-left {
      left: 460px;
    }
    .leaflet-sidebar.right.visible ~ .leaflet-right {
      right: 460px;
    }
  }
  .leaflet-sidebar  .leaflet-control + .close {
    position: absolute;
    right: 20px;
    top: 0;
    width: 31px;
    height: 31px;
    color: #fff;
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    background: #82071A;
    -webkit-border-radius: 0;
    border-radius: 0;
    cursor: pointer;
    z-index: 1000;
    font-size: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .leaflet-sidebar  .leaflet-control + .close:hover {
    color: #fff;
    background: #222;
  }
  
  .leaflet-left {
    transition: left 0.5s;
  }
  
  .leaflet-right {
    transition: right 0.5s;
  }
  
  body > #sidebar {
    display: none;
  }
  
  .miniature {
      min-height:150px;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      
  }
  
  #data-map > * {
      padding: 2rem;
  }
  
  #data-map h2 {
      margin-top: 1.5rem;
  }
  
  #data-map h3 {
      margin-bottom: 0.5rem;
  }
  
  .leaflet-sidebar h2 {
      padding-top: 1rem;
      font-size: 28px;
  }
  #data-map .btn {
      color: #fff !important;
      background-color: #02634d;
      padding: 15px 25px;
      font-family: 'Montserrat';
      font-size: 16px;
      margin-top: 20px
  }