﻿.mbd-autocomplete {
    position: relative;
}

    .mbd-autocomplete .mbd-auto-items {
        position: absolute;
        left: 0;
        top: 35px;
        width: 100%;
        background-color: #fff;
        z-index: 999;
        border: solid 1px #ccc;
        padding: 0;
        margin: 0;
        box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
        list-style: none;
        max-height: 150px;
        overflow: auto;
    }

        .mbd-autocomplete .mbd-auto-items > li {
            padding: 8px 10px;
            border-bottom: solid 1px #eee;
        }

            .mbd-autocomplete .mbd-auto-items > li:hover {
                background-color: #eee;
                cursor: pointer;
            }


    .mbd-autocomplete .mbd-auto-selected {
        font-weight: bold;
    }
