/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 26 2025 | 21:32:06 */
/* container safe layer */
.cfw-wrap, .wpcf7 { position: relative; z-index: 1000; }

/* Inputs / textarea */
.cfw-input, .cfw-textarea, input.wpcf7-text, textarea.wpcf7-textarea, select.wpcf7-select {
  display:block;
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:6px;
  box-sizing:border-box;
  font-size:14px;
  background:#fff;
  color:#111;
}

/* Checkbox styling (visible box + label click area) */
.wpcf7-form .wpcf7-list-item {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-right:12px;
  margin-bottom:8px;
}

/* hide native default on some browsers but keep accessible */
.wpcf7-form input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width:18px;
  height:18px;
  border:1px solid #333;
  border-radius:3px;
  display:inline-block;
  vertical-align:middle;
  position:relative;
  cursor:pointer;
  background:#fff;
}

/* checked visual */
.wpcf7-form input[type="checkbox"]:checked {
  background: #b92b6b; /* change to your brand color if desired */
  border-color: #b92b6b;
}
.wpcf7-form input[type="checkbox"]:checked::after {
  content: "\2713";
  color: #fff;
  font-size:13px;
  position:absolute;
  left:2px; top:0px;
}

/* make whole label clickable */
.wpcf7-form .wpcf7-list-item label,
.wpcf7-form .wpcf7-list-item span {
  cursor:pointer;
  user-select:none;
  font-size:13px;
}

/* submit button */
.wpcf7-submit { background:#b92b6b; color:#fff; border:none; padding:10px 16px; border-radius:8px; cursor:pointer; }

/* if an invisible overlay blocks the form, this helps (see debug below) */
.cfw-wrap * { pointer-events:auto; }

/* Mistress-only visual checkbox */
.cb { 
  display:inline-block; 
  width:14px; 
  height:14px; 
  border:1px solid #333; 
  border-radius:3px; 
  vertical-align:middle; 
  margin-right:8px;
  background:#fff;
}

/* etwas Abstand/Zeilenhöhe für die Optionszeilen */
.mistress-row { display:inline-block; margin-right:18px; margin-bottom:8px; font-size:12px; vertical-align:middle; }

/* bei Bedarf größer: .cb { width:18px; height:18px; } */

