.nut-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;

  &-canmove-horizontal {
    touch-action: pan-y;
  }

  &-canmove-vertical {
    touch-action: pan-x;
  }

  &-indicator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    height: 4px;
    width: 100%;
    top: 89.33%;
    z-index: 10;
  }

  &-indicator-vertical {
    width: 8px;
    height: 100%;
    top: 0;
    left: 12px;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
  }
}

.nut-swiper-inner {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;

  &-vertical {
    flex-direction: column;
  }
}

.nut-swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.nut-swiper-item {
  width: 100%;
  height: 100%;
}

[dir='rtl'] .nut-swiper,
.nut-rtl .nut-swiper {
  &-indicator {
    left: auto;
    right: 50%;
  }

  &-indicator-vertical {
    left: auto;
    right: 12px;
  }
}
