.bootstrap-tagsinput {
  display: inline-block;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  cursor: text;
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 0;
  width: auto;
  max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #777;
}
.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  border: 1px solid white;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  display: block;
  float: left;
  padding: 5px 7px 5px 20px;
  margin-top: 10px;
  text-decoration: none;
  background: #f0f4f5;
  color: #646e74;
  margin-right: 2px;
  font-size: 12px;
  line-height: 14px;
  cursor: default;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.1);
}
.bootstrap-tagsinput .tag.error {
  background: #f5aca9;
  color: #7a0001;
  line-height: 14px;
  vertical-align: baseline;
}
.bootstrap-tagsinput .tag.processing {
  background: #f0f4f5 url(../images/tagsinput/ajax-loader-jumping.gif) left center no-repeat;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: '';
  font-weight: bold;
  color: transparent;
  text-decoration: none;
  font-size: 11px;
  margin-left: 2px;
  display: inline-block;
  background-image: url(../images/tagsinput/tag_remove.svg);
  background-position: center;
  background-size: 7px 7px;
  background-repeat: no-repeat;
  height: 7px;
  width: 7px;
  line-height: 7px;
}
.bootstrap-tagsinput .tag.error [data-role="remove"]:after {
  background-image: url(../images/tagsinput/tag_remove_error.svg);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
