.map-markers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    list-style-type: none;
    /* position: inline-block;
    width: 100%;
    height: 100%;
    top: 20px;
    right: 150px;
    list-style-type: none;   */
} 
.map {
    display: inline-block;
    margin: 0 auto;
    position: relative;
    width: 750px;
}
.map-marker {
    position: absolute; 
    cursor: help;
}
.map-marker .map-tooltip {
    position: absolute; 
    bottom: 25px;
    left: -50px;
    width: 125px;
    background-color: #606060;
    border-radius: 2px;
    padding: 2px 2px 2px 2px;
    display: none;
    font-size: 12px;
}
.map-marker:hover .map-tooltip {
    display: block;
}
.ring-container {
    position: relative;
}
.circle {
    width: 6px;
    height: 6px;
    background-color: #62bd19;
    border-radius: 50%;
    position: absolute;
    margin: 0.2rem 0rem 0rem 0.2rem;
}
.ringring {
    border: 3px solid #62bd19;
    -webkit-border-radius: 30px;
    height: 12px;
    width: 12px;
    -webkit-animation: pulsate 2s ease-out;
    -webkit-animation-iteration-count: infinite; 
    opacity: 0.0;
    position: absolute;
}
@keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
}