/* Example tokeninput style #2: Facebook style */
ul.token-input-list-sp {
    overflow: hidden;
    cursor: text;
    font-family: Verdana;
    min-height: 1px;
    z-index: 1;
    margin: 0;
    list-style-type: none;
    clear: left;

    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .1rem .1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .2rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

ul.token-input-list-sp li input {
    border: 0;
    width: 100px;
    /*padding: 3px 8px;*/
    background-color: white;
    margin: 2px 0;
    -webkit-appearance: caret;
}

li.token-input-token-sp {
    overflow: hidden;
    height: auto !important;
    min-height: 15px;
    margin: 3px;
    padding: 1px 8px;
    background-color: #eff2f7;
    color: #000;
    cursor: default;
    border: 1px solid #ccd5e4;
    font-size: 0.6rem;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    float: left;
    white-space: nowrap;
}

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

li.token-input-token-sp span {
    color: #a6b3cf;
    margin-left: 5px;
    font-weight: bold;
    cursor: pointer;
}

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

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

div.token-input-dropdown-sp {
    position: absolute;
    width: 500px;
    background-color: #fff;
    overflow: hidden;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    cursor: default;
    font-size: 0.8rem;
    font-family: Verdana;
    z-index: 9999;
}

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

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

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

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

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

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

div.token-input-dropdown-sp ul li.token-input-selected-dropdown-item-sp {
    background-color: #3b5998;
    color: #fff;
}