:root {
    --primary-color: #004E9E;
}

.checkbox-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.checkbox-btns .wpcf7-list-item {
    margin: 0;
}

/* Standardzustand */
.checkbox-btns .wpcf7-list-item-label {
  display: inline-block;
  padding: 5px 10px;
  font-size: .875em;
  border: 1px solid white;
  border-radius: 3rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease;
}

/* Checkbox ausblenden */
.checkbox-btns input[type="checkbox"] {
  display: none;
}

/* Checked-Zustand */
/* .checkbox-btns input[type="checkbox"]:checked + .wpcf7-list-item-label { */
.checkbox-btns input[type="checkbox"]:checked + .wpcf7-list-item-label, .checkbox-btns .wpcf7-list-item-label:hover {
  background-color: white;
  color: var(--primary-color);
}
