.places-predictions__wrapper {
    display: inline-block;
    position: relative;
}
  
.places-predictions {
    position: fixed;
    z-index: 9999;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
    font-family: Arial,sans-serif;
    z-index: 1000;
    border-radius: 0 0 2px 2px;
    overflow: hidden;
    height: unset !important;
}

.places-predictions__item {
    padding: 6px 8px;
    background-color: #fff;
    border-top: none;
    cursor: pointer;
    font-size: 14px;
}

.places-predictions__item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.places-predictions__item:hover,
.places-predictions__item.selected {
    background-color: #f5f5f5;
}


