/* ===========================================
   DEMO MODAL - Animated Product Demo
   =========================================== */
.demo-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.demo-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}
.demo-modal {
    background: #ffffff;
    border-radius: 16px;
    width: 94vw;
    max-width: 1100px;
    height: 90vh;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.97);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.demo-modal-overlay.show .demo-modal {
    transform: translateY(0) scale(1);
}
.demo-modal-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.demo-modal-topbar h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0b1f3a;
}
.demo-modal-topbar h3 i {
    color: #457b9d;
    margin-right: 8px;
}
.demo-modal-topbar h3 .demo-title-short {
    display: none;
}
.demo-modal-close {
    background: none;
    border: 1px solid #e2e8f0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    font-size: 14px;
}
.demo-modal-close:hover {
    background: #f1f5f9;
    color: #0f172a;
}
.demo-modal-body {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
/* Left side: animated editor demo */
.demo-editor-wrap {
    flex: 1;
    min-width: 0;
    min-height: 0;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f8fafc;
}
/* Right side: CTA */
.demo-cta-panel {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    overflow-y: auto;
}
.demo-cta-panel h4 {
    font-family: 'Georgia', serif;
    font-size: 26px;
    font-weight: 700;
    color: #0b1f3a;
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}
.demo-cta-price {
    font-weight: 700;
    font-size: 15px;
    color: #059669;
    margin: 0 0 10px;
}
.demo-cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}
.demo-cta-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 12.5px;
    line-height: 1.4;
    color: #334155;
}
.demo-cta-features li i {
    color: #059669;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 12px;
}
.demo-cta-features li strong {
    color: #0f172a;
}
.demo-cta-action {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}
.demo-cta-email {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    background: #f8fafc;
}
.demo-cta-email:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    background: #ffffff;
}
.demo-cta-submit {
    width: 100%;
    margin-top: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    letter-spacing: -0.2px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}
.demo-cta-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, #047857, #059669);
}
.demo-cta-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.demo-cta-action form {
    margin: 0;
}
.demo-confirm-box {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px 16px;
    text-align: center;
}
.demo-confirm-label {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
}
.demo-confirm-email {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    word-break: break-all;
}
.demo-confirm-change {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0 0;
    transition: color 0.15s;
}
.demo-confirm-change:hover {
    color: #1d4ed8;
    text-decoration: underline;
}
.demo-confirm-change i {
    font-size: 10px;
    margin-right: 2px;
}
.demo-cta-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 11px;
    color: #94a3b8;
}
.demo-cta-secure i {
    font-size: 10px;
}
.demo-cta-or {
    text-align: center;
    color: #94a3b8;
    font-size: 12px;
    margin: 8px 0;
}
.demo-cta-download {
    width: 100%;
    padding: 10px 18px;
    background: #ffffff;
    color: #334155;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
}
.demo-cta-download:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* ---- Export spotlight dimming overlay ---- */
.mini-editor .export-dim-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    border-radius: 0 0 10px 10px;
}
.mini-editor .export-dim-overlay.active {
    opacity: 1;
}
.mini-editor.export-spotlight .mini-export-btn {
    position: relative;
    z-index: 8;
    background: #007aff;
    color: #ffffff;
    border-color: #007aff;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.35), 0 0 24px rgba(0, 122, 255, 0.3);
    border-radius: 5px;
}
.mini-editor.export-spotlight .mini-export-btn .fa-chevron-down,
.mini-editor.export-spotlight .mini-export-btn .fa-download {
    color: #ffffff;
}
.mini-editor.export-spotlight .mini-export-menu {
    z-index: 8;
}
.mini-editor.export-spotlight .mini-download-toast {
    z-index: 12;
}
/* ---- Mini Editor (inside demo modal) ---- */
.mini-editor {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
}
.mini-tab-bar {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 12px;
    height: 40px;
    flex-shrink: 0;
    gap: 8px;
}
.mini-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    position: relative;
    top: 1px;
}
.mini-tab i { color: #457b9d; font-size: 10px; }
/* Header controls — now inside tab bar, pushed right */
.mini-header-controls {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 6px;
}
.mini-save-btn {
    background: #34c759;
    border: none;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: default;
}
.mini-export-btn {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    color: #007aff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: default;
    position: relative;
}
.mini-export-btn .fa-chevron-down { font-size: 7px; margin-left: 1px; }
.mini-export-menu {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 140px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px) scale(0.95);
    transition: all 0.2s ease;
    overflow: hidden;
}
.mini-export-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.mini-export-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    font-size: 11px;
    color: #334155;
    cursor: default;
    transition: background 0.2s;
}
.mini-export-option.highlight {
    background: rgba(0, 122, 255, 0.1);
}
.mini-export-option .fa-file-word { color: #185abd; }
.mini-export-option .fa-file-pdf { color: #dc3545; }
.mini-save-status {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}
/* Download toast notification inside the mini editor */
.mini-download-toast {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 16px 22px;
    min-width: 280px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.mini-download-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.mini-download-toast-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.mini-download-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.mini-download-toast-icon.generating {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}
.mini-download-toast-icon.complete {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}
.mini-download-toast-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}
.mini-download-toast-filename {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}
.mini-download-progress {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}
.mini-download-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #007aff);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}
.mini-download-progress-bar.complete {
    background: #059669;
    width: 100%;
}
.mini-download-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 8px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 12px;
    color: #065f46;
    font-weight: 500;
}
.mini-download-success.visible {
    display: flex;
}
.mini-download-success i { color: #059669; }
.mini-toolbar {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}
.mini-toolbar-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    background: #ffffff;
    color: #475569;
    font-size: 11px;
    cursor: default;
}
.mini-toolbar-sep {
    width: 1px;
    height: 20px;
    background: #e2e8f0;
    margin: 0 4px;
}
.mini-workspace {
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: hidden;
    position: relative;
}
.mini-doc-panel {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    background: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 13px;
    line-height: 1.7;
    color: #0f172a;
    min-width: 0;
}
.mini-doc-panel h1 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 4px;
    letter-spacing: 1px;
}
.mini-doc-panel h2 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #475569;
    margin: 0 0 16px;
}
.mini-doc-panel .doc-line {
    margin-bottom: 6px;
}
.mini-doc-panel .doc-placeholder {
    background: #fef3c7;
    color: #92400e;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: inherit;
    transition: all 0.4s ease;
}
.mini-doc-panel .doc-placeholder.filled {
    background: #d1fae5;
    color: #065f46;
}
.mini-doc-panel .doc-inserted {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease;
    background: rgba(37, 99, 235, 0.04);
    border-left: 3px solid #2563eb;
    padding: 0 12px;
    margin: 8px 0;
}
.mini-doc-panel .doc-inserted.visible {
    opacity: 1;
    max-height: 320px;
    padding: 10px 12px;
}
/* Layout: shared section headers */
.mini-doc-panel .doc-section {
    font-size: 13px;
    font-weight: 700;
    margin: 12px 0 4px;
    color: #0b1f3a;
    letter-spacing: 0.3px;
}
/* Layout: complaint — court caption */
.mini-doc-panel .doc-court-name {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}
.mini-doc-panel .doc-caption-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 8px 0;
}
.mini-doc-panel .doc-caption-parties > div {
    line-height: 1.5;
}
.mini-doc-panel .doc-caption-role {
    margin-left: 28px;
    font-style: italic;
    color: #475569;
}
.mini-doc-panel .doc-caption-v {
    margin: 4px 0;
    font-weight: 600;
}
.mini-doc-panel .doc-caption-case {
    text-align: right;
    border-left: 1px solid #cbd5e1;
    padding-left: 16px;
    font-size: 12px;
    color: #475569;
    line-height: 1.5;
}
/* Layout: demand letter — letterhead */
.mini-doc-panel .doc-letterhead {
    line-height: 1.5;
}
/* Chat panel inside mini editor */
.mini-chat-panel {
    width: 300px;
    flex-shrink: 0;
    min-height: 0;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}
.mini-chat-tabs {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    background: #f1f5f9;
    flex-shrink: 0;
}
.mini-chat-tab {
    flex: 1;
    padding: 10px 8px;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: #64748b;
    border-bottom: 2px solid transparent;
    cursor: default;
}
.mini-chat-tab.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}
.mini-chat-tab i { margin-right: 4px; font-size: 10px; }
.mini-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mini-msg {
    max-width: 92%;
    padding: 10px 13px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.mini-msg.visible {
    opacity: 1;
    transform: translateY(0);
}
.mini-msg.user {
    align-self: flex-end;
    background: #2563eb;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}
.mini-msg.assistant {
    align-self: flex-start;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    border-bottom-left-radius: 4px;
}
.mini-msg-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 4px;
}
.mini-msg-label.right { text-align: right; }
.mini-chat-input {
    flex-shrink: 0;
    padding: 12px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mini-chat-input-field {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.4;
    color: #0f172a;
    background: #f8fafc;
    outline: none;
    resize: none;
    font-family: inherit;
    min-height: 62px;
    max-height: 80px;
    overflow-y: auto;
}
.mini-chat-send {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    cursor: default;
}
.mini-streaming-indicator {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37, 99, 235, 0.9);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    position: absolute;
    top: 8px;
    right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mini-streaming-indicator.active {
    opacity: 1;
}
.mini-streaming-indicator i {
    animation: pulse 1s infinite;
}
.mini-doc-wrapper { position: relative; }

/* Typewriter cursor for chat input */
.mini-chat-input-field.typing::after {
    content: '|';
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Responsive: stack on small screens */
@media (max-width: 800px) {
    .demo-modal-body {
        flex-direction: column;
        overflow-y: auto;
    }
    .demo-editor-wrap {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        max-height: 45vh;
    }
    .demo-cta-panel {
        width: 100%;
        padding: 24px 20px;
    }
    .mini-chat-panel {
        display: none;
    }
}

/* Mobile: full-screen takeover, CTA only, no demo editor */
@media (max-width: 640px) {
    .demo-modal {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 100dvh;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
        margin-top: auto;
        position: relative;
    }
    .demo-modal-overlay {
        align-items: flex-end;
    }
    /* Hide the entire demo editor on mobile */
    .demo-editor-wrap {
        display: none;
    }
    /* Float the topbar so it doesn't add vertical space; just hosts the close button */
    .demo-modal-topbar {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
        border-bottom: none;
        z-index: 10;
    }
    /* Hide the title text on mobile, the CTA panel h4 is the de facto title */
    .demo-modal-topbar h3 {
        display: none;
    }
    /* Compact, floating close button in the corner */
    .demo-modal-close {
        margin: 10px;
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(4px);
        flex-shrink: 0;
    }
    /* Body is just the CTA panel */
    .demo-modal-body {
        flex-direction: column;
    }
    /* CTA panel: the only visible content */
    .demo-cta-panel {
        width: 100%;
        padding: 22px 20px 28px;
        overflow-y: auto;
        max-height: 90dvh;
        -webkit-overflow-scrolling: touch;
    }
    .demo-cta-panel h4 {
        font-size: 22px;
        margin-bottom: 4px;
        padding-right: 48px;
    }
    .demo-cta-price {
        font-size: 15px;
        margin-bottom: 14px;
    }
    /* Feature list - all items visible, compact single-line */
    .demo-cta-features {
        margin-bottom: 14px;
    }
    .demo-cta-features li {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.35;
    }
    /* Action area */
    .demo-cta-action {
        padding-top: 10px;
    }
    .demo-cta-email {
        padding: 14px 14px;
        font-size: 16px;
    }
    .demo-cta-submit {
        margin-top: 12px;
        padding: 14px 20px;
        font-size: 15px;
    }
    .demo-confirm-box {
        padding: 12px 14px;
    }
}

/* ===========================================
   STICKY BOTTOM BAR
   =========================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.sticky-bottom-bar.visible {
    transform: translateY(0);
}
.sticky-bar-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    margin-right: 4px;
}
.sticky-bar-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}
.sticky-bar-btn-primary {
    background: linear-gradient(135deg, #1D3557, #2c4e80);
    color: #ffffff;
}
.sticky-bar-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 53, 87, 0.3);
}
.sticky-bar-btn-secondary {
    background: #ffffff;
    color: #334155;
    border: 1px solid #e2e8f0;
}
.sticky-bar-btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}
.sticky-bar-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    margin-left: 8px;
    transition: color 0.2s;
}
.sticky-bar-close:hover { color: #475569; }
@media (max-width: 640px) {
    .sticky-bar-text { display: none; }
    .sticky-bottom-bar { gap: 8px; padding: 10px 16px; }
    .sticky-bar-btn { padding: 10px 14px; font-size: 13px; }
}
