/* surrounding tag container */
.tag-editor {
        list-style-type: none;
    padding: 5px;
    margin: 0;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    cursor: text;
    font: normal 14px sans-serif;
    color: #555;
    background: #fff;
    /* line-height: 20px; */
    border-radius: 4px;
        max-height: 400px !important;
    overflow: auto;
}

/* core styles usually need no change */
.tag-editor li { display: block; float: left; overflow: hidden; margin: 3px 0; line-height: 20px }
.tag-editor div { float: left; padding: 2px 0px;padding-left: 8px !important;}
.tag-editor .placeholder { padding: 0 8px; color: #bbb; }
.tag-editor .tag-editor-spacer { padding: 0; width: 8px; overflow: hidden; color: transparent; background: none; }
.tag-editor input {
    vertical-align: inherit; border: 0 !important; outline: none; padding: 0 !important; margin: 0 !important; cursor: text;
    font-family: inherit; font-weight: inherit; font-size: inherit; font-style: inherit;
    box-shadow: none; background: none; color: #444; height: 22px; padding: 0 !important;
}
/* hide original input field or textarea visually to allow tab navigation */
.tag-editor-hidden-src {width: 1px !important;height: 1px !important;overflow: hidden;max-height: 1px !important;max-width: 1px;min-height: 1px !important;padding: 1px !important;margin: 0px !important;display: none !important; }
/* hide IE10 "clear field" X */
.tag-editor ::-ms-clear { display: none; }

/* tag style */
.tag-editor .tag-editor-tag {
    /*padding-left: 5px; color: #46799b; background: #e0eaf1; white-space: nowrap;*/
    padding-left: 5px; color: #f9f9f9; background: #555; white-space: nowrap;
    overflow: hidden; cursor: pointer; border-radius: 3px 0 0 3px; direction: ltr; text-align: left;
}

/* delete icon */
.tag-editor .tag-editor-delete { background: #555; cursor: pointer; border-radius: 0 3px 3px 0; padding-left: 3px; padding-right: 7px; }
.tag-editor .tag-editor-delete i { line-height: 18px; display: inline-block; }
.tag-editor .tag-editor-delete i:before { font-size: 16px; color: #f9f9f9; content: "×"; font-style: normal; }
/*.tag-editor .tag-editor-delete i:before { font-size: 16px; color: #8ba7ba; content: "x"; font-style: normal; }*/
.tag-editor .tag-editor-delete:hover i:before { color: #d65454; }
.tag-editor .tag-editor-tag.active+.tag-editor-delete, .tag-editor .tag-editor-tag.active+.tag-editor-delete i { visibility: hidden; cursor: text; }

.tag-editor .tag-editor-tag.active { background: none !important; }

/* jQuery UI autocomplete - code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css */
.ui-autocomplete { position: absolute; top: 0; left: 0; cursor: default; font-size: 14px; }
.ui-front { z-index: 9999; }
.ui-menu { list-style: none; padding: 1px; margin: 0; display: block; outline: none; }
.ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.4; min-height: 0; /* support: IE7 */ }
.ui-widget-content { border: 1px solid #bbb; background: #fff; color: #555; }
.ui-widget-content a { color: #46799b; }
.ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { background: #e0eaf1; }
.ui-helper-hidden-accessible { display: none; }
