/**
 * Version: 1.12.0
 * Timestamp: 2026-06-02 14:20:00 Europe/Madrid
 * Tool: Front-end CSS for ExperimentKit A/B test runtime.
 * Fix: Keeps the anti-flicker loading state aligned with inline server-side runtime bootstrap.
 *
 * Changelog:
 * 1.12.0 - Kept runtime cloaking compatible with inline server-side anti-flicker bootstrap.
 * 1.6.0 - Bundled with release 1.6 workflow changes without changing runtime CSS behavior.
 * 1.3.0 - Bundled with the targeting-engine release without changing runtime CSS behavior.
 * 1.2.0 - Applied the ExperimentKit commercial foundation and frontend CSS naming cleanup.
 * 1.1.0 - Added no-flicker cloaking for active runtime pages and kept inactive variants hidden after assignment.
 * 0.8.0 - Kept runtime CSS unchanged while shipping the admin goal-step redesign.
 * 0.7.0 - Kept runtime CSS minimal because editor-mode styling is now injected inline to avoid asset blocking.
 * 0.6.0 - Kept runtime CSS minimal while editor bridge styles are injected only in editor mode.
 * 0.4.0 - Kept front-end styles minimal for cookie-based visual A/B runtime.
 * 0.3.0 - Kept front-end styles minimal for lower layout risk.
 * 0.2.0 - Added runtime mutation markers.
 * 0.1.0 - Added variant fallback styles.
 */
html.experimentkit-runtime-loading .experimentkit-variant {
    visibility: hidden !important;
}
.experimentkit-variant[data-experimentkit-active="0"] {
    display: none !important;
}
.experimentkit-variant[data-experimentkit-active="1"] {
    visibility: visible !important;
}
[data-experimentkit-mutated="1"] {
    transition: opacity .12s ease;
}
