.autocomplete {
    /*the container must be positioned relative:*/
    display: inline-block;
    position: relative;
    margin-left: -2.5px !important;
}

.autocomplete-items {
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    max-height: 200px;
    overflow: auto;
    /*position the autocomplete items to be the same width as the container:*/
    position: fixed;
    top: auto;
}

    .autocomplete-items div {
        padding: 4px;
        cursor: pointer;
    }

    .autocomplete-items.ssd-theme-light div {
        color: black;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items.ssd-theme-light div:hover {
            background-color: #e9e9e9;
        }

    .autocomplete-items.ssd-theme-light .even {
        background-color: #f4f4f4;
    }

    .autocomplete-items.ssd-theme-dark div {
        color: white;
        background-color: #697686;
        border-bottom: 1px solid #596676;
    }

        .autocomplete-items.ssd-theme-dark div:hover {
            background-color: #495666;
        }

    .autocomplete-items.ssd-theme-dark .even {
        background-color: #5f6c7c;
    }


.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}
