h1 {
    font-size: 24px;
}

h1, p {
    margin: 0;
}

.container {
    padding-top: 20px;
}

.map-container {
    position: relative;
}

.map {
    width: 100%;
    height: 100%;
    max-width: 1239px;
    /*max-height: 1100px;*/
}

.waypoint {
    width: 20px;
    height:20px;
    background-color: #800;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    display: none;

    animation-name: stretch;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.scanned-position {
    display: none;
    position: absolute;
    width: 80px;
    height: 100px;
}

.advancedAutoComplete.show + .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0px 16px;
}

.dropdown-menu a {
    color: black;
    text-decoration: none;
}

.dropdown-menu li.active {
    background-color: #007bff;
}

.dropdown-menu li.active a {
    color: #fff;
    text-decoration: none;
}

@keyframes stretch {
    0% {
        background-color: #800;
        transform: scale(1, 1);
    }

    100% {
        background-color: red;
        transform: scale(2, 2);
    }
}