/**
 * Simplecomplete
 */

.autocompleter {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 100;
}

.autocompleter,
.autocompleter-hint {
    position: absolute;
}

.autocompleter-list {
    box-shadow: inset 0px 0px 6px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.autocompleter-item-selected {
    background: #ffffff;
}

.autocompleter-item {
    padding: 6px 12px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 0px;
    position: relative;
}

.autocompleter-item:hover {
    color: #333;
}
.autocompleter-item:hover:before{
	content: '';
	width: 3px;
	height: 34px;
	background-color: #f6a900;
	position: absolute;
	top: 0px;
	left: 0px;
}

.autocompleter-item strong {
	font-weight:normal
    /*background: #f9de8f;
    text-shadow: 0 1px 0 #ffffff;*/
}

.autocompleter-item span {
    color: #bbbbbb;
}

.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;
}
