

/* animated location map */

#container {
    min-width: 100%;
    height: 600px;
}

@media (max-width: 750px) {
    #container {
        height: 300px;
    }
}

.animated-line {
    stroke-dasharray: 8;
    stroke-dashoffset: 10;
    animation: dash 5s linear infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 100;
    }

    to {
        stroke-dashoffset: 20;
    }
}

