.group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.group__label {
  font-family: var(--ifx-font-family);
  font-size: 1rem;
  color: #1d1d1d;
  line-height: 1.5rem;
  font-weight: 400;
}
.group__label:empty {
  display: none;
}
.group__label .required {
  color: #575352;
  margin-left: 4px;
}
.group__label .required.error {
  color: #cd002f;
}

.group__controls {
  display: flex;
  flex-wrap: wrap;
}

.group__controls ::slotted(*) {
  margin-left: -1px;
  margin-top: -1px;
}

.group__caption {
  font-family: var(--ifx-font-family);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
}
.group__caption.error {
  color: #cd002f;
}