.sui-prj-pipeline-add-item {
  transition: all 0.6s;
  transform: scale(0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: $sui-space-lg;
  z-index: $sui-z-index-prj-pipeline-drag + 1;

  &.as--end {
    padding-right: 0;
  }

  &.as--mounted {
    transform: scale(1);
  }

  &.as--animateOut {
    transform: scale(0);
    pointer-events: none;
  }

  &__popper {
    z-index: 99;
  }
}
