/* -------------------------------- 
Primary style
-------------------------------- */

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*cursor: none; /* Whilst taking screenshots, uncomment this line to hide the mouse cursor. */
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* -------------------------------- 
Main components 
-------------------------------- */

#google-container {
  position: relative;
  width: 100%;
  height: 70vh; /* DEFAULT: 200px; */
  background-color: #303030;
}

@media only screen and (min-width: 768px) {
  #google-container {
    /* height: 300px; DEFAULT! */
    height: 75vh;
  }
}

@media only screen and (min-width: 1170px) {
  #google-container {
    /* height: 600px; DEFAULT! */
    height: 75vh;
  }
}

#cd-google-map {
  position: relative;
}

#cd-zoom-in,
#cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #303030;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  background-image: url("https://codyhouse.co/demo/custom-google-map/img/cd-icon-controller.svg");
}

.no-touch #cd-zoom-in:hover,
.no-touch #cd-zoom-out:hover {
  background-color: #808080;
}

@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;
}
