#map-canvas{
    width: 100%;
    height: 500px;
    margin: 0px;
    display: block;
    border: 0px;
    background: #fff;
    color: #000;
}
#map_canvas iframe, 
#map_canvas object, 
#map_canvas embed { 
    width: 100%; 
}
@media (max-width: 991px){
    #map-canvas {
        height: 300px;
    }
}

.route-calculation-container{
    
}
.route-calculation-container .title{
    font-weight: 700;
    margin: 30px 0px 20px;
}
.route-calculation-container .form-group{
    margin: 0px 0px 30px;
}
.route-calculation-container .directions-container{
    display: none;
    overflow: auto;
    background: #fff;
}
#directions{
    background: #fff;
    margin-left: 1px;
}
.adp-directions{
    width: 100%;
}
.adp-placemark{
    margin: 0px !important;
}



.map-locations-layer{
    display: inline-block;
    margin-top: -80px;
    background: #fff;
    padding: 10px 20px 10px 0px;
    position: relative;
    z-index: 1;
}
.map-locations-layer .location{
    padding-left: 45px;
    font-size: 18px;
    line-height: 30px;
    margin: 0px;
    background-repeat: no-repeat;
    background-position: 0px 5px;
    background-image: url(../design/mapmarker-black-25.svg);
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}
.map-locations-layer .location:not(:first-child){
    margin-top: 10px;
}
.map-locations-layer .location.click{
    cursor: pointer;
}
.map-locations-layer .location.click:hover{
    color: #e95c0c;
}
.map-locations-layer .location.active{
    background-image: url(../design/mapmarker-orange-25.svg);
}
.map-locations-layer .location .name{
    font-weight: 700;	
}
.map-locations-layer .location .address{
    white-space: nowrap;
}
@media (max-width: 991px){
    .map-locations-layer{
        display: block;
        margin-top: 10px;
        padding: 10px 0px 10px 0px;
    }
    .map-locations-layer .location{
        padding-left: 40px;
        font-size: 14px;
        line-height: 22px;
    }
    .map-locations-layer .location .address{
        white-space: normal;
    }
}
