.ids-tag {
  font-family: var(--IDS-FONT-FAMILY-HEADING);
  font-weight: 400;
  color: var(--IDS-TAG__COLOR);
  padding: var(--IDS-TAG__PADDING);
  border: var(--IDS-TAG__BORDER-THICKNESS) solid var(--IDS-TAG__BORDER-COLOR);
  background-color: var(--IDS-TAG__BACKGROUND-COLOR);
  border-radius: var(--IDS-TAG__BORDER-RADIUS);
  display: inline-block;
  line-height: 1rem !important;
  height: max-content;
  text-align: left;
  text-decoration: none;
}
.ids-tag .ids-tag__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}
.ids-tag .ids-control-button {
  margin: -0.25rem -0.5rem -0.25rem -0.25rem;
}
.ids-tag .ids-tag__close-btn {
  min-width: 1.5rem;
  min-height: 1.5rem;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ids-tag .ids-tag__close-btn:focus-visible {
  outline: 0.125rem solid var(--IDS-FOCUS__OUTLINE-COLOR);
  outline-offset: 0.0625rem !important;
}
.ids-tag .ids-tag__close-btn {
  cursor: pointer;
  position: relative;
  color: var(--IDS-CONTROL-BUTTON__COLOR);
  background-color: transparent;
  border-radius: var(--IDS-BORDER-RADIUS-SMALL);
  border: 0;
  flex-shrink: 0;
  text-align: center;
  vertical-align: middle;
  font-size: 1.25rem;
  line-height: 1.25rem;
  height: 1.25rem;
  width: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ids-tag .ids-tag__close-btn [class^=ids-icon-] {
  color: var(--IDS-CONTROL-BUTTON__COLOR);
  font-size: 1.25rem;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ids-tag .ids-tag__close-btn:before {
  font: icon;
  font-family: "Inera-Design-Icons" !important;
  display: block;
  position: absolute;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  flex-shrink: 0;
  content: "\e916";
  color: var(--IDS-CONTROL-BUTTON__COLOR);
  font-size: 1.25rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ids-tag .ids-tag__close-btn:hover:not(:disabled) {
  color: var(--IDS-CONTROL-BUTTON__HOVER-COLOR);
  background-color: var(--IDS-CONTROL-BUTTON__HOVER-BACKGROUND-COLOR);
}
.ids-tag .ids-tag__close-btn:hover:not(:disabled) [class^=ids-icon-] {
  color: var(--IDS-CONTROL-BUTTON__HOVER-COLOR);
}
.ids-tag .ids-tag__close-btn:hover:not(:disabled):before {
  color: var(--IDS-CONTROL-BUTTON__HOVER-COLOR);
}
.ids-tag .ids-tag__close-btn:active:not(:disabled) {
  color: var(--IDS-CONTROL-BUTTON__HOVER-COLOR);
  background-color: var(--IDS-CONTROL-BUTTON__ACTIVE-BACKGROUND-COLOR);
}
.ids-tag .ids-tag__close-btn:active:not(:disabled) [class^=ids-icon-] {
  color: var(--IDS-CONTROL-BUTTON__HOVER-COLOR);
}
.ids-tag .ids-tag__close-btn:active:not(:disabled):before {
  color: var(--IDS-CONTROL-BUTTON__HOVER-COLOR);
}
.ids-tag .ids-tag__close-btn:focus-visible {
  border-radius: var(--IDS-BORDER-RADIUS-SMALL);
  outline-offset: 0.0625rem !important;
}
.ids-tag .ids-tag__close-btn:disabled, .ids-tag .ids-tag__close-btn:disabled:hover {
  background-color: transparent;
  color: var(--IDS-FORM--DISABLED__COLOR);
  cursor: default;
}
.ids-tag .ids-tag__close-btn:disabled [class^=ids-icon-], .ids-tag .ids-tag__close-btn:disabled:hover [class^=ids-icon-] {
  color: var(--IDS-FORM--DISABLED__COLOR);
}
.ids-tag .ids-tag__close-btn:disabled:before, .ids-tag .ids-tag__close-btn:disabled:hover:before {
  color: var(--IDS-FORM--DISABLED__COLOR);
}
.ids-tag .ids-tag__close-btn {
  margin: -0.25rem -0.5rem -0.25rem -0.25rem;
}
.ids-tag.ids-tag--clickable {
  cursor: pointer;
  border: var(--IDS-TAG__BORDER-THICKNESS) solid var(--IDS-TAG--INTERACTIVE__BORDER-COLOR);
  color: var(--IDS-TAG--INTERACTIVE__COLOR);
  font-weight: var(--IDS-TAG--INTERACTIVE__FONT-WEIGHT);
}
.ids-tag.ids-tag--clickable:has(button), .ids-tag.ids-tag--clickable:has(a) {
  padding: 0 !important;
}
.ids-tag.ids-tag--clickable .ids-tag__content > button,
.ids-tag.ids-tag--clickable .ids-tag__content > a {
  background: none;
  border: none;
  min-width: 1.5rem;
  min-height: 1.5rem;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: var(--IDS-TAG__BORDER-RADIUS);
  padding: var(--IDS-TAG__PADDING);
  text-align: left;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.ids-tag.ids-tag--clickable .ids-tag__content > button:focus-visible:focus-visible,
.ids-tag.ids-tag--clickable .ids-tag__content > a:focus-visible:focus-visible {
  outline: 0.125rem solid var(--IDS-FOCUS__OUTLINE-COLOR);
  outline-offset: var(--IDS-FOCUS__OUTLINE-OFFSET) !important;
}
.ids-tag.ids-tag--clickable .ids-tag__content > button:hover,
.ids-tag.ids-tag--clickable .ids-tag__content > a:hover {
  color: var(--IDS-TAG--INTERACTIVE-HOVER__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-HOVER__BACKGROUND-COLOR);
}
.ids-tag.ids-tag--clickable .ids-tag__content > button:active,
.ids-tag.ids-tag--clickable .ids-tag__content > a:active {
  color: var(--IDS-TAG--INTERACTIVE-ACTIVE__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-ACTIVE__BACKGROUND-COLOR);
}

button.ids-tag--clickable,
a.ids-tag--clickable {
  background: none;
  border: none;
  min-width: 1.5rem;
  min-height: 1.5rem;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: var(--IDS-TAG__BORDER-RADIUS);
  padding: var(--IDS-TAG__PADDING);
  text-align: left;
  width: 100%;
  height: 100%;
  text-decoration: none;
  width: fit-content;
}
button.ids-tag--clickable:focus-visible:focus-visible,
a.ids-tag--clickable:focus-visible:focus-visible {
  outline: 0.125rem solid var(--IDS-FOCUS__OUTLINE-COLOR);
  outline-offset: var(--IDS-FOCUS__OUTLINE-OFFSET) !important;
}
button.ids-tag--clickable:hover,
a.ids-tag--clickable:hover {
  color: var(--IDS-TAG--INTERACTIVE-HOVER__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-HOVER__BACKGROUND-COLOR);
}
button.ids-tag--clickable:active,
a.ids-tag--clickable:active {
  color: var(--IDS-TAG--INTERACTIVE-ACTIVE__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-ACTIVE__BACKGROUND-COLOR);
}