/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 10 2026 | 09:39:17 */
/* Contact Form 7 Global Custom Application Layout */
.jbwr-form-cf7-container {
  max-width: 850px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  box-sizing: border-box;
}

.jbwr-form-cf7-container * {
  box-sizing: border-box;
}

/* Structural Width Controls */
.jbwr-cf7-row {
  display: flex;
  flex-direction: column;
}
.jbwr-form-cf7-container .full-width { flex: 0 0 100%; width: 100%; }
.jbwr-form-cf7-container .half-width { flex: 0 0 calc(50% - 10px); width: calc(50% - 10px); }
.jbwr-form-cf7-container .quarter-width { flex: 0 0 calc(25% - 15px); width: calc(25% - 15px); }

/* Label Headers Styling */
.jbwr-form-cf7-container label {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
}

.jbwr-form-cf7-container .required {
  color: #cc0000;
}

/* Custom Input Field Formatting to Override CF7 Defaults */
.jbwr-form-cf7-container input[type="text"],
.jbwr-form-cf7-container input[type="email"],
.jbwr-form-cf7-container input[type="tel"],
.jbwr-form-cf7-container input[type="date"],
.jbwr-form-cf7-container select,
.jbwr-form-cf7-container textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 15px;
  color: #2b2b2b;
  background-color: #fafafa;
  margin-top: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.jbwr-form-cf7-container input:focus,
.jbwr-form-cf7-container select:focus,
.jbwr-form-cf7-container textarea:focus {
  border-color: #b58926;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(181, 137, 38, 0.15);
}

/* Radio Option Styling (Choice Blocks) */
.jbwr-form-cf7-container .choice-block {
  background: #fdfaf2;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px dashed #e4d7ba;
}

.jbwr-form-cf7-container .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 8px 25px 0 0;
}

.jbwr-form-cf7-container .wpcf7-list-item-label {
  font-size: 15px !important;
  text-transform: none !important;
  font-weight: 600 !important;
  color: #2b2b2b !important;
  margin-left: 8px;
}

.jbwr-form-cf7-container input[type="radio"] {
  accent-color: #b58926;
  width: 18px;
  height: 18px;
  margin: 0;
}

/* Submit Action Button styling */
.jbwr-form-cf7-container input[type="submit"] {
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.jbwr-form-cf7-container input[type="submit"]:hover {
  background-color: #b58926;
}

/* Prevent long text overflow strings like emails leaking out on mobile screens */
.jbwr-form-cf7-container input[type="email"] {
  word-break: break-all !important;
  overflow-wrap: break-word !important;
}

/* Responsive Mobile Reorganizing */
@media (max-width: 767px) {
  .jbwr-form-cf7-container .half-width, 
  .jbwr-form-cf7-container .quarter-width {
    flex: 0 0 100%;
    width: 100%;
  }
  .jbwr-form-cf7-container .wpcf7-list-item {
    display: flex;
    margin: 10px 0 0 0;
  }
}
/* Align reCAPTCHA V2 Box inside the application layout container */
.jbwr-recaptcha-row {
  margin: 10px 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

@media (max-width: 767px) {
  .jbwr-recaptcha-row {
    justify-content: center; /* Centers the checkbox widget cleanly on smartphones */
  }
}