.platform-learning-section {
    background: transparent;
    border: 0;
    max-width: 100%;
    box-shadow: none;
    overflow: visible;
}

.platform-learning-section,
.platform-learning-section *,
.platform-learning-section *::before,
.platform-learning-section *::after {
    box-sizing: border-box;
}

.platform-learning-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 2px 0 18px;
}

.platform-learning-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.platform-learning-header h2 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.platform-learning-header p {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.45;
}

.platform-learning-scroll-controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.platform-learning-scroll-controls button,
.platform-learning-dismiss {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.platform-learning-scroll-controls button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.platform-learning-dismiss {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 16px;
}

.platform-learning-scroll-controls button:hover,
.platform-learning-dismiss:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.platform-learning-scroll-controls button:active,
.platform-learning-dismiss:active {
    transform: scale(0.98);
}

.platform-learning-scroll-controls svg,
.platform-learning-card-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.platform-learning-dismiss.is-complete {
    border-color: #bbf7d0;
    color: #166534;
}

.platform-learning-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(380px, 31vw, 460px);
    gap: 22px;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 6px 4px 28px;
    scroll-padding: 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.platform-learning-row::-webkit-scrollbar {
    display: none;
}

.platform-learning-card {
    min-height: 326px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #f8fafc;
    color: #111827;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    position: relative;
    text-align: left;
    scroll-snap-align: start;
    isolation: isolate;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.platform-learning-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
    pointer-events: none;
}

.platform-learning-card:hover {
    background: #ffffff;
    border-color: #fed7aa;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
}

.platform-learning-card:focus-visible {
    outline: 3px solid rgba(234, 88, 12, 0.22);
    outline-offset: 3px;
}

.platform-learning-card-chip {
    align-self: flex-start;
    border: 1px solid #fdba74;
    border-radius: 999px;
    background: #ffffff;
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 8px 13px;
    z-index: 1;
}

.platform-learning-complete-mark {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    background: #ffffff;
    color: #166534;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 8px 11px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.platform-learning-card.is-complete {
    border-color: #fdba74;
    background: #ffffff;
}

.platform-learning-card.is-next-focus {
    animation: platformLearningNextFocus 2.4s ease-out 1;
}

@keyframes platformLearningNextFocus {
    0%   { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
    18%  { box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.45); }
    100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .platform-learning-card.is-next-focus {
        animation: none;
        box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.4);
    }
}

.platform-learning-card.is-complete .platform-learning-card-chip {
    border-color: #e5e7eb;
    color: #334155;
}

.platform-learning-card-visual {
    min-height: 150px;
    border: 1px solid #e8edf4;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98)),
        #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.platform-learning-card-visual::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.68);
    opacity: 0.58;
}

.platform-learning-card-copy {
    display: grid;
    gap: 7px;
    z-index: 1;
}

.platform-learning-card-title {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.platform-learning-card-desc {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.48;
    max-width: 34ch;
}

.platform-learning-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #374151;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    z-index: 1;
}

.platform-learning-card-arrow {
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 160ms ease;
}

.platform-learning-card:hover .platform-learning-card-arrow {
    transform: translateX(3px);
}

.pl-mini-panel,
.pl-mini-table,
.pl-mini-calendar,
.pl-mini-chat,
.pl-mini-sync-card,
.pl-mini-stack-card,
.pl-mini-upload,
.pl-mini-due-card,
.pl-mini-status-pill,
.pl-mini-channel,
.pl-mini-renewal-pill,
.pl-mini-budget-bar,
.pl-mini-budget-card,
.pl-mini-budget-pill,
.pl-mini-badge {
    position: absolute;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.pl-mini-panel-main {
    left: 58px;
    top: 34px;
    width: 178px;
    height: 92px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #ffffff;
    padding: 14px;
}

.pl-mini-kpi-row,
.pl-mini-chart,
.pl-mini-prompt-lines,
.pl-mini-sync-card {
    display: flex;
}

.pl-mini-kpi-row {
    gap: 7px;
}

.pl-mini-kpi-row span {
    width: 36px;
    height: 12px;
    border-radius: 999px;
    background: #e2e8f0;
}

.pl-mini-kpi-row span:first-child {
    border: 1px solid #fdba74;
    background: #ffffff;
}

.pl-mini-chart {
    align-items: end;
    gap: 9px;
    height: 42px;
    margin-top: 16px;
}

.pl-mini-chart span {
    width: 22px;
    border-radius: 8px 8px 3px 3px;
    background: #0f172a;
}

.pl-mini-chart span:nth-child(2),
.pl-mini-chart span:nth-child(4) {
    background: #2563eb;
}

.pl-mini-badge {
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 10px;
}

.pl-mini-badge-top {
    right: 48px;
    top: 42px;
}

.pl-mini-badge-bottom {
    left: 92px;
    bottom: 18px;
}

.pl-mini-table {
    left: 56px;
    top: 34px;
    width: 170px;
    height: 102px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #ffffff;
    display: grid;
    gap: 9px;
    padding: 18px;
}

.pl-mini-table span {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
}

.pl-mini-table span:nth-child(1),
.pl-mini-table span:nth-child(3) {
    width: 84%;
}

.pl-mini-table span:nth-child(2),
.pl-mini-table span:nth-child(4) {
    width: 58%;
}

.pl-mini-upload {
    right: 52px;
    top: 52px;
    border: 1px solid #fdba74;
    border-radius: 14px;
    background: #ffffff;
    color: #c2410c;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    padding: 12px 14px;
}

.pl-mini-upload-icon {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 6px;
}

.pl-mini-route-line,
.pl-mini-channel-line {
    position: absolute;
    height: 1px;
    border-top: 2px solid #93c5fd;
    opacity: 0.8;
}

.pl-mini-route-line {
    left: 204px;
    top: 84px;
    width: 58px;
}

.pl-mini-calendar {
    left: 72px;
    top: 28px;
    width: 132px;
    height: 112px;
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
}

.pl-mini-calendar-top {
    display: block;
    height: 28px;
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.pl-mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    padding: 15px;
}

.pl-mini-calendar-grid span {
    height: 14px;
    border-radius: 6px;
    background: #e2e8f0;
}

.pl-mini-calendar-grid span:nth-child(2),
.pl-mini-calendar-grid span:nth-child(5) {
    border: 1px solid #fdba74;
    background: #ffffff;
}

.pl-mini-due-card {
    right: 48px;
    top: 50px;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    background: #ffffff;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    padding: 12px 14px;
}

.pl-mini-status-pill {
    right: 78px;
    bottom: 22px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #ffffff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 10px;
}

.pl-mini-chat {
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #ffffff;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    padding: 12px 14px;
}

.pl-mini-budget-bar {
    left: 58px;
    top: 40px;
    width: 178px;
    height: 22px;
    display: flex;
    gap: 3px;
    border-radius: 8px;
    overflow: hidden;
    background: #eef2f7;
}

.pl-mini-budget-bar span {
    height: 100%;
}

.pl-mini-budget-bar span:nth-child(1) { background: #fdba74; }
.pl-mini-budget-bar span:nth-child(2) { background: #93c5fd; }
.pl-mini-budget-bar span:nth-child(3) { background: #6ee7b7; }

.pl-mini-budget-card {
    left: 58px;
    top: 76px;
    width: 132px;
    height: 52px;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    background: #ffffff;
    padding: 12px 14px;
    display: grid;
    gap: 8px;
    align-content: center;
}

.pl-mini-budget-card span {
    height: 9px;
    border-radius: 5px;
    background: #e2e8f0;
}

.pl-mini-budget-card span:nth-child(1) { width: 70%; }
.pl-mini-budget-card span:nth-child(2) { width: 46%; }

.pl-mini-budget-pill {
    right: 50px;
    bottom: 34px;
    border: 1px solid #fdba74;
    border-radius: 999px;
    background: #ffffff;
    color: #c2410c;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 12px;
}

.platform-learning-visual-fluxy-ai {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98)),
        #ffffff;
}

.pl-ai-orbit {
    position: absolute;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    opacity: 0.86;
}

.pl-ai-orbit-a {
    left: 82px;
    top: 24px;
    width: 184px;
    height: 96px;
}

.pl-ai-orbit-b {
    left: 128px;
    top: 14px;
    width: 96px;
    height: 122px;
}

.pl-ai-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 76px;
    height: 76px;
    border: 1px solid #fdba74;
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 16px 38px rgba(234, 88, 12, 0.14),
        0 0 0 8px rgba(255, 255, 255, 0.72);
    transform: translate(-50%, -52%) rotate(4deg);
}

.pl-ai-core-mark {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif; font-variant-numeric: tabular-nums;
    font-size: 22px;
    font-weight: 800;
}

.pl-mini-chat-user {
    left: 42px;
    top: 32px;
}

.pl-mini-chat-ai {
    right: 36px;
    top: 78px;
    color: #0f172a;
}

.pl-mini-ai-input {
    position: absolute;
    left: 72px;
    right: 72px;
    bottom: 20px;
    height: 28px;
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.pl-mini-ai-input span {
    height: 7px;
    border-radius: 999px;
    background: #e2e8f0;
}

.pl-mini-ai-input span:first-child {
    width: 64%;
}

.pl-mini-ai-input span:last-child {
    width: 18px;
    border: 1px solid #fdba74;
    background: #ffffff;
}

.pl-mini-spark {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 1px solid #fdba74;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.12);
    transform: translate(-50%, -50%) rotate(8deg);
}

.pl-mini-spark::before,
.pl-mini-spark::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: #0f172a;
    transform: translate(-50%, -50%);
}

.pl-mini-spark::before {
    width: 18px;
    height: 3px;
    border-radius: 999px;
}

.pl-mini-spark::after {
    width: 3px;
    height: 18px;
    border-radius: 999px;
}

.pl-mini-prompt-lines {
    position: absolute;
    left: 58px;
    bottom: 22px;
    flex-direction: column;
    gap: 7px;
}

.pl-mini-prompt-lines span {
    width: 88px;
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
}

.pl-mini-channel {
    border: 1px solid #dbe4ef;
    border-radius: 999px;
    background: #ffffff;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 13px;
}

.pl-mini-channel-a {
    left: 54px;
    top: 38px;
}

.pl-mini-channel-b {
    right: 50px;
    top: 78px;
}

.pl-mini-channel-line {
    left: 152px;
    top: 82px;
    width: 118px;
    transform: rotate(13deg);
}

.pl-mini-sync-card {
    left: 78px;
    bottom: 22px;
    width: 150px;
    height: 52px;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    background: #ffffff;
    align-items: center;
    gap: 9px;
    justify-content: center;
}

.pl-mini-sync-card span {
    width: 24px;
    height: 24px;
    border-radius: 9px;
    background: #e2e8f0;
}

.pl-mini-sync-card span:nth-child(2) {
    border: 1px solid #fdba74;
    background: #ffffff;
}

.pl-mini-stack-card {
    width: 160px;
    height: 92px;
    border: 1px solid #dbe4ef;
    border-radius: 18px;
    background: #ffffff;
}

.pl-mini-stack-back {
    left: 66px;
    top: 30px;
    transform: rotate(-6deg);
}

.pl-mini-stack-mid {
    left: 92px;
    top: 42px;
    transform: rotate(5deg);
}

.pl-mini-stack-front {
    left: 122px;
    top: 56px;
    display: grid;
    gap: 10px;
    padding: 20px;
}

.pl-mini-stack-front span {
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
}

.pl-mini-stack-front span:first-child {
    width: 72%;
    border: 1px solid #fdba74;
    background: #ffffff;
}

.pl-mini-renewal-pill {
    left: 58px;
    bottom: 22px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #ffffff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 10px;
}

.fluxy-tour-overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.fluxy-learn-promoter-overlay {
    z-index: 80;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.fluxy-learn-promoter-popover.is-step {
    animation: fluxyPromoterPopIn 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fluxyPromoterPopIn {
    from { opacity: 0; transform: translateY(6px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Microinteraction: gentle pulsing glow on the spotlighted card to draw the
   eye, layered over the static ring from .fluxy-tour-highlight. */
.platform-learning-card.fluxy-tour-highlight::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 19px;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.55);
    animation: fluxyPromoterPulse 1.9s ease-in-out infinite;
}

@keyframes fluxyPromoterPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .fluxy-learn-promoter-popover.is-step { animation: none; }
    .platform-learning-card.fluxy-tour-highlight::before { animation: none; }
}

.fluxy-learn-promoter-eyebrow {
    display: inline-block;
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ea580c;
}

.fluxy-learn-promoter-popover:focus {
    outline: none;
}

/* Match the spotlight ring to the card's own 18px radius so it hugs cleanly. */
.platform-learning-card.fluxy-tour-highlight {
    border-radius: 18px;
}

.fluxy-tour-highlight {
    position: relative !important;
    z-index: 95 !important;
    border-radius: 12px;
    transition: box-shadow 180ms ease, outline-color 180ms ease;
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.95),
        0 0 0 7px rgba(234, 88, 12, 0.78),
        0 16px 38px rgba(15, 23, 42, 0.28) !important;
}

.fluxy-tour-popover {
    position: fixed;
    z-index: 100;
    box-sizing: border-box;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.24);
    color: #111827;
    padding: 18px;
    transform-origin: top center;
    will-change: transform, opacity;
}

.fluxy-tour-popover.is-step-forward {
    animation: fluxyCoachmarkNext 180ms ease-out;
}

.fluxy-tour-popover.is-step-back {
    animation: fluxyCoachmarkBack 180ms ease-out;
}

.fluxy-tour-count {
    margin: 0 0 5px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
}

.fluxy-tour-popover h3 {
    margin: 0;
    color: #111827;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: 0;
}

.fluxy-tour-popover p:not(.fluxy-tour-count) {
    margin: 9px 0 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.45;
}

.fluxy-tour-skip {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: #6b7280;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.fluxy-tour-skip:hover {
    color: #111827;
}

.fluxy-tour-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.fluxy-tour-secondary,
.fluxy-tour-primary {
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    min-width: 72px;
    padding: 10px 14px;
}

.fluxy-tour-secondary {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
}

.fluxy-tour-secondary:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.fluxy-tour-primary {
    border: 1px solid #0b0f19;
    background: #0b0f19;
    color: #ffffff;
}

.fluxy-tour-primary:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.42);
    outline-offset: 2px;
}

@keyframes fluxyCoachmarkNext {
    from {
        opacity: 0;
        transform: translateX(14px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes fluxyCoachmarkBack {
    from {
        opacity: 0;
        transform: translateX(-14px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 768px) {
    .platform-learning-header {
        flex-direction: column;
        padding: 0 0 16px;
    }

    .platform-learning-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .platform-learning-header h2 {
        font-size: 21px;
    }

    .platform-learning-dismiss {
        width: 100%;
    }

    .platform-learning-row {
        grid-auto-flow: row;
        grid-auto-columns: unset;
        grid-template-columns: 1fr;
        overflow-x: visible;
        padding: 0;
    }

    .platform-learning-card {
        min-height: 0;
        padding: 18px;
    }

    .platform-learning-card-visual {
        min-height: 132px;
    }

    .platform-learning-card-title {
        font-size: 17px;
    }

    .platform-learning-card-desc {
        font-size: 13px;
    }

    .fluxy-tour-popover {
        max-width: calc(100vw - 24px);
        padding: 16px;
    }

    .fluxy-tour-popover h3 {
        font-size: 18px;
    }

    .fluxy-tour-popover p:not(.fluxy-tour-count) {
        font-size: 13px;
    }
}
