/* ============================================================
   Hustlers — Theme
   ============================================================ */

:root {
    --bg:            #000000;
    --surface:       #141414;
    --surface-2:     #1c1c1c;
    --border:        #2c2c2c;
    --border-light:  #3a3a3a;
    --primary:       #e10600;
    --primary-hover: #b80500;
    --primary-tint:  #3a0605;
    --accent:        #ffd400;
    --text:          #ffffff;
    --text-2:        #d8d8d8;
    --muted:         #9a9a9a;
    --muted-light:   #6b6b6b;
    --danger:        #ef4444;
    --danger-light:  #3a1414;
    --success:       #22c55e;
    --success-light: #12281a;
    --money:         #ffd400;
    --shadow-sm:     0 1px 4px rgba(0,0,0,.5), 0 1px 2px rgba(0,0,0,.3);
    --shadow-md:     0 4px 20px rgba(0,0,0,.55);
    --shadow-lg:     0 8px 32px rgba(0,0,0,.65);
    --r:             10px;
    --r-lg:          16px;
    --r-xl:          20px;
    --r-pill:        9999px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Logo ──────────────────────────────────────────────────── */
.logo { font-size: 1.4rem; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.logo-h { color: var(--primary); }
.logo-rest { color: var(--text); }

/* ── Header ────────────────────────────────────────────────── */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}
.header-right { display: flex; align-items: center; gap: .8rem; }

/* ── Profile menu ──────────────────────────────────────────── */
.profile-menu { position: relative; }
.profile-trigger {
    display: flex;
    align-items: center;
    gap: .55rem;
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    border-radius: var(--r-pill);
    padding: .3rem .9rem .3rem .3rem;
    cursor: pointer;
    transition: border-color .15s;
}
.profile-trigger:hover { border-color: var(--primary); }
.profile-trigger img,
.avatar-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    flex-shrink: 0;
}
.avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    font-size: 1rem;
}
.profile-username { font-weight: 700; font-size: .88rem; color: var(--text); }

.profile-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + .6rem);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: .6rem;
    z-index: 100;
}
.profile-dropdown.open { display: block; }
.profile-dropdown-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .3rem .5rem .8rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: .5rem;
}
.profile-dropdown-header img,
.profile-dropdown-header .avatar-placeholder {
    width: 42px;
    height: 42px;
}
.profile-dropdown a {
    display: block;
    padding: .6rem .5rem;
    border-radius: var(--r);
    font-size: .86rem;
    font-weight: 600;
    color: var(--text-2);
    transition: background .15s;
}
.profile-dropdown a:hover { background: var(--surface-2); }

/* ── Notification bell ────────────────────────────────────── */
.bell-trigger {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .15s;
}
.bell-trigger:hover { border-color: var(--primary); }
.bell-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    min-width: 17px;
    height: 17px;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid var(--surface);
}

.notif-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + .6rem);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    width: 320px;
    max-width: 90vw;
    padding: .6rem;
    z-index: 100;
}
.notif-dropdown.open { display: block; }
.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .3rem .5rem .7rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: .4rem;
}
.notif-list { max-height: 320px; overflow-y: auto; }
.notif-item {
    padding: .65rem .5rem;
    border-radius: var(--r);
    font-size: .84rem;
    color: var(--text-2);
    margin-bottom: .2rem;
}
.notif-item.unread { background: var(--primary-tint); color: var(--text); }
.notif-time { font-size: .72rem; color: var(--muted-light); margin-top: .25rem; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: .65rem 1.4rem;
    border-radius: var(--r);
    font-weight: 800;
    font-size: .9rem;
    cursor: pointer;
    transition: background .15s, transform .1s;
}
.btn-primary:hover  { background: var(--primary-hover); }
.btn-primary:active { transform: scale(.97); }

.btn-secondary {
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    color: var(--text-2);
    padding: .58rem 1.2rem;
    border-radius: var(--r);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    display: inline-block;
    text-align: center;
}
.btn-secondary:hover { border-color: var(--muted); background: #23283248; }

.btn-danger {
    background: var(--danger);
    color: #fff;
    border: none;
    padding: .55rem 1.1rem;
    border-radius: var(--r);
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
}

.btn-full { width: 100%; display: block; text-align: center; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-label { display: block; font-size: .82rem; font-weight: 700; color: var(--text-2); margin: .9rem 0 .3rem; }
.form-input {
    width: 100%;
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    border-radius: var(--r);
    padding: .65rem .8rem;
    font-size: .92rem;
    color: var(--text);
    outline: none;
    transition: border-color .15s;
}
.form-input:focus { border-color: var(--primary); }
.form-input::placeholder { color: var(--muted-light); }

/* ── Alerts ────────────────────────────────────────────────── */
.alert { padding: .7rem 1rem; border-radius: var(--r); font-size: .85rem; margin-bottom: 1rem; }
.alert-error   { background: var(--danger-light);  color: #ff8a8a; border: 1px solid #5a2222; }
.alert-success { background: var(--success-light); color: #7be3a0; border: 1px solid #1f4a30; }

/* ── Login / Signup pages ─────────────────────────────────── */
.login-page {
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}
.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2rem;
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-md);
}
.login-card h1 { font-size: 1.4rem; margin-bottom: .3rem; }
.login-card p  { color: var(--muted); font-size: .88rem; margin-bottom: 1.4rem; }

.glow-card {
    border: 1px solid var(--primary);
    box-shadow: 0 0 8px rgba(225,6,0,.6), 0 0 22px rgba(225,6,0,.4), 0 0 45px rgba(225,6,0,.2);
}

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
    width: 100%;
    max-width: 380px;
    margin-top: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 1.6rem;
}
.hiw-title {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: .4rem 1.1rem;
    border-radius: var(--r-pill);
    margin-bottom: 1.3rem;
}
.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    margin-bottom: 1.2rem;
}
.hiw-step:last-child { margin-bottom: 0; }
.hiw-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.hiw-step-title { font-weight: 800; font-size: .92rem; margin-bottom: .15rem; }
.hiw-step-text { color: var(--text-2); font-size: .84rem; line-height: 1.4; }
.hiw-money { color: var(--money); font-weight: 800; }

.hiw-closer {
    width: 100%;
    max-width: 380px;
    margin-top: 1.6rem;
    text-align: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.5;
}

/* ── Cards / Grid ──────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 1.5rem; }
.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow-sm);
}

/* ── Stat tiles ────────────────────────────────────────────── */
.stat-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.1rem 1.3rem;
}
.stat-tile .label { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.stat-tile .value { font-size: 1.7rem; font-weight: 800; margin-top: .2rem; color: var(--money); }
.stat-tile .sub   { font-size: .78rem; color: var(--muted-light); margin-top: .1rem; }

/* ── Progress bar ──────────────────────────────────────────── */
.progress-track {
    background: var(--surface-2);
    border-radius: var(--r-pill);
    height: 10px;
    overflow: hidden;
    border: 1px solid var(--border-light);
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--r-pill);
    transition: width .3s;
}

/* ── Item card ─────────────────────────────────────────────── */
.item-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.item-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--surface-2);
    cursor: pointer;
    transition: opacity .15s;
}
.item-photo:hover { opacity: .88; }
video.item-photo { object-fit: contain; cursor: default; background: #000; }
.item-thumbs { display: flex; gap: .4rem; padding: .6rem 1rem 0; }
.item-thumbs img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: opacity .15s, border-color .15s;
}
.item-thumbs img:hover { opacity: .85; border-color: var(--primary); }
.item-body { padding: .9rem 1rem 1.1rem; }
.item-name { font-weight: 700; font-size: 1rem; margin-bottom: .2rem; }
.item-price { color: var(--money); font-weight: 800; font-size: 1.1rem; margin-bottom: .7rem; }

.link-box {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    border-radius: var(--r);
    padding: .5rem .6rem;
    font-size: .78rem;
    color: var(--muted);
    overflow: hidden;
}
.link-box span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.link-box button {
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: .3rem .6rem;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

/* ── Category tiles ────────────────────────────────────────── */
.category-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s, background .15s, transform .1s;
}
.category-tile:hover { border-color: var(--muted); transform: translateY(-1px); }
.category-tile.active { border-color: var(--primary); background: var(--primary-tint); }
.category-icon { font-size: 1.8rem; margin-bottom: .4rem; }
.category-name { font-weight: 700; font-size: .92rem; }
.category-count { color: var(--muted); font-size: .8rem; margin-top: .2rem; }
.category-tile.active .category-count { color: var(--primary); font-weight: 700; }

/* ── YouTube thumbnail card ────────────────────────────────── */
.yt-thumb-wrap { position: relative; display: block; }
.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    pointer-events: none;
}

/* ── Leaderboard ───────────────────────────────────────────── */
.leaderboard-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .7rem .9rem;
    border-radius: var(--r);
    background: var(--surface-2);
    margin-bottom: .5rem;
}
.leaderboard-row.me { border: 1px solid var(--primary); background: var(--primary-tint); }
.rank { font-weight: 800; color: var(--muted); width: 1.6rem; }
.leaderboard-row.rank-1 .rank { color: var(--money); }
.leaderboard-row.rank-1 { border: 1px solid var(--money); }

/* ── Table ─────────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th, td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--border); }
th { color: var(--muted); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .03em; }

/* ── Badges ────────────────────────────────────────────────── */
.badge { display: inline-block; padding: .2rem .6rem; border-radius: var(--r-pill); font-size: .72rem; font-weight: 700; }
.badge-active  { background: var(--success-light); color: #7be3a0; }
.badge-sold    { background: var(--surface-2); color: var(--muted); }
.badge-pending { background: var(--primary-tint); color: var(--primary); }
.badge-paid    { background: var(--success-light); color: #7be3a0; }

/* ── Misc ──────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.section-title { font-size: 1.1rem; font-weight: 800; margin-bottom: .8rem; }

/* ── Table scroll wrapper (add class="table-scroll" around <table>) ── */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 600px) {
    .container { padding: 1rem; }
    header { padding: .8rem 1rem; gap: .5rem; }
    .header-right { gap: .5rem; }
    .profile-username { display: none; }
    .profile-trigger { padding: .3rem; }
    .bell-trigger { width: 36px; height: 36px; }
    .notif-dropdown { width: 280px; }
    table { font-size: .82rem; }
    th, td { padding: .5rem .5rem; }
}

@media (max-width: 380px) {
    .logo { font-size: 1.15rem; }
    .notif-dropdown { width: calc(100vw - 2rem); right: -.5rem; }
    .lang-switch-header .lang-switch-trigger { width: 32px; height: 32px; font-size: .9rem; }
}

/* ── Lightbox ──────────────────────────────────────────────── */
#lightboxOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
#lightboxOverlay.open { display: flex; }
#lightboxOverlay .lb-content {
    position: relative;
    max-width: min(90vw, 700px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#lightboxOverlay img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
}
#lightboxOverlay .lb-close {
    position: absolute;
    top: -2.6rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}
#lightboxOverlay .lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
#lightboxOverlay .lb-prev { left: -1rem; }
#lightboxOverlay .lb-next { right: -1rem; }
#lightboxOverlay .lb-counter {
    color: var(--muted-light);
    font-size: .8rem;
    margin-top: .7rem;
}
@media (max-width: 600px) {
    #lightboxOverlay .lb-prev { left: .3rem; }
    #lightboxOverlay .lb-next { right: .3rem; }
}

/* ============================================================
   Flyer-style login page
   ============================================================ */
.flyer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1.4rem 1.5rem 1.6rem;
    overflow-x: hidden;
}

/* ── Hero (centered) ──────────────────────────────────────── */
.flyer-hero-centered { text-align: center; margin-bottom: 1.1rem; }
.flyer-crown { font-size: 1.5rem; filter: drop-shadow(0 0 8px rgba(225,6,0,.7)); }
.flyer-title {
    font-size: clamp(1.9rem, 5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: .95;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 0 rgba(0,0,0,.4);
}
.flyer-subtitle {
    font-size: clamp(.9rem, 2vw, 1.2rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-top: .3rem;
    letter-spacing: .01em;
}
.flyer-red { color: var(--primary); }
.flyer-gold { color: var(--money); }
.flyer-tagline { color: var(--text-2); font-size: .85rem; margin-top: .5rem; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ── Earn row (centered) ───────────────────────────────────── */
.flyer-earn-row { display: flex; justify-content: center; margin-bottom: 1rem; }
.flyer-earn { text-align: center; }
.flyer-earn-label { color: #fff; font-weight: 800; font-size: .82rem; letter-spacing: .05em; }
.flyer-earn-amount {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 900;
    color: var(--money);
    line-height: 1;
    text-shadow: 0 0 16px rgba(255,212,0,.35);
}
.flyer-earn-sub {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: .68rem;
    letter-spacing: .04em;
    padding: .2rem .65rem;
    border-radius: 6px;
    margin-top: .25rem;
}

/* ── Login card (true page center) ────────────────────────── */
.flyer-login-wrap { display: flex; justify-content: center; }
.flyer-login-card {
    background: var(--surface);
    border: 1px solid var(--primary);
    box-shadow: 0 0 8px rgba(225,6,0,.6), 0 0 22px rgba(225,6,0,.4), 0 0 45px rgba(225,6,0,.2);
    border-radius: var(--r-xl);
    padding: 1.3rem 1.4rem;
    width: 100%;
    max-width: 320px;
    text-align: left;
}
.flyer-login-card h2 { font-size: 1rem; margin-bottom: .7rem; color: #fff; }

/* ── Language switcher (single cycling button) ────────────── */
.lang-switch-wrap { display: flex; justify-content: center; margin-top: 1.1rem; }
.lang-switch-header { display: flex; align-items: center; }
.lang-switch-header .lang-switch-trigger { width: 36px; height: 36px; font-size: 1rem; }
.lang-switch-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--primary);
    box-shadow: 0 0 6px rgba(225,6,0,.5), 0 0 16px rgba(225,6,0,.3);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s;
}
.lang-switch-trigger:hover { transform: scale(1.08); }
.lang-switch-trigger:active { transform: scale(.95); }
button.lang-switch-trigger.flag-en,
button.lang-switch-trigger.flag-cr,
button.lang-switch-trigger.flag-es {
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
button.lang-switch-trigger.flag-en {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCc+PHJlY3Qgd2lkdGg9JzI0JyBoZWlnaHQ9JzI0JyBmaWxsPScjQjIyMjM0Jy8+PHJlY3QgeT0nMS44NScgd2lkdGg9JzI0JyBoZWlnaHQ9JzEuODUnIGZpbGw9JyNmZmYnLz48cmVjdCB5PSc1LjU0JyB3aWR0aD0nMjQnIGhlaWdodD0nMS44NScgZmlsbD0nI2ZmZicvPjxyZWN0IHk9JzkuMjMnIHdpZHRoPScyNCcgaGVpZ2h0PScxLjg1JyBmaWxsPScjZmZmJy8+PHJlY3QgeT0nMTIuOTInIHdpZHRoPScyNCcgaGVpZ2h0PScxLjg1JyBmaWxsPScjZmZmJy8+PHJlY3QgeT0nMTYuNicgd2lkdGg9JzI0JyBoZWlnaHQ9JzEuODUnIGZpbGw9JyNmZmYnLz48cmVjdCB5PScyMC4zJyB3aWR0aD0nMjQnIGhlaWdodD0nMS44NScgZmlsbD0nI2ZmZicvPjxyZWN0IHdpZHRoPScxMCcgaGVpZ2h0PScxMi45MicgZmlsbD0nIzNDM0I2RScvPjwvc3ZnPg==") !important;
}
button.lang-switch-trigger.flag-cr {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCc+PHJlY3Qgd2lkdGg9JzI0JyBoZWlnaHQ9JzEyJyBmaWxsPScjMDAyRDYyJy8+PHJlY3QgeT0nMTInIHdpZHRoPScyNCcgaGVpZ2h0PScxMicgZmlsbD0nI0QyMTAzNCcvPjxyZWN0IHg9JzcnIHk9JzcnIHdpZHRoPScxMCcgaGVpZ2h0PScxMCcgZmlsbD0nI2ZmZicvPjwvc3ZnPg==") !important;
}
button.lang-switch-trigger.flag-es {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCc+PHJlY3Qgd2lkdGg9JzI0JyBoZWlnaHQ9JzI0JyBmaWxsPScjQUExNTFCJy8+PHJlY3QgeT0nNicgd2lkdGg9JzI0JyBoZWlnaHQ9JzEyJyBmaWxsPScjRjFCRjAwJy8+PC9zdmc+") !important;
}
