/* Google Maps printing error fixup
 * http://stackoverflow.com/questions/32790057/google-map-canvas-is-getting-blank-when-printing-ctrl-p
 */
@media print {
  img {
    max-width: none !important;
  }
}

html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-top: 50px;
  margin-bottom: 70px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  background-color: #f5f5f5;
}

.google-maps {
  min-height: 600px;
  height: 100%;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
