.bootstrap-tagsinput {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: calc(1.5em + 0.75rem + 2px);
  cursor: text;
  gap: 0.25rem;
  /* Padding is inherited from .form-control */
}
.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto;
  max-width: inherit;
  min-width: 3em;
  color: inherit;
  flex-grow: 1;
  line-height: inherit;
}
.bootstrap-tagsinput:focus-within {
  /* Let form-control:focus styles apply if possible, else mimic them */
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.bootstrap-tagsinput .tag {
  /* Inherit .badge and .bg-primary */
  display: inline-flex;
  align-items: center;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1;
  padding: 0.35em 0.65em;
  border-radius: var(--bs-border-radius, 0.25rem);
  margin-right: 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 6px;
  cursor: pointer;
  opacity: 0.7;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "×";
  font-family: sans-serif;
  font-size: 1.1em;
  font-weight: bold;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  opacity: 1;
}
