/************** map *****************/
html, body, #map {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

h1, h2, h3, h4, h5 {
  color: darkgreen;
}

fieldset {
  overflow-y: scroll;
  height: 100vh;
}

/****** leafelt legend ******/
.legend {
  line-height: 18px;
  color: #555;
  padding: 6px 8px;
  font: 14px/16px Arial, Helvetica, sans-serif;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.legend i {
  width: 18px;
  height: 18px;
  float: left;
  margin-right: 8px;
  opacity: 0.7;
}

/*
.legend i {
    width: 160px;
    height: 80px;
    float: right;
    clear: both;
    margin-left: 8px;
    margin-top: 8px;
    opacity: 0.7;
}
*/
/****** specify global spinner ******/
.spinner {
  /* display:none; */
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1000;
  border: 16px solid white;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

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

  100% {
    transform: rotate(360deg);
  }
}

/* Bootstrap overrides */
.tabs>.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: #fff;
  background-color: darkgreen;
}

.tabs {
  background-color: black;
}

.nav-item>a {
  color: gray;
}

/* Bootstrap Carousel -- put caption below image and not inline
/** Carousel Caption *below* image and not inline */
.carousel-caption {
  position: relative;
  left: 0;
  top: 0;
}

/* Carousel should use dots instead of fancy dashes for indicators */
.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/************************/
