 #mapContainer > .input-wrapper {
      position: absolute;
      display:inline-block;
      top: 10px;
      right: 50px;
      z-index: 1000;
      padding: 6px 10px;
      border-radius: 4px;
      border: 1px solid #ccc;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      height: 20px;
      margin-right:10px;
      background: white;
    }
    .input-wrapper > #searchBox { border: 0;  width: 220px; }
    #mapContainer > #burgerMenu {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 1000;
      background: white;
      border-radius: 4px;
      padding: 6px 10px;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      font-size: 18px;
    }
    #mapContainer > #filterPanel {
    position: absolute;
    top: 50px;
    right: 10px;
    z-index: 999;
    background: white;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: none;
    max-height: 400px;
    overflow-y: auto;
    width: 250px;
    display: none;
}
#filterPanel.open {
  display: block;
}
