/* Always set the map height explicitly to define the size of the div
* element that contains the map. */

/* for the search bar */
#pac-input {
  width: 30vw;
  margin-top: 12px;
  border: none;
  box-shadow: 1px 1px 1px 1px rgba(177, 175, 175,.5);
  padding: 5px;
}
.container {
 display: flex;
 height: 80vh;
 width: 90vw;

 margin: 50px;
 min-height: 400px;
 text-align: left;

 background-color: #5a7db5;
 border-radius: 20px;

  color: white;

}
#map {
  /* height: 100%; */
  width: 50vw;
  float: right;
  margin: 10px;
  border-radius: 20px;
}
#markers {
  width: 180px;
  background-color: #97bbf4;
  margin: 10px;
  border-radius: 20px;
  padding: 20px;
}
#options {
  background-color: #97bbf4;
  flex-grow: 1;
  float: left;
  padding: 20px;
  margin: 10px;
  border-radius: 20px;
  min-width: 180px;
}
/* Optional: Makes the sample page fill the window. */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
label {
  font-size: 100%;
}
p {
  /* font-size: 100%; */
  text-align: left;
}
select {
  background-color: #97bbf4;
  border: 1px solid;
  color: white;

}
