.fuse-container {
    box-sizing: border-box;
    margin: 0;
    position: relative;
    vertical-align: middle; 
}

.fuse-dropdown {
	background-color: white;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	position: absolute;
    max-height: 200px;
    overflow-y: auto;
	width: 100%;
	z-index: 1051; 
    display:none
}

.fuse-dropdown.active {
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    border-color: #66afe9;
    margin-top: -1px;
}

.fuse-result-groups,
.fuse-result-options {
  list-style: none;
  margin: 0;
  padding: 0; 
}

.fuse-item-group > span{
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.85rem;
    white-space: nowrap;
    font-weight: 600 !important;
    text-transform: uppercase;
    color:#6c757d !important;
}

.fuse-item {
    padding: 6px 32px !important;
}
.fuse-item:hover,
.fuse-item.active {
	background-color: #337ab7;
  	color: white;
	cursor: pointer;
}