/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:42:14 */
/* Hide the native checkbox input */
.lp-listing-form input[type="checkbox"],
.lp-check-custom-wrapp input[type="checkbox"],
.lp-listing-form .checkbox input[type="checkbox"] {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
}

/* Base visible box (unchecked state) */
.lp-listing-form input[type="checkbox"] + label::before,
.lp-check-custom-wrapp input[type="checkbox"] + label::before,
input[type="checkbox"] + label::before {
  content: "" !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  border-radius: 4px !important;
  border: 2px solid #333 !important;     /* darker border */
  background: #e0e0e0 !important;        /* light gray background */
  box-sizing: border-box !important;
  transition: all 0.2s ease-in-out !important;
}

/* Checked state → very strong deep blue */
.lp-listing-form input[type="checkbox"]:checked + label::before,
.lp-check-custom-wrapp input[type="checkbox"]:checked + label::before,
input[type="checkbox"]:checked + label::before {
  content: "" !important;
  background: #357de8 !important;        /* stronger deep blue */
  border: 2px solid #0033cc !important;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25) inset !important;
}

/* Hover effect */
.lp-listing-form input[type="checkbox"] + label:hover::before,
.lp-check-custom-wrapp input[type="checkbox"] + label:hover::before {
  border-color: #002699 !important;      /* darker blue on hover */
}

/* Clickable labels */
.lp-listing-form input[type="checkbox"] + label,
.lp-check-custom-wrapp input[type="checkbox"] + label {
  cursor: pointer !important;
  user-select: none !important;
}
