.bootstrap-tagsinput {
    outline: none;
    width: 100%;
    max-width: 100%;
    min-height: 1.65rem;
    color: #000;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: #efefef;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: .5rem 1rem 0;
    margin: 0;
    cursor: text;
    display: flex;
    flex-wrap: wrap;
}

.bootstrap-tagsinput input {
    width: auto;
    max-width: inherit;
	color: #000;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border: none;
    flex-grow: 1;
    padding: 0;
    margin: 0 0 .5rem;
}

.bootstrap-tagsinput input:focus {
    border: none;
    box-shadow: none;
}

.bootstrap-tagsinput .tag {
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    line-height: .9rem;
    text-decoration: none;
    background-color: #000656;
    padding: .3rem 1.5rem .45rem;
    margin-left: .5rem;
    margin-right: .6rem;
    margin-bottom: .5rem;
    display: inline-block;
    position: relative;
}

.bootstrap-tagsinput .tag:hover {
    background-color: #134395;
    text-decoration: none;
}

.bootstrap-tagsinput .tag:hover::before {
    border-right-color: #134395;
}

.bootstrap-tagsinput .tag::before {
    content: '';
    width: 0;
    height: .2rem;
    border-top: .725rem solid transparent;
    border-bottom: .725rem solid transparent;
    border-right: .5rem solid #000656;
    position: absolute;
    left: -0.5rem;
    top: 0;
}

.bootstrap-tagsinput .tag::after {
    content: '';
    width: .4rem;
    height: .4rem;
    background-color: #fff;
    border-radius: 100%;
    margin-top: -0.2rem;
    position: absolute;
    left: .3rem;
    top: 50%;
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    cursor: pointer;
    position: absolute;
    right: .3rem;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: '\f00d';
	font-family: 'FontAwesome';
    padding: 0px 2px;
}
