#map {
  position: relative;
}

#overlay {
  display: none;
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgb(0, 0, 0);
  opacity: 0;
  transition: opacity 1s
}

#overlay:hover {
  opacity: 0.5;
}

#messageScroll {
  color: white;
  mix-blend-mode: difference;
  display: table-cell;
  vertical-align: middle;
  font-size: x-large;
}

.custom-toggle {
  position: relative;
}

.custom-toggle .dropbtnPlan,
.custom-toggle .dropbtnSatellite {
  position: relative;
  background-color: rgb(255, 255, 255);
  color: black;
  padding: 10px;
  font-size: 12px;
  border: none;
  font-weight: normal
}

.custom-toggle .dropbtnPlanActive,
.custom-toggle .dropbtnSatelliteActive {
  position: relative;
  background-color: rgb(255, 255, 255);
  color: black;
  padding: 10px;
  font-size: 12px;
  border: none;
  font-weight: bold
}

.custom-toggle .dropbtnPlan:hover,
.custom-toggle .dropbtnPlanActive:hover,
.custom-toggle .dropbtnSatellite:hover,
.custom-toggle .dropbtnSatelliteActive:hover {
  background-color: rgb(240, 240, 240);
}

.custom-toggle .dropdown-content-plan {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  left: 0;
  z-index: 1;
}

.custom-toggle .dropdown-content-satellite {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  right: 0;
  z-index: 1;
}

.custom-toggle .dropbtnPlanActive:hover~.dropdown-content-plan {
  display: block;
}

.custom-toggle .dropdown-content-plan:hover {
  display: block;
}

.custom-toggle .dropbtnSatelliteActive:hover~.dropdown-content-satellite {
  display: block;
}

.custom-toggle .dropdown-content-satellite:hover {
  display: block;
}

#auto-complete-geocoder {
  position: relative;
}

.search__suggestions {
  display: none;
  list-style: none;
  position: absolute;
  left: 0;
  z-index: 1;
  background-color: white;
  height: auto;
  max-height: 600px;
  padding-inline-start: 10px;
}

.search__suggestion {
  margin: 0;
  padding: 8px 0px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background-color: rgb(255, 255, 255);
}

.search__suggestion_hover {
  margin: 0;
  padding: 8px 0px;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  background-color: rgb(200, 200, 200);
}

.search__suggestion_item1 {
  font-size: 0.8em;
  color: black;
}

.search__suggestion_item2 {
  font-size: 0.6em;
  color: grey;
}

.search__suggestion_item3 {
  font-size: 0.5em;
  color: black;
}

.search__suggestions--visible {
  display: block;
  margin-top: 0;
}

.esri-view-width-medium .esri-popup__main-container {
  max-width: 340px;
  width: auto;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .esri-view-width-medium .esri-popup__main-container {
    max-width: 340px;
    width: auto;
  }
  .esri-popup__header {
    display: block;
  }
  .esri-popup__header-title {
    display: table-cell;
    float: left;
  }
  .esri-popup__header-buttons {
    display: table-cell;
    float: right;
  }
}