/* Example tokeninput style #2: custom style */
ul.token-input-list-custom {
    overflow: hidden; 
    height: auto !important; 
    width: auto;
    margin-left: 0 !important;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: text;
    min-height: 32px;
    z-index: 999;
    margin: 0;
    padding: 2px;
    list-style-type: none;
    clear: left;
}

ul.token-input-list-custom li input {
    border: 0;
    width: 100px;
    padding: 3px 8px;
    background-color: white;
    margin: 2px 0;
}

li.token-input-token-custom {
    overflow: hidden; 
    height: auto !important; 
    height: 20px;
    margin: 3px;
    padding: 2px 4px;
    background-color: #eff2f7;
    color: #000;
    cursor: default;
    border: 1px solid #ccd5e4;
    font-size: 15px;
    border-radius: 1px;
    float: left;
    white-space: nowrap;
}

li.token-input-token-custom p {
    display: inline;
    padding: 0;
    margin: 0;
}

li.token-input-token-custom span {
    color: #777;
    margin-left: 5px;
    cursor: pointer;
}

li.token-input-selected-token-custom {
    background-color: #5670a6;
    border: 1px solid #3b5998;
    color: #fff;
}

li.token-input-input-token-custom {
    float: left;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

div.token-input-dropdown-custom {
    position: absolute;
    width: 400px;
    background-color: #fff;
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: default;
    z-index: 1;
}

div.token-input-dropdown-custom p {
    margin: 0;
    padding: 5px;
    font-weight: bold;
    color: #777;
}

div.token-input-dropdown-custom ul {
    margin: 0;
    padding: 0;
}

div.token-input-dropdown-custom ul li {
    background-color: #fff;
    padding: 3px;
    margin: 0;
    list-style-type: none;
}

div.token-input-dropdown-custom ul li.token-input-dropdown-item-custom {
    background-color: #fff;
}

div.token-input-dropdown-custom ul li.token-input-dropdown-item2-custom {
    background-color: #fff;
}

div.token-input-dropdown-custom ul li em {
    font-weight: bold;
    font-style: normal;
}

div.token-input-dropdown-custom ul li.token-input-selected-dropdown-item-custom {
    background-color: #eef7ff;
}