#basicMap {
  height: 545px;
  min-height: 100%;
  min-width: 100%;
  display: block;
}

#map-wrapper {
  width: 100%;
  position: relative;
  padding-top: 10px;
  height: 610px;
}

#button-wrapper {
  position: absolute;
  top: 20px;
  left: 50px;
}

#zoomButton {
  height: 54px;
}

#results-map {
  height: 300px;
}

#catchmentMap {
  min-height: 300px;
  height: 80vh;
}

#loadSpinner {
  height: 100px;
  width: 100px;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  visibility: hidden;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-bottom: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Standalone Folium map page. */
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.folium-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
