#map {
    height: 100vh;
}

#area-buscar-rota {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


#area-buscar-rota .area {
    background-color: #fff;
    width: 50%;
    height: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#area-buscar-rota .area button {
    font-weight: bold;
    text-transform: uppercase;
    font-weight: bold;
    min-width: 200px;
}

#btn-iniciar.active {
    display: inline-block;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;

}

.leaflet-routing-add-waypoint {
    display: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.leaflet-routing-container {
    display: none;
}

.opcoes-ponto{
    width: 100%;
    border: 1px solid #ccc;
    height: 150px;
    margin-top: 5px;
    overflow-y: scroll;
    display: none;
}
.opcoes-ponto.active{
    display: block;
}
.opcoes-ponto .item{
    width: 100%;
    padding: 5px;
    transition: all .3s;
    cursor: pointer;
}
.opcoes-ponto .item:hover{
    background-color: #f7f7f7;
}