.gg-cloud {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 8px;
    height: 2px;
    background: currentColor;
    margin-bottom: -20px;

    &::after {
      content: "";
      display: block;
      position: absolute;
      border: 2px solid;
      box-sizing: border-box;
      bottom: 0;
    }

    &::before {
      content: "";
      display: block;
      position: absolute;
      border: 2px solid;
      box-sizing: border-box;
      bottom: 0;
      border-top-left-radius: 100px;
      border-bottom-left-radius: 100px;
      border-right: 0;
      left: -6px;
      width: 7px;
      height: 12px;
    }

    &::after {
      width: 16px;
      height: 16px;
      border-radius: 100px;
      border-left-color: transparent;
      right: -8px;
      transform: rotate(-45deg);
    }
  }