.c-scroller {
  overflow: scroll;
  -webkit-overflow-scrolling: touch;

  &-container {
    overflow: hidden;
    position: relative;
  }

  &-content {
    &.transition {
      transition: transform 0.2s linear;
    }
  }

  &-indicator {
    height: dpr(80px);
    padding: dpr(16px);
    box-sizing: border-box;
    text-align: center;

    &-down {
      position: absolute;
      top: -dpr(80px);
      width: 100%;
    }

    & .c-icon {
      font-size: dpr(48px);
    }
  }
}
