.dropdown-actions {
  position: relative;

  .menu {
    position: absolute;
    z-index: 1;
    overflow: hidden;
    width: 250px;
    min-width: 250px;
    top: 45px;
    background: var(--color-bg-primary);
    border: solid 1px var(--color-border-secondary);
    box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
    border-radius: 4px;

    &.expand {
      width: 100%;
    }

    &.left {
      left: 0;
    }

    &.right {
      right: 0;
    }

    .menu-item {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 8px 10px;
      font-size: 17px;
      font-weight: var(--weight-regular);
      height: 47px;
      cursor: pointer;

      &.force-border, &:not(:last-child) {
        border-bottom: 1px solid var(--color-border-secondary);
      }

      &:hover {
        background-color: var(--color-bg-secondary_hover);
      }
    }
  }
}
