
/*==================================
= Google Map                       =
==================================*/
.map-section {
  height: 100px;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.2s ease-out;
          transition: height 0.2s ease-out;
}
.map-mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 4;
}
.map-mask .row {
  position: relative;
}
.map-mask .row > div {
  position: relative;
  top: 50%;
}
.map-opener {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -200px;
  width: 400px;
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  text-align: center;
  font-weight: 400;
}
.map-opener div {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.map-opener div:first-child {
  opacity: 1;
}
.map-opener div:nth-child(2) {
  margin-top: -50px;
  opacity: 0;
}
.map-opener i {  
  vertical-align: middle;
}
.map-opener i:before {
  display: inline;
}
.map-opened {
  height: 450px;
}
.map-opened .map-mask {
  height: 100px;
}
.map-opened .map-opener div:first-child {
  opacity: 0;
}
.map-opened .map-opener div:nth-child(2) {
  opacity: 1;
}
#google-map {
  position: relative;
}
#map-canvas {
  position: relative;
  height: 450px;
  cursor: -webkit-grab;
  cursor: grab;
}
#map-zoom-in,
#map-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-position: 1px 1px;
  background-image: url("../images/google-map-assets/map-icon-controller.svg");
}
#map-zoom-in {
  background-position: 50% 0;
  margin-top: 120px;
  margin-bottom: 1px;
}
#map-zoom-out {
  background-position: 50% -32px;
}
.gmap-popup {
  max-width: 204px;
  min-height: 150px;
}

