.action-list-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #ffffff;
  transition: background-color 0.2s ease;
  cursor: default;
}
.action-list-item--clickable {
  cursor: pointer;
}
.action-list-item--clickable:hover:not(.action-list-item--disabled) {
  background: #f7f7f7;
}
.action-list-item--clickable:focus:not(.action-list-item--disabled) {
  outline: none;
  background: #f7f7f7;
}
.action-list-item--clickable:active:not(.action-list-item--disabled) {
  background: #eeeded;
}
.action-list-item--disabled ::slotted(ifx-icon) {
  color: #bfbbbb;
}
.action-list-item--disabled ::slotted(*) ifx-icon {
  color: #bfbbbb;
}
.action-list-item__leading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
}
.action-list-item__content {
  flex: 1;
  min-width: 0;
}
.action-list-item__title {
  font-family: var(--ifx-font-family);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1d1d1d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.action-list-item--disabled .action-list-item__title {
  color: #bfbbbb;
}
.action-list-item__description {
  font-family: var(--ifx-font-family);
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #575352;
  margin-top: 2px;
}
.action-list-item--disabled .action-list-item__description {
  color: #bfbbbb;
}
.action-list-item__trailing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  flex-shrink: 0;
  gap: 16px;
}