/* ═══════════════════════════════════════════════════════════════════════

   FCSC FRONTEND — COMPLETE STYLESHEET

   Colors: Orange #F26522 (primary action), Blue #1E5799 / #074374 (nav/header)

═══════════════════════════════════════════════════════════════════════ */



/* ─── Variables ─────────────────────────────────────────────────────── */

.fcsc-wrap {

    --fcsc: #074374;

    --fcsc-hover: #1E5799;

    --orange: #F26522;

    --orange-text: #C2410C;

    --dark: #111827;

    --muted: #667085;

    --line: #e5e7eb;

    --bg: #f8fafc;

    --radius: 16px;

    --card-shadow: 0 4px 24px rgba(15,23,42,.08);

    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    color: var(--dark);

    max-width: 1120px;

    margin: 30px auto;

}



/* ─── Hero ───────────────────────────────────────────────────────────── */

.fcsc-hero {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    align-items: center;

    background: linear-gradient(135deg, #0b1220, #155eef);

    color: #fff;

    border-radius: 28px;

    padding: 34px;

    box-shadow: 0 22px 60px rgba(21,94,239,.25);

    overflow: hidden;

    margin-bottom: 20px;

}

.fcsc-eyebrow {

    display: inline-block;

    background: rgba(255,255,255,.14);

    border: 1px solid rgba(255,255,255,.25);

    padding: 6px 12px;

    border-radius: 999px;

    font-size: 13px;

}

.fcsc-hero h2 { font-size: 34px; line-height: 1.1; margin: 14px 0 8px; color: #fff; }

.fcsc-hero p  { margin: 0; color: rgba(255,255,255,.82); }



/* ─── 5-Step Progress ────────────────────────────────────────────────── */

.fcsc-steps {

    display: flex;

    gap: 8px;

    margin: 0 0 20px;

}

.fcsc-step {

    flex: 1;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: var(--radius);

    padding: 12px 14px;

    color: var(--muted);

    font-weight: 600;

    font-size: 13px;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: all .2s;

}

.fcsc-step-num {

    width: 24px; height: 24px;

    background: var(--line);

    border-radius: 50%;

    display: inline-flex; align-items: center; justify-content: center;

    font-size: 12px; font-weight: 700; flex-shrink: 0;

}

.fcsc-step-check {

    width: 24px; height: 24px;

    background: var(--line);

    border-radius: 50%;

    display: inline-flex; align-items: center; justify-content: center;

    font-size: 11px; flex-shrink: 0;

}

.fcsc-step.is-active {

    border-color: var(--orange);

    color: var(--orange);

    box-shadow: 0 4px 16px rgba(242,101,34,.15);

}

.fcsc-step.is-active .fcsc-step-num {

    background: var(--orange);

    color: #fff;

}

.fcsc-step.is-done {

    color: #16a34a;

    border-color: #bbf7d0;

    background: #f0fdf4;

}

.fcsc-step.is-done .fcsc-step-check {

    background: #16a34a;

    color: #fff;

}

.fcsc-step.is-clickable {

    cursor: pointer;

    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;

}

.fcsc-step.is-clickable:hover {

    background: #dcfce7;

    transform: translateY(-1px);

    box-shadow: 0 4px 14px rgba(22,163,74,.18);

}

.fcsc-step.is-clickable:active {

    transform: translateY(0);

}



/* ─── Mobile compact icon stepper ────────────────────────────────────── */

.fcsc-steps-mobile {

    display: none;

    align-items: flex-start;

    justify-content: space-between;

    position: relative;

    margin: 0 0 20px;

    padding: 4px 2px 0;

}

.fcsc-steps-mobile::before {

    content: '';

    position: absolute;

    top: 22px; left: 34px; right: 34px;

    height: 2px;

    background: var(--line);

    z-index: 0;

}

.fcsc-step-m {

    position: relative;

    z-index: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    flex: 1;

    min-width: 0;

}

.fcsc-step-m-icon {

    position: relative;

    width: 36px; height: 36px;

    border-radius: 50%;

    background: #fff;

    border: 2px solid var(--line);

    display: flex; align-items: center; justify-content: center;

    font-size: 16px;

    line-height: 1;

    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;

    flex-shrink: 0;

}

.fcsc-step-m-check { display: none; color: #fff; font-size: 15px; font-weight: 800; }

.fcsc-step-m.is-done .fcsc-step-m-emoji { display: none; }

.fcsc-step-m.is-done .fcsc-step-m-check { display: inline; }

.fcsc-step-m-label {

    font-size: 10px;

    font-weight: 700;

    color: var(--muted);

    text-align: center;

    line-height: 1.2;

    white-space: nowrap;

    max-width: 60px;

    overflow: hidden;

    text-overflow: ellipsis;

}

.fcsc-step-m.is-active .fcsc-step-m-icon {

    border-color: var(--orange);

    background: var(--orange);

    box-shadow: 0 4px 12px rgba(242,101,34,.35);

}

.fcsc-step-m.is-active .fcsc-step-m-label { color: var(--orange); }

.fcsc-step-m.is-done .fcsc-step-m-icon {

    border-color: #16a34a;

    background: #16a34a;

}

.fcsc-step-m.is-done .fcsc-step-m-label { color: #16a34a; }

.fcsc-step-m.is-clickable { cursor: pointer; }

.fcsc-step-m.is-clickable:active .fcsc-step-m-icon { transform: scale(.92); }



/* ─── Cards & Panels ─────────────────────────────────────────────────── */

.fcsc-card, .fcsc-panel {

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 24px;

    padding: 24px;

    box-shadow: var(--card-shadow);

}

.fcsc-section-card {

    margin-bottom: 16px;

}

.fcsc-section-icon-title {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

}

.fcsc-section-icon { font-size: 20px; }

.fcsc-section-icon-title h3 { margin: 0; font-size: 18px; }



/* ─── Grid helpers ───────────────────────────────────────────────────── */

.fcsc-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }

.fcsc-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom: 18px; }

.fcsc-card h3 { margin: 0 0 18px; font-size: 21px; }



/* ─── Form grids ─────────────────────────────────────────────────────── */

.fcsc-form-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;

}

.fcsc-form-grid-2 {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

}



/* ─── Labels & Inputs ────────────────────────────────────────────────── */

.fcsc-wrap label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }

.fcsc-wrap input[type=text],

.fcsc-wrap input[type=number],

.fcsc-wrap input[type=email],

.fcsc-wrap input[type=tel],

.fcsc-wrap input[type=date],

.fcsc-wrap select,

.fcsc-wrap textarea {

    width: 100%;

    border: 1px solid #d0d5dd;

    border-radius: 12px;

    padding: 0 13px;

    background: #fff;

    box-sizing: border-box;

    font-family: inherit;

    font-size: 14px;

    color: var(--dark);

}

.fcsc-wrap input[type=text],

.fcsc-wrap input[type=number],

.fcsc-wrap input[type=email],

.fcsc-wrap input[type=tel],

.fcsc-wrap input[type=date],

.fcsc-wrap select { height: 46px; }

.fcsc-wrap textarea { padding: 12px 13px; height: 80px; resize: vertical; }

.fcsc-wrap input[type=text]:focus,

.fcsc-wrap input[type=email]:focus,

.fcsc-wrap input[type=tel]:focus,

.fcsc-wrap input[type=number]:focus,

.fcsc-wrap select:focus,

.fcsc-wrap textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,101,34,.12); }

.fcsc-readonly { background: #f1f5f9 !important; color: #667085 !important; cursor: not-allowed; }

.fcsc-field { display: flex; flex-direction: column; }

.fcsc-field label { margin-bottom: 6px; }

.fcsc-field-error,

select.fcsc-field-error,

textarea.fcsc-field-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,.12) !important; }

.fcsc-field-msg { display: block; color: #ef4444; font-size: 12px; margin-top: 5px; line-height: 1.4; }



/* ─── Radio row ──────────────────────────────────────────────────────── */

.fcsc-radio-row {

    display: flex !important;

    align-items: center !important;

    gap: 24px !important;

    flex-wrap: wrap;

    margin: 16px 0;

}

.fcsc-radio-row label { display: flex !important; align-items: center !important; gap: 5px !important; font-weight: 600; }

.fcsc-radio-row input[type=radio] { margin: 0 !important; width: 15px; height: 15px; flex-shrink: 0; accent-color: var(--orange); }



/* Intended hover for radio options — subtle, not a solid fill */

.fcsc-radio-row label:hover { color: var(--fcsc); }



/* ── Defensive override ──────────────────────────────────────────────────

   A global, site-wide rule — `label:nth-child(2):hover { background-color:

   #F26722; }` — lives OUTSIDE this plugin (theme customizer / Elementor

   global custom CSS, not this stylesheet) and matches ANY 2nd-position

   <label> on the page. Inside this widget that unintentionally paints

   "Receiver" (Booking Party) and "Residential" (building-type rows) with a

   solid orange fill on hover, since they happen to be the 2nd <label> in

   their row. `label:nth-child(2):hover` has low specificity, so a scoped,

   higher-specificity selector here reliably wins regardless of stylesheet

   load order. This is a safety net — for a permanent fix, remove or scope

   that rule at its actual source (theme/Elementor custom CSS panel). ── */

.fcsc-wrap .fcsc-radio-row label:nth-child(2):hover,

.fcsc-wrap label.fcsc-switch:nth-child(2):hover {

    background-color: transparent !important;

}



/* ─── Toggle Switch ──────────────────────────────────────────────────── */

.fcsc-switch {

    display: flex !important;

    align-items: center;

    gap: 10px;

    margin: 12px 0 !important;

    position: relative;

    cursor: pointer;

}

.fcsc-switch input { display: none !important; }

.fcsc-switch span {

    width: 46px; height: 26px;

    background: #d0d5dd;

    border-radius: 999px;

    position: relative;

    transition: .2s;

    flex-shrink: 0;

}

.fcsc-switch span:before {

    content: "";

    width: 20px; height: 20px;

    background: #fff;

    border-radius: 50%;

    position: absolute;

    top: 3px; left: 3px;

    transition: .2s;

    box-shadow: 0 1px 4px rgba(0,0,0,.2);

}

.fcsc-switch input:checked + span { background: var(--orange); }

.fcsc-switch input:checked + span:before { transform: translateX(20px); }

.fcsc-switch em {

    display: none;

    position: absolute; left: 58px; top: 30px; z-index: 20;

    background: #111827; color: #fff;

    font-style: normal; font-size: 12px; line-height: 1.35;

    padding: 10px 12px; border-radius: 10px; max-width: 360px;

}

.fcsc-switch:hover em { display: block; }

.fcsc-atl-switch { margin-top: 16px !important; }

.fcsc-no-printer-switch { margin-top: 10px !important; margin-bottom: 2px !important; }

.fcsc-no-printer-note {

    display: block;

    margin: 0 0 12px 56px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.4;

}

.fcsc-char-count { color: var(--muted); font-size: 12px; margin-top: 4px; }



/* ─── Autocomplete ───────────────────────────────────────────────────── */

.fcsc-autocomplete { position: relative; }

.fcsc-suggestions {

    position: absolute; top: 54px; left: 0; right: 0;

    background: #fff;

    border-radius: 14px;

    box-shadow: 0 18px 46px rgba(15,23,42,.16);

    z-index: 30;

    max-height: 260px;

    overflow-y: auto;

    overflow-x: hidden;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

}

.fcsc-suggestion {

    display: block; width: 100%; border: 0; background: #FFFFFF;

    text-align: left; padding: 5px 14px; cursor: pointer;

    border-bottom: 1px solid #e9e9e9; font-size: 14px;

    color: #111827;

    transition: background-color .3s ease, color .3s ease;

}

.fcsc-suggestion:first-child:not(:last-child) { border-top-left-radius: 14px; border-top-right-radius: 14px; }

.fcsc-suggestion:last-child:not(:first-child) { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-bottom: 0; }

.fcsc-suggestion:only-child { border-radius: 14px; border-bottom: 0; }

.fcsc-suggestion:hover {

    background: #1E5799;

    color: #FFFFFF;

}

.fcsc-suggestion.muted { color: var(--muted); cursor: default; }

.fcsc-suggestion.muted:hover { background: #FFFFFF; color: var(--muted); }



/* ─── Buttons ────────────────────────────────────────────────────────── */

.fcsc-btn {

    border: 0; border-radius: 14px; padding: 12px 20px;

    font-size: 14px;

    font-weight: 800; cursor: pointer;

    min-height: 44px; /* accessible tap-target size */

    transition: background-color .3s ease, transform .2s ease, box-shadow .2s ease;

    font-family: inherit;

}

.fcsc-btn:disabled { opacity: .5; cursor: not-allowed; }

.fcsc-btn.primary, .fcsc-btn-orange {

    background: var(--fcsc);

    color: #FFFFFF;

    box-shadow: 0 8px 24px rgba(7,67,116,.3);

    letter-spacing: .5px;

    text-transform: uppercase;

}

.fcsc-btn-orange:hover:not(:disabled) { background: var(--fcsc-hover); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(7,67,116,.4); }

.fcsc-btn.secondary {

    background: var(--fcsc);

    color: #FFFFFF;

    font-size: 14px;

    padding: 8px 14px;

    min-height: 38px;

    font-weight: 600;

    border-radius: 10px;

}

.fcsc-btn.secondary:hover:not(:disabled) { background: var(--fcsc-hover); }

.fcsc-btn-book {

    background: var(--fcsc);

    color: #FFFFFF;

    padding: 9px 18px;

    min-height: 38px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

}

.fcsc-btn-book:hover { background: var(--fcsc-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(7,67,116,.35); }

.fcsc-btn-coupon {

    background: transparent;

    border: 1.5px solid var(--orange-text);

    color: var(--orange-text);

    padding: 8px 18px;

    min-height: 38px;

    border-radius: 20px;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

}

.fcsc-btn-coupon:hover { background: var(--orange-text); color: #fff; }

.fcsc-btn-coupon:disabled { opacity: .7; cursor: not-allowed; }

.fcsc-btn-coupon-spinner {

    display: inline-block;

    width: 13px; height: 13px;

    border: 2px solid rgba(194,65,12,.35);

    border-top-color: var(--orange-text);

    border-radius: 50%;

    vertical-align: -2px;

    margin-right: 6px;

    animation: fcscSpin .7s linear infinite;

}



/* Payment buttons */

.fcsc-payment-buttons { display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap; }

.fcsc-btn-debit {

    flex: 1; min-width: 260px;

    background: var(--fcsc);

    color: #FFFFFF;

    padding: 14px 24px;

    min-height: 44px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 700;

    display: flex; align-items: center; justify-content: center; gap: 10px;

    transition: background-color .3s ease, transform .2s ease;

}

.fcsc-btn-debit:hover:not(:disabled) { background: var(--fcsc-hover); transform: translateY(-1px); }

.fcsc-card-brands { font-size: 12px; opacity: .75; }

.fcsc-btn-paypal {

    flex: 1; min-width: 260px;

    background: #f5c518;

    color: #003087;

    padding: 18px 24px;

    border-radius: 40px;

    font-size: 16px;

    font-weight: 700;

    display: flex; align-items: center; justify-content: center;

}

.fcsc-btn-paypal:hover:not(:disabled) { background: #e8b910; transform: translateY(-1px); }

.fcsc-checkout-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }

.fcsc-checkout-header h3 { margin: 0; font-size: 20px; }

.fcsc-checkout-sub { color: var(--muted); font-size: 14px; margin: 0 0 8px; }

.fcsc-payment-card { position: relative; }

.fcsc-payment-overlay {

    position: absolute;

    inset: 0;

    background: rgba(255,255,255,.88);

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 30;

}

.fcsc-payment-overlay-inner {

    text-align: center;

}

.fcsc-payment-overlay-spinner {

    display: block;

    width: 34px; height: 34px;

    margin: 0 auto 12px;

    border: 3px solid #e2e8f0;

    border-top-color: var(--orange);

    border-radius: 50%;

    animation: fcscSpin .8s linear infinite;

}

.fcsc-payment-overlay-inner p {

    margin: 0;

    font-size: 13px;

    font-weight: 600;

    color: var(--muted);

}

.fcsc-payment-error {

    background: #fff1f3; color: #b42318;

    border: 1px solid #fecdd6;

    border-radius: 12px; padding: 14px 16px; margin-top: 16px;

}



/* ─── Inline Card Fields (PayPal SDK) ───────────────────────────────── */

.fcsc-method-title {

    font-size: 15px; font-weight: 600; color: var(--dark);

    margin: 16px 0 12px; display: flex; align-items: center; gap: 10px;

}

.fcsc-method-title .fcsc-card-brands { margin-left: auto; font-size: 11px; color: var(--muted); font-weight: 400; }



.fcsc-card-method {

    background: #fafbfc;

    border: 1px solid var(--line);

    border-radius: 14px;

    padding: 24px;

    margin-top: 8px;

}

.fcsc-card-fields-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 16px;

    margin-bottom: 20px;

}

.fcsc-cf-row { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

.fcsc-cf-row-full { grid-column: 1 / -1; }

.fcsc-cf-row label {

    font-size: 13px;

    color: var(--muted);

    font-weight: 500;

    line-height: 1;

}

/* PayPal CardFields renders an iframe inside this container. Iframes can be

   taller than 46px on mobile or when an error icon is shown, so we use

   min-height (not height) and let the field grow naturally. */

.fcsc-cf-field {

  background: rgb(250 251 252);
    border: 1px solid rgb(208, 213, 221);
    border-radius: 10px;
    padding: 0px 14px;
    min-height: 48px;
    height: auto;
    display: flex;
    align-items: center;
    transition: border-color 0.15s, box-shadow 0.15s;
    overflow: hidden;
    border: none;

}

.fcsc-cf-field > iframe { width: 100% !important; min-height: 46px; }

.fcsc-cf-field:focus-within {

    border-color: var(--orange);

    box-shadow: 0 0 0 3px rgba(242,101,34,.12);

}

.fcsc-cf-field.invalid { border-color: #ef4444; }



/* "Pay" button under the inline card form */

.fcsc-card-method .fcsc-btn-debit {

    width: 100%;

    margin-top: 4px;

    padding: 13px 20px;

    font-size: 14px;

    font-weight: 700;

}

.fcsc-card-unavailable {

    background: #fef3c7; color: #92400e;

    border: 1px solid #fde68a;

    border-radius: 10px;

    padding: 12px 14px;

    font-size: 13px;

    margin-top: 8px;

}



.fcsc-card-fallback { margin-top: 8px; }

.fcsc-card-fallback-note {

    font-size: 13px; color: var(--muted); margin: 0 0 12px;

}

#fcsc-card-fallback-button { min-height: 50px; }

#fcsc-card-fallback-button:empty::before {

    content: 'Loading card option…';

    display: block; text-align: center; padding: 14px;

    color: var(--muted); font-size: 13px;

}



.fcsc-payment-divider {

    display: flex; align-items: center; gap: 14px;

    margin: 24px 0 16px;

    color: var(--muted); font-size: 12px; font-weight: 600;

    text-transform: uppercase; letter-spacing: 1px;

}

.fcsc-payment-divider::before, .fcsc-payment-divider::after {

    content: ''; flex: 1; height: 1px; background: var(--line);

}



.fcsc-paypal-method { margin-top: 4px; }

.fcsc-paypal-buttons { min-height: 50px; }

.fcsc-paypal-buttons:empty::before {

    content: 'Loading PayPal…';

    display: block; text-align: center; padding: 14px;

    color: var(--muted); font-size: 13px;

}



.fcsc-payment-security {

    margin: 18px 0 0; font-size: 12px; color: var(--muted); text-align: center;

}

@media (max-width: 600px) {

    .fcsc-card-fields-grid { grid-template-columns: 1fr; }

}



/* ─── Actions ────────────────────────────────────────────────────────── */

.fcsc-actions { text-align: right; margin-top: 20px; }

.fcsc-section-head {

    display: flex; justify-content: space-between; align-items: center;

    gap: 16px; margin-bottom: 16px;

}

.fcsc-section-head h3 { margin: 0; }



/* ─── Packages ───────────────────────────────────────────────────────── */

.fcsc-package {

    border: 1px solid var(--line); border-radius: 20px;

    padding: 18px; margin: 14px 0;

    background: linear-gradient(180deg, #fff, #fbfdff);

    animation: fcscIn .25s ease;

}

.fcsc-package-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }

.fcsc-package-head button[data-remove-package] {

    background: transparent; color: #d92d20; border: 1px solid transparent;

    border-radius: 10px; font-weight: 800; cursor: pointer; transition: all .3s ease; padding: 4px 10px;

}

.fcsc-package-head button[data-remove-package]:hover {

    color: #fff; border-color: #D92D20; background: #D92D20;

}

.fcsc-inline, .fcsc-qty { display: flex; gap: 8px; }

.fcsc-inline select { max-width: 78px; }

.fcsc-qty button {

    width: 42px; border: 1px solid #d0d5dd; background: #f8fafc;

    border-radius: 12px; font-size: 18px; cursor: pointer;

}

.fcsc-qty button:hover { background: #083b7a; color: #fff; }

input.hidden { display: none !important; }

.fcsc-package select { text-transform: capitalize; color: #333 !important; }

.fcsc-package select.units { text-transform: lowercase; }



/* Package grid */

.package-grid {

    display: flex !important; flex-wrap: nowrap !important;

    gap: 12px; align-items: flex-end;

}

.package-grid > label { margin: 0; min-width: auto; }

.package-grid > label:nth-child(1) { width: 220px; }

.package-grid > label:nth-child(2) { width: 120px; }

.package-grid > label:nth-child(3),

.package-grid > label:nth-child(4),

.package-grid > label:nth-child(5) { width: 180px; }

.package-grid > label:nth-child(6) { width: 150px; }

.package-grid > label:nth-child(7) { width: 220px; }



/* ─── Loader ─────────────────────────────────────────────────────────── */

.fcsc-loader-wrap { margin-bottom: 4px; }

.fcsc-loader {

    display: flex; align-items: center; gap: 12px;

    background: #eef4ff; color: var(--fcsc);

    padding: 16px; border-radius: 16px; font-weight: 800; margin-bottom: 16px;

}

.fcsc-loader span {

    width: 20px; height: 20px;

    border: 3px solid #b2ccff; border-top-color: var(--fcsc);

    border-radius: 50%; animation: fcscSpin .8s linear infinite; flex-shrink: 0;

}

.fcsc-error, .fcsc-empty {

    padding: 18px; border-radius: 16px;

    background: #fff1f3; color: #b42318; border: 1px solid #fecdd6;

}

.fcsc-hidden { display: none !important; }



/* ─── Step 2 quote-fetch error state ────────────────────────────────────

   Deliberately a plain block layout (no flex/grid on the wrapper) so the

   heading and the field list always stack, never sit side-by-side. */

.fcsc-quote-error {

    text-align: left;

    padding: 20px 24px;

}

.fcsc-quote-error .fcsc-error-head {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    font-size: 15px;

}

.fcsc-quote-error .fcsc-error-icon {

    flex-shrink: 0;

    font-size: 18px;

    line-height: 1.4;

}

.fcsc-quote-error .fcsc-error-subtext {

    margin: 6px 0 0 28px;

    font-size: 13px;

    color: #b42318;

    opacity: .85;

}

.fcsc-quote-error .fcsc-error-list {

    margin: 14px 0 0 28px;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 8px;

}

.fcsc-quote-error .fcsc-error-list li {

    font-size: 13.5px;

    line-height: 1.5;

    padding-left: 14px;

    position: relative;

}

.fcsc-quote-error .fcsc-error-list li::before {

    content: '';

    position: absolute;

    left: 0; top: 7px;

    width: 5px; height: 5px;

    border-radius: 50%;

    background: #b42318;

}

.fcsc-quote-error .fcsc-error-retry-btn {

    margin: 18px 0 0 28px;

    background: var(--fcsc, #074374);

    color: #fff;

    border: none;

    border-radius: 8px;

    padding: 10px 22px;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: background .3s ease;

}

.fcsc-quote-error .fcsc-error-retry-btn:hover {

    background: #1E5799;

}



/* ─── Quote Cards ────────────────────────────────────────────────────── */

.fc-quote-card-header, .fc-quote-card {

    display: grid;

    grid-template-columns: minmax(0,.9fr) minmax(0,2fr) minmax(0,1fr) minmax(0,1.25fr) minmax(0,1.1fr) minmax(0,.8fr);

    gap: 10px;

    background: #f5f8fa;

    border-radius: 6px;

    box-sizing: border-box;

    margin: 0 0 16px;

    min-height: 100px;

    padding: 16px;

    transition: border-color .2s ease, box-shadow .2s ease;

    align-items: center;

    text-transform: capitalize;

}

.fcsc-results .fc-quote-card-header {

    background: #1e5799; color: #fff;

    min-height: auto;

}

.fcsc-results .fc-quote-card-header div { padding: 10px; }

.fcsc-results .fc-quote-card-header p { font-size: 14px; color: #fff !important; }

.fc-quote-card img { max-width: 100px; }

.fc-quote-card h4 { font-size: 18px; margin-bottom: 2px; }

.fc-quote-card .fc-col.service { text-align: left; }

.fc-quote-card .fc-eta { font-size: 14px; }

.fc-col.price { font-size: 18px; font-weight: 700; color: var(--fcsc); }

.fc-col.book-col { display: flex; align-items: center; justify-content: center; }



/* Star ratings */

:root { --filled-color: #f5b301; --empty-color: #dcdcdc; --star-size: 22px; }

.fc-star-rating { position: relative; display: inline-block; font-size: var(--star-size); line-height: 1; }

.fc-star-rating::before { content: "★★★★★"; color: var(--empty-color); }

.fc-star-rating::after {

    content: "★★★★★"; color: var(--filled-color);

    position: absolute; top: 0; left: 0; overflow: hidden; white-space: nowrap;

    width: var(--rating-width, 0%);

}



/* Badges */

.fc-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }

.fc-badge.best-price { background: var(--orange); color: #fff; }

.fc-badge.top-rated  { background: #1e5799; color: #fff; }

.fc-badge.same-day   { background: #28a745; color: #fff; margin-top: 4px; }



/* Sort tabs */

.fcsc-sort-tabs { display: flex; gap: 10px; flex-wrap: wrap; padding-bottom: 16px; }

.fcsc-sort-tabs .fcsc-sort {

    background: #1E5799; color: #fff; border: none;

    border-radius: 8px; padding: 8px 16px;

    font-size: 14px; font-weight: 600; cursor: pointer; transition: .3s;

}

.fcsc-sort-tabs .fcsc-sort:hover,

.fcsc-sort-tabs .fcsc-sort.active { background: var(--orange); color: #fff; }



/* Warranty */

.warranty-info {

    display: flex; flex-direction: column;

    align-items: center; justify-content: center;

    gap: 8px; text-align: center;

}

.warranty-info i  { font-size: 18px; color: #0B1F3A; }

.warranty-info a  { color: #0B1F3A; text-decoration: none; font-size: 14px; line-height: 1.4; font-weight: 500; }



/* ─── Summary Bar (Steps 3/4/5) ──────────────────────────────────────── */

.fcsc-summary-bar-inner {

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    gap: 16px;

    margin-bottom: 20px;

}

.fcsc-summary-card {

    background: #fff; border: 1px solid var(--line);

    border-radius: 16px; padding: 18px;

    box-shadow: var(--card-shadow);

}

.fcsc-summary-card-head {

    display: flex; align-items: center; gap: 8px;

    margin-bottom: 12px; padding-bottom: 10px;

    border-bottom: 1px solid var(--line);

}

.fcsc-summary-card-head strong { flex: 1; font-size: 15px; }

.fcsc-summary-icon { font-size: 18px; }

.fcsc-summary-edit {

    background: rgba(7,67,116,.08);

    border: 1px solid transparent;

    color: var(--fcsc);

    font-size: 12px; font-weight: 700;

    cursor: pointer;

    padding: 5px 12px;

    border-radius: 20px;

    display: inline-flex; align-items: center; gap: 2px;

    white-space: nowrap; flex-shrink: 0;

    transition: background-color .3s ease, color .3s ease;

}

.fcsc-summary-edit:hover {

    background: var(--fcsc);

    color: #FFFFFF;

}

.fcsc-summary-row {

    display: flex; justify-content: space-between;

    gap: 8px; font-size: 13px; padding: 4px 0;

}

.fcsc-summary-row span:first-child { color: var(--muted); flex-shrink: 0; }

.fcsc-summary-row span:last-child  { font-weight: 600; text-align: right; }

.fcsc-summary-total {

    border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px;

}

.fcsc-summary-total span:last-child { font-size: 18px; font-weight: 900; color: var(--fcsc); }

.fcsc-summary-addr { margin-bottom: 10px; display: flex; flex-direction: column; gap: 2px; }

.fcsc-addr-label { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: .5px; }

.fcsc-summary-addr strong { font-size: 14px; }

.fcsc-summary-addr span  { font-size: 13px; color: var(--muted); }



/* ─── Dollar input ───────────────────────────────────────────────────── */

.fcsc-dollar-input {

    display: flex; align-items: center;

    border: 1px solid #d0d5dd; border-radius: 12px; overflow: hidden;

    background: #fff;

}

.fcsc-dollar-input span {

    padding: 0 12px; background: #f1f5f9;

    color: #667085; font-weight: 700; height: 46px;

    display: flex; align-items: center;

    border-right: 1px solid #d0d5dd;

}

.fcsc-dollar-input input {

    border: 0 !important; border-radius: 0 !important; flex: 1;

    box-shadow: none !important;

}

.fcsc-insurance-badge {

    display: inline-block; background: #ecfdf5; color: #16a34a;

    border: 1px solid #bbf7d0; border-radius: 8px;

    padding: 6px 12px; font-size: 13px; font-weight: 600; margin-top: 8px;

}

.fcsc-insurance-warning {

    display: flex; align-items: flex-start; gap: 8px;

    background: #fff7ed; border: 1px solid #fed7aa;

    border-radius: 10px; padding: 10px 14px;

    font-size: 13px; color: #9a3412; margin-top: 10px;

}



/* ─── Muted link ─────────────────────────────────────────────────────── */

.fcsc-muted-link { font-size: 13px; color: var(--muted); margin-top: 8px; }

.fcsc-muted-link a { color: var(--orange); }



/* ─── T&C checkboxes ─────────────────────────────────────────────────── */

.fcsc-tc-list { display: flex; flex-direction: column; gap: 12px; }

.fcsc-tc-item {

    display: flex !important; align-items: flex-start !important;

    gap: 10px; cursor: pointer; font-weight: 400 !important;

    font-size: 14px; line-height: 1.5;

}

.fcsc-tc-item input[type=checkbox] {

    width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;

    accent-color: var(--orange); cursor: pointer;

}

.fcsc-tc-item a { color: var(--orange); }

.fcsc-tc-agree-all { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }



/* ─── Coupon ─────────────────────────────────────────────────────────── */

.fcsc-coupon-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.fcsc-coupon-row > label { min-width: 60px; margin: 0; }

.fcsc-coupon-input-wrap { display: flex; gap: 10px; flex: 1; min-width: 200px; }

.fcsc-coupon-input-wrap input { flex: 1; min-width: 0; }

.fcsc-btn-coupon { flex-shrink: 0; }

.fcsc-coupon-message { margin-top: 10px; padding: 10px 14px; border-radius: 10px; font-size: 14px; }

.fcsc-coupon-success { background: #ecfdf5; color: #16a34a; border: 1px solid #bbf7d0; }

.fcsc-coupon-error   { background: #fff1f3; color: #b42318; border: 1px solid #fecdd6; }



/* ─── Additional Emails ──────────────────────────────────────────────── */

.fcsc-email-hint { color: var(--muted); font-size: 13px; margin: -6px 0 14px; }

.fcsc-email-list { display: flex; flex-direction: column; gap: 10px; }

.fcsc-email-list:not(:empty) { margin-bottom: 14px; }

.fcsc-email-row {

    display: flex; align-items: center; gap: 10px;

    background: #f8fafc; border: 1px solid var(--line);

    border-radius: 12px; padding: 4px 8px 4px 14px;

    animation: fcscIn .25s ease-out;

}

.fcsc-email-row-icon { font-size: 14px; flex-shrink: 0; opacity: .7; }

.fcsc-email-input {

    flex: 1; min-width: 0;

    border: 0; background: transparent;

    font-size: 14px; font-family: inherit; color: var(--dark);

    padding: 10px 0;

}

.fcsc-email-input:focus { outline: none; }

.fcsc-email-input.fcsc-field-error { color: #b42318; }

.fcsc-remove-email {

    display: inline-flex; align-items: center; justify-content: center;

    width: 32px; height: 32px; flex-shrink: 0;

    background: transparent; border: 1px solid #fecdd6;

    color: #b42318; border-radius: 8px; cursor: pointer;

    transition: background-color .3s ease, color .3s ease, border-color .3s ease;

}

.fcsc-remove-email:hover { background: #b42318; border-color: #b42318; color: #fff; }

.fcsc-btn-add-email {

    display: inline-flex; align-items: center; gap: 6px;

    background: transparent;

    border: 1.5px solid var(--orange-text);

    color: var(--orange-text);

    padding: 9px 18px;

    min-height: 38px;

    border-radius: 20px;

    font-size: 14px; font-weight: 600;

    font-family: inherit;

    cursor: pointer;

    margin-top: 2px;

    transition: background-color .3s ease, color .3s ease;

}

.fcsc-btn-add-email:hover { background: var(--orange-text); color: #FFFFFF; }

.fcsc-add-email-icon {

    display: inline-flex; align-items: center; justify-content: center;

    width: 16px; height: 16px;

    font-size: 15px; font-weight: 800; line-height: 1;

}



/* ─── NOTICE MODAL ───────────────────────────────────────────────────── */

.fcsc-modal-overlay {

    position: fixed; inset: 0;

    background: rgba(0,0,0,.5);

    backdrop-filter: blur(2px);

    z-index: 99999;

    display: flex; align-items: center; justify-content: center;

    padding: 20px;

}

.fcsc-modal-box {

    background: #fff;

    border-radius: 16px;

    max-width: 640px; width: 90%;

    max-height: calc(100vh - 40px);

    display: flex;

    flex-direction: column;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0,0,0,.2);

    animation: fcscIn .2s ease;

}

.fcsc-modal-header {

    background: #fff; padding: 20px 24px 16px;

    display: flex; align-items: center; justify-content: space-between;

    border-bottom: 1px solid var(--line);

    flex-shrink: 0;

}

.fcsc-modal-header h3 { margin: 0; font-size: 18px; font-weight: 900; letter-spacing: .5px; }

.fcsc-modal-close {

    background: transparent; border: 0; font-size: 26px; cursor: pointer;

    color: #667085; line-height: 1; padding: 0; transition: .2s;

}

.fcsc-modal-close:hover { color: #111; }

.fcsc-modal-body {

    flex: 1 1 auto;

    overflow-y: auto;

    -webkit-overflow-scrolling: touch;

    padding: 24px;

    background: #f9f3ec;

    font-size: 14px; line-height: 1.7; color: #1e293b;

}

.fcsc-modal-body p { margin: 0 0 14px; }

.fcsc-modal-body strong { font-weight: 700; }

.fcsc-notice-link { color: var(--orange) !important; }

.fcsc-notice-check { margin-top: 16px !important; }

.fcsc-modal-footer {

    padding: 16px 24px;

    display: flex; gap: 12px; justify-content: flex-end;

    border-top: 1px solid var(--line);

    background: #fff;

    flex-shrink: 0;

}

.fcsc-btn-diff-carrier {

    background: var(--fcsc); color: #FFFFFF;

    border: 0; border-radius: 10px; padding: 12px 20px;

    font-weight: 700; cursor: pointer;

    transition: background-color .3s ease;

}

.fcsc-btn-diff-carrier:hover { background: var(--fcsc-hover); }

.fcsc-modal-proceed { padding: 12px 24px; }

.fcsc-modal-proceed:disabled { opacity: .4; }



@media (max-width: 480px) {

    .fcsc-modal-overlay { padding: 12px; }

    .fcsc-modal-box { max-height: calc(100vh - 24px); border-radius: 14px; }

    .fcsc-modal-header { padding: 16px 18px 12px; }

    .fcsc-modal-header h3 { font-size: 16px; }

    .fcsc-modal-close { font-size: 22px; }

    .fcsc-modal-body { padding: 16px 18px; font-size: 13px; line-height: 1.6; }

    .fcsc-modal-body p { margin: 0 0 12px; }

    .fcsc-notice-check { margin-top: 12px !important; gap: 8px; }

    .fcsc-modal-footer {

        flex-direction: column-reverse;

        padding: 12px 18px;

        gap: 8px;

    }

    .fcsc-modal-footer .fcsc-btn {

        width: 100%;

        padding: 12px 16px;

        font-size: 13px;

        min-height: 44px;

    }

    .fcsc-btn-diff-carrier { padding: 12px 16px; }

    .fcsc-modal-proceed { padding: 12px 16px; }

}



/* ─── Warranty popup (existing) ──────────────────────────────────────── */

.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); backdrop-filter: blur(2px); z-index: 9999; }

.popup-box {

    background: #fff !important; border-radius: 18px !important;

    max-width: 620px !important; width: 90% !important;

    overflow: hidden !important; border: 1px solid #1e5799 !important;

    box-shadow: 0 10px 40px rgba(0,0,0,.18) !important;

    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);

}

.popup-header { background: #1e5799 !important; padding: 24px 30px !important; position: relative !important; }

.popup-header h3, .popup-header span { color: #fff !important; font-size: 23px;    margin-bottom: 5px;
 }

.close-popup { float: right; cursor: pointer; font-size: 22px; font-weight: bold; color: #fff; }

.popup-content { background: #eaf6ff !important; padding: 28px 30px !important; font-size: 16px !important; line-height: 1.7 !important; }

.popup-content p { margin-bottom: 16px !important; }

.popup-box a, .popup-content a { color: var(--orange) !important; }



/* ─── Booking success ────────────────────────────────────────────────── */

.fcsc-booking-success {

    text-align: center;

    padding: 48px 24px;

    max-width: 580px;

    margin: 24px auto;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 24px;

    box-shadow: 0 12px 40px rgba(15, 23, 42, .06);

    animation: fcscIn .35s ease-out;

}

.fcsc-success-icon {

    width: 84px; height: 84px;

    background: #16a34a; color: #fff;

    border-radius: 50%;

    font-size: 42px; font-weight: bold;

    display: inline-flex; align-items: center; justify-content: center;

    margin: 0 auto 20px;

    box-shadow: 0 10px 30px rgba(22, 163, 74, .25);

}

.fcsc-booking-success h2 {

    font-size: 30px;

    color: #16a34a;

    margin: 0 0 10px;

    font-weight: 700;

}

.fcsc-success-msg {

    color: var(--muted);

    font-size: 15px;

    margin: 0 auto 24px;

    max-width: 480px;

    line-height: 1.6;

}

.fcsc-success-details {

    background: #f8fafc;

    border: 1px solid var(--line);

    border-radius: 14px;

    padding: 16px 20px;

    margin: 0 auto 24px;

    max-width: 420px;

    text-align: left;

}

.fcsc-success-row {

    display: flex; justify-content: space-between; align-items: center;

    padding: 8px 0;

    border-bottom: 1px dashed #e5e7eb;

    font-size: 14px;

}

.fcsc-success-row:last-child { border-bottom: 0; }

.fcsc-success-row span { color: var(--muted); }

.fcsc-success-row strong, .fcsc-success-row code {

    color: var(--dark); font-weight: 600;

    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

    font-size: 13px;

}

.fcsc-success-subhead {

    max-width: 420px;

    margin: 0 auto 8px;

    text-align: left;

    font-size: 13px;

    font-weight: 700;

    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: .04em;

}

.fcsc-book-another {

    margin-top: 8px;

    padding: 14px 28px;

    font-size: 15px;

}



/* ─── Shipping truck loader (shown during payment + booking) ──────────── */

.fcsc-shipping-loader {

    text-align: center;

    padding: 28px 12px 18px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 14px;

    margin: 16px 0;

    overflow: hidden;

}

.fcsc-truck {

    width: 110px; height: 50px;

    margin: 0 auto;

    animation: fcscTruckBob 0.5s ease-in-out infinite alternate;

}

.fcsc-truck svg { width: 100%; height: 100%; }

.fcsc-truck-body  { fill: var(--orange); }

.fcsc-truck-cab   { fill: #0f2540; }

.fcsc-truck-window{ fill: #93c5fd; }

.fcsc-truck-wheel { fill: #1e293b; animation: fcscSpin 0.6s linear infinite; transform-origin: center; transform-box: fill-box; }

.fcsc-road {

    position: relative;

    height: 4px;

    background: #e2e8f0;

    border-radius: 2px;

    margin: 6px auto 18px;

    max-width: 320px;

    overflow: hidden;

}

.fcsc-road span {

    position: absolute; top: 1px;

    width: 22px; height: 2px;

    background: #94a3b8;

    border-radius: 2px;

    animation: fcscRoadDash 0.9s linear infinite;

}

.fcsc-road span:nth-child(1) { left: 340px; animation-delay: 0s; }

.fcsc-road span:nth-child(2) { left: 340px; animation-delay: 0.225s; }

.fcsc-road span:nth-child(3) { left: 340px; animation-delay: 0.45s; }

.fcsc-road span:nth-child(4) { left: 340px; animation-delay: 0.675s; }

.fcsc-loader-text {

    font-size: 14px; color: var(--muted);

    margin: 0;

}



/* ─── Animations ─────────────────────────────────────────────────────── */

@keyframes fcscFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@keyframes fcscSpin  { to { transform: rotate(360deg); } }

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

@keyframes fcscTruckBob { from { transform: translateY(0); } to { transform: translateY(-2px); } }

@keyframes fcscRoadDash { from { left: 340px; } to { left: -22px; } }

.fcsc-wrap input[type=text]:focus, .fcsc-wrap input[type=email]:focus, .fcsc-wrap input[type=tel]:focus, .fcsc-wrap input[type=number]:focus, .fcsc-wrap select:focus, .fcsc-wrap textarea:focus {
    outline: none;
    border-color: #1E5799 !important;
    box-shadow: 0 0 0 3px rgba(242, 101, 34, .12);
}

/* ─── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 1024px) {

    .package-grid { flex-wrap: wrap !important; }

    .fcsc-summary-bar-inner { grid-template-columns: 1fr 1fr; }

    .fcsc-form-grid { grid-template-columns: 1fr 1fr; }

}

@media (max-width: 860px) {

    .fcsc-grid, .fcsc-grid.two { grid-template-columns: 1fr; }

    .fcsc-hero { padding: 24px; }

    .fcsc-summary-bar-inner { grid-template-columns: 1fr; }

    .fcsc-payment-buttons { flex-direction: column; }

    .fcsc-btn-debit, .fcsc-btn-paypal { min-width: unset; width: 100%; }

}

@media (max-width: 768px) {

    .fc-quote-card-header { display: none !important; }

    .fc-quote-card { display: flex; flex-direction: column; gap: 12px; }

    .fcsc-form-grid { grid-template-columns: 1fr; }

    .fcsc-form-grid-2 { grid-template-columns: 1fr; }

}

@media (max-width: 640px) {

    .fcsc-steps { display: none; }

    .fcsc-steps-mobile { display: flex; }

    .fcsc-coupon-row { gap: 8px; }

    .fcsc-coupon-row > label { width: 100%; min-width: 0; font-size: 13px; }

    .fcsc-coupon-input-wrap { width: 100%; min-width: 0; gap: 8px; }

    .fcsc-coupon-input-wrap input { min-width: 0; padding: 10px 12px; }

    .fcsc-btn-coupon { padding: 10px 16px; }

}

@media (max-width: 426px) {

    .fcsc-hero h2 { font-size: 26px; }

    .fcsc-hero p  { font-size: 16px; }

    .fcsc-card, .fcsc-panel { padding: 13px; }

}



/* ─── Flatpickr date picker theme overrides ──────────────────────────── */

.flatpickr-calendar {

    font-family: Inter, system-ui, sans-serif !important;

    border-radius: 14px !important;

    box-shadow: 0 12px 40px rgba(15,23,42,.15) !important;

    border: 1px solid #e5e7eb !important;

}

.flatpickr-day.selected,

.flatpickr-day.selected:hover,

.flatpickr-day.startRange,

.flatpickr-day.endRange {

    background: #F26522 !important;

    border-color: #F26522 !important;

    color: #fff !important;

}

.flatpickr-day:hover,

.flatpickr-day.prevMonthDay:hover,

.flatpickr-day.nextMonthDay:hover {

    background: rgba(242,101,34,.12) !important;

    border-color: transparent !important;

}

.flatpickr-day.today {

    border-color: #F26522 !important;

}

.flatpickr-day.today:hover {

    background: #F26522 !important;

    color: #fff !important;

}

.flatpickr-months .flatpickr-prev-month:hover svg,

.flatpickr-months .flatpickr-next-month:hover svg {

    fill: #F26522 !important;

}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,

.flatpickr-current-month input.cur-year:focus {

    background: rgba(242,101,34,.1) !important;

}

/* Disabled past dates */

.flatpickr-day.flatpickr-disabled,

.flatpickr-day.flatpickr-disabled:hover {

    color: #d0d5dd !important;

    cursor: not-allowed !important;

}



/*GM */

.elementor-kit-6 button.fcsc-suggestion {

    background: #fff;

}

.elementor-kit-6 button.fcsc-suggestion:hover {

    background: #1e5799;

    color: #fff;

}

.fcsc-suggestions button
Specificity: (0,1,1)
 {
    background: #fff;
    font-size: 15px;
    padding: 3px 10px;
    border-bottom: 1px solid #e9e9e9;
} 
.fcsc-suggestions button:hover {

    color: #fff;
}
 

.fcsc-suggestions button {

    background: #fff;

    font-size: 15px;

    padding: 3px 10px;

    border-bottom: 1px solid #e9e9e9;

}
.fcsc-step-m.is-done .fcsc-step-m-icon {
    border-color: #1e5799;
    background: #1e5799;
}
.fc-col.book-col .fcsc-btn {
    background-color: #1e5799 !important;
    font-weight: 500;
    font-size: 16px !important;
}
.fc-quote-card-header .price {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
}
.fcsc-step.is-done .fcsc-step-check {
    background:  #1e5799 !important;
    color: #fff;
}
.fcsc-step.is-done {
    color:  #1e5799 !important;
    border-color: #9daec1;
    background: #e9f3ff !important;
}

.fcsc-modal-footer button {
    background-color:#1e5799 !important;
    font-size: 16px !important;
    font-weight: 600;
}
button.fcsc-modal-close {
    font-size: 24px;
    padding: 2px 7px 2px 7px;
    background-color:#1e5799 !important;
    color: white !important;
}
.fcsc-step.is-active .fcsc-step-num {
   background-color:#1e5799 !important;
    color: #fff;
}
.fcsc-summary-card-head button {
    background-color:#1e5799 !important;
    color: white;
    font-size: 15px !important;
    font-weight: 500;
}
.fcsc-section-icon-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
input.card-field-name:focus, input.card-field-number:focus, input.card-field-expiry:focus, input.card-field-cvv:focus {
    border-color: #00000000 !important;
    box-shadow: 0 0 0 0.125rem #00000000 inset, 0 0 0 0.375rem rgb(0 0 0 / 0%) !important;
}
.fcsc-section-icon-title h3 {
    margin: 0;
    line-height: 1.3;
}

.fcsc-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcsc-section-icon img {
    width: 20px;
    height: 20px;
}
.fcsc-actions .fcsc-btn {
    background-color: #1E5799 !important;
    font-size: 17px;
    font-weight: 600;
}
button.fcsc-btn.fcsc-btn-coupon, button.fcsc-btn-add-email, button.fcsc-remove-email {
    background-color:  #1E5799 !important;
    border-color:  #1E5799 !important;
    color: white;
    font-size: 16px;
    font-weight: 600;
}
button.fcsc-btn.fcsc-btn-orange.fcsc-book-another{
    background-color:  #1E5799 !important;
    color: white;
    font-weight: 600;
    text-transform:uppercase !important;
}
button.fcsc-btn.fcsc-btn-debit {
    background-color: #1E5799 !important;
    color: white;
}
.fcsc-booking-success h2 {
     color:  #1E5799 !important;
   }
.fcsc-modal-footer button {
    text-transform: uppercase !important;

.fcsc-success-icon {
    background-color: #1E5799 !important;
    color: #ffffff !important;
 }
.fcsc-success-row strong, .fcsc-success-row code {
    color: #1E5799 !important;
}
.fcsc-step-m.is-done .fcsc-step-m-label {
   color: #1E5799 !important;
}
.popup-header h3 {
    font-size: 28px !important;
}
@media (max-width: 767px) {
    .popup-header h3 {
        font-size: 18px !important;
    }
}
.fcsc-step-m.is-done .fcsc-step-m-label {
    color:  #1E5799 !important;
}


/* Remove the outer border */
.fcsc-cf-field {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Remove border from the field wrapper */
.fcsc-cf-field > div {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}