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

 .bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #dae1e7;
    /* box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); */
    display: flex;
    flex-wrap: wrap;
    padding: 4px 6px;
    color: #555;
    vertical-align: middle;
    width: 100%;
    /* max-width: 100%; */
    /* line-height: 22px; */
    min-height: 40px;
    border-radius: 3px;
    box-shadow: none;
    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;
    /* width: 30%; */
  }
  .bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: #000000;
    background-color: #e5e5e5;
    padding: 0 5px;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    transition: .13s ease-out;
    margin-bottom: 4px;
  }
  .bootstrap-tagsinput .tag:hover {
    background-color: #f1dfdf;
    transform: scale(1.05);
    cursor: default;
  }
  .bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 4px;
    cursor: pointer;
    color: #000000;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
  }
  .bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "×";
    padding: 0px 2px;
    transition: .3s,color 0s;
  }
  .bootstrap-tagsinput .tag [data-role="remove"]:hover {
    color: #ffffff;
    background-color: #c77777;
  }
  .bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  }
