.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    /*display: inline-block;*/
    padding: 4px 6px;
    color: #555;
    vertical-align: middle;
    border-radius: 4px;
    max-width: 100%;
    line-height: 22px;
    cursor: text;
    width: 100%;
}

.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;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: white;
    font-size: 85%;
}

.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);
}


/**********************************************************
 *     typeahead.js v0.11.1 - twitter bootstrap v3.3.6    *
 **********************************************************/


/*root typeahead class*/

span.twitter-typeahead {
    width: 100%;
}

.input-group span.twitter-typeahead {
    display: block !important;
}

.twitter-typeahead .tt-input[disabled] {
    background-color: #eeeeee !important;
}


/*Added to input that's initialized into a typeahead*/

.twitter-typeahead .tt-input {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
    -webkit-border-top-left-radius: 4px !important;
    -webkit-border-bottom-left-radius: 4px !important;
}


/*Added to hint input.*/

.twitter-typeahead .hint {}


/*Added to menu element*/

.twitter-typeahead .tt-menu {
    width: 100%;
    max-height: 500px;
    overflow-y: scroll;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -moz-box-shadow: 12px 14px 30px -7px #616161;
    -webkit-box-shadow: 12px 14px 30px -7px #616161;
    box-shadow: 12px 14px 30px -7px #616161;
}

@media (min-width: 768px) {
    .twitter-typeahead .tt-menu {
        width: 200%;
    }
}

.input-group .twitter-typeahead .tt-menu {
    margin-top: 32px;
}

.input-group.input-group-lg .twitter-typeahead .tt-menu {
    margin-top: 44px;
}

.input-group.input-group-sm .twitter-typeahead .tt-menu {
    margin-top: 28px;
}


/*Added to dataset elements*/

.twitter-typeahead .tt-dataset {}


/*Added to suggestion elements*/

.twitter-typeahead .tt-suggestion {
    padding: 3px 5px;
    white-space: nowrap;
}


/*Added to menu element when it contains no content*/

.twitter-typeahead .tt-empty {
    background-color: white;
}


/*Added to menu element when it is opened*/

.twitter-typeahead .tt-open {
    background-color: white;
}


/*Added to suggestion element when menu cursor moves to said suggestion*/

.twitter-typeahead .tt-suggestion:hover,
.twitter-typeahead .tt-suggestion:focus,
.twitter-typeahead .tt-cursor {
    background-color: #337ab7;
    color: white;
}


/*Added to the element that wraps highlighted text*/

.twitter-typeahead .tt-highlight {}