html * {
  outline: none;
  font-family: Arial, Helvetica, sans-serif;
}

body,
#viewDiv {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

.esri-view {
  outline: none !important;
}

#map-description {
  position: absolute;
  font-size: 0.65rem;
  align-items: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 5px;
  bottom: 35px;
  right: 20px;
  width: 180px;
}

#map-description img {
  width: 12px;
  margin-right: 5px;
}

#map-description h2,
p {
  margin: 5px 0 0 2px;
}

#resetViewBtn {
  padding: 5px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding-left: 5px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  border: none;
  transition: 0.3s;
}

#resetViewBtn:hover {
  text-shadow: 0 0 0.2em white;
}

#setViewContainer {
  position: absolute;
  bottom: 20px;
  color: white;
  text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.2em black;
  padding: 10px;
  border-radius: 5px;
}

#setViewContainer * {
  margin-top: 5px;
}

#setViewContainer label {
  display: block;
}

#setViewContainer select {
  background-color: rgb(0, 0, 0, 0.5);
  padding: 3px 0;
  border-radius: 5px;
  margin: 0px;
  color: white;
}

#setViewContainer option {
  background-color: rgb(50, 50, 50);
}

#basemapSelect {
  position: absolute;
  color: white;
  top: 20px;
  right: 20px;
  width: fit-content;
}

#basemapSelect span {
  text-shadow: 1px 1px 2px black, 0 0 1em black, 0 0 0.2em black;
}

#basemapSelect select {
  background-color: rgb(0, 0, 0, 0.5);
  padding: 10px;
  margin-left: 5px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

#basemapSelect option {
  background-color: rgb(50, 50, 50);
  cursor: pointer;
}

#cameraInfo {
  position: absolute;
  bottom: 70px;
  left: 10px;
  padding: 8px;
  z-index: 99;
  background-color: rgb(0, 0, 0, 0.5);
  border-radius: 5px;
  margin: 0px;
  color: white;
  font-size: .9rem;
}

#locationInfo {
  position: absolute;
  bottom: 30px;
  right: 20px;
  padding: 8px;
  background-color: rgb(0, 0, 0, 0.5);
  border-radius: 5px;
  margin: 0px;
  color: white;
  font-size: .9rem;
  width: 170px;
}

#locationImg {
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1200px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content, #caption {  
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform: scale(0.1)} 
  to {transform: scale(1)}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

#locationImg:hover {opacity: 0.7;}

@media only screen and (max-width: 680px) {
  #map-description {
    bottom: 110px;
  }
  #basemapSelect span {
    display: block;
  }
  #basemapSelect select {
    margin-top: 10px;
    margin-left: 0px;
  }
}
