/* ===== AJAX Post Filter — Styling ===== */

.apf-wrapper {
  font-family: "Nunito", sans-serif;
  margin-bottom: 3rem;
}

/* Search box */
.apf-search {
  max-width: 420px;
  margin-bottom: 1.5rem;
  position: relative;
}

.apf-search-input {
  width: 100%;
  padding: 10px 20px 10px 40px !important;
  border: 1px solid oklch(0.82 0.03 175) !important;
  border-radius: 9999px !important;
  font-size: 0.9rem;
  color: oklch(0.3 0.02 65);
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23789' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.3-4.3'%3E%3C/path%3E%3C/svg%3E")
    no-repeat 14px center;
  background-size: 15px 15px;
  outline: none;
  transition: box-shadow 0.15s ease;
}

.apf-search-input:focus {
  box-shadow: 0 0 0 2px oklch(0.58 0.07 175 / 0.4);
}

.apf-search-input::placeholder {
  color: oklch(0.65 0.02 65);
}

/* Filter groups */
.apf-filters {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0.75rem;
}

.apf-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.apf-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(0.52 0.03 65);
  margin-right: 0.35rem;
  min-width: 60px;
}

/* Pill buttons */
.apf-btn {
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid oklch(0.82 0.03 175);
  background: #fff;
  color: oklch(0.4 0.03 175);
  cursor: pointer;
  transition: all 0.15s ease;
  line-height: 1.4;
}

.apf-btn:hover {
  /* border-color: oklch(0.58 0.07 175);
    color: oklch(0.58 0.07 175); */
  color: oklch(0.4 0.03 175);

  background-color: #fff;
}

.apf-btn.active {
  background: oklch(0.58 0.07 175);
  border-color: oklch(0.58 0.07 175);
  color: #fff;
}

/* Meta row: count + clear */
.apf-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.apf-count {
  font-size: 0.875rem;
  color: oklch(0.52 0.03 65);
}

.apf-clear {
  display: none;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: oklch(0.58 0.07 175);
  cursor: pointer;
}

.apf-clear:hover {
  text-decoration: underline;
  background: none;
  color: oklch(0.58 0.07 175);
}

/* Results grid (adjust to match your Loop Grid columns) */
.apf-results {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: opacity 0.2s ease;
}

/*.apf-no-results {*/
/*    grid-column: 1 / -1;*/
/*    text-align: center;*/
/*    color: oklch(0.52 0.03 65);*/
/*    padding: 2rem 0;*/
/*}*/

/* Responsive */
@media (max-width: 640px) {
  .apf-label {
    min-width: unset;
    width: 100%;
    margin-bottom: 0.15rem;
  }
}

.roi-form-wrap {
  --roi-green: #4a6741;
  --roi-green-dark: #4a6741;
  --roi-cream: #f7f4ec;
  --roi-cream-box: #FAF9F6;
  --roi-border: #dcd6c7;
  --roi-text: #2e2e2a;
  --roi-rust: #a5503a;
  --roi-blue: #3a6ea5;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--roi-text);
  border-radius: 10px;
}
.roi-form-wrap * {
  box-sizing: border-box;
}
.roi-instructions {
  display: flex;
  gap: 12px;
  background: var(--roi-cream-box);
  border: 1px solid #cfd9c4;
  padding: 16px 18px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.roi-instr-icon {
  color: var(--roi-green);
  font-size: 20px;
  line-height: 1.4;
}
.roi-instructions strong {
  display: block;
  margin-bottom: 4px;
  color: var(--roi-green-dark);
}
.roi-instructions p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.roi-section {
  background: #fff;
  border: 1px solid var(--roi-border);
  border-radius: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
            0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.roi-section-header {
  background: var(--roi-green);
  color: #fff;
  padding: 16px 20px;
  font-weight: bold;
  letter-spacing: 0.3px;
  font-family: serif;
  font-size: 18px;
  letter-spacing: 2.52px;
  text-shadow:
    0 2px 12px oklch(100% 0 0 / 0.35),
    0 1px 3px oklch(100% 0 0 / 0.2);
}
.roi-section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.roi-select-all {
  font-size: 13px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #fff;
}
.roi-section-body {
  padding: 22px;
}
.roi-label {
  display: block;
  font-size: 12px;
  font-family: "Nunito", Sans-serif !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
  font-weight: bold;
}
.roi-small-label {
  margin-top: 10px;
}
.roi-input,
.roi-textarea {
  font-family: "Nunito", Sans-serif !important;
  width: 100%;
  border: 1px solid #e0d8cc !important;
  background: #faf9f6;
  padding: 10px 12px;
  border-radius: 8px !important;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--roi-text);
}
.roi-textarea {
  min-height: 80px;
  resize: vertical;
  margin-bottom: 8px;
}
.roi-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.roi-col {
  flex: 1 1 220px;
}
.roi-intro-text {
  font-size: 14px;
  margin: 0 0 16px;
  font-family: "Nunito", Sans-serif;
  color: #666;
}
.roi-provider {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid #e8e0d0;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  font-family: "Nunito", Sans-serif;
  transition: background .15s ease, border-color .15s ease;
}
.roi-provider:hover {
  background-color: #faf9f6;
  border-color: #9ec4b080;
}
.roi-provider.roi-checked,
.roi-provider:has(input.roi-provider-checkbox:checked) {
  background-color: #9ec4b01a;
  border-color: #9ec4b0;
}
.roi-provider input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #4A6741;
}
.roi-form-wrap input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #4A6741;
}
.roi-provider strong {
  display: block;
  font-size: 14px;
  color: #333;
  font-family: "Nunito", Sans-serif;
}
.roi-provider-practice {
  display: block;
  font-size: 12px;
  color: #666;
}
.roi-provider-addr {
  display: block;
  font-size: 12px;
  color: #888;
  font-family: "Nunito", Sans-serif;
}
.roi-provider-count {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eceae4;
  color: #444;
  font-family: "Nunito", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 8px;
  margin-top: 18px;
}
.roi-provider-count span:first-child {
  color: var(--roi-green);
  font-weight: 700;
}
.roi-provider-count.roi-hidden {
  display: none;
}
.roi_cstm_wrp {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roi-other-block {
  margin-top: 14px;
  background-color: transparent;
  border: 1px solid #e8e0d0;
  padding: 16px;
  border-radius: 10px;
  transition: background .15s ease, border-color .15s ease;
}
.roi-other-block.roi-checked,
.roi-other-block:has(#roiOtherCheck:checked) {
  background-color: #9ec4b01a;
  border-color: #9ec4b0;
}
.roi-other-block-lbl {
  margin-top: 14px;
}
.roi-other-provider {
  font-family: "Nunito", Sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
  font-weight: 700;
}
.roi-other-provider-check-lbl {
  margin-left: 10px;
}
.roi-other-block-input {
  margin-left: 20px;
}
.roi-other-provider input[type="checkbox"] {
  accent-color: #4A6741;
}
.roi-checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Nunito", Sans-serif;
  font-size: 14px;
  border: 1px solid var(--roi-border);
  padding: 12px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 10px;
  transition: background .15s ease, border-color .15s ease;
}
.roi-checkbox-line.roi-checked,
.roi-checkbox-line:has(input[type="checkbox"]:checked) {
  background-color: #9ec4b01a;
  border-color: #9ec4b0;
}
.roi-hint {
  font-size: 12px;
  color: #888;
  font-family: "Nunito", Sans-serif;
  margin: 0 0 8px;
}
.roi-notice {
  background: var(--roi-cream-box);
  border: 1px solid #cfd9c4;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-family: "Nunito", Sans-serif;
}
.roi-signature-line {
  border: 1px dashed var(--roi-border);
  border-radius: 3px;
  background: #fbfaf6;
  padding: 24px 12px;
  text-align: center;
  color: #999;
  font-style: italic;
  font-family: "Nunito", Sans-serif;
  font-size: 13px;
}
.roi-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.roi-btn {
  font-family: "Nunito", Sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid var(--roi-green);
}
.roi-btn-primary {
  background: var(--roi-green) !important;
  color: #fff !important;
  border-radius: 10px !important;
  border: none !important;
  font-weight: 700;
}
.roi-btn-primary:hover {
  background: var(--roi-green-dark);
}
.roi-btn-secondary {
  background: #fff !important;
  color: var(--roi-green);
  font-weight: 700;
  border-radius: 10px !important;
  border: 1px solid #e0d8cc !important;
}
.roi-btn-secondary:hover {
  background: #f0efe8;
  color: var(--roi-green);
  border-color: #9ec4b0 !important;
}
@media print {
  body * {
    visibility: hidden;
  }
  .roi-form-wrap,
  .roi-form-wrap * {
    visibility: visible;
  }
  .roi-form-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
  }
  .roi-actions {
    display: none !important;
  }
  .roi-section {
    break-inside: avoid;
    border: 1px solid #999;
  }
  .roi-input,
  .roi-textarea {
    background: #fff;
    border: 1px solid #999;
  }
}

@media (max-width: 767px) {
  .roi-col {
    flex: unset;
  }
  .roi-other-block-input {
    margin: 0px;
  }
}
@media (max-width: 600px) {
  .roi-row {
    flex-direction: column;
  }
  .roi-section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/********************* Event Css  ********************/


.event_date .elementor-post-info__item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0 !important;

    
}

.event_date .event-day {
  font-family: "Raleway", Sans-serif;
    display: block;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.event_date .event-month {
        font-family: "Nunito", Sans-serif;
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
}

.event_date .event-year {
        font-family: "Nunito", Sans-serif;
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
      opacity: 0.8;
}

