#cd-google-map {
    position: absolute;
    display: block;
    top: 80px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

/* GOOGLE CONTAINER */
#google-container {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}
@media screen and (max-width: 992px){
    #cd-google-map{
        top: 60px;
    }
}

@media print{
    #google-container{
        display: none;
    }
}

/* DIRECTIONS CONTAINER */
#directions-map {
    position: absolute;
    display: block;
    top: 40px;
    bottom: -50px;
    left: 90px;
    right: 80px;
    background-color: #ededed;
    -ms-transform: rotate(3.5deg); /* IE 9 */
    -webkit-transform: rotate(3.5deg); /* Safari */
    transform: rotate(3.5deg);
    z-index: 1;
}
@media only screen and (max-width: 992px) {
    #directions-map {
        bottom: -50px;
        left: 40px;
        right: 40px;
    }  
}
@media only screen and (max-width: 768px) {
    #directions-map {
        top: 20px;
        bottom: -30px;
        left: 40px;
        right: 35px;
    }  
}