/**
 * Jammy Floating Cart
 * ===========================================================================
 *
 * WHY THIS IS A FILE AND NOT INLINE CSS
 * Previously ~600 lines were echoed into wp_footer on every page load. Moving
 * it here makes it cacheable, minifiable, versioned by filemtime, and — most
 * of the point — editable without scrolling through a PHP class.
 *
 * WHY var(--…) WITH FALLBACKS
 * Every colour and font comes from the Jammy theme's :root tokens, so the cart
 * follows the brand automatically instead of duplicating hex codes that then
 * drift. The fallback after each comma is what renders if the theme is ever
 * deactivated or swapped — a plugin must not depend on a theme to stay
 * legible, especially one on the path to payment.
 *
 * WHY SO MANY !important
 * Inherited, not added lightly. WooCommerce and various parent styles set
 * aggressive rules on buttons, inputs and links; this cart is injected into
 * whatever page the visitor is on. Removing them is a separate job with its
 * own testing, so they stay for now.
 *
 * THE TIMER DURATION IS A CUSTOM PROPERTY
 * The auto-dismiss bar used to interpolate PHP into the CSS
 * (`transition: transform <?php echo $dismiss; ?>s`), which is exactly what
 * stops a stylesheet being static. It now reads --jfc-dismiss, injected by
 * wp_add_inline_style from the same AUTO_DISMISS_SECONDS constant.
 *
 * CURRENCY SYMBOLS
 * Luckiest Guy draws £ small and thin, so anything set in the display font
 * needs the symbol wrapped. WooCommerce emits .woocommerce-Price-currencySymbol
 * and the theme already styles it; prices this plugin builds by hand are
 * wrapped in .jam-cur to match.
 */

/* ===========================================================================
   ADD-TO-CART CONFIRMATION POPUP
   =========================================================================== */

#jfc-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-sizing: border-box !important;
    -webkit-tap-highlight-color: transparent;
}

#jfc-popup {
    background: #17171c !important;
    border-radius: var(--card-r, 14px) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .55) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    overflow: hidden !important;
    width: 92% !important;
    max-width: 360px !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jfc-header {
    background: var(--jam-grad, linear-gradient(135deg, #E3243B, #C41E30)) !important;
    padding: 14px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}
.jfc-header-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.jfc-header-left span {
    color: var(--cream, #FFF6E9) !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: .4px !important;
    text-transform: uppercase !important;
    /* The theme's signature maroon drop under display type on red. */
    text-shadow: 0 2px 0 var(--jam-red-deep, #8E1322) !important;
}
.jfc-close {
    color: var(--cream, #FFF6E9) !important;
    opacity: .75 !important;
    font-size: 22px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 4px !important;
    transition: opacity .15s ease !important;
    background: none !important;
    border: none !important;
}
.jfc-close:hover { opacity: 1 !important; }

.jfc-body {
    padding: 16px !important;
    background: #17171c !important;
    margin: 0 !important;
    border: none !important;
}

.jfc-product-row {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    margin-bottom: 14px !important;
}
.jfc-thumb {
    width: 64px !important;
    height: 64px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    background: #2a2a32 !important;
}
.jfc-thumb-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
}
.jfc-product-title {
    margin: 0 0 4px !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    color: #fff !important;
    letter-spacing: .2px !important;
    line-height: 1.25 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}
.jfc-product-meta {
    margin: 0 !important;
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    font-size: 11.5px !important;
    color: #9a9aa6 !important;
    font-weight: 700 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.jfc-stats {
    background: #101014 !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
    margin-bottom: 14px !important;
    border: none !important;
}
.jfc-stat { text-align: center !important; }
.jfc-stat-label {
    display: block !important;
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    font-size: 9.5px !important;
    color: #7a7a86 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}
.jfc-stat-value {
    display: block !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    font-weight: 400 !important;
    font-size: 23px !important;
    color: #fff !important;
    margin-top: 3px !important;
    line-height: 1 !important;
}
/* Gold for money, matching the wallet pill — red would fight the header. */
.jfc-stat-value.jfc-stat-total { color: var(--gold, #FFD96B) !important; }
.jfc-stat-tickets { color: var(--gold, #FFD96B) !important; }
.jfc-stat-divider {
    width: 1px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, .1) !important;
    border: none !important;
}

.jfc-buttons {
    display: flex !important;
    gap: 8px !important;
}
.jfc-btn {
    flex: 1 !important;
    text-align: center !important;
    padding: 12px !important;
    /* .jfc-btn-checkout overrides this below — it has a lip, .jfc-btn-continue
       does not, so only one of them needs the optical bias. Both keep the same
       total padding, so they stay the same height side by side. */
    border-radius: var(--pill, 999px) !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    letter-spacing: .5px !important;
    /* Same line-box correction as .jfc-mc-checkout above — these had it too,
       just less visibly because they're narrower. */
    line-height: 1 !important;
    text-indent: 2px !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: auto !important;
    transition: transform .16s var(--spring, cubic-bezier(.34, 1.56, .64, 1)),
                box-shadow .16s !important;
}
.jfc-btn-continue {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, .22) !important;
    color: #c9c9d2 !important;
    box-shadow: none !important;
}
.jfc-btn-continue:hover {
    border-color: rgba(255, 255, 255, .4) !important;
    color: #fff !important;
}
.jfc-btn-continue:active { transform: translateY(2px) !important; }

/* The theme's physical button: a solid lip that the press travels into. */
.jfc-btn-checkout {
    background: var(--jam-grad, linear-gradient(135deg, #E3243B, #C41E30)) !important;
    border: none !important;
    color: var(--cream, #FFF6E9) !important;
    /* Same optical bias as .jfc-mc-checkout — half the lip, pushed down. */
    padding: 15px 12px 9px !important;
    box-shadow: 0 var(--lip, 4px) 0 var(--jam-red-deep, #8E1322) !important;
    text-shadow: 0 2px 0 rgba(142, 19, 34, .45) !important;
}
.jfc-btn-checkout:hover,
.jfc-btn-checkout:visited { color: var(--cream, #FFF6E9) !important; }
.jfc-btn-checkout:active {
    transform: translateY(var(--lip, 4px)) !important;
    box-shadow: 0 0 0 var(--jam-red-deep, #8E1322) !important;
}

.jfc-timer-track {
    height: 3px !important;
    background: transparent !important;
}
.jfc-timer-bar {
    height: 100% !important;
    width: 100% !important;
    background: var(--gold-grad, linear-gradient(135deg, #FFD96B, #F5A623)) !important;
    transform-origin: left !important;
    transform: scaleX(1);
}
.jfc-timer-bar.jfc-timer-running {
    transform: scaleX(0);
    /* --jfc-dismiss is injected by the plugin from AUTO_DISMISS_SECONDS. The
       fallback matters: without it a missing variable means no transition and
       the bar snaps instantly to zero. */
    transition: transform var(--jfc-dismiss, 5s) linear;
}

/* Hide the slider's built-in popup when ours fires. */
.jqs-popup.jqs-show { display: none !important; }

/* ===========================================================================
   FLOATING ACTION BUTTON
   =========================================================================== */

#jfc-fab {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: var(--jam-grad, linear-gradient(135deg, #E3243B, #C41E30)) !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 999990 !important;
    align-items: center !important;
    justify-content: center !important;
    /* Lip plus ambient, same language as the tile buttons. */
    box-shadow: 0 5px 0 var(--jam-red-deep, #8E1322),
                0 8px 22px rgba(227, 36, 59, .35) !important;
    transition: transform .2s var(--spring, cubic-bezier(.34, 1.56, .64, 1)),
                box-shadow .2s ease !important;
    padding: 0 !important;
    margin: 0 !important;
}
#jfc-fab:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 7px 0 var(--jam-red-deep, #8E1322),
                0 12px 28px rgba(227, 36, 59, .45) !important;
}
#jfc-fab:active {
    transform: translateY(5px) !important;
    box-shadow: 0 0 0 var(--jam-red-deep, #8E1322),
                0 2px 8px rgba(227, 36, 59, .3) !important;
}
#jfc-fab svg { pointer-events: none; }

.jfc-fab-count {
    position: absolute !important;
    top: -6px !important;
    right: -6px !important;
    background: var(--ink, #1a1a1a) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    min-width: 22px !important;
    height: 22px !important;
    border-radius: var(--pill, 999px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #fff !important;
    line-height: 1 !important;
    padding: 0 5px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}

/* ===========================================================================
   MINI CART PANEL
   =========================================================================== */

#jfc-minicart {
    position: fixed !important;
    bottom: 90px !important;
    right: 24px !important;
    width: 340px !important;
    max-height: 70vh !important;
    background: #17171c !important;
    border-radius: var(--card-r, 14px) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .5) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    overflow: hidden !important;
    z-index: 999991 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.jfc-mc-header {
    background: var(--jam-grad, linear-gradient(135deg, #E3243B, #C41E30)) !important;
    padding: 13px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
}
.jfc-mc-title {
    color: var(--cream, #FFF6E9) !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    letter-spacing: .4px !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 0 var(--jam-red-deep, #8E1322) !important;
}
.jfc-mc-close {
    color: var(--cream, #FFF6E9) !important;
    opacity: .75 !important;
    font-size: 22px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 4px !important;
    background: none !important;
    border: none !important;
    transition: opacity .15s ease !important;
}
.jfc-mc-close:hover { opacity: 1 !important; }

.jfc-mc-items {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    max-height: 300px !important;
    scrollbar-width: thin !important;
    scrollbar-color: #33333d transparent !important;
}
.jfc-mc-items::-webkit-scrollbar { width: 4px !important; }
.jfc-mc-items::-webkit-scrollbar-track { background: transparent !important; }
.jfc-mc-items::-webkit-scrollbar-thumb {
    background: #33333d !important;
    border-radius: 4px !important;
}
.jfc-mc-items::-webkit-scrollbar-thumb:hover { background: #4a4a56 !important; }

.jfc-mc-empty {
    padding: 26px 16px !important;
    text-align: center !important;
}
.jfc-mc-empty p {
    color: #7a7a86 !important;
    font-size: 13px !important;
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.jfc-mc-item {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
}
.jfc-mc-item:last-child { border-bottom: none !important; }
.jfc-mc-item-thumb {
    width: 48px !important;
    height: 48px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    background: #2a2a32 !important;
}
.jfc-mc-item-thumb-placeholder {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
}
.jfc-mc-item-info {
    flex: 1 !important;
    min-width: 0 !important;
}
.jfc-mc-item-title {
    margin: 0 !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    font-weight: 400 !important;
    font-size: 12.5px !important;
    color: #fff !important;
    letter-spacing: .2px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}
.jfc-mc-item-controls {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin-top: 7px !important;
}

.jfc-mc-stepper {
    display: flex !important;
    align-items: center !important;
    background: #26262e !important;
    border-radius: var(--pill, 999px) !important;
    overflow: hidden !important;
    border: none !important;
}
/* Red steppers matching the quick-add modal, with the inset dome the theme
   uses on circular buttons rather than an offset lip. */
.jfc-mc-step {
    all: unset !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    background: var(--jam-grad, linear-gradient(135deg, #E3243B, #C41E30)) !important;
    box-shadow: inset 0 -2px 0 rgba(96, 10, 22, .45) !important;
    transition: filter .15s ease, transform .15s ease !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    min-width: 0 !important;
    max-width: none !important;
}
.jfc-mc-step:hover { filter: brightness(1.08) !important; }
.jfc-mc-step:active { transform: translateY(1px) !important; }
/* Disabled once the competition's per-player cap is reached. The cap itself is
   enforced at checkout; this only stops the counter climbing past it. */
.jfc-mc-step[disabled] {
    opacity: .38 !important;
    cursor: default !important;
    filter: none !important;
    transform: none !important;
}

.jfc-mc-step-qty {
    all: unset !important;
    width: 46px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    letter-spacing: .3px !important;
    background: #2f2f38 !important;
    min-width: 46px !important;
    text-align: center !important;
    -moz-appearance: textfield !important;
    margin: 0 !important;
    padding: 0 2px !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    border-radius: 0 !important;
}
.jfc-mc-step-qty::-webkit-outer-spin-button,
.jfc-mc-step-qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.jfc-mc-item-unit-price {
    font-size: 11px !important;
    color: #9a9aa6 !important;
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}
.jfc-mc-item-right {
    text-align: right !important;
    flex-shrink: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 3px !important;
}
.jfc-mc-item-subtotal {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--gold, #FFD96B) !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    letter-spacing: .2px !important;
}
.jfc-mc-item-remove {
    all: unset !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .12) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    line-height: 1 !important;
    padding: 0 !important;
    transition: background .15s ease, transform .15s ease !important;
    flex-shrink: 0 !important;
}
/* Red only on hover — a permanently red delete next to a red checkout button
   pulls the eye toward removing rather than buying. */
.jfc-mc-item-remove:hover {
    background: var(--jam-red, #E3243B) !important;
    transform: scale(1.1) !important;
}

.jfc-mc-footer {
    padding: 13px 16px 15px !important;
    background: #101014 !important;
    border-top: 1px solid rgba(255, 255, 255, .07) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
}
.jfc-mc-total-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    margin-bottom: 11px !important;
}
.jfc-mc-total-label {
    font-size: 10.5px !important;
    color: #8a8a96 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    letter-spacing: 1.1px !important;
}
.jfc-mc-total-value {
    font-size: 24px !important;
    font-weight: 400 !important;
    color: var(--gold, #FFD96B) !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    letter-spacing: .3px !important;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .5) !important;
    line-height: 1 !important;
}

.jfc-mc-checkout {
    display: block !important;
    background: var(--jam-grad, linear-gradient(135deg, #E3243B, #C41E30)) !important;
    border-radius: var(--pill, 999px) !important;
    /*
     * ASYMMETRIC ON PURPOSE — 16 top, 12 bottom.
     *
     * The button's 3D lip is a box-shadow, so it sits OUTSIDE the border box:
     * the element is 46px but the red shape the eye sees is 50px. Centring the
     * label in the border box therefore puts it ~2px above the centre of the
     * button as drawn. Shifting it down 2px centres it in the shape rather
     * than the box. Total padding is unchanged, so the button is the same size.
     *
     * If --lip ever changes, this bias is half of it.
     */
    padding: 16px 14px 12px !important;
    text-align: center !important;
    cursor: pointer !important;
    text-decoration: none !important;
    color: var(--cream, #FFF6E9) !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    letter-spacing: .5px !important;
    /*
     * line-height: 1 is the fix, not a tidy-up.
     *
     * With the default `normal`, Luckiest Guy's oversized line box sat the
     * glyphs ~1.8px above the button's optical centre — the LINE was centred
     * perfectly, so it measured correct and looked wrong. Pinning the line box
     * to the font size brings the ink back to centre.
     */
    line-height: 1 !important;
    /*
     * Letter-spacing adds a trailing space after the final character, which
     * centring includes in the width — so the visible text lands fractionally
     * left. 2px shifts it back. Measured, not guessed: this lands the ink
     * within 0.12px of centre both ways.
     */
    text-indent: 2px !important;
    font-family: var(--font-display, 'Luckiest Guy', cursive) !important;
    border: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    outline: none !important;
    box-shadow: 0 var(--lip, 4px) 0 var(--jam-red-deep, #8E1322) !important;
    text-shadow: 0 2px 0 rgba(142, 19, 34, .45) !important;
    transition: transform .16s var(--spring, cubic-bezier(.34, 1.56, .64, 1)),
                box-shadow .16s !important;
}
.jfc-mc-checkout:hover,
.jfc-mc-checkout:visited { color: var(--cream, #FFF6E9) !important; }
.jfc-mc-checkout:active {
    transform: translateY(var(--lip, 4px)) !important;
    box-shadow: 0 0 0 var(--jam-red-deep, #8E1322) !important;
}

.jfc-mc-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999989 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

/* ===========================================================================
   CURRENCY SYMBOL

   Luckiest Guy's £ is drawn small and thin beside its digits. The theme styles
   .jam-cur and .woocommerce-Price-currencySymbol already; these rules size the
   symbol for the specific sizes used here, where the type is smaller than the
   headline prices the theme's defaults were tuned against.
   =========================================================================== */

.jfc-mc-total-value .jam-cur,
.jfc-mc-total-value .woocommerce-Price-currencySymbol {
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    font-weight: 800 !important;
    font-size: 1.12em !important;
    letter-spacing: 0 !important;
    margin-right: .03em !important;
}
.jfc-mc-item-subtotal .jam-cur,
.jfc-stat-value .jam-cur {
    font-family: var(--font-body, 'Baloo 2', sans-serif) !important;
    font-weight: 800 !important;
    font-size: 1.16em !important;
    letter-spacing: 0 !important;
    margin-right: .03em !important;
}

/* ===========================================================================
   MOBILE
   =========================================================================== */

@media (max-width: 768px) {
    #jfc-minicart {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 85% !important;
        max-width: 360px !important;
        bottom: 90px !important;
    }
    #jfc-fab {
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* Presses and hovers are decoration; the layout is not. */
@media (prefers-reduced-motion: reduce) {
    .jfc-btn,
    .jfc-mc-checkout,
    .jfc-mc-step,
    .jfc-mc-item-remove,
    #jfc-fab { transition: none !important; }
    .jfc-timer-bar.jfc-timer-running { transition: transform var(--jfc-dismiss, 5s) linear; }
}
