.c-swiper {
  position: relative;
  z-index: 1;

  &.transition {
    transition: transform 0.2s;
  }

  &-body {
    width: 100%;
    height: 100%;
  }

  &-left {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    transform: translate3d(-100%, 0, 0);
  }

  &-right {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    height: 100%;
    transform: translate3d(100%, 0, 0);
  }
}
