.gg-space-between-v {
    display: block;
    box-sizing: border-box;
    transform: scale(var(--ggs, 1));
    width: 8px;
    height: 14px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    box-shadow: inset 0 0 0 2px;

    &::after {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      width: 12px;
      height: 4px;
      border: 2px solid;
      left: -2px;
    }

    &::before {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      width: 12px;
      height: 4px;
      border: 2px solid;
      left: -2px;
      top: -6px;
      border-top: 0;
    }

    &::after {
      bottom: -6px;
      border-bottom: 0;
    }
  }