.autocomplete-dropdown {
    position: absolute;
    z-index: 1000;
    width: 100%;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    display: none;
    max-height: 250px;
    overflow-y: auto;
}

.autocomplete-dropdown .dropdown-item {
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-dropdown .dropdown-item i {
    flex-shrink: 0;
    margin-right: 10px;
    color: #eee;
    transition: color 0.2s ease-in-out;
}

.autocomplete-dropdown .dropdown-item span {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

.autocomplete-dropdown .dropdown-item:hover i {
    color: var(--red);
}


#place-autocomplete-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin: 10px;
    padding: 5px;
    font-family: Roboto, sans-serif;
    /* font-size: large; */
    font-weight: bold;
    min-width: 240px;
}
#infowindow-content .title {
font-weight: bold;
}
  
#map #infowindow-content {
display: inline;
}

.gm-style-iw-chr{
    height: 30px;
}