.gg-ui-kit {
    display: block;
    box-sizing: border-box;

    &::after, &::before {
      display: block;
      box-sizing: border-box;
    }

    position: relative;
    transform: scale(var(--ggs, 1));
    width: 10px;
    height: 16px;
    border-radius: 3px;
    border: 2px solid;

    &::after {
      content: "";
      position: absolute;
      border: 2px solid;
      width: 6px;
      height: 12px;
    }

    &::before {
      content: "";
      position: absolute;
      border: 2px solid;
      width: 6px;
      height: 12px;
      border-right: 0;
      border-top-left-radius: 3px;
      border-bottom-left-radius: 3px;
      transform: perspective(10px) rotateY(30deg);
      left: -8px;
    }

    &::after {
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px;
      transform: perspective(10px) rotateY(-30deg);
      border-left: 0;
      right: -8px;
    }
  }