/*******
* ICONS
********/
/*******
* BUTTONS
********/
/*******
* SCROLLBAR
********/
/*******
* FORM
********/
/*******
* A11Y
********/
.ids-error-message {
  background-color: var(--IDS-ERROR-MESSAGE__BACKGROUND-COLOR);
  border-radius: var(--IDS-BORDER-RADIUS);
  border: var(--IDS-ERROR-MESSAGE__BORDER-THICKNESS) solid var(--IDS-ERROR-MESSAGE__BORDER-COLOR);
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  padding: var(--IDS-ERROR-MESSAGE__PADDING);
  position: relative;
  align-items: center;
  display: none;
  color: var(--IDS-ERROR-MESSAGE__COLOR);
  gap: 0.5rem;
}
.ids-error-message.ids-error-message--show {
  display: inline-flex;
  width: fit-content;
}
.ids-error-message::after, .ids-error-message::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  left: 2.563rem;
  transform: rotate(45deg);
  z-index: 9;
}
.ids-error-message::after {
  background-color: var(--IDS-ERROR-MESSAGE__BACKGROUND-COLOR);
  top: -0.3rem;
}
.ids-error-message::before {
  background-color: var(--IDS-ERROR-MESSAGE__BORDER-COLOR);
  top: var(--IDS-ERROR-MESSAGE__BEFORE-TOP);
}
.ids-error-message .ids-error-message__text {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  min-height: 1.5rem;
  font-family: var(--IDS-FONT-FAMILY-BASE);
}
.ids-error-message .ids-error-message__text:before {
  font: icon;
  font-family: "Inera-Design-Icons" !important;
  display: block;
  position: absolute;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e913";
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--IDS-ERROR-MESSAGE__ICON-COLOR);
  left: 0;
  top: 0;
}