﻿
.map {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom:20px;
    max-height:600px;
    border:1px solid black;
    
}

.storePopup {
    min-width: 150px;
}

    .storePopup .popupTitle {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        padding: 8px;
        height: 30px;
        background-color: #007faa;
        color: white;
        font-weight: bold;
    }

    .storePopup .popupSubTitle {
        font-size: 10px;
        line-height: 12px;
    }

    .storePopup .popupContent {
        font-size: 11px;
        line-height: 18px;
        padding: 8px;
    }

    .storePopup img {
        vertical-align: middle;
        height: 12px;
        margin-right: 5px;
    }

/* Adjust the layout of the page when the screen width is less than 800 pixels. */
@media screen and (max-width: 1000px) {

    #myMap {
        width: 90vw;
        height: 50vh;
        top: 0px;
        left: 0px;
    }

}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 204, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 50px rgba(0, 204, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 204, 255, 0);
    }
}
