.gg-more {
    transform: scale(var(--ggs, 1));
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-radius: 100%;

    &::after, &::before {
      box-sizing: border-box;
      position: relative;
      display: block;
      width: 6px;
      height: 6px;
      border: 2px solid;
      border-radius: 100%;
    }

    &::after, &::before {
      content: "";
      position: absolute;
      top: -2px;
    }

    &::after {
      left: -9px;
    }

    &::before {
      right: -9px;
    }
  }