ul.tagit {
	padding: 0;
	overflow: auto;
	margin-left: 0;
	margin-right: 0;
}

ul.tagit li {
	display: block;
	float: left;
	margin: 0 20px 0 0;
}

ul.tagit li.tagit-choice {
	position: relative;
	line-height: inherit;
	display: grid;
}

input.tagit-hidden-field {
	display: none;
}

ul.tagit li.tagit-choice-read-only,
ul.tagit li.tagit-choice-editable,
ul.tagit li.tagit-new {
	padding: 0;
}

ul.tagit li.tagit-choice a.tagit-label {
	cursor: pointer;
	text-decoration: none;
}

ul.tagit li.tagit-choice .tagit-label {
	cursor: pointer;
	text-decoration: none;
	border: solid 1px var(--border-color);
	border-radius: var(--border-radius);
	padding: var(--spacer-small);
	padding-right: var(--spacer-xlarge);
	background: white;
}

ul.tagit li.tagit-choice .tagit-close {
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	margin: 0;
	width: 100% !important;
	height: 41px !important;
	display: block;
	width: var(--spacer-default);
	height: var(--spacer-default);
	background: transparent;
	border-radius: var(--border-radius);
	border: solid var(--input-border-focus) var(--color-highlight);
}

ul.tagit li.tagit-choice .tagit-close::before {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e900";
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 12px;
}




/* used for some custom themes that don't need image icons */
ul.tagit li.tagit-choice .tagit-close .text-icon {
	display: none;
}

ul.tagit li.tagit-choice input {
	display: block;
	float: left;
	margin: 2px 5px 2px 0;
}

ul.tagit input[type="text"] {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	margin: 0;
	padding: 0;
	width: inherit;
	background-color: inherit;
	outline: none;
}