.gg-chanel {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 21px;
    height: 18px;

    &::after {
      content: "";
      display: block;
      position: absolute;
      box-sizing: border-box;
      border: 3px solid;
      width: 18px;
      height: 18px;
      border-radius: 22px;
    }

    &::before {
      content: "";
      display: block;
      position: absolute;
      box-sizing: border-box;
      border: 3px solid;
      width: 18px;
      height: 18px;
      border-radius: 22px;
      border-left-color: transparent;
      left: -3px;
    }

    &::after {
      border-right-color: transparent;
      right: -3px;
    }
  }