body {
    font-family: 'SegoeUI', 'Segoe UI';
    font-size: 14px;
}

.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}

.searchContainer {
    border: 1px;
    border-color: #666666;
    border-style: solid;
    height: 35px;
    max-width: 500px;
    min-width: 100px;
    display: flex;
}

.searchContainer-locked {
    border: 1px;
    border-color: #666666;
    border-style: solid;
    height: 35px;
    max-width: 500px;
    min-width: 100px;
    display: flex;
    background-color: #F4F4F4;
}

.searchIcon {
    border: 0px;
    width: 30px;
    height: 35px;
    background: url(../img/search.svg);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 7px;
}

.inputWrap {
    width: 100%;
    padding-left: 7px;
    padding-right: 0px;
    padding-top: 1px;
    padding-bottom: 1px;
}

    .inputWrap input {
        border: 0px;
        background-color: #ffffff;
        font-size: 16px;
    }

        .inputWrap input:focus:hover {
            border: 0px;
        }

        .inputWrap input[type=text] {
            background-color: #ffffff;
            width: 100%;
            padding: 0px;
            height: 100%;
        }

        .inputWrap input[type=submit] {
            background-color: DodgerBlue;
            color: #fff;
        }

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    z-index: 99;
    text-align: left;
    margin-top: 0px;
    font-family: 'SegoeUI', 'Segoe UI';
    color: rgb(0, 0, 0);
    min-width: 300px;
}

.autocomplete-item {
    background-color: #fff;
    padding: 8px;
    cursor: pointer;
}

.autocomplete-search {
    background-color: #fff;
    padding: 8px;
    color: rgb(166, 166, 166)
}

.autocomplete-item:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
    padding: 8px;
    cursor: pointer;
}


.list-footer-wrapper {
    padding-top: 8px;
    display: flex;
    background-color: #F4F4F4;
}

.list-footer-right {
    text-align: right;
    background-color: #F4F4F4;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 25px;
    height: 30px;
    margin-right: 8px;
    width: 50%;
}

.list-footer-left {
    text-align: left;
    background-color: #F4F4F4;
    height: 30px;
    margin-left: 8px;
    width: 50%;
    color: #A6A6A6;
}

.list-footer img {
    width: 25px;
}
