#mapid {
  height: 100%;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
}

/* Styling of the markers */

.leaflet-marker-icon {
  border: 1px solid #666;
  border-radius: 0.5rem;
}

/*Styling of the clustered markers */

.leaflet-marker-icon.leaflet-div-icon {
  overflow: hidden;
}

.leaflet-marker-icon.leaflet-div-icon .group-2,
.leaflet-marker-icon.leaflet-div-icon .group-3,
.leaflet-marker-icon.leaflet-div-icon .group-4 {
  display: flex;
  flex-wrap: wrap;
}

.leaflet-marker-icon.leaflet-div-icon .group-2 img,
.leaflet-marker-icon.leaflet-div-icon .group-3 img {
  height: 50px;
  object-fit: cover;
}

.leaflet-marker-icon.leaflet-div-icon .group-2 img {
  width: 25px;
}

.leaflet-marker-icon.leaflet-div-icon .group-3 img {
  width: calc(50px / 3);
}

.leaflet-marker-icon.leaflet-div-icon .group-4 img {
  height: 25px;
  width: 25px;
}

.leaflet-marker-icon.leaflet-div-icon .count {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  text-shadow: 0 0 5px black, 0 0 5px black;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Styling of the member popup */

.leaflet-popup-content-wrapper {
  border-radius: 0.5rem;
}

.leaflet-popup-content {
  margin: 1rem;
  line-height: 1;
}

.leaflet-container .leaflet-popup a.leaflet-popup-close-button {
  padding: 0;
  top: 0.25rem;
  right: 0.25rem;
  height: 1rem;
  width: 1rem;
}

/* Styling of the attribution links */
.leaflet-container .leaflet-control-attribution {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.9);
}
.leaflet-container .leaflet-control-attribution a {
  color: #6b4fbb;
}
.leaflet-container .leaflet-control-attribution a:hover,
.leaflet-container .leaflet-control-attribution a:focus {
  color: #4b3589;
}
