.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}

.json-tag-editor-spacer::selection {
    background: transparent; /* WebKit/Blink Browsers */
}
.json-tag-editor-spacer::-moz-selection {
    background: transparent; /* Gecko Browsers */
}

/* surrounding tag container */
.json-tag-editor {
    list-style-type: none;
    overflow: hidden;
    cursor: text;
    color: #555;
    background: #fff !important;
    height: 2.4375rem;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    margin: 0;
    box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
}

/* core styles usually need no change */
.json-tag-editor li {
    display: block;
    float: left;
    overflow: hidden;
    border: none !important;
    margin: -2px 0 0 0;
}

.json-tag-editor div {
    float: left;
}

.json-tag-editor .placeholder {
    color: #bbb;
}

.json-tag-editor .json-tag-editor-spacer {
    display:none;
}

.json-tag-editor input {
    border: 0 !important;
    margin: -6px 0 0 0;
    padding: 0;
    box-shadow: none !important;
}

/* hide original input field or textarea visually to allow tab navigation */
.json-tag-editor-hidden-src {
    position: absolute !important;
    left: -99999px;
}

/* hide IE10 "clear field" X */
.json-tag-editor ::-ms-clear {
    display: none;
}

/* tag style */
.json-tag-editor .json-tag-editor-tag {
    padding-left: 5px;
    color: #46799b;
    background: #e0eaf1;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px 0 0 2px;
}

/* delete icon */
.json-tag-editor .json-tag-editor-delete {
    background: #e0eaf1;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    padding-left: 3px;
    padding-right: 4px;
    margin-right: 4px;
}

.json-tag-editor .json-tag-editor-delete i {
    display: inline-block;
}

.json-tag-editor .json-tag-editor-delete i:before {
    /*font-size: 16px;*/
    color: #8ba7ba;
    content: "×";
    font-style: normal;
}

.json-tag-editor .json-tag-editor-delete:hover i:before {
    color: #d65454;
}

.json-tag-editor .json-tag-editor-tag.active+.json-tag-editor-delete, .json-tag-editor .json-tag-editor-tag.active+.json-tag-editor-delete i {
    visibility: hidden;
    cursor: text;
}

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

.ui-autocomplete {
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.ui-autocomplete li {
    font-size: 85%;
}

.ui-autocomplete li a {
    border: none;
}
