/*
 * bootstrap-tagsinput v0.8.0
 * 
 */

.bootstrap-tagsinput {
    background-color: #F2F6FA;
    border: 1px solid #dee2e6;
    /*box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);*/
    display: block;
    padding: .5rem;
    color: #555;
    vertical-align: middle;
    border-radius: 4px;
    width: 100%;
    line-height: 30px;
    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: #A7ACB1;
    opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
    color: #A7ACB1;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
    color: #A7ACB1;
}

.bootstrap-tagsinput input::placeholder {
    color: #A7ACB1;
    opacity: 1;
}

.bootstrap-tagsinput input:-ms-input-placeholder {
    color: #A7ACB1;
}

.bootstrap-tagsinput input:focus {
  border: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: #343a40;
    background-color: white;
    padding: .4rem;
    display: inline-block;
    font-size: 90%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:15px;
    height:15px;
    margin-left: 8px;
    cursor: pointer;
    background: #9D9D9F;
    border-radius: 50%;
    color:white;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "\00d7";
    align-self:center;
    font-size: 13px;
}
.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);
}