v3 · 37 files

ProjectElly/popup/popup.css 23.1 KB Raw
:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --dark-bg: #0a0a1b;
    --card-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-gold: #fde047;
    --success: #34d399;
}

html {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    width: 360px;
    min-height: 220px;
}

.ellyp-root {
    position: relative;
    padding: 16px;
    overflow: hidden;
}

/* Animated glow/mesh inspired by VrilChat aesthetic. */
.ellyp-bg {
    position: absolute;
    inset: -60px;
    background:
        radial-gradient(circle at 12% 18%, rgba(99, 102, 241, 0.22) 0%, transparent 46%),
        radial-gradient(circle at 82% 68%, rgba(217, 70, 239, 0.18) 0%, transparent 52%),
        radial-gradient(circle at 55% 45%, rgba(139, 92, 246, 0.14) 0%, transparent 58%);
    filter: blur(0px);
    animation: ellyp-mesh-move 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes ellyp-mesh-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(22px, -18px) scale(1.06); }
}

.ellyp-header,
.ellyp-main {
    position: relative;
    z-index: 1;
}

.ellyp-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--glass-border);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
}

.ellyp-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.ellyp-logo {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.28);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.08), 0 0 24px rgba(99, 102, 241, 0.22);
}

.ellyp-logo .ti {
    font-size: 22px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ellyp-title {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 16px;
    line-height: 1.1;
}

.ellyp-subtitle {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.ellyp-plan {
    text-align: right;
    flex-shrink: 0;
}

.ellyp-plan-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.ellyp-plan-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.14), rgba(217, 70, 239, 0.08));
    color: #fef3c7;
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.14);
}

.ellyp-plan-pill--premium {
    color: #fff7d6;
    border-color: rgba(52, 211, 153, 0.35);
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.16), rgba(99, 102, 241, 0.10));
    box-shadow: 0 0 22px rgba(52, 211, 153, 0.12);
}

.ellyp-main {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.ellyp-card {
    padding: 14px;
    border-radius: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
}

.ellyp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.ellyp-row-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 13px;
}

.ellyp-hint {
    margin: 0;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.45;
}

.ellyp-link {
    color: #93c5fd;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
}

.ellyp-link:hover {
    text-decoration: underline;
}

.ellyp-actions {
    display: flex;
    justify-content: flex-end;
}

.ellyp-btn {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    padding: 10px 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ellyp-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    border-color: rgba(99, 102, 241, 0.35);
}

.ellyp-btn-primary {
    background: var(--primary-gradient);
    border-color: transparent;
}

/* ==================== ELLY PREMIUM THEME - COMPLETE REWRITE ==================== */

:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --dark-bg: #0f0f23;
    --card-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-blue: #60a5fa;
    --accent-purple: #a78bfa;
    --accent-pink: #f472b6;
    --success: #34d399;
    --warning: #fbbf24;
    --danger: #f87171;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.premium-theme {
    width: 560px;
    min-height: 600px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* ==================== BACKGROUND EFFECTS ==================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(217, 70, 239, 0.1) 0%, transparent 60%);
}

/* Animated mesh gradient overlay */
body.premium-theme::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 40%), radial-gradient(circle at 70% 60%, rgba(217, 70, 239, 0.08) 0%, transparent 40%);
    animation: meshMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-20px, 20px) rotate(5deg);
    }
}

/* ==================== CONTAINER ==================== */
.container.premium {
    position: relative;
    z-index: 1;
    padding: 24px 20px;
    min-height: 600px;
}

/* ==================== HEADER ==================== */
header.premium {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

    header.premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.5) 50%, transparent 100%);
    }

    header.premium h1 {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.5px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        header.premium h1 .ti {
            font-size: 24px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

.neon-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Status Badge */
.status.premium {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
}

    .status.premium .ti {
        font-size: 8px;
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ==================== CURRENT SITE ==================== */
.current-site.premium {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

    .current-site.premium h3 {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-secondary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .current-site.premium h3 .ti {
            font-size: 16px;
            color: var(--accent-purple);
        }

.site-info span.premium {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 16px;
    border-radius: 12px;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 16px;
    word-break: break-all;
    font-weight: 500;
}

.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ==================== BUTTONS ==================== */
button.premium {
    position: relative;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
    font-family: inherit;
}

    button.premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    button.premium:hover::before {
        opacity: 1;
    }

    button.premium:active {
        transform: scale(0.98);
    }

.btn-block.premium {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

    .btn-block.premium:hover {
        box-shadow: 0 12px 32px rgba(239, 68, 68, 0.4);
        transform: translateY(-2px);
    }

.btn-limit.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

    .btn-limit.premium:hover {
        box-shadow: 0 12px 32px rgba(245, 158, 11, 0.4);
        transform: translateY(-2px);
    }

.btn-primary.premium {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

    .btn-primary.premium:hover {
        box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
        transform: translateY(-2px);
    }

.btn-secondary.premium {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

    .btn-secondary.premium:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

.btn-focus.premium {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

    .btn-focus.premium:hover {
        box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
        transform: translateY(-2px);
    }

.btn-add.premium {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 24px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

/* ==================== STATS ==================== */
.quick-stats.premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.stat.premium.holographic {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .stat.premium.holographic::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--primary-gradient);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .stat.premium.holographic:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.2);
    }

        .stat.premium.holographic:hover::before {
            opacity: 1;
        }

.stat-value.premium {
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label.premium {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .stat-label.premium .ti {
        font-size: 14px;
        color: var(--accent-purple);
    }

/* ==================== TIME LIMIT WIDGET ==================== */
.time-limit-widget.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(217, 70, 239, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 24px;
    margin: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .time-limit-widget.premium::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        animation: rotate 15s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.time-limit-widget.premium h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.timer.premium {
    font-size: 56px;
    font-weight: 800;
    font-family: 'SF Mono', monospace;
    color: white;
    margin: 16px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.site-name.premium {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.progress-container.premium {
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.progress-bar.premium {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transition: width 1s linear, background 0.3s;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.6);
}

/* ==================== ACTIONS PANEL ==================== */
.actions-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

/* ==================== QUICK ADD ==================== */
.quick-add.premium {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
}

    .quick-add.premium h3 {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-secondary);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

.input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

input[type="text"].premium {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s;
}

    input[type="text"].premium::placeholder {
        color: var(--text-secondary);
    }

    input[type="text"].premium:focus {
        outline: none;
        border-color: var(--accent-purple);
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    }

.presets.premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.preset-btn.premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 12px 10px;
    font-size: 11px;
    color: var(--text-primary);
    transition: all 0.3s;
}

    .preset-btn.premium:hover {
        background: var(--primary-gradient);
        border-color: transparent;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    }

    .preset-btn.premium .ti {
        font-size: 16px;
    }

/* ==================== FOOTER ==================== */
.footer.premium {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

/* Toggle Switch */
.toggle.premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

    .toggle.premium input {
        display: none;
    }

.toggle-slider.premium {
    width: 56px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    position: relative;
    transition: all 0.3s;
}

    .toggle-slider.premium::before {
        content: '';
        position: absolute;
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        top: 3px;
        left: 4px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

.toggle.premium input:checked + .toggle-slider.premium {
    background: var(--primary-gradient);
    border-color: transparent;
}

    .toggle.premium input:checked + .toggle-slider.premium::before {
        transform: translateX(24px);
    }

.toggle-label.premium {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .toggle-label.premium .ti {
        font-size: 18px;
        color: var(--accent-purple);
    }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* ==================== ICON STYLES ==================== */
.ti.premium {
    vertical-align: middle;
    line-height: 1;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container.premium > * {
    animation: fadeIn 0.5s ease-out backwards;
}

    .container.premium > *:nth-child(1) {
        animation-delay: 0.05s;
    }

    .container.premium > *:nth-child(2) {
        animation-delay: 0.1s;
    }

    .container.premium > *:nth-child(3) {
        animation-delay: 0.15s;
    }

    .container.premium > *:nth-child(4) {
        animation-delay: 0.2s;
    }

    .container.premium > *:nth-child(5) {
        animation-delay: 0.25s;
    }

    .container.premium > *:nth-child(6) {
        animation-delay: 0.3s;
    }

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 400px) {
    .container.premium {
        padding: 20px 16px;
    }

    .quick-stats.premium {
        grid-template-columns: 1fr;
    }

    .actions-panel {
        grid-template-columns: 1fr;
    }
}

/* Tabler-style prompt modal (replaces window.prompt) */
.ellyp-modal {
    max-width: min(340px, 94vw);
    width: 100%;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    background: #0f172a;
    color: var(--text-primary);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.ellyp-modal::backdrop {
    background: rgba(0, 0, 0, 0.55);
}

.ellyp-modal-inner {
    padding: 22px;
}

.ellyp-modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
}

.ellyp-modal-title .ti {
    color: #60a5fa;
}

.ellyp-modal-message {
    margin: 0 0 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-secondary);
    white-space: pre-wrap;
}

.ellyp-modal-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.85);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
}

.ellyp-modal-input:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.85);
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.22);
}

.ellyp-modal-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.ellyp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.ellyp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}