tags-input {
  box-shadow: none;
  border: none;
  padding: 0;
  min-height: 34px;
  max-height: 255px;
}
tags-input .host {
  margin: 0;
}
tags-input .tags {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
tags-input .tags .tag-item {
  color: #78909E;
  background: transparent;
  border: none;
  border-radius: 0;
}
tags-input .tags .tag-item.selected {
  color: #fff;
  background: #ec7575;
  border: 1px solid #ec7575;
}
tags-input .tags .tag-item.selected a.remove-button {
  color: #fff;
}
tags-input .tags .tag-item .remove-button:hover {
  text-decoration: none;
}
tags-input .tags.focused {
  /*border: 1px solid #66afe9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);*/
  border: 1px solid #e0e0e0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
tags-input .autocomplete {
  border-radius: 0;
  border-color: #D4E3E8;
  margin-top: -zpx;
  width: 250px;
  margin-left: 3px;
  padding-top: 0;
}
tags-input .autocomplete .suggestion-item {
    color: #78909e;
    font-weight: normal;
}
tags-input .autocomplete .suggestion-item.selected {
  color: #78909e;
  background-color: #CCECF8;
}
tags-input .autocomplete .suggestion-item.selected em {
  color: #78909e;
  background-color: transparent;
  font-weight: 600;
}
tags-input .autocomplete .suggestion-item em {
  color: #000;
  background-color: #fff;
}
tags-input.ng-invalid .tags {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
tags-input[disabled] .tags {
  background-color: #eee;
}
tags-input[disabled] .tags .tag-item {
  background: #337ab7;
  opacity: 0.65;
}
tags-input[disabled] .tags .input {
  background-color: #eee;
}

.input-group tags-input {
  padding: 0;
  display: table-cell;
}
.input-group tags-input:not(:first-child) .tags {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group tags-input:not(:last-child) .tags {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-lg tags-input:first-child .tags {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.input-group-lg tags-input:last-child .tags {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.input-group-sm tags-input:first-child .tags {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.input-group-sm tags-input:last-child .tags {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

tags-input.ti-input-lg, .input-group-lg tags-input {
  min-height: 46px;
}
tags-input.ti-input-lg .tags, .input-group-lg tags-input .tags {
  border-radius: 6px;
}
tags-input.ti-input-lg .tags .tag-item, .input-group-lg tags-input .tags .tag-item {
  height: 38px;
  line-height: 37px;
  font-size: 18px;
  border-radius: 6px;
}
tags-input.ti-input-lg .tags .tag-item .remove-button, .input-group-lg tags-input .tags .tag-item .remove-button {
  font-size: 20px;
}
tags-input.ti-input-lg .tags .input, .input-group-lg tags-input .tags .input {
  height: 38px;
  font-size: 18px;
}
tags-input.ti-input-sm, .input-group-sm tags-input {
  min-height: 30px;
  position: absolute;
  width: 89%;
  z-index: 1;
}
tags-input.ti-input-sm .tags, .input-group-sm tags-input .tags {
  border-radius: 2px;
}
tags-input.ti-input-sm .tags .tag-item, .input-group-sm tags-input .tags .tag-item {
  /*height: 30px;*/
  /*line-height: 28px;*/
  font-size: 14px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
tags-input.ti-input-sm .tags .tag-item .remove-button, .input-group-sm tags-input .tags .tag-item .remove-button {
  font-size: 16px;
  top: 0 !important;
  margin-right: 5px;
  color: #78909e;
  text-decoration: none;
}
tags-input.ti-input-sm .tags .input, .input-group-sm tags-input .tags .input {
  height: 22px;
  font-size: 12px;
}
#container-shift-tags input.input {
    background-color: #d1d1d1;
}
#container-shift-tags input.input:focus {
    background-color: transparent;
}
#container-shift-tags input::-webkit-input-placeholder {
  color:    #fff;
}

#container-shift-tags input:-moz-placeholder {
  color:    #fff;
}

#container-shift-tags input::-moz-placeholder {
  color:    #fff;
}

#container-shift-tags input:-ms-input-placeholder {
  color:    #fff;
}

.has-feedback tags-input .tags {
  padding-right: 30px;
}

.has-success tags-input .tags {
  border-color: #3c763d;
}
.has-success tags-input .tags.focused {
  border-color: #e0e0e0;
  -webkit-box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
  -moz-box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
  box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
}

.has-error tags-input .tags {
  border-color: #a94442;
}
.has-error tags-input .tags.focused {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
  -moz-box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
  box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
}

.has-warning tags-input .tags {
  border-color: #8a6d3b;
}
.has-warning tags-input .tags.focused {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
  -moz-box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
  box-shadow: inset 0 1px 1px rgba(224,224,224, 0.075), 0 0 6px #e0e0e0;
}

/*# sourceMappingURL=ng-tags-input.bootstrap.css.map */
