.gg-reorder {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 14px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;

    &::after {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      border-radius: 3px;
    }

    &::before {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      border-radius: 3px;
      border: 2px solid;
      width: 6px;
      height: 6px;
      left: 12px;
      top: -2px;
    }

    &::after {
      top: -4px;
      left: 0;
      width: 10px;
      height: 2px;
      opacity: .5;
      background: currentColor;
      box-shadow: 0 8px 0 0, 0 12px 0 0, 0 16px 0 0;
    }
  }