#MapHeading{
    display: block;
}

#mapDiv{
    width: 80%;
    height: 45vw;
    z-index: 0;
}

#map{
    width: 100%;
    height: 45vw;
    z-index: 0;
}

#mapLegend{
    display: flex;

    width: 80%;

    justify-content: space-between;
}

.LocationButton{
    min-width: 160px;

    width: 160px;

    margin: 5px;

    padding: 10px;

    outline: none;

    text-align: center;

    font-size: 18px;
    color: rgb(78, 78, 78);

    border: 1.5px solid lightgrey;
    border-radius: 3px;

    background-color: white;
    background-image: url("../icons/location.png");
    background-size: 20px;
    background-position: 2% 45%;
    background-repeat: no-repeat;

    box-shadow: inset 1px -1px 2px 1px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease-in-out;

    cursor: pointer;
}

.LocationButton:hover{
    box-shadow: inset 1px -1px 10px 1px rgba(77, 77, 77, 0.2);
}

@media screen and (max-width: 1024px) {
    #mapLegend{
        flex-wrap: wrap;
    }

    .LocationButton.backHome{
        width: 100%;
    }

    .LocationButton{
        width: 48%;
    }
}

@media screen and (max-width: 750px){
    #mapLegend{
        flex-direction: column;
    }

    .LocationButton{
        width: 100%;
    }
}