/*
 * bootstrap-tagsinput v0.8.0
 * 
 */

.bootstrap-tagsinput {
  font: 14px Manrope-Regular;
  color: #48596c;
  border: 1px solid #e1e4eb;
  border-radius: 10px;
  padding: 0 10px;
      padding-right: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 38px;
  position: relative;
  max-width: 463px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px){
  .bootstrap-tagsinput {
    max-width: 100%;
  }
}
.bootstrap-tagsinput input {
  border: none !important;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0px !important;
  margin: 0;
  width: auto;
  max-width: inherit;
  /* width: auto !important; */
  width: 150px !important;
  padding-right: 10px !important;
}
.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: 28px;
  color: #48596c;
  /* padding-left: 20px; */
  position: relative;
  padding-right: 5px;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
  margin-left: 8px;
  cursor: pointer;
  position: absolute;
  /* left: 1px; */
  top: 0px;
  font-size: 21px;
  line-height: 23px;
  
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
  content: "×";
  position: absolute;
  
  
}
.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);
}
