.cutout {
  @extend %flexbox-row;
  align-items: center;
  justify-content: center;
  background: inherit;
  position: absolute;
  left: 50%;
  top: 0;
  height: $margin-quadruple;
  width: $margin-quadruple;
  margin: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);

  .pictogram {
    width: 32px;
    height: 32px;
  }

  &.large {
    z-index: 100;

    @include breakpoint(md) {
      width: 90px;
      height: 90px;

      .pictogram {
        height: 53px;
        width: 53px;
      }
    }
  }
}
