@use "./item-sliding.common";
@import "../../themes/native/native.globals";

.item-sliding-active-slide .item {
  position: relative;

  transition: transform 500ms cubic-bezier(0.36, 0.66, 0.04, 1);

  opacity: 1;
  z-index: $z-index-item-options + 1;
  pointer-events: none;
  will-change: transform;
}

// Native full-swipe animation (250ms ease-out; replaces inline styles on `ion-item`)
.item-sliding-active-slide.item-sliding-full-swipe-transition .item {
  transition: transform 250ms ease-out;
}
