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

Primary style

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


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

Main components

-------------------------------- */
.map-container {
    position: absolute;
  width:100%;
    display: inline-block;
  background-color: #333333;
    margin: 0;
     height: 300px;
}

.map{
    height: 300px;
}
@media only screen and (min-width: 830) {
  .map-container {
    height: 400px;
  }
    .map{
          height: 400px;
    }
}
@media only screen and (min-width: 1170px) {
  .map-container {
    height: 500px;
  }
    .map{
          height: 500px;
    }
}

#location {

}
#location address {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1em 1em;
  background-color: #333;
  color: white;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media only screen and (min-width: 768px) {
  #location address {
    font-size: 15px;
    font-size: 0.9375rem;
    text-align: center;
  }
}

#cd-zoom-in, #cd-zoom-out, #cd-get-geo {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #313131;
  background-repeat: no-repeat;
}
#cd-zoom-in, #cd-zoom-out{
  background-size: 32px 64px;
  background-image: url("../imgs/cd-icon-controller.svg");
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover, .no-touch #cd-get-geo:hover {
  background-color:#222 ;
}
@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out, #cd-get-geo {
    margin-left: 50px;
  }
}

#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 0px;
  margin-bottom: 1px;
}
#cd-get-geo{
     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;
}
