.g-autocomplete-container {
    position: relative;     
}

.g-autocomplete-option-container{
    position: absolute;
    background-color: rgb(253, 253, 253);
    width: 100%;
    top: 70px;
    border-radius: 5px;
    border-color: rgb(226, 226, 226);
    border-width: 1px;
    border-style: solid;
    max-height: 250px;
    overflow-y: auto;
    z-index: 10;
}

.g-autocomplete-option{
    padding: 5px;
    cursor: pointer;
}

.g-autocomplete-option.selected{
    background-color: rgb(231, 231, 231);
}

.g-autocomplete-option:hover{
    background-color: rgb(231, 231, 231);
}