* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.main-container {
  padding: 10px 20px;
}

.map-container {
  display: none;
  position: relative;
  border: 1px solid #bbb;
}

#map-canvas {
  min-height: 600px;
}

.map-search, #map-content, .tt-dropdown-menu {
  position: absolute;
  z-index: 1;
  left: 10px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.map-search {
  /*display: flex;
  flex-direction: row;*/
  top: 10px;
  width: 360px;
  z-index: 100;
}

.map-search fieldset {
  /*flex: 1 1 auto;*/
  border: 0;
  padding: 0;
  margin: 0;
}

.map-search input[type=search] {
  margin-bottom: 0;
  height: 26px;
  font-size: 16px;
  width: 100%;
  padding: 4px 6px;
  border: 1px solid #bbb;
  border-radius: 3px 0 0 3px;
  width: 100%;
  float: left;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.twitter-typeahead {
  width: 80%;
  float: left;
}

.bold {
  font-weight: bold;
}

.map-search button {
  /*flex: 0 0 auto;*/
  width: 20%;
  float: left;
  display: inline-block;
  font-size: 90%;
  padding: 4px 6px;
  border: 0;
  margin: 0;
  background: #081aff;
  color: #fff;
  filter: none;
  border-radius: 0 3px 3px 0;
  box-shadow: none;
}

/*.twitter-typeahead, .tt-dropdown-menu {
  width: 100%;
}*/

.tt-suggestion p {
  margin: 0;
  padding: 4px 8px;
}

.tt-cursor {
  background: #ebf2fe;
}


#map-content {
  top: 50px;
  padding: 8px;
  width: 330px;
  display: none;
}

#map-content.active {
  display: block;
}

#map-content-close {
  position: absolute;
  top: 4px;
  right: 4px;
  color: #888;
  font-size: 20px;
  line-height: 10px;
}

#map-content h4, #map-content p {
  margin: 0 0 2px;
}

#map-content header {
  display: inline-block;
  width: 200px;
  min-height: 72px;
}
#map-content nav {
  display: inline-block;
  width: 100px;
  float: right;
  font-size: 10pt;
  border-left: 1px solid #ccc;
  margin-left: 4px;
  padding-left: 8px;
}
#map-content nav ul {
  margin: 0;
  padding: 0;
}
#map-content nav li {
  display: block;
  margin: 6px 0;
}
#map-content a {
  text-decoration: none;
  /*white-space: nowrap;*/
}

.link-phone a {
  color: #555;
}

.address {
  font-size: 11pt;
  color: #555;
}
.address [data-prop="address.street"] {
  display: block;
}
.address [data-prop="address.city"]:after {
  content: ",";
}

.media {
  margin-top: 12px;
  border-top: 1px solid #ccc;
  padding-top: 4px;
}
.media ul {
  margin: 0;
  padding: 0;
}
.media li, .media a {
  display: inline-block;
}
.media figure {
  position: relative;
  display: inline-block;
}
.media figcaption {
  display: none;
  position: absolute;
  left: 4px;
  bottom: 4px;
  color: #fff;
  font-size: 10pt;
}
.media img[src=""] {
  display: none;
}

.gmnoprint img {
  max-width: none;
}

.spinner {
  margin: 100px auto;
  width: 50px;
  height: 30px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  /*background-color: #333;*/
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect1 {
  background-color: rgb(46, 191, 230);
}

.spinner .rect2 {
  background-color: rgb(253, 179, 75);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  background-color: rgb(254, 99, 86);
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  background-color: rgb(140, 113, 236);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  background-color: rgb(133, 202, 84);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

@media (max-width: 679px) {
  #search-form {
    width: 80%;
  }
}