/*
 * bootstrap-tagsinput Andy's version
 *
 */

.bootstrap-tagsinput {
  background-color: #fff;
  border: 1px solid #ced4da;
  color: #212529;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  max-width: 100%;
  cursor: text;
}

.bootstrap-tagsinput input {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: 200px;
  max-width: inherit;
  outline: none;
  box-shadow: none;
  font-size: 1rem;
  line-height: inherit;
}

.bootstrap-tagsinput input::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.bootstrap-tagsinput input:-ms-input-placeholder {
  color: #6c757d;
}

.bootstrap-tagsinput input::-webkit-input-placeholder {
  color: #6c757d;
}

.bootstrap-tagsinput input:focus {
  /*border-color: #86b7fe;*/
  /*box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);*/
}

.bootstrap-tagsinput .tag {
  margin-right: 0.5rem;
  color: #fff;
  background-color: #198754;
  padding: 0.2rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 0.5rem;
  cursor: pointer;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "×";
  padding: 0 0.375rem;
}

.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  background-color: #dc3545;
}

.bootstrap-tagsinput .tag [data-role="remove"]:hover:after {
  color: #fff;
}

.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
  background-color: #bd2130;
}
