@charset "UTF-8";
.bg-green {
  background-color: #005336;
  color: #f0f6da;
}
.bg-green .case-study-scrollbar {
  background: #fff !important;
}
.bg-green .case-study-thumb {
  background: #fff !important;
}
.bg-green a {
  color: #f0f6da;
}
.bg-green a :hover {
  color: #f0f6da;
  opacity: 0.8;
}

.bg-lightGreen {
  background-color: #47d260;
  color: #002b1d;
}

.bg-pistachio {
  background-color: #f0f6da !important;
  color: #000;
}

.bg-mint .text-editor-area {
  border-left: 1px solid #005336 !important;
}

.spacer {
  margin: 90px 0 0 0;
}

main .wp-block-acf-form div#field_2_37 {
  position: relative;
}
main .wp-block-acf-form a.button.btn-pistachio {
  position: absolute;
  width: 314px;
  right: 0;
  top: 22px;
}
main .wp-block-acf-form button#gform_save_2_footer_link {
  max-width: 200px;
  margin-left: 12px;
}
main .wp-block-acf-form button#gform_save_2_footer_link svg {
  display: none;
}

.gform_wrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.1);
}
.gform_wrapper h2.gform_title {
  text-align: center;
  padding-top: 40px;
}

.gform_validation_errors,
.validation_message {
  background: lightgreen !important;
  border-radius: 15px !important;
  border: none !important;
  box-shadow: none !important;
  color: black !important;
}
.gform_validation_errors h2,
.validation_message h2 {
  color: black !important;
}

.bg-green .gform_wrapper {
  background-color: #002b1d !important;
  color: #f0f6da !important;
}
.bg-green .gform_wrapper input,
.bg-green .gform_wrapper textarea {
  background: transparent !important;
  border: 1px solid #58a88b !important;
  color: #f0f6da !important;
}
.bg-green .gform_wrapper label {
  color: #f0f6da !important;
}

p.gform_required_legend {
  display: none;
}

h2.gform_title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 0px;
}

.gform_wrapper h2.gform_title {
  padding-top: 0 !important;
}
.gform_wrapper h2.gform_title svg {
  margin-bottom: 20px;
}

.gform_confirmation_message_2 {
  background-color: #005336 !important;
  color: #f0f6da !important;
  max-width: 1024px;
  border-radius: 15px;
  padding: 60px;
  margin: 0 auto;
}
.gform_confirmation_message_2 h3,
.gform_confirmation_message_2 p {
  margin-bottom: 0 !important;
}

.gform_wrapper {
  position: relative;
}

.gform-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.gform-loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e0e0e0;
  border-top-color: #005336;
  border-radius: 50%;
  animation: gform-spin 0.8s linear infinite;
}

@keyframes gform-spin {
  to {
    transform: rotate(360deg);
  }
}
body .gform_wrapper select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 12px) center !important;
}

.hpa-pricing-table {
  --hpa-row-bg: #f0f6da;
  --hpa-panel-bg: rgba(246, 250, 232, 0.92);
  --hpa-text: #000000;
  --hpa-text-green: #005336;
  --hpa-gap: 12px;
  --hpa-row-height: 60px; /* pill height */
  --hpa-price-col: 150px; /* fixed width so all prices align */
  --hpa-radius-pill: 60px; /* corner radius when collapsed */
  --hpa-radius-card: 30px; /* corner radius when expanded */
  display: flex;
  flex-direction: column;
  gap: var(--hpa-gap);
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 50px;
}

/* Reset inherited box model + typography so the site's CSS can't distort it */
.hpa-pricing-table * {
  box-sizing: border-box;
}

/* ---- Standard pill row ---- */
.hpa-pricing-table__row {
  background: var(--hpa-row-bg);
  border-radius: var(--hpa-radius-pill);
  min-height: var(--hpa-row-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 40px;
  gap: 24px;
}

.hpa-pricing-table__tier {
  font-size: 16px;
  font-weight: 600;
  color: #005336;
  line-height: 1.4;
  margin: 0;
}

.hpa-pricing-table__price-group {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
  left: 15px;
}
@media (max-width: 620px) {
  .hpa-pricing-table__price-group {
    gap: 12px;
  }
}

/* Fixed-width price so every row's price starts at the same x position */
.hpa-pricing-table__price {
  width: var(--hpa-price-col);
  font-size: 16px;
  font-weight: 400;
  color: #005336;
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 620px) {
  .hpa-pricing-table__price {
    text-align: right;
  }
}

.hpa-pricing-table__chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---- Expandable "Full Member" row ---- */
/* The expandable container IS the pill. It shares one background with the
   panel, so the pill visually grows downward into a single card. */
.hpa-pricing-table__expandable {
  background: var(--hpa-row-bg);
  border-radius: var(--hpa-radius-pill);
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.hpa-pricing-table__expandable.is-open {
  border-radius: var(--hpa-radius-card);
}

/* The toggle is the clickable top section of the pill.
   Native button styling is fully reset so the site's button CSS can't leak in. */
.hpa-pricing-table__toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  outline-offset: 2px;
  box-shadow: none;
  background: transparent; /* sits on the expandable's background */
  margin: 0;
  width: 100%;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  /* Match .hpa-pricing-table__row layout */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--hpa-row-height);
  padding: 8px 40px;
  gap: 24px;
}

.hpa-pricing-table__toggle .hpa-pricing-table__chevron {
  transition: transform 0.25s ease;
}

.hpa-pricing-table__toggle[aria-expanded=true] .hpa-pricing-table__chevron {
  transform: rotate(180deg);
}

/* Collapsible panel: animates open via max-height */
.hpa-pricing-table__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.hpa-pricing-table__panel-inner {
  /* same background as the pill — no separate panel look */
  padding: 4px 40px 32px;
}

/* Two-column tier grid */
.hpa-pricing-table__tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 48px;
}

.hpa-pricing-table__tier-list {
  display: flex;
  flex-direction: column;
}

.hpa-pricing-table__tier-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  color: var(--hpa-text-green);
  font-size: 16px;
  line-height: 28px;
}

.hpa-pricing-table__tier-label,
.hpa-pricing-table__tier-band,
.hpa-pricing-table__tier-price {
  margin: 0;
}

.hpa-pricing-table__tier-label,
.hpa-pricing-table__tier-price {
  white-space: nowrap;
}

.hpa-pricing-table__tier-price {
  text-align: left;
}

@media (max-width: 720px) {
  .hpa-pricing-table__tiers {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
@media (max-width: 560px) {
  .hpa-pricing-table {
    --hpa-price-col: 120px;
    --hpa-radius-pill: 40px;
    --hpa-radius-card: 24px;
  }
  .hpa-pricing-table__row,
  .hpa-pricing-table__toggle {
    padding: 8px 28px;
  }
  .hpa-pricing-table__panel-inner {
    padding: 4px 28px 28px;
  }
}/*# sourceMappingURL=form.css.map */