.auto-complete-box{
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    position: absolute;
    z-index: 100;
    left: 15px;
    right: 15px;
    list-style-type: none;
    overflow-y: auto;
    max-height: 210px;
    border-radius: 3px;    
    background: #fff;
}

.auto-complete-items{
	padding: 10px;
	width: 100%;
	cursor: pointer;
    color: #555555;
    transition: all 200ms ease-out;
    font-size: 14px;
}

.active-row{
	background-color: #ccc !important;
}

.auto-complete-items:hover{
	background-color: #efefef;
}