.autocompleter {
    width: 84%;
    left: 82px;
    top: 40px;
    
    /*transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -webkit-transform-origin: 0 0;*/
    background: #fff;
    transform-origin: 0 0;
    /*transition: all 100ms ease 100ms;*/
    z-index: 100;
    overflow: auto;
    max-height: 410px;
 
   
}
.ny_search .autocompleter {
    width: 87%;
    left: 82px;
    top: 54px;
    background: #fff;
    transform-origin: 0 0;
    /* transition: all 100ms ease 100ms; */
    z-index: 100;
    overflow: auto;
    max-height: 410px;
}

.autocompleter-closed {
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -webkit-transform-origin: 0 0;
}

.isearchbox .autocompleter {
    width: 100%;
    top: 40px;
    /*transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -webkit-transform-origin: 0 0;*/
    background: #fff;
    transform-origin: 0 0;
    /*transition: all 100ms ease 100ms;*/
    z-index: 100;
    overflow: auto;
    max-height: 410px;
    /*border: 1px solid #e8e8e8;*/
    -webkit-box-shadow: 0 3px 7px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 0 3px 7px 0 rgba(0,0,0,0.2);
    -ms-box-shadow: 0 3px 7px 0 rgba(0,0,0,0.2);
    -o-box-shadow: 0 3px 7px 0 rgba(0,0,0,0.2);
    box-shadow: 0 3px 7px 0 rgba(0,0,0,0.2);
}


.autocompleter-show {
    display: block;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
}

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

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

.autocompleter-item {
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    font-size: 14px;
    height: 100%;
    padding: 10px 15px 10px 15px;
    vertical-align: middle;
    width: 100%;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

    .autocompleter-item:hover {
        /* Hover State */
        background: #f4f7f9;
    }

.autocompleter-item-selected {
    /* Selected State */
    background:#EEEEEE;
}

.autocompleter-item strong {
    /* Highlight Matches */
    color:red;
}

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

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

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

.autocompleter-hint span {
    color: transparent;
}
.autocompleter-head {
    background: #f6f8f9;
    color: #849aae;
    line-height: 40px;
    height: 40px;
    border-bottom: 1px solid #f5f4f4;
    padding-left: 15px;
}
.autocompleter-empty-item {
    color:red;
}
