.gg-insert-after {
   box-sizing: border-box;
   position: relative;
   display: block;
   transform: scale(var(--ggs, 1));
   width: 18px;
   height: 18px;

   &::before {
     box-shadow: -2px 10px 0, 2px 10px 0;
   }

   &::after, &::before {
     content: "";
     display: block;
     box-sizing: border-box;
     position: absolute;
     width: 10px;
     height: 2px;
     background: currentColor;
     border-radius: 5px;
     top: 8px;
     left: 4px;
   }

   &::after {
     width: 2px;
     height: 10px;
     top: 4px;
     left: 8px;
   }
 }