/*
 * Autocompleter v0.1.2.1 - 2014-05-23
 * Simple, easy, customisable and with cache support.
 * http://github.com/ArtemFitiskin/jquery-autocompleter
 *
 * Copyright 2014 Artem Fitiskin; MIT Licensed
 */

.autocompleter {
    width: 5rem;
    box-shadow: 0px 0px 3px 0px
    rgba(0, 0, 0, 0.2);
}

.autocompleter-show {
    display: block;
}

.autocompleter,
.autocompleter-hint {
    position: absolute;
    z-index: 999;
}

.autocompleter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.autocompleter-item {
    cursor: pointer;
}

.autocompleter-item:hover {
    /* Hover State */
}

.autocompleter-item-selected {
    /* Selected State */
}

.autocompleter-item strong {
    /* Highlight Matches */
}
.autocompleter-item span{
    font-size: 0.10rem;
    white-space: nowrap;
    overflow: hidden;

}
.autocompleter-hint {
    width: 100%;
    display: none;

    /** Need absolute position over input text */
}

.autocompleter-hint-show {
    display: block;
}

.autocompleter-hint span {
    color: transparent;
}
