/**
 * @fileoverview hashtag ui component plugin.
 * @author takuyamotoshima@gmail.com (Takuya Motoshima)
 */
.hashtag-ui {
    list-style-type: none;
    padding: 0 5px 0 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    /*border: 1px solid #eee;*/
    cursor: text;
    font: normal 14px sans-serif;
    color: #555;
    background: #fff;
    line-height: 20px;
}
.hashtag-ui li{
    display: block;
    float: left;
    overflow: hidden;
    margin: 3px 0;
}
.hashtag-ui div {
    float: left;
    padding: 0 4px;
}
.hashtag-ui .placeholder {
    padding: 0 8px;
    color: #bbb;
}
.hashtag-ui .hashtag-ui-spacer {
    padding: 0;
    width: 8px;
    overflow: hidden;
    color: transparent;
    background: none;
}
.hashtag-ui input {
    vertical-align: inherit;
    border: 0;
    outline: none;
    padding: 0;
    margin: 0;
    height: auto;
    cursor: text;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
    box-shadow: none;
    background: none;
    color: #444;
    transition: none;
}
.hashtag-ui input:focus {
    border: 0 !important;
    box-shadow: none !important;
}
/* 元の入力エレメントを非表示にする。 */
.hashtag-ui-hidden-src {
    position: absolute !important;
    left: -99999px;
}
/* IE10の入力エレメントのクリアアイコンを非表示にする。 */
.hashtag-ui ::-ms-clear {
    display: none;
}
.hashtag-ui .hashtag-ui-tag {
    padding-left: 5px;
    color: #fff;
    background: #4f748e;
    /*color: #46799b;
    background: #e0eaf1;*/
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
    /*border-radius: 2px 0 0 2px;*/
}
.hashtag-ui .hashtag-ui-delete {
    background: #4f748e;
    /*background: #e0eaf1;*/
    cursor: pointer;
    border-radius: 0;
    /*border-radius: 0 2px 2px 0;*/
    padding-left: 3px;
    padding-right: 4px;
}
.hashtag-ui .hashtag-ui-delete i {
    line-height: 18px;
    display: inline-block;
}
.hashtag-ui .hashtag-ui-delete i:before {
    font-size: 16px;
    color: #fff;
    /*color: #8ba7ba;*/
    content: "\00D7";
    font-style: normal;
}
.hashtag-ui .hashtag-ui-delete:hover i:before {
    color: #d65454;
}
.hashtag-ui .hashtag-ui-tag.active+.hashtag-ui-delete,
.hashtag-ui .hashtag-ui-tag.active+.hashtag-ui-delete i {
    visibility: hidden; cursor: text;
}
.hashtag-ui .hashtag-ui-tag.active {
    background: none !important;
}
