/** Shopify CDN: Minification failed

Line 49:29 Expected ":"

**/
/* ============================================================================
   globoform-adjust.css
   Site-wide styling for forms rendered by the Shopify "Powerful Form
   Builder" (Globo) app. Load on any page that embeds a
   <div class="globo-formbuilder">.

   Each Globo field renders as:
       .globo-form-control
         > label.globo-label
             > span.label-content     (the field's name)
             > span.text-danger       (the " *" for required fields)
         > .globo-form-input
             > input | textarea | select   (or .classic-input variants)

   Globo's own CSS is injected inline within each form with a
   .globo-form-id-NNN ancestor, so a couple of rules below use !important
   to win the specificity battle (notably the label-color override).
   ============================================================================ */

/* ── App / panel layout ── */

.globo-form-app { margin-top: 0; }
.globo-form-app .panels { z-index: 1 !important; }
.globo-form-app .flex-wrap { padding-left: 0; }

.globo-form-app,
.globo-form-app .panel,
.globo-form-app .panel .globo-paragraph {
  background: inherit !important;
}

.globo-form-app .panel .globo-paragraph { font-weight: bold; }

/* ── Headings & paragraphs ── */

.globo-heading { font-size: 18px; }
.globo-description strong { font-weight: bold; color: #878787; }
.globo-paragraph { color: #545554 !important; font-size: 20px; }

/* ── Fields (input / textarea / select) ──
   Bottom-border-only look. 22px top padding reserves the slot the floating
   label drops into when the field is focused. */

.globo-form-control { padding 0 5px !important; position: relative; }

.globo-form-control:not(:has(fieldset)) input,
.globo-form-control:not(:has(fieldset)) textarea,
.globo-form-control:not(:has(fieldset)) select {
  width: 100%;
  min-height: 54px;
  padding: 22px 14px 8px;
  border: none;
  border-bottom: 1px solid #d4d4d3;
  border-radius: 0;
  background: #fafbf8;
  color: #545554;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: border-color .18s, background .18s;
}

.globo-form-control:not(:has(fieldset)) input:focus,
.globo-form-control:not(:has(fieldset)) textarea:focus,
.globo-form-control:not(:has(fieldset)) select:focus {
  outline: none;
  border-bottom-color: #568b52;
  background: #f4f6f0;
}

.globo-form-control input::placeholder,
.globo-form-control textarea::placeholder {
  color: #b0b0ae;
  font-weight: 500;
  opacity: 1;  /* Firefox defaults to ~0.54 */
}

/* Hide the placeholder while focused so only the floating label is visible */
.globo-form-control:has(input:focus, textarea:focus) input::placeholder,
.globo-form-control:has(input:focus, textarea:focus) textarea::placeholder {
  color: transparent;
}

.globo-form-control .globo-list-control { padding: 0; }
.globo-form-input ul { padding-left: 0 !important; }

/* ── Floating label ──
   Applies to text-like fields only. Checkbox / radio controls opt out via
   :not(:has(fieldset)) — Globo wraps checkbox/radio options in a <fieldset>,
   so a control containing one is a toggle group, not a text field. Their
   group label stays static (see "Checkbox / radio groups" below).

   Three visible states:
     • empty + unfocused  → label hidden (placeholder visible)
     • focused (any)      → label shown in green
     • filled + unfocused → label shown in dark gray

   Detection:
     • input/textarea  → :not(:placeholder-shown) (every Globo input/textarea
                         ships with a placeholder attribute matching its label)
     • select          → :has(select option:not([value=""]):checked).
                         Globo's "empty" select is `<option value="" disabled
                         selected>Placeholder…</option>`, so a non-empty checked
                         option means the user picked something real.

   !important on the inner .label-content / .text-danger colors is required:
   Globo's own inline CSS colors .label-content via a .globo-form-id-NNN
   ancestor selector that's too specific to beat without it. */

.globo-form-control:not(:has(fieldset)) > label { display: none; }

/* Reveal — focused OR field has content */
.globo-form-control:not(:has(fieldset)):has(input:focus, textarea:focus, select:focus) > label,
.globo-form-control:not(:has(fieldset)):has(input:not(:placeholder-shown)) > label,
.globo-form-control:not(:has(fieldset)):has(textarea:not(:placeholder-shown)) > label,
.globo-form-control:not(:has(fieldset)):has(select option:not([value=""]):checked) > label {
  display: block;
  position: absolute;
  top: 4px;
  left: 14px;
  margin: 0;
  height: auto !important;  /* defeat Globo's .globo-position-label height */
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  animation: globoform-label-in .18s ease;
}

/* Filled-but-not-focused: dark gray (declared first; same-specificity green
   rule below wins when both match, i.e. focused + filled) */
.globo-form-control:not(:has(fieldset)):has(input:not(:placeholder-shown)) > label .label-content,
.globo-form-control:not(:has(fieldset)):has(input:not(:placeholder-shown)) > label .text-danger,
.globo-form-control:not(:has(fieldset)):has(textarea:not(:placeholder-shown)) > label .label-content,
.globo-form-control:not(:has(fieldset)):has(textarea:not(:placeholder-shown)) > label .text-danger,
.globo-form-control:not(:has(fieldset)):has(select option:not([value=""]):checked) > label .label-content,
.globo-form-control:not(:has(fieldset)):has(select option:not([value=""]):checked) > label .text-danger {
  color: #545554 !important;
  font-size: inherit;
}

/* Focused: green */
.globo-form-control:not(:has(fieldset)):has(input:focus, textarea:focus, select:focus) > label .label-content,
.globo-form-control:not(:has(fieldset)):has(input:focus, textarea:focus, select:focus) > label .text-danger {
  color: #568b52 !important;
  font-size: inherit;
}

@keyframes globoform-label-in {
  from { opacity: 0; transform: translateY(2px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Checkbox / radio groups ──
   Detected by the <fieldset> Globo wraps their options in. Excluded from the
   field + floating-label rules above. The group label stays static above the
   options.

   Globo's custom checkbox is an absolutely-positioned ::before box on
   .checkbox-label; its offset is calibrated to Globo's own spacing and
   mis-aligns ("floats too high") once we restyle the surrounding layout.
   Rather than chase Globo's magic offsets, we drop the ::before box, reveal
   the real native <input>, and lay each option out in plain flexbox flow.
   !important is needed throughout — Globo's component CSS is high-specificity. */

.globo-form-control:has(fieldset) {
  padding: 14px 14px 12px;
  background: #fafbf8;
  border-bottom: 1px solid #d4d4d3;
}

/* Group label — static block, small uppercase (matches the floating label) */
.globo-form-control:has(fieldset) > label.globo-label {
  display: block !important;
  position: static !important;
  margin: 0 0 10px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}
.globo-form-control:has(fieldset) > label.globo-label .label-content,
.globo-form-control:has(fieldset) > label.globo-label .text-danger {
  color: #545554 !important;
  font-size: inherit !important;
}

/* Force the option list into clean normal flow */
.globo-form-control:has(fieldset) fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.globo-form-control:has(fieldset) .flex-wrap {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.globo-form-control:has(fieldset) .globo-list-control {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.globo-form-control:has(fieldset) .checkbox-wrapper,
.globo-form-control:has(fieldset) .radio-wrapper {
  display: flex !important;
  align-items: center;
  gap: 8px;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Show the real native checkbox/radio; hide Globo's positioned ::before box */
.globo-form-control:has(fieldset) .checkbox-input,
.globo-form-control:has(fieldset) .radio-input {
  position: static !important;
  display: inline-block !important;
  appearance: auto !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  opacity: 1 !important;
  accent-color: #568b52;
  flex-shrink: 0;
}
.globo-form-control:has(fieldset) .checkbox-label,
.globo-form-control:has(fieldset) .radio-label {
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #545554;
}
.globo-form-control:has(fieldset) .checkbox-label::before,
.globo-form-control:has(fieldset) .checkbox-label::after,
.globo-form-control:has(fieldset) .radio-label::before,
.globo-form-control:has(fieldset) .radio-label::after {
  display: none !important;
}

/* ── Submit button ── */

.globo-form .wizard__submit {
  padding: 14px 50px;
  border-radius: 6px;
}
