.gg-facebook {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 20px;
    height: 20px;

    &::after {
      content: "";
      display: block;
      position: absolute;
      box-sizing: border-box;
    }

    &::before {
      content: "";
      display: block;
      position: absolute;
      box-sizing: border-box;
      width: 8px;
      height: 20px;
      border-left: 4px solid;
      border-top: 4px solid;
      border-top-left-radius: 5px;
      left: 6px;
    }

    &::after {
      width: 10px;
      height: 4px;
      background: currentColor;
      top: 7px;
      left: 4px;
      transform: skew(-5deg);
    }
  }