/* -------------------------------- 

Main components 

-------------------------------- */

#google-container {
  position: relative;
  width: 100%;
  height: 200px;
  background-color: #0f0f0f;
}

@media only screen and (min-width: 767px) {
  #google-container {
    height: 300px;
  }
}
@media only screen and (min-width: 1170px) {
  #google-container {
    height: 400px;
  }
}

#cd-google-map {
  position: relative;
}
#cd-google-map address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  margin: 0;
  background-color: rgba(53, 121, 220, 0.7);
  /*background-color: rgba(243, 156, 18, 0.9);*/
  color: white;
  font-size: 15px;
}
@media only screen and (min-width: 768px) {
  #cd-google-map address {
    font-size: 15px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  #cd-google-map address {
    font-size: 12px;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: rgba(233,236,152, 0.9);
  /*background-color: rgba(243, 156, 18, 0.9);*/
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("/vendor/customGmaps/images/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  background-color: #e9ec98;
  /*background-color: #FCC32A;*/
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out {
    margin-left: 50px;
  }
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 10px;
  margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in {
    margin-top: 50px;
  }
}

#cd-zoom-out {
  background-position: 50% -32px;
}