html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}/* Always set the map height explicitly to define the size of the div
 * element that contains the map. */

#map {
  height: 100vh;
  width: 55%;
}

#map_container {
  height: 100vh;
  width: 100%;
  position: absolute;
  max-width: 1080px;
}

#location_info {
 font-family: 'Montserrat', sans-serif;
  position: absolute;
  height: 100%;
  background-color: white;
  right: 0;
  top: 0;
  width: 44.5%;
  z-index: 1;
  overflow-y: hidden;
  padding-left: .5%;
  padding-right: .5%;
}

.mapimg {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mapimg img {
  display: block;
}

h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
    padding: 1rem 0 0 0;
    text-align: center;
}

@media only screen and (max-width: 600px) {
  #map {
    height: 100%;
    width: 100%;
  }

  #map_container {
  height: 450px;
  width: 100%;
  position: absolute;
  padding: 0%;

}

  #location_info {
    position: absolute;
    height: 250px;
    background-color: white;
    right: 0;
    top: 450px;
    width: 99.5%;
    z-index: 1;
    overflow-y: hidden;
    padding-left: .5%;
    padding-right: .5%;
  }

  .mapimg {
    width: 40%;
    float: left;
    margin-left: .5%;
    margin-right: .5%;
  }
}

@media only screen and (max-width: 768px) {
  #map {
    height: 100%;
    width: 100%;
  }

  #map_container {
  height: 450px;
  width: 100%;
  position: absolute;
    padding: 0%;
}

  #location_info {
    position: absolute;
    height: 250px;
    background-color: white;
    right: 0;
    top: 450px;
    width: 99.5%;
    z-index: 1;
    overflow-y: hidden;
    padding-left: .5%;
    padding-right: .5%;
    margin-top: .5%;
  }

  .mapimg {
    width: 40%;
    float: left;
    margin-left: .5%;
    margin-right: .5%;
    max-width: 275px;
  }
}

