html,
body {
  font-family: Arial, sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.headerMapWrapper {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.header {
  display: flex;
  height: 50px;
  width: 100%;
  background: #baa89b;
  color: #524439;
  border: 1px solid #999;
  align-items: center; /* center vertically, does not affect horizontal */
  justify-content: flex-start; /* left */
  padding: 0 0 0 10px; /* top right bottom left */
  font-size: 1.6em;
}

input {
  font-size: 12px;
  box-sizing: border-box;
}

h1 {
  font-size: 22px;
  margin: 0 0 10px 0; /* top right bottom left */
  text-align: center;
}

.filterForm {
  width: 100%;
}

.filterForm input {
  vertical-align: middle;
  margin: 0 0 10px 0; /* top right bottom left */
  padding: 10px;
  background-color: #f1f1f1;
  border: 1px solid #ddd;
  float: left;
  width: 80%;
  font-size: 16px;
}

.filterForm button {
  vertical-align: middle;
  margin: 0;
  padding: 10px 10px 10px; /* top left & right bottom */
  background-color: #306144;
  border: 1px solid #ddd;
  color: white;
  float: left;
  width: 20%;
  font-size: 16px;
}

.filterForm button:hover{
  background-color: #00c7a9;
}

.filterForm::after {
  content: '';
  clear: both;
  display: table;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

#hideListings,
#showListings {
  width: 48%;
}

.mapContainer {
  position: relative;
  height: 100%;
  flex: 2 2 auto;
}

.map-canvas {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.optionsBox {
  /*background: #524439;*/
  color: #dfe0df;
  border: 1px solid #999;
  height: 100%;
  line-height: 35px;
  padding: 10px 10px 0 10px; /* top right bottom left */
  text-align: left;
  width: 340px;
  min-width: 280px;
  display: block;
}

.locationTitleList {
  display: block;
}

.menuBtn {
  cursor: pointer;
}

.locationTitle:hover {
  font-weight: bold;
  cursor: pointer;
  color: #00c7a9;
}

.locationTitleBold {
  font-weight: bold;
  color: #00c7a9;
}

.locationTitleHide {
  display: none;
}

.infowindow {
  align-content: center;
  align-items: center;
  font-weight: bold;
  color: #151515;
}

.infowindow h3 {
  color: #306144;
}

.bg-gradient-brown {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2c2c2c+0,524439+50,baa89b+100 */
  background: #2c2c2c; /* Old browsers */
  background: -moz-linear-gradient(45deg, #2c2c2c 0%, #524439 50%, #baa89b 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #2c2c2c 0%,#524439 50%,#baa89b 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #2c2c2c 0%,#524439 50%,#baa89b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c2c2c', endColorstr='#baa89b',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

  /* https://mycolor.space/gradient3?ori=to+right+top&hex=%232C2C2C&hex2=%23524439&hex3=%23BAA89B&submit=submit */
  background-image: linear-gradient(to right top, #2c2c2c, #323032, #3a3437, #43383a, #4b3c3a, #564641, #615049, #6b5b50, #7e6d62, #928074, #a69487, #baa89b);

}
