.gg-cross {
    transform: scale(var(--ggs, 1));
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;

    &::after {
      box-sizing: border-box;
      position: relative;
      display: block;
      width: 10px;
      height: 2px;
      border-radius: 3px;
      background: currentColor;
      content: "";
      position: absolute;
      width: 2px;
      height: 12px;
      top: -4px;
      left: 4px;
    }
  }