.ne-row-actions {
  --ne-row-action-size: 50px;
  align-items: center;
  display: none;
  grid-auto-columns: var(--ne-row-action-size);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 4px;
  height: var(--ne-row-action-size);
  justify-content: end;
  overflow: visible;
  padding: 0;
  position: absolute;
  right: 176px;
  top: 11px;
  width: auto;
  z-index: 30;
}

.ne-list > li:hover > .ne-row-actions,
.ne-list > li.selected > .ne-row-actions,
.ne-list > li:focus-within > .ne-row-actions,
.ne-row-actions.is-active,
.ne-row-actions.active {
  display: grid;
}

.ne-row-actions .ne-row-action {
  align-items: center;
  background-color: transparent !important;
  background-image: none !important;
  border: 0;
  border-radius: 2px;
  box-sizing: border-box;
  color: #b9b7b7 !important;
  cursor: pointer;
  display: inline-flex;
  height: var(--ne-row-action-size);
  justify-content: center;
  line-height: var(--ne-row-action-size);
  margin: 0;
  opacity: 0.55;
  padding: 0;
  position: relative;
  transition: background-color 140ms ease, color 140ms ease, opacity 140ms ease;
  width: var(--ne-row-action-size);
}

.ne-row-actions .ne-row-action:hover,
.ne-row-actions .ne-row-action:focus-visible {
  background-color: rgb(244 168 60 / 8%) !important;
  color: #f4a83c !important;
  opacity: 1;
  outline: none;
}

.ne-row-actions .ne-row-action[aria-disabled="true"],
.ne-row-actions .ne-row-action:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.25;
  pointer-events: none;
}

.ne-row-action__icon {
  fill: none;
  height: 24px;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  vector-effect: non-scaling-stroke;
  width: 24px;
}

#ne_timeline.ne-list > li > .ne-row-actions--timeline {
  right: 176px;
}

.ne-row-action__label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.ne-row-actions-gallery {
  display: grid;
  gap: 12px;
}

.ne-row-actions-gallery__example {
  align-items: center;
  background: #383636;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  min-height: 72px;
  padding: 0 16px;
  position: relative;
}

.ne-row-actions-gallery__example > .ne-row-actions {
  position: static;
}

@media screen and (max-width: 900px) {
  .ne-row-actions {
    right: 54px;
  }

  .ne-list > li.selected > .ne-row-actions,
  .ne-list > li:focus-within > .ne-row-actions {
    display: grid;
  }
}
