/**
 * Simplecomplete
 */

.autocompleter {
    width: 250%;
    background: white;
    position: absolute;
    top: 34px;
    left: -20%;
    z-index: 1001;
}

.autocompleter,
.autocompleter-hint {
    position: absolute;
}

.autocompleter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.autocompleter-item-selected {
    background: #ffffff;
}

.autocompleter-item {
    padding: 6px 12px;
    color: #444444;
    height: 58px;
    font-size: 14px;
    clear:both;
    border: 1px solid white;
    cursor: pointer;
}
.autocompleter-item:hover {
    border-bottom: 1px solid #ECE6E6;
    border-top: 1px solid #ECE6E6;
}
.autocompleter-item .preview {
    float: left;
    height: 57px;
    width: 57px;
    text-align: center;
}
.autocompleter-item .preview img {
    max-height: 80%;
}
.autocompleter-item .price {
    color: #999999;
}
.autocompleter-item span {
    color: #000;
}
.autocompleter-hint {
    color: #ccc;
    text-align: left;
    top: -56px;
    font-weight: 400;
    left: 0;
    width: 100%;
    padding: 12px 12px 12px 13px;
    font-size: 24px;
    display: none;
}

.autocompleter-hint span {
    color: transparent;
}

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

.autocompleter-closed {
    display: none;
}