.bootstrap-tagsinput {
    display: block;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    min-height: 54px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #A4A4A4;
    -moz-border-radius: 3px;
    border-radius: 3px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,.15), 0 0 8px rgba(0,0,0,0);
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
.bootstrap-tagsinput:hover, .bootstrap-tagsinput:focus {
    border-color: #7C7C7C;
    background-color: #FFF;
}
.bootstrap-tagsinput.active {
    box-shadow: inset 0 1px 1px rgba(0,0,0,0), 0 0 8px rgba(0,0,0,.2);
    background-color: #FFF;
}
.bootstrap-tagsinput input {
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    width: auto !important;
    max-width: inherit;
}
.bootstrap-tagsinput input:focus {
    border: none;
    box-shadow: none;
}
.bootstrap-tagsinput .tag {
    display: inline-block;
    margin: 2px 2px 2px 0;
    padding: 5px;
    color: white;
    font-weight: 300;
    font-size: 12px;
}
.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);
}
