 .bootstrap-tagsinput {
    background: #fff;
    padding: 12px 10px;
    border-radius: 0px;
    max-width: 100%;
    border: 1px solid #dedcfb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.bootstrap-tagsinput input {
    border: none;
    background: transparent;
    outline: none;
    width: 140px;
    font-weight: 400;
    font-size: 0.775rem;
    line-height: 24px;
    color: #817ba7;
}

.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 {
    display: inline-block;
    background-color: #ffffff;
    color: #817ba7;
    border-radius: 0;
    border: 1px solid #dedcfb;
    padding: 6px 10px 6px 10px;
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

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

.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "x";
    padding: 0px 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);
}

label.error {
    color: red;
    margin-top: 5px;
}