/*!
 * Completer v0.1.3
 * https://github.com/fengyuanchen/completer
 *
 * Copyright (c) 2014-2016 Fengyuan Chen
 * Released under the MIT license
 *
 * Date: 2016-06-13T12:43:37.946Z
 */

.completer-container {
    font-family: inherit;
    font-size: 14px;
    line-height: normal;

    position: absolute;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    list-style: none;

    min-height: 150px;

    border: 1px solid #ccc;
    border-bottom-color: #39f;
    background-color: #fff;

    z-index: 999999999 !important;

    max-height: 50vh;
    overflow-y: auto;
}

.completer-container li {
    overflow: hidden;

    margin: 0;
    padding: .5em .8em;

    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;

    border-bottom: 1px solid #eee;
    background-color: #fff;
}

.completer-container li a{
    display: block;
}

.completer-container li a >div{
    width: 100%;
}

.completer-container .completer-selected,
.completer-container li:hover {
    border-left: 1px solid #39f;
    background-color: #eee;
}

.remove-autocomplete-value {
    cursor: pointer;
}