.dropdown-item {
  text-decoration: none;
  color: #1d1d1d;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  font-family: var(--ifx-font-family);
}
.dropdown-item:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #0a8276;
}
.dropdown-item.hide {
  display: none;
}
.dropdown-item span {
  color: #1d1d1d;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}
.dropdown-item.small span {
  font-size: 14px;
}
.dropdown-item:hover {
  cursor: pointer;
  background-color: #eeeded;
}
.dropdown-item:active {
  background-color: #bfbbbb;
}
.dropdown-item.error {
  color: #cd002f;
}
.dropdown-item.error span {
  color: #cd002f;
}

.icon {
  margin-right: 4px;
}