
/**
 * Css styles for jquery.tagit plugin, customized for UXC tagit!
 */

.form-dummy fieldset {
  margin-bottom: 0;
}
.form-dummy fieldset > div {
  margin-bottom: 0;
}
.form-dummy label {
  line-height: 14px;
}
.form-dummy .input > span {
  line-height: 14px;
  display: inline-block;
  height: 14px;
  padding: 6px;
  width : 100%;
}
.fake-input {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0px;
  font-size: 1em;
/*   line-height: 18px; */
  min-height: 3em;
  color: #333333;
  border: 1px solid #9fadbf;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  background: none;
  border-radius: 14px;
}
.fake-input {
  -webkit-transition: box-shadow 0.45s,border-color 0.45s ease-in-out;
  -moz-transition: box-shadow 0.45s,border-color 0.45s ease-in-out;
  transition: box-shadow 0.45s,border-color 0.45s ease-in-out;
}
.fake-input.focused {
  outline: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(159,173,191,0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(159,173,191,0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(159,173,191,0.6);
}
form div.error, input.no-style {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
form div.error input.no-style,
input.no-style,
form div.error input.no-style:focus,
input.no-style:focus{
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.uxc-tagit-input{
  width : 20rem;
}

input.no-style:focus::-ms-clear {
	display:none;
}

form div.error .fake-input {
  border-color: #c87872;
  -webkit-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
  -moz-box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
  box-shadow: 0 0 3px rgba(171, 41, 32, 0.25);
}
form div.error .fake-input.focused {
  border-color: #b9554d;
  -webkit-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
  -moz-box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
  box-shadow: 0 0 6px rgba(171, 41, 32, 0.5);
}
.tagit {
  list-style: none;
}
.tagit.fake-input {
  padding: 0px 0px 0px 0px;
  height: auto;
  line-height: 26px;
}
.tagit li {
  display: inline-block;
}
.tagit li.tag {
  font-family: "BentonSans";
   -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    border: 4px solid #e8edf0;

    background: none;
    background-color: #e8edf0;

    color: rgb(51,51,51);
	font-weight: bold;
  font-size: 1rem;
	margin: 6px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.tagit li.tag .close {
  margin-left: 6px;
  color: #1b8fa5;
  font-size: 1.4rem;
  vertical-align: bottom;
}
.tagit li.tag .close:hover {
  color: #2dabb3;
}

.tagit .tagit-edit-handle {
  position: relative;
}
.tagit .tagit-edit-handle input {
  padding: 3px 4px 2px 0;
  background: transparent;
}
.tagit .tagit-edit-handle ul {
  position: absolute;
  left: 0;
  top: 45px;
  right: 0;
  background: white;
  margin: 0;
  padding: 0;
  display: none;
  border: 1px solid #9fadbf;
  border-radius: 14px;
  line-height: 20px;
}
.tagit .tagit-edit-handle ul.open {
  display: block;
  font-weight: bold;
  z-index: 99;
}
.tagit .tagit-edit-handle ul.open:hover li.selected {
  background: transparent;
  color: inherit;
  border-radius: 0px;
}
.tagit .tagit-edit-handle ul.open li.selected, .tagit .tagit-edit-handle ul.open:hover li:hover {
  background: #e8edf0;
  color: #333333;
  font-weight: bold;
  border-radius: 0px;
}

.tagit .tagit-edit-handle ul.open li:first-child {
  border-top-left-radius:14px !important;
  border-top-right-radius:14px !important;
}

 .tagit .tagit-edit-handle ul.open li:last-child {
  border-bottom-left-radius:14px !important;
  border-bottom-right-radius:14px !important;
}

.tagit .tagit-edit-handle ul.open li {
  display: block;
  padding: 6px;
  cursor: pointer;
}

.no-style::-ms-clear {
    display: none !important;
}
