/*
 * bootstrap-tagsinput v0.8.0
 * 
 */

.form-tags{
  width: 100%;
}

.bootstrap-tagsinput {
  background-color: #fff;
  display: inline-block;
  padding: 4px 4px;
  color: #555;
  vertical-align: middle;
  border-radius: 4px;
  width: 100%;
  line-height: 22px;
  cursor: text;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-tags-lg .bootstrap-tagsinput{
  min-height: calc(1.5em + 1.65rem + calc(var(--bs-border-width) * 2));
  padding: .475rem .375rem;
  font-size: 1.25rem;
  border-radius: var(--bs-border-radius-lg);
}

.form-tags-solid .bootstrap-tagsinput{
  background-color: var(--bs-gray-100);
  border-color: var(--bs-gray-100);
  color: var(--bs-gray-700);
  transition: color .2s ease;
}

.form-tags-solid .bootstrap-tagsinput.focus{
  background-color: var(--bs-gray-200);
  border-color: var(--bs-gray-200);
  color: var(--bs-gray-700);
}

.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 6px;
  margin: 5px 2.5px;
  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 {
  background-color: var(--bs-primary);
  margin: 2.5px;
  color: var(--bs-primary-fg, --bs-btn-color);
  padding: 5px 10px;
  line-height: initial;
  border-radius: 7px;
  display: inline-block;
  font-size: 90%;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
  opacity: .75;
  position: relative;
  top: -1px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "x";
  padding: -1px 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);
}
