/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.elm.google-maps img {
  max-width: none;
  max-height: none;
}

.map_container {
  position: relative;
}

#gmap-loading {
  background-color: #fff;
  color: #434a54;
  margin: 0px auto;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 300px;
  height: 105px;
  margin-left: -150px;
  text-align: center;
  padding-top: 16px;
  font-size: 27px;
  font-weight: 300;
  border-radius: 4px;
  opacity: 0.95;
}

#listing_loader_maps {
  width: 100%;
  float: left;
  height: 81px;
  text-align: center;
  padding-top: 35px;
  display: none;
}
#listing_loader_maps.map_loader {
  display: block;
  margin-top: -27px !important;
}

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

#gmap-loading .spinner{
  margin: 5px auto;
}

.spinner > div {
  background-color: #434a54;
  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 .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -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);
  }
}
