/* Latona Jets Flight Planner - Premium no-yellow style */

.ljfp-wrapper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 82px 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(228, 228, 220, 0.13), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(145deg, #020202 0%, #0b0d10 44%, #050505 100%);
  color: #ffffff;
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ljfp-wrapper.ljfp-mode-embedded {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background: transparent;
}

.ljfp-card {
  max-width: 1380px;
  width: calc(100% - 64px);
  margin: 0 auto;
  padding: 54px;
  background:
    linear-gradient(145deg, rgba(11, 13, 16, 0.96), rgba(4, 4, 5, 0.97));
  border: 1px solid rgba(232, 232, 224, 0.18);
  border-radius: 22px;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.ljfp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.09), transparent 30%),
    radial-gradient(circle at 84% 0%, rgba(220, 222, 222, 0.08), transparent 34%);
  pointer-events: none;
}

.ljfp-card::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  pointer-events: none;
}

.ljfp-brand,
.ljfp-form,
.ljfp-progress,
.ljfp-whatsapp {
  position: relative;
  z-index: 1;
}

.ljfp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #f3f0e8;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 400;
  font-family: "Cormorant Garamond", "Playfair Display", "Bodoni 72", Georgia, serif;
  font-style: italic;
}

.ljfp-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(243,240,232,0.75));
}

.ljfp-brand h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(34px, 5.2vw, 66px);
  line-height: 0.99;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.035em;
  font-family: "Cormorant Garamond", "Playfair Display", "Bodoni 72", Georgia, serif;
}

.ljfp-brand p {
  max-width: 790px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.ljfp-intro {
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
}

.ljfp-intro p {
  margin: 0;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
}

.ljfp-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ljfp-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(236, 236, 230, 0.16);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.04);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ljfp-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 34px 0 34px;
}

.ljfp-progress-item {
  border: 1px solid rgba(236, 236, 230, 0.13);
  border-radius: 999px;
  padding: 12px 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.025);
}

.ljfp-progress-item.is-active,
.ljfp-progress-item.is-complete {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.ljfp-step {
  display: none;
}

.ljfp-step.is-active {
  display: block;
  animation: ljfpFade 240ms ease-out;
}

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

.ljfp-step h3 {
  margin: 0 0 24px;
  font-size: 26px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.ljfp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ljfp-form label {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.ljfp-form input,
.ljfp-form select,
.ljfp-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  border-radius: 14px;
  padding: 15px 15px;
  font-size: 15px;
  outline: none;
  transition: border 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  box-sizing: border-box;
}

.ljfp-form select option {
  color: #111;
}

.ljfp-form textarea {
  resize: vertical;
}

.ljfp-form input::placeholder,
.ljfp-form textarea::placeholder {
  color: rgba(255,255,255,0.36);
}

.ljfp-form input:focus,
.ljfp-form select:focus,
.ljfp-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.082);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.055),
    0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.ljfp-full {
  margin-top: 18px;
}

.ljfp-return-field {
  display: none;
}

.ljfp-return-field.is-visible {
  display: block;
}

.ljfp-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 32px;
}

.ljfp-btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 26px;
  font-size: 12px;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease, background 160ms ease, border 160ms ease, box-shadow 160ms ease;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.ljfp-btn:hover {
  transform: translateY(-1px);
}

.ljfp-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.ljfp-btn-primary {
  background: linear-gradient(135deg, #f8f5ee 0%, #ffffff 48%, #d9d2c2 100%);
  color: #030303 !important;
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 16px 38px rgba(255, 255, 255, 0.13),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.ljfp-btn-primary:hover {
  background: #ffffff;
  color: #000000 !important;
  box-shadow:
    0 20px 48px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.32);
}

.ljfp-submit {
  background: linear-gradient(135deg, #ffffff 0%, #eee8dc 100%) !important;
  color: #000000 !important;
  min-width: 300px;
}


.ljfp-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.ljfp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255,255,255,0.52);
}

.ljfp-review {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.ljfp-review-item {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 15px;
}

.ljfp-review-item small {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  margin-bottom: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ljfp-review-item strong {
  color: #ffffff;
  font-weight: 400;
}

.ljfp-consent {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
}

.ljfp-consent input {
  width: auto;
  margin-top: 3px;
}

.ljfp-legal {
  margin: 18px 0 0;
  padding: 15px 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.75;
  border-radius: 0 12px 12px 0;
}

.ljfp-message {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.ljfp-message.is-success {
  color: #d8f6df;
}

.ljfp-message.is-error {
  color: #ffc9c9;
}

.ljfp-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background 160ms ease, border 160ms ease;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.ljfp-whatsapp:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

@media (max-width: 760px) {
  .ljfp-wrapper {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 38px 0;
  }

  .ljfp-wrapper.ljfp-mode-embedded {
    padding: 0;
  }

  .ljfp-card {
    width: calc(100% - 24px);
    padding: 26px;
    border-radius: 18px;
  }

  .ljfp-card::after {
    left: 26px;
    right: 26px;
  }

  .ljfp-brand h2 {
    font-size: clamp(32px, 12vw, 46px);
  }

  .ljfp-kicker {
    font-size: 16px;
  }

  .ljfp-progress {
    grid-template-columns: repeat(2, 1fr);
  }

  .ljfp-grid,
  .ljfp-review {
    grid-template-columns: 1fr;
  }

  .ljfp-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .ljfp-btn {
    width: 100%;
  }

  .ljfp-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* Full width Elementor compatibility */
.elementor .ljfp-wrapper {
  left: 50%;
  right: 50%;
}

.ljfp-wrapper,
.ljfp-wrapper * {
  box-sizing: border-box;
}

/* Remove common theme spacing around the Latona Jets page */
body.page-id-1168 .site-main,
body.page-id-1168 .content-area,
body.page-id-1168 .entry-content,
body.page-id-1168 .elementor-section-wrap {
  overflow-x: hidden;
}

body.page-id-1168 .entry-content {
  margin-top: 0 !important;
}














/* Version 2.7.0 - Latona Jets division logo + airport suggestions */
.ljfp-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px;
  background: transparent !important;
}

.ljfp-logo-wrap img {
  display: block;
  width: min(390px, 68vw);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

/* The logo already says Private Aviation, so we hide the duplicated kicker */
.ljfp-logo-wrap + .ljfp-kicker {
  display: none !important;
}

.ljfp-brand,
.ljfp-brand h2,
.ljfp-brand p,
.ljfp-intro,
.ljfp-intro p {
  text-align: center !important;
}

.ljfp-intro {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ljfp-highlights {
  justify-content: center !important;
}

.ljfp-form input[list] {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
}

@media (max-width: 760px) {
  .ljfp-logo-wrap {
    margin: 0 auto 14px;
  }

  .ljfp-logo-wrap img {
    width: min(310px, 78vw);
  }
}




/* Version 2.8.0 - Strong centered hero text fix */
.ljfp-brand {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.ljfp-brand > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ljfp-brand h2 {
  width: 100% !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 12px !important;
  text-align: center !important;
  display: block !important;
  line-height: 1.05 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-wrap: balance;
}

.ljfp-brand p {
  width: 100% !important;
  max-width: 820px !important;
  margin: 22px auto 0 !important;
  padding: 0 18px !important;
  text-align: center !important;
  display: block !important;
}

.ljfp-intro {
  width: 100% !important;
  max-width: 880px !important;
  margin: 24px auto 0 !important;
  text-align: center !important;
}

.ljfp-intro p {
  max-width: 780px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
}

.ljfp-card {
  text-align: center !important;
}

.ljfp-form,
.ljfp-form label,
.ljfp-form input,
.ljfp-form select,
.ljfp-form textarea,
.ljfp-review,
.ljfp-legal,
.ljfp-consent {
  text-align: left !important;
}

.ljfp-step h3,
.ljfp-progress,
.ljfp-highlights,
.ljfp-actions,
.ljfp-message {
  text-align: center !important;
  justify-content: center !important;
}

@media (max-width: 900px) {
  .ljfp-brand h2 {
    max-width: 760px !important;
    font-size: clamp(34px, 7.5vw, 54px) !important;
  }

  .ljfp-brand p {
    max-width: 720px !important;
  }
}

@media (max-width: 760px) {
  .ljfp-brand h2 {
    max-width: 100% !important;
    font-size: clamp(30px, 10vw, 44px) !important;
    padding: 0 4px !important;
  }

  .ljfp-brand p {
    padding: 0 4px !important;
  }
}




/* Version 2.9.0 - Reduced top spacing */
.ljfp-wrapper {
  padding-top: 34px !important;
}

.ljfp-card {
  padding-top: 34px !important;
}

.ljfp-logo-wrap {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}

.ljfp-brand h2 {
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  .ljfp-wrapper {
    padding-top: 22px !important;
  }

  .ljfp-card {
    padding-top: 24px !important;
  }

  .ljfp-logo-wrap {
    margin-bottom: 10px !important;
  }
}




/* Version 3.2.0 - Header restored, form-only spacing */
body.page-id-1168 .ljfp-wrapper {
  margin-top: 0 !important;
}

/* Do not modify the website header from the plugin */




/* The plugin does NOT modify the website header. It only pushes the Latona Jets form below the sticky banner. */
body.page-id-1168 .ljfp-wrapper {
  padding-top: 210px !important;
}

body.page-id-1168 .ljfp-card {
  margin-top: 0 !important;
}

/* If the shortcode is inside an Elementor section, add safe clearance there too */
body.page-id-1168 .elementor-widget-shortcode:has(.ljfp-wrapper) {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  body.page-id-1168 .ljfp-wrapper {
    padding-top: 180px !important;
  }
}

@media (max-width: 760px) {
  body.page-id-1168 .ljfp-wrapper {
    padding-top: 135px !important;
  }
}




/* Keeps the header untouched, but reduces the clearance above the Latona Jets form. */
body.page-id-1168 .ljfp-wrapper {
  padding-top: 125px !important;
}

body.page-id-1168 .ljfp-card {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  body.page-id-1168 .ljfp-wrapper {
    padding-top: 110px !important;
  }
}

@media (max-width: 760px) {
  body.page-id-1168 .ljfp-wrapper {
    padding-top: 90px !important;
  }
}




/* Version 3.5.0 - Tight header spacing */
/* Minimum clearance under the sticky header, without modifying the header itself. */
body.page-id-1168 .ljfp-wrapper {
  padding-top: 82px !important;
}

body.page-id-1168 .ljfp-card {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  body.page-id-1168 .ljfp-wrapper {
    padding-top: 78px !important;
  }
}

@media (max-width: 760px) {
  body.page-id-1168 .ljfp-wrapper {
    padding-top: 68px !important;
  }
}




/* Version 3.6.0 - Real Estate luxury font */
/* Inspired by the “Discover Exquisite Properties” editorial style on Latona Agency Real Estate. */
.ljfp-wrapper {
  --ljfp-luxury-serif: "Cormorant Garamond", "Playfair Display", "Libre Baskerville", "Bodoni 72", "Didot", Georgia, serif;
  --ljfp-clean-sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.ljfp-brand h2,
.ljfp-step h3 {
  font-family: var(--ljfp-luxury-serif) !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
}

.ljfp-brand h2 {
  font-size: clamp(42px, 5.4vw, 76px) !important;
  line-height: 0.98 !important;
}

.ljfp-step h3 {
  font-size: clamp(34px, 3.6vw, 48px) !important;
  line-height: 1.05 !important;
  margin-bottom: 30px !important;
}

.ljfp-brand p,
.ljfp-intro p {
  font-family: var(--ljfp-luxury-serif) !important;
  font-size: 20px !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  letter-spacing: 0.005em !important;
}

.ljfp-form label {
  font-family: var(--ljfp-luxury-serif) !important;
  font-size: 17px !important;
  letter-spacing: 0.01em !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.ljfp-form input,
.ljfp-form select,
.ljfp-form textarea {
  font-family: var(--ljfp-luxury-serif) !important;
  font-size: 19px !important;
  letter-spacing: 0.005em !important;
}

.ljfp-form input::placeholder,
.ljfp-form textarea::placeholder {
  font-family: var(--ljfp-luxury-serif) !important;
  font-style: italic !important;
  opacity: 0.88 !important;
}

.ljfp-progress-item,
.ljfp-highlights span,
.ljfp-btn,
.ljfp-whatsapp {
  font-family: var(--ljfp-clean-sans) !important;
  letter-spacing: 0.16em !important;
}

.ljfp-review-item small {
  font-family: var(--ljfp-clean-sans) !important;
  letter-spacing: 0.12em !important;
}

.ljfp-review-item strong {
  font-family: var(--ljfp-luxury-serif) !important;
  font-size: 20px !important;
}

@media (max-width: 760px) {
  .ljfp-brand h2 {
    font-size: clamp(34px, 10vw, 50px) !important;
  }

  .ljfp-step h3 {
    font-size: clamp(30px, 8vw, 42px) !important;
  }

  .ljfp-brand p,
  .ljfp-intro p {
    font-size: 18px !important;
  }

  .ljfp-form label {
    font-size: 16px !important;
  }

  .ljfp-form input,
  .ljfp-form select,
  .ljfp-form textarea {
    font-size: 18px !important;
  }
}




/* Version 3.7.0 - Smaller luxury typography */
.ljfp-brand h2 {
  font-size: clamp(34px, 4.4vw, 58px) !important;
  line-height: 1.02 !important;
  max-width: 900px !important;
}

.ljfp-brand p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  max-width: 760px !important;
}

.ljfp-intro p {
  font-size: 17px !important;
  line-height: 1.58 !important;
}

.ljfp-step h3 {
  font-size: clamp(28px, 3vw, 38px) !important;
  margin-bottom: 24px !important;
}

.ljfp-form label {
  font-size: 15.5px !important;
}

.ljfp-form input,
.ljfp-form select,
.ljfp-form textarea {
  font-size: 17px !important;
}

.ljfp-review-item strong {
  font-size: 18px !important;
}

@media (max-width: 760px) {
  .ljfp-brand h2 {
    font-size: clamp(29px, 8.4vw, 40px) !important;
  }

  .ljfp-brand p,
  .ljfp-intro p {
    font-size: 16.5px !important;
  }

  .ljfp-step h3 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .ljfp-form label {
    font-size: 15px !important;
  }

  .ljfp-form input,
  .ljfp-form select,
  .ljfp-form textarea {
    font-size: 16px !important;
  }
}




/* Version 3.8.0 - Final step submit and premium HTML emails */
.ljfp-progress {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 820px !important;
}

.ljfp-final-consent {
  max-width: 860px;
  margin: 24px auto 0;
}

.ljfp-submit {
  min-width: 320px;
}

.ljfp-actions {
  gap: 14px !important;
}

@media (max-width: 760px) {
  .ljfp-progress {
    grid-template-columns: 1fr !important;
  }

  .ljfp-submit {
    min-width: 0;
    width: 100%;
  }
}




/* Version 4.0.0 - Final button and 12h validation */
.ljfp-field-note {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  line-height: 1.45;
  font-family: var(--ljfp-clean-sans, Arial, sans-serif) !important;
  letter-spacing: 0.02em;
}

.ljfp-step[data-step="3"].is-active ~ .ljfp-actions #ljfp-next {
  display: none !important;
}

.ljfp-step[data-step="3"].is-active ~ .ljfp-actions #ljfp-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.ljfp-submit {
  min-width: 340px !important;
}

@media (max-width: 760px) {
  .ljfp-submit {
    min-width: 0 !important;
    width: 100% !important;
  }
}




/* Version 4.2.0 - Clean mobile layout fix */
/* Conservative mobile-only fix: keep fields inside the card without breaking the desktop layout. */

.ljfp-form,
.ljfp-form *,
.ljfp-card,
.ljfp-wrapper {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .ljfp-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    overflow-x: hidden !important;
  }

  .ljfp-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    overflow-x: hidden !important;
  }

  .ljfp-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .ljfp-grid > *,
  .ljfp-form label {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .ljfp-form input,
  .ljfp-form select,
  .ljfp-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .ljfp-form input[type="date"],
  .ljfp-form input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
  }

  .ljfp-progress {
    width: 100% !important;
    max-width: 100% !important;
  }

  .ljfp-actions {
    width: 100% !important;
  }

  .ljfp-actions .ljfp-btn {
    width: 100% !important;
    max-width: 100% !important;
  }

  .ljfp-logo-wrap img {
    max-width: 260px !important;
  }
}
