﻿/* Example tokeninput style #1: Token vertical list*/
ul.token-input-list {
    overflow: hidden;
    height: 1%;
    width: 400px;
    border: 1px solid #999;
    cursor: text;
    font-size: 12px;
    font-family: Verdana, sans-serif;
    z-index: 999;
    margin: 0;
    padding: 0;
    background-color: #fff;
    list-style-type: none;
    clear: left;
}

    ul.token-input-list li {
        list-style-type: none;
    }

        ul.token-input-list li input {
            border: 0;
           /* width: 350px;
            padding: 3px 8px;
            background-color: white;*/
            -webkit-appearance: caret;
        }

ul.token-input-disabled,
ul.token-input-disabled li input {
    background-color: #E8E8E8;
}

    ul.token-input-disabled li.token-input-token {
        background-color: #D9E3CA;
        color: #7D7D7D;
    }

        ul.token-input-disabled li.token-input-token span {
            color: #CFCFCF;
            cursor: default;
        }

li.token-input-token {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    margin: 3px;
    padding: 3px 5px;
    background-color: #d0efa0;
    color: #000;
    font-weight: bold;
    cursor: default;
    display: block;
}

    li.token-input-token p {
        float: left;
        padding: 0;
        margin: 0;
    }

    li.token-input-token span {
        float: right;
        color: #777;
        cursor: pointer;
    }

li.token-input-selected-token {
    background-color: #08844e;
    color: #fff;
}

    li.token-input-selected-token span {
        color: #bbb;
    }

div.token-input-dropdown {
    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;
    font-size: 12px;
    font-family: Verdana, sans-serif;
    z-index: 1;
}

    div.token-input-dropdown p {
        margin: 0;
        padding: 5px;
        font-weight: bold;
        color: #777;
    }

    div.token-input-dropdown ul {
        margin: 0;
        padding: 0;
    }

        div.token-input-dropdown ul li {
            background-color: #fff;
            padding: 3px;
            list-style-type: none;
        }

            div.token-input-dropdown ul li.token-input-dropdown-item {
                background-color: #fafafa;
            }

            div.token-input-dropdown ul li.token-input-dropdown-item2 {
                background-color: #fff;
            }

            div.token-input-dropdown ul li em {
                font-weight: bold;
                font-style: normal;
            }

            div.token-input-dropdown ul li.token-input-selected-dropdown-item {
                background-color: #d0efa0;
            }

/* Example tokeninput style #2: Facebook style */
ul.token-input-list-facebook {
    overflow: hidden;
    height: auto !important;
    height: 1%;
    width: 400px;
    border: none;
    cursor: text;
    min-height: 1px;
    z-index: 999;
    margin: 0;
    background-color: transparent;
    list-style-type: none;
    clear: left;
    border: 1px solid #e8ebf1;
    padding: 0.5rem 1rem!important;
}

    ul.token-input-list-facebook li input {
        border: 0;
        width: 100px;
        padding: 6px 0;
        background-color: transparent;
        margin: 0;
        -webkit-appearance: caret;
        height:auto;
    }

li.token-input-token-facebook {
    overflow: hidden;
    cursor: default;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    float: left;
    white-space: nowrap;
    margin: 0 5px 5px 0;
    margin-right: 3px;
    background: #727cf5;
    border: 0;
    color: white;
    padding: 6px 14px;
    font-size: .8125rem;
    font-family: inherit;
    line-height: 1;
}

/*.token-input-highlighted-token-facebook, .token-input-delete-token-facebook {
    
}*/

.token-input-delete-token-facebook {
    
}

li.token-input-token-facebook p {
    display: inline;
    padding: 0;
    margin: 0;
}

li.token-input-token-facebook span {
    cursor: pointer;
    margin-left: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
}

li.token-input-selected-token-facebook {
    color: #fff;
}

li.token-input-input-token-facebook {
    float: left;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

div.token-input-dropdown-facebook {
    position: absolute;
    width: 270px;
    background-color: #fff;
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: default;
    font-size: 13px !important;
    line-height: 1.5 !important;
    z-index: 1;
}

    div.token-input-dropdown-facebook p {
        margin: 0;
        padding: 2px;
        font-weight: bold;
        color: #777;
    }

    div.token-input-dropdown-facebook ul {
        margin: 0;
        padding: 0;
    }

        div.token-input-dropdown-facebook ul li {
            background-color: #fff;
            padding: 3px;
            margin: 0;
            list-style-type: none;
        }

            div.token-input-dropdown-facebook ul li.token-input-dropdown-item-facebook {
                background-color: #fff;
            }

            div.token-input-dropdown-facebook ul li.token-input-dropdown-item2-facebook {
                background-color: #fff;
            }

            div.token-input-dropdown-facebook ul li em {
                font-weight: bold;
                font-style: normal;
            }

            div.token-input-dropdown-facebook ul li.token-input-selected-dropdown-item-facebook {
                background-color: #727cf5;
                color: #fff;
            }

/*---- Example tokeninput style #2: Facebook style ----*/