/*******
* ICONS
********/
/*******
* BUTTONS
********/
/*******
* SCROLLBAR
********/
/*******
* FORM
********/
/*******
* A11Y
********/
.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;
}
.ids-tag .ids-tag__content {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: space-between;
}
.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) {
  padding: 0 !important;
}
.ids-tag.ids-tag--clickable:has(button) button {
  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%;
}
.ids-tag.ids-tag--clickable:has(button) button: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:has(button) button:hover {
  color: var(--IDS-TAG--INTERACTIVE-HOVER__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-HOVER__BACKGROUND-COLOR);
}
.ids-tag.ids-tag--clickable:has(button) button:active {
  color: var(--IDS-TAG--INTERACTIVE-ACTIVE__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-ACTIVE__BACKGROUND-COLOR);
}
.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: var(--IDS-FOCUS__OUTLINE-OFFSET) !important;
}
.ids-tag .ids-tag__close-btn {
  margin: -0.25rem -0.25rem -0.5rem 0;
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 100%;
  cursor: pointer;
}
.ids-tag .ids-tag__close-btn button {
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
}
.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;
  content: "\e934";
  font-size: 0.875rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--IDS-TAG__ICON-COLOR);
}
.ids-tag .ids-tag__close-btn:focus-visible,
.ids-tag .ids-tag__close-btn button:focus-visible {
  border-radius: 100%;
}
.ids-tag .ids-tag__close-btn:hover:before {
  color: var(--IDS-TAG__ICON-HOVER-COLOR);
}

button.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%;
  width: fit-content;
}
button.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 {
  color: var(--IDS-TAG--INTERACTIVE-HOVER__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-HOVER__BACKGROUND-COLOR);
}
button.ids-tag--clickable:active {
  color: var(--IDS-TAG--INTERACTIVE-ACTIVE__COLOR);
  background-color: var(--IDS-TAG--INTERACTIVE-ACTIVE__BACKGROUND-COLOR);
}