.rouvenfo-combobox, .rouvenfo-typeahead {
    padding-left: 10px;
    border: 1px solid #ddd;
    background: white;
    width: 200px;
    display: inline-block;
    height: 30px;
    line-height: 28px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 3px;
    font-size: 13px;
    position: absolute;
    
    i{
        cursor: pointer;
        float: right;
        padding-right: 10px;
        line-height: inherit;
    }
}

.rouvenfo-typeahead{
    line-height: 27px;
}

.rouvenfo-combobox-focused, .rouvenfo-typeahead-focused{
    border: 2px solid #444;
}

.rouvenfo-combobox-list, .rouvenfo-typeahead-list{
    display: none;
    position:absolute;
    border: 1px solid #444;
    min-width: 200px;
    font-size: 12px;
    background: #f6fafd;
    color: #444;
    border-radius: 3px;
    z-index: 99999;
    box-shadow: 2px 2px 2px #194569;
    max-height: 330px;
    overflow-y: scroll;
}

.rouvenfo-combobox-list-item, .rouvenfo-typeahead-list-item{
    height: 33px;
    line-height: 33px;
    padding-left: 20px;
    cursor: pointer;
    overflow: hidden;
    padding-right: 10px;
    
    &:hover{
        background-color: #194569;
        color: #f8f8f8;
    }
    
    &.active{
        font-weight: bold;
    }
}