/**
 * Common
 */

.field {
    position: relative;
}

/*.field input {
    width: 100%;
    color: #000000;
    height: 60px;    
    border: 0;
}*/

.field input:focus {
    outline: 0;
}
.autocompleter {
    width: 100%;
    background: #fff;
    position: absolute;
    top: 33px;
    left: 0;
    z-index: 100;
    max-height:250px;
    overflow-y:auto;
}

.autocompleter,
.autocompleter-hint {
    position: absolute;
}

.autocompleter-list {
    box-shadow: inset 0px 0px 1px rgba(0,0,0,0.5);
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*border:1px solid #ccc;*/
}
.autocompleter-item {
    padding: 6px 12px;
    color: #444444;
    cursor: pointer;
}

.autocompleter-item:hover {
    background: #70b3eb;
    color:#fff;
}

.autocompleter-item strong {
    color:#000 !important;
    background: #f9de8f;
    text-shadow: 0 1px 0 #ffffff;
}

.autocompleter-item span {
    color: #bbbbbb;
}

.autocompleter-hint {
    text-align: left;
    top: -37px;
    font-weight: 400;
    left: 0;
    width: 100%;
    padding: 12px 12px 12px 13px;
    display: none;
}

.autocompleter-hint span {
    color: transparent;
}

.autocompleter-hint-show {
    display: block;
}

.autocompleter-closed {
    display: none;
}
