
html.dmlabs-meta-popup-open,
body.dmlabs-meta-popup-open {
  overflow: hidden !important;
}

.dmlabs-meta-popup,
.dmlabs-meta-popup * {
  box-sizing: border-box;
}

.dmlabs-meta-popup {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  visibility: hidden;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: visibility 0s linear .38s;
}

.dmlabs-meta-popup.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.dmlabs-meta-popup-backdrop {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #FFFFFF;
  opacity: 0;
  transition: opacity .34s cubic-bezier(.22,.61,.36,1);
  will-change: opacity;
}

.dmlabs-meta-popup.is-open .dmlabs-meta-popup-backdrop {
  opacity: 1;
}

/*
 * Render the overlay artwork as a real image as well as a CSS background.
 * This avoids aggressive CSS optimisation/cache layers stripping or serving
 * an older background-image declaration. The translucent green remains only as a fallback.
 */
.dmlabs-meta-popup-backdrop-image {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  object-fit: cover !important;
  object-position: 50% 50% !important;
  border: 0 !important;
  border-radius: 0 !important;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.dmlabs-meta-popup-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  pointer-events: none;
}

.dmlabs-meta-popup-dialog {
  width: min(620px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  margin: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  opacity: 0;
  transform: translate3d(0, 64px, 0);
  pointer-events: auto;
  outline: none;
  overflow: visible;
  transition:
    width .42s cubic-bezier(.22,.61,.36,1),
    opacity .26s ease,
    transform .38s cubic-bezier(.22,.61,.36,1);
  will-change: width, transform, opacity;
}

.dmlabs-meta-popup-dialog[data-step="2"] {
  width: min(680px, calc(100vw - 32px));
}

.dmlabs-meta-popup-dialog[data-step="3"] {
  /* 1212px = 1180px Calendly desktop viewport + 16px card padding each side. */
  width: min(1212px, calc(100vw - 32px));
}

.dmlabs-meta-popup.is-open .dmlabs-meta-popup-dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* The modal controls width. The form fills it instead of fighting Elementor-like fixed widths. */
.dmlabs-meta-popup .dmlabs-lead-card,
.dmlabs-meta-popup .dmlabs-lead-card.is-calendar {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
}

@media (max-width: 767px) {
  .dmlabs-meta-popup-stage {
    align-items: flex-start;
    padding: 10px 8px;
  }

  .dmlabs-meta-popup-dialog,
  .dmlabs-meta-popup-dialog[data-step="2"],
  .dmlabs-meta-popup-dialog[data-step="3"] {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    border-radius: 15px;
    transform: translate3d(0, 48px, 0);
  }

  .dmlabs-meta-popup.is-open .dmlabs-meta-popup-dialog {
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dmlabs-meta-popup,
  .dmlabs-meta-popup-backdrop,
  .dmlabs-meta-popup-dialog,
  .dmlabs-step.is-active {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}


.dmlabs-lead-flow,
.dmlabs-lead-flow *,
.dmlabs-lead-flow *::before,
.dmlabs-lead-flow *::after { box-sizing: border-box; }

.dmlabs-lead-flow {
  --green: #087946;
  --green-hover: #066a3d;
  --green-light: #eff9f4;
  --text: #111111;
  --muted: #6f7580;
  --border: #d3d6d8;
  --border-light: #e8ebe9;
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  color: var(--text);
}

.dmlabs-lead-flow * { font-family: "Poppins", sans-serif; }

.dmlabs-lead-card {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 16px;
  background: #fff;
  border-radius: 16px;
  transition: max-width .35s ease, padding .35s ease;
}

.dmlabs-lead-card.is-calendar {
  /*
   * Keep the visible Dmlabs card the same width as Calendly's desktop card.
   * Calendly itself still gets a hidden 1180px viewport further below so it
   * stays in the side-by-side desktop layout instead of collapsing vertically.
   */
  max-width: 832px;
  width: min(832px, calc(100vw - 32px));
  flex-shrink: 0;
}

.dmlabs-flow-close {
  position: absolute;
  top: 1px;
  right: 2px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  z-index: 20;
}

.dmlabs-flow-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}


/* =========================================================
   JOURNEY HEADER + PROGRESS
========================================================= */

.dmlabs-journey-header {
  width: 100%;
  max-width: 620px;
  padding-right: 34px;
  margin-bottom: 18px;
}

.dmlabs-journey-intro {
  margin-bottom: 17px;
}

.dmlabs-journey-intro h2 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.045em;
}

.dmlabs-journey-intro h2 span {
  color: var(--green);
}

.dmlabs-journey-intro p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

/* Only the first page shows the large intro. The three page labels stay visible
   across the whole journey. */
.dmlabs-lead-flow:not([data-step="1"]) .dmlabs-journey-intro {
  display: none;
}

.dmlabs-progress {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dmlabs-progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.dmlabs-progress-number {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f3f5;
  color: #697381;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.dmlabs-progress-label {
  color: #7d8591;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 500;
  transition: color .25s ease;
}

.dmlabs-progress-line {
  height: 1px;
  flex: 1 1 38px;
  min-width: 24px;
  max-width: 58px;
  background: #e0e5e7;
  transition: background .25s ease;
}

.dmlabs-progress-step.is-current .dmlabs-progress-number,
.dmlabs-progress-step.is-complete .dmlabs-progress-number {
  background: var(--green);
  color: #fff;
}

.dmlabs-progress-step.is-current .dmlabs-progress-number {
  box-shadow: 0 0 0 3px rgba(8,121,70,.10);
}

.dmlabs-progress-step.is-current .dmlabs-progress-label {
  color: var(--green);
  font-weight: 600;
}

.dmlabs-progress-step.is-complete .dmlabs-progress-label {
  color: #39433e;
}

.dmlabs-progress-line.is-complete {
  background: rgba(8,121,70,.42);
}

.dmlabs-step { display: none; width: 100%; }
.dmlabs-step.is-active { display: block; animation: dmlabsStepIn .28s ease both; }

@keyframes dmlabsStepIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.dmlabs-step-heading { padding-right: 34px; }

.dmlabs-step-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 36px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.045em;
}

.dmlabs-step-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

/*
 * Funnel field styles are intentionally scoped to the popup. The site theme also
 * uses a generic .dmlabs-field class for contact forms; without this namespace,
 * stylesheet load order can remove the icon padding on non-Meta service pages.
 * Keeping the popup component self-contained makes Google Ads, SEO, Website
 * Development and Meta Ads render identically regardless of page CSS order.
 */
.dmlabs-fields-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px 24px;
  margin-top: 4px;
}

.dmlabs-meta-popup .dmlabs-field { min-width: 0; display: block; }
.dmlabs-meta-popup .dmlabs-field-full { grid-column: 1 / -1; }

.dmlabs-meta-popup .dmlabs-field label {
  display: block;
  margin: 0 0 6px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

.dmlabs-required {
  color: #df3a3a;
}

.dmlabs-input-wrap {
  position: relative;
}

.dmlabs-field-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b95a5;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color .2s ease;
}

.dmlabs-field-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dmlabs-input-wrap:focus-within .dmlabs-field-icon {
  color: var(--green);
}

.dmlabs-meta-popup .dmlabs-field input {
  width: 100%;
  height: 43px;
  padding: 0 18px 0 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.dmlabs-meta-popup .dmlabs-field input::placeholder { color: #a4acb9; opacity: 1; }
.dmlabs-meta-popup .dmlabs-field input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(8,121,70,.08); }
.dmlabs-meta-popup .dmlabs-field.has-error input { border-color: #cf3d3d; }
.dmlabs-meta-popup .dmlabs-field.has-error .dmlabs-field-icon { color: #cf3d3d; }

.dmlabs-field-error {
  display: none;
  margin-top: 5px;
  color: #c93434;
  font-size: 11px;
  line-height: 1.4;
}

.dmlabs-meta-popup .dmlabs-field.has-error .dmlabs-field-error { display: block; }

.dmlabs-consent-block {
  margin-top: 15px;
  padding: 13px 14px;
  border: 1px solid #e3e7e5;
  border-radius: 10px;
  background: #f8faf9;
}

.dmlabs-enquiry-contact-notice {
  margin: 0 0 10px;
  color: #666d69;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
}

.dmlabs-marketing-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: #353a37;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
}

.dmlabs-marketing-consent input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin: 1px 0 0;
  padding: 0;
  border-radius: 4px;
  accent-color: var(--green);
  cursor: pointer;
}

.dmlabs-marketing-consent span {
  display: block;
}

.dmlabs-primary-button {
  min-height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 22px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.dmlabs-primary-button:hover { background: var(--green-hover); border-color: var(--green-hover); }
.dmlabs-primary-button:active { transform: translateY(1px); }
.dmlabs-primary-button:disabled { cursor: default; transform: none; }
.dmlabs-primary-button.is-loading:before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid rgba(255,255,255,.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: dmlabs-button-spin .7s linear infinite;
}
@keyframes dmlabs-button-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .dmlabs-primary-button.is-loading:before { animation: none; } }
#dmlabsStepOneNext { width: 100%; margin-top: 14px; }

.dmlabs-back-button {
  min-height: 41px;
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.dmlabs-question-panel {
  width: 100%;
  margin-top: 14px;
  padding: 18px;
  border-radius: 13px;
  background: linear-gradient(135deg, #f1faf5 0%, #f8fbf9 100%);
}

.dmlabs-question + .dmlabs-question { margin-top: 18px; }

.dmlabs-question-title {
  margin-bottom: 9px;
  color: #1a1d1b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
}

.dmlabs-question-title span { color: #df3a3a; }
.dmlabs-options { display: grid; gap: 10px; }
.dmlabs-options-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dmlabs-options-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.dmlabs-options-four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.dmlabs-choice {
  width: 100%;
  min-width: 0;
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #dce1df;
  border-radius: 10px;
  background: #fff;
  color: #303640;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,.025);
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.dmlabs-choice:hover { border-color: #a6cbbb; }

.dmlabs-choice.is-selected {
  border-color: var(--green);
  background: #f0faf5;
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(8,121,70,.12);
}

.dmlabs-choice svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dmlabs-question-error { display: none; margin-top: 5px; color: #c93434; font-size: 11px; }
.dmlabs-question.has-error .dmlabs-question-error { display: block; }

.dmlabs-step-actions {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.dmlabs-calendar-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.dmlabs-calendar-back svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dmlabs-calendly-shell {
  position: relative;
  width: 100%;
  min-height: 700px;
  margin: 15px auto 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.dmlabs-calendly {
  width: 100%;
  min-width: 320px;
  min-height: 700px;
  margin: 0;
}

.dmlabs-calendly iframe {
  display: block;
  width: 100% !important;
  min-width: 320px !important;
  min-height: 700px;
  border: 0 !important;
  box-shadow: none !important;
}

.dmlabs-calendar-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  background: #fff;
  z-index: 2;
}

.dmlabs-calendar-loading.is-hidden { display: none; }

.dmlabs-honeypot {
  position: absolute !important;
  left: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 1024px) {
  .dmlabs-lead-card { max-width: 620px; }
  .dmlabs-lead-card.is-calendar {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .dmlabs-lead-card,
  .dmlabs-lead-card.is-calendar { max-width: 100%; padding: 12px; }
  .dmlabs-flow-close { top: -2px; right: -1px; }
  .dmlabs-journey-header { padding-right: 30px; margin-bottom: 16px; }
  .dmlabs-journey-intro { margin-bottom: 14px; }
  .dmlabs-journey-intro h2 { font-size: 28px; }
  .dmlabs-journey-intro p { font-size: 11.5px; }
  .dmlabs-progress { gap: 6px; }
  .dmlabs-progress-step { gap: 6px; }
  .dmlabs-progress-number { width: 25px; height: 25px; flex-basis: 25px; font-size: 10px; }
  .dmlabs-progress-label { font-size: 9px; }
  .dmlabs-progress-line { min-width: 10px; max-width: 32px; }
  .dmlabs-step-heading h2 { font-size: 28px; }
  .dmlabs-step-heading p { margin-top: 6px; font-size: 13px; }
  .dmlabs-fields-grid { grid-template-columns: 1fr; gap: 11px; margin-top: 14px; }
  .dmlabs-field-full { grid-column: auto; }
  .dmlabs-meta-popup .dmlabs-field label { margin-bottom: 5px; font-size: 13px; }
  /* iOS Safari auto-zooms focused form controls below 16px. */
  .dmlabs-meta-popup .dmlabs-field input { height: 44px; font-size: 16px; }
  .dmlabs-consent-block { margin-top: 12px; padding: 11px 12px; }
  .dmlabs-enquiry-contact-notice,
  .dmlabs-marketing-consent { font-size: 10.5px; }
  .dmlabs-question-panel { padding: 14px; }
  .dmlabs-options-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dmlabs-options-three { grid-template-columns: 1fr; }
  .dmlabs-choice { min-height: 42px; font-size: 11px; }
  .dmlabs-step-actions { grid-template-columns: 88px minmax(0, 1fr); }
  .dmlabs-calendly-shell,
  .dmlabs-calendly,
  .dmlabs-calendly iframe {
    min-height: 720px;
  }
}

@media (max-width: 420px) {
  .dmlabs-lead-card,
  .dmlabs-lead-card.is-calendar { padding: 8px; }
  .dmlabs-journey-header { padding-right: 28px; }
  .dmlabs-journey-intro h2 { font-size: 26px; }
  .dmlabs-progress { gap: 4px; }
  .dmlabs-progress-step { gap: 4px; }
  .dmlabs-progress-number { width: 23px; height: 23px; flex-basis: 23px; font-size: 9px; }
  .dmlabs-progress-label { font-size: 8.2px; }
  .dmlabs-progress-line { min-width: 7px; max-width: 20px; }
  .dmlabs-step-heading h2 { font-size: 26px; }
}

/* Final modal sizing overrides. These intentionally come after the form's
   standalone styles so the custom popup owns the changing width. */
.dmlabs-meta-popup .dmlabs-lead-flow {
  width: 100%;
}

.dmlabs-meta-popup .dmlabs-lead-card,
.dmlabs-meta-popup .dmlabs-lead-card.is-calendar {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
}


/* Resume Enquiry */
.dmlabs-resume-notice {
  display: none;
  margin: 0 34px 16px 0;
  padding: 11px 13px;
  border: 1px solid #cfe7dc;
  border-radius: 9px;
  background: #f4faf7;
  color: #285844;
  font-size: 12px;
  line-height: 1.5;
}
.dmlabs-resume-notice.is-visible { display: block; }
.dmlabs-resume-booked {
  display: none;
  padding: 38px 28px 34px;
  text-align: center;
}
.dmlabs-resume-booked.is-visible { display: block; }
.dmlabs-resume-booked-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #087946;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.dmlabs-resume-booked h2 { margin: 0 0 8px; font-size: 27px; line-height: 1.15; }
.dmlabs-resume-booked p { max-width: 520px; margin: 0 auto; color: #666d69; font-size: 13px; line-height: 1.6; }
.dmlabs-lead-flow.is-resume-booked .dmlabs-journey-header,
.dmlabs-lead-flow.is-resume-booked .dmlabs-step { display: none !important; }
@media(max-width:767px) {
  .dmlabs-resume-notice { margin-right: 30px; font-size: 11px; }
  .dmlabs-resume-booked { padding: 34px 18px 28px; }
  .dmlabs-resume-booked h2 { font-size: 23px; }
}

/* v3 multi-service question behaviour */
.dmlabs-question.is-condition-hidden { display: none !important; }
.dmlabs-options-1 { grid-template-columns: 1fr; }
.dmlabs-options-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.dmlabs-options-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.dmlabs-options-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
@media (max-width: 767px) {
  .dmlabs-options-3,.dmlabs-options-5 { grid-template-columns: 1fr; }
}


/* Immediate resume-link feedback. The modal opens before the restore API calls finish. */
.dmlabs-resume-loading {
  display: none;
  min-height: 300px;
  padding: 70px 28px 54px;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #111111;
}
.dmlabs-lead-flow.is-resume-loading .dmlabs-resume-loading { display: flex; }
.dmlabs-lead-flow.is-resume-loading .dmlabs-journey-header,
.dmlabs-lead-flow.is-resume-loading .dmlabs-step,
.dmlabs-lead-flow.is-resume-loading .dmlabs-resume-notice,
.dmlabs-lead-flow.is-resume-loading .dmlabs-resume-booked { display: none !important; }
.dmlabs-resume-loading-spinner {
  width: 34px;
  height: 34px;
  margin: 0 0 18px;
  border: 3px solid rgba(8,121,70,.16);
  border-top-color: #087946;
  border-radius: 50%;
  animation: dmlabs-resume-spin .75s linear infinite;
}
.dmlabs-resume-loading h2 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 700;
}
.dmlabs-resume-loading p {
  margin: 0;
  max-width: 430px;
  color: #6f7580;
  font-size: 13px;
  line-height: 1.6;
}
@keyframes dmlabs-resume-spin { to { transform: rotate(360deg); } }
@media (max-width: 767px) {
  .dmlabs-resume-loading { min-height: 260px; padding: 58px 22px 46px; }
  .dmlabs-resume-loading h2 { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .dmlabs-resume-loading-spinner { animation-duration: 1.5s; }
}

/* v3.0.17: Cloudflare Turnstile. Managed + interaction-only keeps the normal
   funnel visually unchanged while leaving room for a challenge when Cloudflare
   decides visitor interaction is required. */
#dmlabsMetaAdsPopup .dmlabs-spam-protection{width:100%;margin:0 0 12px;display:block}
#dmlabsMetaAdsPopup .dmlabs-turnstile-mount:empty{display:none}
#dmlabsMetaAdsPopup .dmlabs-turnstile-mount{width:100%;display:flex;justify-content:center;align-items:center}
#dmlabsMetaAdsPopup .dmlabs-spam-error{display:none;margin:8px 0 0;padding:10px 12px;border:1px solid #fecdca;border-radius:10px;background:#fef3f2;color:#b42318;font-size:13px;line-height:1.45}
#dmlabsMetaAdsPopup .dmlabs-spam-error.is-visible{display:block}
