#container {
  display: flex;
  height: 60vh;
  transition: all 0.3s ease;
  border-radius:8px;
  overflow: hidden;
  position: relative;
}

#sidebar {
  width: 0;
  padding: 0;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-right: 1px solid #ccc;
  overflow:auto;
}

#sidebar.visible {
  width: 30%;
  padding: 10px;
}

#map {
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
}

#toggleSidebarBtn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: white;
  border: 1px solid #000000;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
}
#toggleSidebarBtn span.lpi-burger {
  font-size:26px;
}

.filter-group {
  transition: all 0.3s ease;
  position: absolute;
  z-index: 1;
  margin-bottom: 20px;
  top:0;
  left:0;
  width: 0;
  overflow: hidden;
}

.filter-group input {
  width:100%;
  padding: 10px;
  font-size: 20px;
  border: none;
}
.visible .filter-group{
  width: 30%;
}
#agencyList{
  margin-top: 50px;
}
.agency-item {
  cursor: pointer;
  margin-bottom: 8px;
  padding: 5px;
  border-bottom: 1px solid #eee;
}

.agency-item:hover {
  background-color: #ffffff;
}

.mapboxgl-popup .mapboxgl-popup-content{
  padding:15px;
  border-radius: 8px;
  border-bottom: 4px solid #003da5;
}
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-content{
  border-bottom:0;
  border-top: 4px solid #003da5;
}
.container-popupmaps{
  display:flex;
  font-size:14px;
}
.container-popupmaps img{
  margin-right:15px;
  display:block;
  width:80px;
  border-radius: 50%;
}