/* WKL Overlay + Disabled State */
li.wpforms-image-choices-item.wkl-disabled {
  opacity: 0.5;
  filter: grayscale(100%);
  position: relative;
  cursor: not-allowed;
  pointer-events: none;
}

li.wpforms-image-choices-item.wkl-disabled input {
  pointer-events: none;
}

li.wpforms-image-choices-item.wkl-disabled::after {
  content: "AUSGEBUCHT";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  text-align: center;
  padding-bottom: 35px;
  pointer-events: none;
}
