.bootstrap-tagsinput {
  background-color: #fff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  display: inline-block;
  margin-bottom: 10px;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  max-width: 100%;
  line-height: 22px;
  cursor: text;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: 0px 2px;
}
.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);
}

.bootstrap-tagsinput.collapsable {
  height: 40px;
  position: relative;
}

.bootstrap-tagsinput .more {
  display: none;
  margin: 5px 1px 5px 1px;
}

.bootstrap-tagsinput .more > i {
  margin-left: 12px;
  margin-top: 10px;
}

.bootstrap-tagsinput.too-many {
  overflow: hidden;
  padding: 0 5px 2px;
  border-radius: 0 0 3px 3px;
}

.bootstrap-tagsinput.too-many .more {
  display: inherit;
}

.bootstrap-tagsinput.too-many.show-more {
  height: auto;
  overflow: visible;
  transition: height 0.5s ease-out;
  position: absolute;
}

.bootstrap-tagsinput.too-many.show-more .more {
  display: none;
}

.bootstrap-tagsinput.too-many .next-line {
  display: block;
}
.bootstrap-tagsinput.too-many.show-more .next-line {
  display: inline-block;
}