@function vmin($rpx) {
    @return #{$rpx * 100 / 750}vmin;
}
.indicator {
    display: flex;
    justify-content: center;
    width: 100%;
    &.full-screen {
      z-index: 2;
      margin-top: 1vmin;
    }
    .dot {
      width: vmin(16);
      height: vmin(8);
      border-radius: vmin(4);
      background: #ff9747;
      margin: 0 vmin(6);
      transition: background-color 0.2s;
      &.selected {
        width: vmin(24);
        background: #ffd25a;
      }
    }
  }
  