.bootstrap-tagsinput {
  display: inline-block;
  padding: 3px 9px;
  min-height: 35.6px;
  width: 70%;
  border-radius: 35px;
  background-color: transparent;
  border: 1px solid #E3E3E3;
  color: #2c2c2c;
  line-height: normal;
  font-size: .8571em;
  -webkit-transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
  -moz-transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
  -o-transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
  -ms-transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
  transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  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 {
  color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"]:before, .bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: '';
  height: 2px;
  width: 12px;
  display: block;
  background-color: #ef8c08;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 0px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.bootstrap-tagsinput .tag [data-role="remove"] {
  top: 4px;
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  right: 3px;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:before {
  color: #ef8c08;
}
.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);
}
.bootstrap-tagsinput .tag {
  position: relative;
  float: right;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1px 3px;
  color: #333;
  background-color: #f6f6f6;
  height: 23.6px;
  min-width: 80px;
  margin: 2px 2px;
  line-height: 21.6px;
}

.bootstrap-tagsinput > input {
  float: right !important;
  text-align: right;
}
.bootstrap-tagsinput .tag-name{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: default;
  text-align: center;
  font-size: 12px;
  display: block;
  height: 100%;
  padding-right: 13px;

}