/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */
#map {
  margin: auto;
  margin-top: 30px;
  height: 400px;
  width: 600px;
}
/* Optional: Makes the sample page fill the window. */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
#floating-panel {
  margin: auto;
  margin-top: 10px;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: 'Roboto','sans-serif';
  line-height: 30px;
  padding-left: 10px;
  width: 560px;
}
#floating-panel #address {
  min-width: 20em;
}
#results-panel {
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  z-index: 5;
  background-color: #fff;
  padding: 5px;
  border: 1px solid #999;
  text-align: center;
  font-family: 'Roboto','sans-serif';
  line-height: 30px;
  padding-left: 10px;
  width: 560px;
  /*display: none;*/
}
#results-panel > span {
  display: block;
  text-align: left;
  position: relative;
}
span.address, span.postcode {
  left: 80px;
  position: absolute;
}




/* The alert message box */
.alert {
   padding: 20px;
   background-color: #2196F3;
   color: white;
   margin-bottom: 15px;
}

/* The close button */
.closebtn {
   margin-left: 15px;
   color: white;
   font-weight: bold;
   float: right;
   font-size: 22px;
   line-height: 20px;
   cursor: pointer;
   transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
   color: black;
}
