.autoComplete_wrapper {
	position: relative;
	line-height: 16px;
	display: flex;
	width:100%;
}

.autoComplete_wrapper > input {
  height: 3rem;
  width: 370px;
  margin: 0;
  padding: 0 2rem 0 3.2rem;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-overflow: ellipsis;
}

.autoComplete_wrapper > ul {
	  position: absolute;
	  box-sizing: border-box;
	  left: 0;
	  right: 0;
		top:50px;
	  z-index: 100;
	  list-style: none;
    margin: 2px 0 0;
    font-size: 10px;
    text-align: left;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 6px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box;
    padding: 5px 0;
}

.autoComplete_wrapper > ul[hidden],
.autoComplete_wrapper > ul:empty {
  display: block;
  opacity: 0;
  transform: scale(0);
}

.autoComplete_wrapper > ul > li {
	border-bottom: 1px solid #f0f0f0;
    height: 40px;
    line-height: 40px;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    display: block;
    padding:0 12px;
}

.autoComplete_wrapper > ul > li:last-child {
	border:none;
}

.autoComplete_wrapper .tt-dataset-categories .as_header {
	border-top: 1px solid #F0F0F0;
}

.autoComplete_wrapper > ul > li .icon-Chevron-Right {
    position: absolute;
    bottom: 0;
    right: 6px;
    font-size: 24px;
}

.autoComplete_wrapper > ul > li .icon-Category {
    color: #dadada;
}

.autoComplete_wrapper .as_header {
	margin:0;
}

.autoComplete_wrapper li:hover, .autoComplete_wrapper li:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7;
}

.autoComplete_wrapper li .textword {
	padding-left:8px;
	white-space: normal;
    display: inline-block;
    line-height: 16px;
    padding-right:32px;
}

