.fsbf-wrap {
    --fsbf-pink: #f300d6;
    --fsbf-red: #e83223;
    --fsbf-ink: #181818;
    --fsbf-muted: #6d6d6d;
    --fsbf-line: #dedede;
    --fsbf-soft: #f7f7f7;
    --fsbf-radius: 22px;
    color: var(--fsbf-ink);
    font: inherit;
    max-width: 1160px;
    margin: 0 auto;
}

.fsbf-wrap *, .fsbf-wrap *::before, .fsbf-wrap *::after { box-sizing: border-box; }
/* Divi/theme styles can override the browser's native [hidden] rule. */
.fsbf-wrap [hidden] { display: none !important; }
.fsbf-step:not(.is-active) { display: none !important; }
.fsbf-form, .fsbf-success {
    background: #fff;
    border: 1px solid rgba(243, 0, 214, .23);
    border-radius: 28px;
    box-shadow: 0 14px 38px rgba(243, 0, 214, .13);
    padding: clamp(22px, 4vw, 52px);
}

.fsbf-test-badge {
    background: #fff8d8;
    border: 1px solid #efd66a;
    border-radius: 14px;
    margin: 0 0 18px;
    padding: 13px 16px;
}

.fsbf-header { margin-bottom: 34px; }
.fsbf-header h2 { color: var(--fsbf-pink); font-size: clamp(30px, 4vw, 48px); line-height: 1.1; margin: 4px 0 10px; }
.fsbf-header p { margin: 0; }
.fsbf-eyebrow { color: var(--fsbf-pink); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.fsbf-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    list-style: none;
    margin: 0 0 42px;
    padding: 0;
    position: relative;
}
.fsbf-progress::before {
    background: #ececec;
    content: "";
    height: 3px;
    left: 7%;
    position: absolute;
    right: 7%;
    top: 19px;
}
.fsbf-progress li { align-items: center; display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 1; }
.fsbf-progress span {
    align-items: center;
    background: #ececec;
    border: 4px solid #fff;
    border-radius: 999px;
    color: #999;
    display: flex;
    font-weight: 800;
    height: 42px;
    justify-content: center;
    width: 42px;
}
.fsbf-progress small { color: #858585; font-size: 13px; font-weight: 700; }
.fsbf-progress .is-active span, .fsbf-progress .is-complete span { background: var(--fsbf-pink); color: #fff; }
.fsbf-progress .is-active small, .fsbf-progress .is-complete small { color: var(--fsbf-ink); }
.fsbf-progress li[data-can-navigate="1"] { cursor: pointer; }
.fsbf-progress li[data-can-navigate="1"]:hover small { color: var(--fsbf-pink); }
.fsbf-progress li[data-can-navigate="1"]:focus-visible { outline: 2px solid var(--fsbf-pink); outline-offset: 5px; }

.fsbf-step { animation: fsbf-in .22s ease; }
@keyframes fsbf-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.fsbf-step-heading { margin-bottom: 28px; }
.fsbf-step-heading > span { color: var(--fsbf-pink); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fsbf-step-heading h3 { font-size: clamp(25px, 3vw, 36px); line-height: 1.2; margin: 4px 0 0; }

.fsbf-field { margin: 0 0 24px; }
.fsbf-field label, .fsbf-field legend { display: block; font-weight: 750; margin: 0 0 9px; }
.fsbf-field label > span[aria-hidden="true"], .fsbf-field legend > span[aria-hidden="true"] { color: var(--fsbf-red); }
.fsbf-optional { color: var(--fsbf-muted); font-size: 13px; font-weight: 500; }
.fsbf-field input[type="text"], .fsbf-field input[type="email"], .fsbf-field input[type="tel"], .fsbf-field input[type="number"], .fsbf-field input[type="date"], .fsbf-field select, .fsbf-field textarea {
    appearance: none;
    background: var(--fsbf-soft);
    border: 1.5px solid #222;
    border-radius: 18px;
    color: var(--fsbf-ink);
    font: inherit;
    min-height: 56px;
    outline: none;
    padding: 14px 17px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    width: 100%;
}
.fsbf-field textarea { min-height: 112px; resize: vertical; }
.fsbf-field input:focus, .fsbf-field select:focus, .fsbf-field textarea:focus { background: #fff; border-color: var(--fsbf-pink); box-shadow: 0 0 0 4px rgba(243, 0, 214, .12); }
.fsbf-field small { color: var(--fsbf-muted); display: block; line-height: 1.45; margin-top: 8px; }
.fsbf-field small[data-postal-status][data-state=loading] { color: #725500; font-weight: 700; }
.fsbf-field small[data-postal-status][data-state=success] { color: #18733b; font-weight: 700; }
.fsbf-field small[data-postal-status][data-state=error] { color: var(--fsbf-red); font-weight: 700; }
.fsbf-money-input { position: relative; }
.fsbf-money-input input { padding-right: 55px !important; }
.fsbf-money-input > span { font-size: 20px; font-weight: 800; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }

.fsbf-grid { display: grid; gap: 0 24px; }
.fsbf-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fsbf-grid--zip-city { grid-template-columns: minmax(130px, .35fr) minmax(0, 1fr); }

.fsbf-choice-grid { display: grid; gap: 16px; }
.fsbf-choice-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fsbf-choice-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fsbf-choice-grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fsbf-choice-grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.fsbf-choice-card { cursor: pointer; margin: 0 !important; position: relative; }
.fsbf-choice-card input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.fsbf-choice-card > span {
    background: var(--fsbf-soft);
    border: 1.5px solid var(--fsbf-line);
    border-radius: 18px;
    display: block;
    min-height: 110px;
    padding: 20px;
    transition: .18s ease;
}
.fsbf-choice-card strong { display: block; font-size: 18px; margin-bottom: 6px; }
.fsbf-choice-card small { margin: 0; }
.fsbf-choice-card--compact > span { min-height: 128px; padding: 17px; }
.fsbf-choice-card--compact strong { font-size: 16px; }
.fsbf-choice-card input:checked + span { background: rgba(243, 0, 214, .05); border-color: var(--fsbf-pink); box-shadow: inset 0 0 0 2px var(--fsbf-pink); }
.fsbf-choice-card input:focus-visible + span { outline: 3px solid rgba(243, 0, 214, .25); outline-offset: 3px; }

.fsbf-radio-list { display: grid; gap: 10px; }
.fsbf-radio-list label, .fsbf-consent {
    align-items: flex-start;
    background: var(--fsbf-soft);
    border: 1px solid var(--fsbf-line);
    border-radius: 14px;
    cursor: pointer;
    display: flex;
    gap: 11px;
    margin: 0;
    padding: 13px 15px;
}
.fsbf-radio-list input, .fsbf-consent input { accent-color: var(--fsbf-pink); flex: 0 0 auto; height: 19px; margin-top: 2px; width: 19px; }

.fsbf-notice { background: #fff6fd; border-left: 5px solid var(--fsbf-pink); border-radius: 0 14px 14px 0; display: grid; gap: 3px; margin: 0 0 25px; padding: 14px 17px; }
.fsbf-notice span { color: var(--fsbf-muted); }
.fsbf-conditional { border-top: 1px solid var(--fsbf-line); margin-top: 30px; padding-top: 30px; }
.fsbf-conditional--compact { background: #fffafd; border: 1px solid rgba(243, 0, 214, .18); border-radius: 18px; margin: 0 0 24px; padding: 20px; }
.fsbf-conditional--compact > small { color: var(--fsbf-muted); display: block; line-height: 1.45; }

.fsbf-alert { background: #fff0ef; border: 1px solid #ef8f88; border-radius: 14px; color: #8f170f; font-weight: 700; margin: 0 0 24px; padding: 14px 16px; }
.is-invalid input:not([type="radio"]):not([type="checkbox"]), .is-invalid select, .is-invalid textarea { border-color: var(--fsbf-red) !important; box-shadow: 0 0 0 3px rgba(232, 50, 35, .1); }
.is-invalid.fsbf-choice-card > span, .is-invalid .fsbf-choice-card > span { border-color: var(--fsbf-red); }
.fsbf-field-error { color: var(--fsbf-red); display: block; font-size: 14px; font-weight: 700; margin-top: 7px; }

.fsbf-nav { border-top: 1px solid var(--fsbf-line); display: flex; justify-content: space-between; margin-top: 34px; padding-top: 24px; }
.fsbf-button, .fsbf-submit {
    border: 2px solid var(--fsbf-ink);
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-height: 50px;
    padding: 11px 24px;
    transition: .18s ease;
}
.fsbf-button--primary, .fsbf-submit { background: var(--fsbf-ink); color: #fff; margin-left: auto; }
.fsbf-button--secondary { background: #fff; color: var(--fsbf-red); }
.fsbf-button:hover, .fsbf-submit:hover { transform: translateY(-1px); }
.fsbf-button:focus-visible, .fsbf-submit:focus-visible { outline: 4px solid rgba(243, 0, 214, .22); outline-offset: 3px; }
.fsbf-button:disabled, .fsbf-submit:disabled { cursor: wait; opacity: .55; }

.fsbf-summary { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 24px 0 30px; }
.fsbf-summary-section { background: var(--fsbf-soft); border: 1px solid var(--fsbf-line); border-radius: 18px; padding: 20px; }
.fsbf-summary-section--wide { grid-column: 1 / -1; }
.fsbf-summary-section--wide dl { grid-template-columns: minmax(150px, .32fr) 1fr; }
.fsbf-summary-section h4 { font-size: 19px; margin: 0 0 13px; }
.fsbf-summary-section dl { display: grid; gap: 7px 12px; grid-template-columns: minmax(110px, .45fr) 1fr; margin: 0; }
.fsbf-summary-section dt { color: var(--fsbf-muted); font-weight: 700; }
.fsbf-summary-section dd { margin: 0; overflow-wrap: anywhere; }
.fsbf-total { align-items: end; background: #161616; border-radius: 18px; color: #fff; display: flex; flex-direction: column; grid-column: 1 / -1; padding: 20px 24px; }
.fsbf-total span { font-size: 14px; opacity: .78; }
.fsbf-total strong { color: #fff; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; }
.fsbf-total small { color: #fff; opacity: .75; }
.fsbf-summary-intro { color: var(--fsbf-muted); }

.fsbf-payment-option { align-items: center !important; }
.fsbf-payment-option span { display: grid; gap: 2px; }
.fsbf-payment-option small { margin: 0; }
.fsbf-payment-option.is-disabled { cursor: not-allowed; opacity: .45; }
.fsbf-consent { margin: 23px 0; }
.fsbf-wrap label.fsbf-consent > input[type="checkbox"] {
    display: block !important;
    flex: 0 0 auto !important;
    opacity: 1 !important;
    position: static !important;
    visibility: visible !important;
}
.fsbf-wrap label.fsbf-consent > .fsbf-consent-text {
    color: var(--fsbf-ink) !important;
    display: block !important;
    font-size: inherit !important;
    line-height: 1.45 !important;
    opacity: 1 !important;
    position: static !important;
    visibility: visible !important;
}
.fsbf-consent a { color: var(--fsbf-pink); text-decoration: underline; }
.fsbf-paypal-area { background: #f6f9ff; border: 1px solid #cbd8ef; border-radius: 16px; margin: 20px 0 0; padding: 18px; }
.fsbf-paypal-area p { margin: 0 0 13px; }
.fsbf-submit { display: block; margin-top: 22px; width: 100%; }
.fsbf-loading { font-weight: 700; margin-top: 14px; text-align: center; }
.fsbf-honeypot { left: -10000px !important; opacity: 0 !important; position: absolute !important; }

.fsbf-success { text-align: center; }
.fsbf-success-icon { align-items: center; background: var(--fsbf-pink); border-radius: 999px; color: #fff; display: inline-flex; font-size: 34px; height: 70px; justify-content: center; margin-bottom: 18px; width: 70px; }
.fsbf-success h2 { color: var(--fsbf-red); }
.fsbf-success-work-number { background: #161616; border-radius: 14px; color: #fff; font-size: 22px; margin: 22px auto 14px; max-width: 420px; padding: 16px; }
.fsbf-success-work-number span { font-size: 28px; font-weight: 900; letter-spacing: .04em; }

@media (max-width: 760px) {
    .fsbf-form, .fsbf-success { border-radius: 20px; padding: 22px 17px; }
    .fsbf-progress small { display: none; }
    .fsbf-progress { margin-bottom: 28px; }
    .fsbf-grid--two, .fsbf-grid--zip-city, .fsbf-choice-grid--two, .fsbf-choice-grid--three, .fsbf-summary { grid-template-columns: 1fr; }
    .fsbf-choice-grid--four, .fsbf-choice-grid--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fsbf-choice-card > span { min-height: 0; }
    .fsbf-summary-section dl { grid-template-columns: 1fr; }
    .fsbf-summary-section dd { border-bottom: 1px solid #ddd; margin-bottom: 7px; padding-bottom: 7px; }
    .fsbf-nav { gap: 12px; }
    .fsbf-button { flex: 1; padding-inline: 12px; }
}

@media (max-width: 460px) {
    .fsbf-choice-grid--four, .fsbf-choice-grid--five { grid-template-columns: 1fr; }
}

.fsbf-route-check {
    background: #f7f7f7;
    border: 1.5px solid var(--fsbf-line);
    border-radius: 18px;
    display: grid;
    gap: 5px;
    min-height: 96px;
    padding: 16px 18px;
}
.fsbf-route-check strong { font-size: 16px; }
.fsbf-route-check span { color: var(--fsbf-muted); line-height: 1.45; }
.fsbf-route-check[data-state="loading"] { background: #fff8d8; border-color: #efd66a; }
.fsbf-route-check[data-state="success"] { background: #eefaf1; border-color: #72be82; }
.fsbf-route-check[data-state="error"] { background: #fff0ef; border-color: #ef8f88; }
.fsbf-route-check[data-state="error"] strong { color: #8f170f; }
.fsbf-google-attribution {
    color: #5e5e5e !important;
    font-family: Arial, Sans-Serif;
    font-size: 12px !important;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    margin-top: 8px !important;
    white-space: nowrap;
}


/* Grußkarten */
.fsbf-greeting-question { margin-top: 28px; }
.fsbf-greeting-panel { background: #fffafd; border: 1px solid rgba(243, 0, 214, .2); border-radius: 20px; margin-top: 22px; padding: 22px; }
.fsbf-greeting-heading { align-items: flex-start; display: flex; gap: 18px; justify-content: space-between; margin-bottom: 16px; }
.fsbf-greeting-heading > div > strong { display: block; font-size: 18px; }
.fsbf-greeting-heading small { color: var(--fsbf-muted); display: block; margin-top: 5px; }
.fsbf-greeting-price { background: var(--fsbf-ink); border-radius: 999px; color: #fff; flex: 0 0 auto; font-weight: 800; padding: 7px 12px; }
.fsbf-greeting-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.fsbf-greeting-card { background: #fff; border: 1.5px solid var(--fsbf-line); border-radius: 16px; overflow: hidden; position: relative; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.fsbf-greeting-card:hover { transform: translateY(-2px); }
.fsbf-greeting-card > input { height: 1px; opacity: 0; position: absolute; width: 1px; }
.fsbf-greeting-card > label { cursor: pointer; display: block; margin: 0 !important; padding: 10px 10px 8px; }
.fsbf-greeting-card > label strong { display: block; font-size: 13px; line-height: 1.3; margin-top: 8px; min-height: 34px; }
.fsbf-greeting-card > input:checked + label { background: rgba(243, 0, 214, .04); box-shadow: inset 0 0 0 3px var(--fsbf-pink); }
.fsbf-greeting-card > input:focus-visible + label { outline: 3px solid rgba(243, 0, 214, .25); outline-offset: -3px; }
.fsbf-greeting-image { align-items: center; aspect-ratio: 4 / 3; background: #f6f6f6; border-radius: 10px; display: flex; justify-content: center; overflow: hidden; }
.fsbf-greeting-image img { height: 100%; object-fit: contain; width: 100%; }
.fsbf-greeting-zoom { background: transparent; border: 0; border-top: 1px solid var(--fsbf-line); color: var(--fsbf-pink); cursor: pointer; font: inherit; font-size: 13px; font-weight: 800; padding: 9px 10px 10px; text-align: center; width: 100%; }
.fsbf-greeting-zoom:hover { background: #fff5fd; }
.fsbf-greeting-text-grid { margin-top: 24px; }
.fsbf-greeting-no-text { margin-top: 12px; }
.fsbf-greeting-preview { display: grid; gap: 22px; grid-template-columns: minmax(180px, .36fr) 1fr; }
.fsbf-greeting-preview-image img { background: #fff; border: 1px solid #ddd; border-radius: 12px; display: block; height: auto; max-height: 320px; object-fit: contain; width: 100%; }
.fsbf-greeting-preview-image strong { display: block; font-size: 14px; margin-top: 8px; }
.fsbf-greeting-preview-writing { background: #fff; border: 1px solid #ded6dc; border-radius: 14px; min-height: 200px; padding: 24px; }
.fsbf-greeting-preview-writing p { font-family: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive; font-size: clamp(18px, 2.4vw, 25px); line-height: 1.6; margin: 0; white-space: pre-wrap; }
.fsbf-greeting-preview-writing .fsbf-greeting-preview-sender { font-size: clamp(16px, 2vw, 21px); margin-top: 20px; }
.fsbf-greeting-preview-writing small { border-top: 1px solid #eee; color: var(--fsbf-muted); display: block; font-family: inherit; font-size: 13px; margin-top: 24px; padding-top: 12px; }
.fsbf-greeting-lightbox[hidden] { display: none !important; }
.fsbf-greeting-lightbox { align-items: center; display: flex; inset: 0; justify-content: center; padding: 24px; position: fixed; z-index: 999999; }
.fsbf-greeting-lightbox-backdrop { background: rgba(0,0,0,.78); inset: 0; position: absolute; }
.fsbf-greeting-lightbox-dialog { background: #fff; border-radius: 18px; box-shadow: 0 20px 70px rgba(0,0,0,.35); max-height: 90vh; max-width: 760px; overflow: auto; padding: 22px; position: relative; text-align: center; width: min(92vw, 760px); z-index: 1; }
.fsbf-greeting-lightbox-dialog img { height: auto; max-height: 72vh; max-width: 100%; object-fit: contain; }
.fsbf-greeting-lightbox-dialog h3 { font-size: 18px; margin: 14px 40px 0; }
.fsbf-greeting-lightbox-close { align-items: center; background: #161616; border: 0; border-radius: 999px; color: #fff; cursor: pointer; display: flex; font-size: 28px; height: 42px; justify-content: center; line-height: 1; position: absolute; right: 12px; top: 12px; width: 42px; z-index: 2; }
html.fsbf-modal-open { overflow: hidden; }

@media (max-width: 920px) {
    .fsbf-greeting-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .fsbf-greeting-panel { padding: 16px; }
    .fsbf-greeting-heading { align-items: stretch; flex-direction: column; }
    .fsbf-greeting-price { align-self: flex-start; }
    .fsbf-greeting-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .fsbf-greeting-card > label { padding: 7px; }
    .fsbf-greeting-card > label strong { font-size: 12px; min-height: 32px; }
    .fsbf-greeting-preview { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
    .fsbf-greeting-grid { grid-template-columns: 1fr; }
}


/* 0.1.8 – Florastyle: eckige Formensprache nach Kundenwunsch */
.fsbf-form,
.fsbf-success,
.fsbf-test-badge,
.fsbf-field input[type="text"],
.fsbf-field input[type="email"],
.fsbf-field input[type="tel"],
.fsbf-field input[type="number"],
.fsbf-field input[type="date"],
.fsbf-field select,
.fsbf-field textarea,
.fsbf-choice-card > span,
.fsbf-radio-list label,
.fsbf-consent,
.fsbf-notice,
.fsbf-conditional--compact,
.fsbf-alert,
.fsbf-button,
.fsbf-submit,
.fsbf-summary-section,
.fsbf-total,
.fsbf-paypal-area,
.fsbf-success-work-number,
.fsbf-route-check,
.fsbf-greeting-panel,
.fsbf-greeting-price,
.fsbf-greeting-card,
.fsbf-greeting-image,
.fsbf-greeting-preview-image img,
.fsbf-greeting-preview-writing,
.fsbf-greeting-lightbox-dialog,
.fsbf-greeting-lightbox-close {
    border-radius: 0 !important;
}

.fsbf-button--secondary {
    background: var(--fsbf-pink);
    border-color: var(--fsbf-pink);
    color: #fff;
}
.fsbf-button--secondary:hover { background: #d700bd; border-color: #d700bd; color: #fff; }
.fsbf-button--primary,
.fsbf-submit { background: var(--fsbf-ink); border-color: var(--fsbf-ink); color: #fff; }

@media (max-width: 760px) {
    .fsbf-form, .fsbf-success { border-radius: 0 !important; }
}

/* 0.2.3 – Kundenabnahme: Titel in Firmenfarbe, Wertfeld kompakter */
.fsbf-field--budget .fsbf-money-input { width: 33.333%; }
@media (max-width: 760px) {
    .fsbf-field--budget .fsbf-money-input { width: 100%; }
}


/* 0.2.0 – eigener Kalender: Sonntage sichtbar geschlossen */
.fsbf-date-display { cursor: pointer; }
.fsbf-date-display[readonly] { background-color: #fff; }
.fsbf-datepicker.ui-datepicker { background: #fff; border: 1px solid #d8d8d8; box-shadow: 0 14px 36px rgba(0,0,0,.16); box-sizing: border-box; font-family: inherit; padding: 12px; width: 310px; z-index: 999999 !important; }
.fsbf-datepicker .ui-datepicker-header { margin-bottom: 8px; min-height: 34px; position: relative; }
.fsbf-datepicker .ui-datepicker-title { font-size: 15px; font-weight: 700; line-height: 34px; padding: 0 42px; text-align: center; }
.fsbf-datepicker .ui-datepicker-prev, .fsbf-datepicker .ui-datepicker-next { align-items: center; background: #161616; color: #fff; cursor: pointer; display: flex; font-size: 0; height: 34px; justify-content: center; position: absolute; text-decoration: none; top: 0; width: 34px; }
.fsbf-datepicker .ui-datepicker-prev { left: 0; }
.fsbf-datepicker .ui-datepicker-next { right: 0; }
.fsbf-datepicker .ui-datepicker-prev::before { content: '‹'; font-size: 24px; line-height: 1; }
.fsbf-datepicker .ui-datepicker-next::before { content: '›'; font-size: 24px; line-height: 1; }
.fsbf-datepicker table { border-collapse: collapse; margin: 0; table-layout: fixed; width: 100%; }
.fsbf-datepicker th { color: #6b6b6b; font-size: 12px; font-weight: 700; padding: 7px 2px; text-align: center; }
.fsbf-datepicker td { padding: 2px; text-align: center; }
.fsbf-datepicker td a, .fsbf-datepicker td span { align-items: center; background: #f5f5f5; box-sizing: border-box; color: #161616; display: flex; font-size: 13px; height: 36px; justify-content: center; text-decoration: none; width: 100%; }
.fsbf-datepicker td a:hover { background: var(--fsbf-pink); color: #fff; }
.fsbf-datepicker td.ui-datepicker-current-day a { background: var(--fsbf-pink); color: #fff; font-weight: 700; }
.fsbf-datepicker td.ui-datepicker-today a:not(.ui-state-active) { box-shadow: inset 0 0 0 2px var(--fsbf-pink); }
.fsbf-datepicker td.ui-state-disabled span, .fsbf-datepicker td.fsbf-datepicker-sunday span { background: #ececec; color: #aaa; cursor: not-allowed; text-decoration: line-through; }
.fsbf-datepicker td.ui-datepicker-other-month span { opacity: .45; }
@media (max-width: 420px) { .fsbf-datepicker.ui-datepicker { left: 12px !important; max-width: calc(100vw - 24px); width: calc(100vw - 24px); } }
