swipe-slider {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: height 0.2s linear;
  will-change: height;

  .swipe-slider-wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
    touch-action: pan-y;

    & > * {
      float: left;
      width: 100%;
      position: relative;
      box-sizing: border-box;
      will-change: transform;
    }
  }
}
