.city-picker{
    position:relative;
    width:400px;
    font-family:Arial,sans-serif;
    display:inline-block;
}

#citySearch {
    box-sizing:border-box;
    padding: 0.5em;
    font-size: 33%;
    vertical-align: text-bottom;
    margin-bottom: .5em;
}

.city-results{
    display:none;
    position:absolute;
    background:#fff;
    border:1px solid #ccc;
    max-height:250px;
    overflow-y:auto;
    z-index:1000;
    font-size:33%;
}

.city-result{
    padding:8px;
    cursor:pointer;
}

.city-result:hover{
    background:#eee;
}

#selectedCity{
    margin-top:15px;
}
.city-result.selected{
    background:#dbeafe;
}