html,
body {
  height: 100%;
  width: 100%;
  background: #191a1a;
  color: #d7d7d7;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Source Sans Pro', sans-serif;
}

/* Status icon, if the map is loading */

#status {
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 1.15rem;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#status a {
  color: inherit;
}

.loading:after {
  content: ' .';
  animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  40% {
    color: white;
    text-shadow: 0.25em 0 0 rgba(0, 0, 0, 0), 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  60% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 rgba(0, 0, 0, 0);
  }
  80%,
  100% {
    text-shadow: 0.25em 0 0 white, 0.5em 0 0 white;
  }
}

/* Popup style */

.mapboxgl-popup-content {
  color: black;
}

.member-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-location {
  font-size: 0.9rem;
}
