#google-container {
    position: absolute;
    top: 70px;
    bottom: 0px;
    left: 0;
    right: 0px;
    z-index: 0;
}
#cd-google-map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
#close-map{
    position: fixed;
    height: 50px;
    width: 50px;
    top: 114px;
    left: 50px;
    text-align: center;
    background: #4a4a4a;
}
#close-map .fa{
    text-align: center;
    color: #fff;
    font-size: 29px;
    font-weight: 300;
    line-height: 1.64;
}

@media screen and (max-width: 992px){
    #close-map{
        top: 84px;
        left: 10px;
    }
}

#cd-zoom-in, #cd-zoom-out {
  height: 50px;
  width: 50px;
  cursor: pointer;
  margin-left: 10px;
  background-color: #ffa500;
  background-repeat: no-repeat;
  background-size: 50px 100px;
  background-image: url("../img/cd-icon-controller.svg");
}
#cd-zoom-out {
  background-position: 50% -50px;
}
#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 70px;
  margin-bottom: 6px;
}
.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  background-color: #ffa500;
}
@media only screen and (min-width: 992px) {
    #cd-zoom-in {
        margin-top: 100px;
    }
    #cd-zoom-in, #cd-zoom-out {
        margin-left: 50px;
    }
}

/* MAP LEGEND */
#map-legend{
    position: absolute;
    bottom: 50px;
    right: 50px;
    max-width: 250px;
    background: #fff;
    box-shadow: 0px 0px 12px rgba(0,0,0,0.15);
    
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
#map-legend h2{
    padding: 20px 20px 6px;
    color: #e3530d;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 700;
}
#map-legend p{
    padding: 0px 20px 20px;
    font-size: 15px;
    line-height: 1.4;
}
#map-legend ul{
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
#map-legend ul li{
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid rgba(0,0,0,0.05);
}
#map-legend ul li span{
    float: left;
    margin: 7px 12px 0 0;
    width: 12px;
    height: 12px;
    
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}


/* POPUP CONTENT */
#popup-content{
    margin: 0;
    padding: 0;
}
#popup-content .wrap{
    margin: 0;
    padding: 15px;
}
#popup-content .wrap h2{
    margin: 0;
    padding: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2a2a2a;
}
#popup-content .wrap p{
    margin: 0;
    padding: 0 0 10px;
    font-size: 14px
}
#popup-content .wrap a.explore-more{
    display: inline-block;
    margin: 0;
    padding: 6px 12px;
    background: #ffa500;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    transition: all 0.25s;
}
#popup-content .wrap a.explore-more:hover{
    background: #4a4a4a;
}
#popup-content .wrap a .fa{
    float: right;
    margin: 4px 0 0 6px;
    font-size: 12px;
}

@media screen and (max-width: 992px){
    #map-legend{
        display: none;
    }
}