.gg-calendar-next {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs, 1));
    width: 14px;
    height: 14px;
    border: 2px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 4px solid transparent;
    border-left: 3px solid transparent;
    box-shadow: 0 0 0 2px, inset 0 -2px 0;
    border-radius: 1px;

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

    &::before {
      content: "";
      display: block;
      box-sizing: border-box;
      position: absolute;
      background: currentColor;
      border-radius: 2px;
      top: 0;
      left: -1px;
      width: 10px;
      height: 2px;
    }

    &::after {
      width: 0;
      height: 0;
      border-top: 3px solid transparent;
      border-bottom: 3px solid transparent;
      border-left: 5px solid;
      bottom: -2px;
      right: -2px;
    }
  }