/* Hele balk */
.checkboxes {
  display: flex;
  background: #e4170e;
  flex-wrap: wrap;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom:20px;
  gap: 28px;
  width: 100%;
}

/* Individueel item */
#item {
  background: transparent;
  padding: 0;
  margin: 0;
}

/* Label styling */
#item label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

/* Verberg native checkbox */
#item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Custom checkbox */
#item label span {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  position: relative;
}

/* Checkmark */
#item input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #d40000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
