#gnav-area {
    /*z-index: 99999;*/
    z-index: 98;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
    width: 250px;
    /* border: 1px solid #d4d4d4; */
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    /*border-top: none;*/
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 110%;
    left: 0;
    right: 0;
    border-radius: 6px;
}

.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:nth-child(1) {
    border-radius: 6px 6px 0 0;
}

.autocomplete-items div:nth-last-child(1) {
    border-radius: 0 0 6px 6px;
}

.autocomplete-items div.break {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
}

.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.autocomplete-items span {
    float: right;
    display: inline-block;
    padding: 2px 5px;
}

.autocomplete-items span:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background: #ccc;
    color: #fff;
}

.autocomplete-items .history-head {
    background-color: #f7f7f7;
}

.autocomplete-items .history-head:hover {
    background-color: #f7f7f7;
}