/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 27 2026 | 22:12:18 */


/* ===================================================== */
/* ⭐ GOLD FILTER PANEL — ROUND + GOLD COLORS */
/* ===================================================== */

/* celé bloky filtra */
.listivo-search-panel__terms{
  border-radius:22px !important;
  border:1px solid rgba(212,175,55,.35) !important;

  background:
  radial-gradient(circle at top,
  rgba(212,175,55,.08),
  transparent 60%),
  #04070f !important;

  box-shadow:
  0 0 35px rgba(212,175,55,.18),
  inset 0 1px 0 rgba(255,255,255,.05);
}

/* label text */
.listivo-search-panel__terms,
.listivo-search-panel__terms *{
  color:#d4af37 !important;
}

/* ===================================================== */
/* ⭐ INPUTY (Min vek / Max vek / Select) */
/* ===================================================== */

.listivo-search-form-field input,
.listivo-search-form-field select,
.listivo-select-v2{

  background:#000 !important;
  border-radius:18px !important;
  border:1px solid rgba(212,175,55,.45) !important;

  color:#d4af37 !important;

  box-shadow:
  inset 0 0 12px rgba(0,0,0,.7),
  0 0 14px rgba(212,175,55,.18);
}

/* focus glow */
.listivo-search-form-field input:focus,
.listivo-select-v2:focus{
  border-color:#ffd86b !important;
  box-shadow:
  0 0 0 2px rgba(212,175,55,.35),
  0 0 18px rgba(212,175,55,.35);
}


/* ===================================================== */
/* ⭐ CHECKBOXES — GOLD STYLE */
/* ===================================================== */

.listivo-search-panel__terms input[type="checkbox"]{
  accent-color:#d4af37 !important;
  transform:scale(1.1);
}

/* vybrané texty nech NIE sú modré */
.listivo-search-panel__terms label,
.listivo-search-panel__terms span{
  color:#d4af37 !important;
}

/* ACTIVE / SELECTED state override */
.listivo-search-panel__terms .active,
.listivo-search-panel__terms .selected{
  color:#fff !important;
}


/* ===================================================== */
/* ⭐ BLUE GLOW REMOVE + GOLD GLOW ADD */
/* ===================================================== */

.listivo-search-panel__circle{
  background:#d4af37 !important;

  box-shadow:
  0 0 14px rgba(212,175,55,.8),
  0 0 35px rgba(212,175,55,.35) !important;
}

/* odstráni modré */
.listivo-search-panel__terms *{
  border-color:rgba(212,175,55,.35) !important;
}


/* ===================================================== */
/* ⭐ TERMS ITEM — ROUND FIX (tvoje hranaté boxy) */
/* ===================================================== */

.listivo-search-panel__terms .listivo-checkbox{
  border-radius:14px !important;
}

.listivo-search-panel__terms .listivo-checkbox label{
  border-radius:14px !important;
}


/* ===================================================== */
/* SEXTERAZ — FILTER TERMS: GOLD SELECT + GOLD HOVER */
/* (fix pre .listivo-search-panel__item-label) */
/* ===================================================== */

:root{
  --sx-gold:#d4af37;
  --sx-gold2:#fff1b0;
  --sx-text:#cfd6e6;
  --sx-muted:#7f8aa6;
  --sx-panel:#0b1220;
}

/* default text v zoznamoch */
.listivo-search-panel__terms .listivo-search-panel__item-label,
.listivo-search-panel__terms .listivo-search-panel__item-label *,
.listivo-search-panel__terms a,
.listivo-search-panel__terms a *{
  color:var(--sx-text) !important;
}

/* nevybraté (ak plugin dáva utlmený štýl) */
.listivo-search-panel__terms .listivo-search-panel__item:not(.active):not(.selected):not(.is-active) .listivo-search-panel__item-label{
  color:var(--sx-muted) !important;
}

/* ===================================================== */
/* ✅ SELECTED (checked) — najspoľahlivejšie cez :has() */
/* ===================================================== */

/* Ak browser podporuje :has() (Chrome/Safari/Edge áno) */
.listivo-search-panel__terms .listivo-search-panel__item:has(input:checked) .listivo-search-panel__item-label,
.listivo-search-panel__terms .listivo-search-panel__item:has(input:checked) .listivo-search-panel__item-label *{
  color:var(--sx-gold) !important;
  text-shadow:0 0 18px rgba(212,175,55,.18);
}

/* fallback keď :has nie je – chytíme typické "active/selected" triedy */
.listivo-search-panel__terms .listivo-search-panel__item.active .listivo-search-panel__item-label,
.listivo-search-panel__terms .listivo-search-panel__item.active .listivo-search-panel__item-label *,
.listivo-search-panel__terms .listivo-search-panel__item.selected .listivo-search-panel__item-label,
.listivo-search-panel__terms .listivo-search-panel__item.selected .listivo-search-panel__item-label *,
.listivo-search-panel__terms .listivo-search-panel__item.is-active .listivo-search-panel__item-label,
.listivo-search-panel__terms .listivo-search-panel__item.is-active .listivo-search-panel__item-label *{
  color:var(--sx-gold) !important;
  text-shadow:0 0 18px rgba(212,175,55,.18);
}

/* ===================================================== */
/* HOVER — zlatý (a nech to nikdy nejde do modrej) */
/* ===================================================== */

@media(hover:hover){
  .listivo-search-panel__terms .listivo-search-panel__item:hover .listivo-search-panel__item-label,
  .listivo-search-panel__terms .listivo-search-panel__item:hover .listivo-search-panel__item-label *{
    color:var(--sx-gold2) !important;
  }
}
/* ===================================================== */
/* SEXTERAZ — SEARCH FILTERS BAR (TOP) BLACK/GOLD FIX */
/* target: .listivo-search-results__filters */
/* ===================================================== */

:root{
  --sx-gold:#d4af37;
  --sx-gold2:#fff1b0;
  --sx-panel:#0b1220;
  --sx-glass:rgba(11,18,32,.72);
}

/* celý bar */
.listivo-search-results__filters{
  background:var(--sx-glass) !important;
  backdrop-filter:blur(16px);
  border-radius:22px !important;

  border:1px solid rgba(212,175,55,.22) !important;
  box-shadow:
    0 35px 90px rgba(0,0,0,.55),
    0 0 35px rgba(212,175,55,.12) !important;

  padding:18px !important;
  overflow:visible !important; /* nech nič neorezáva */
}

/* ak tam Listivo dáva modrý “frame/outline” cez pseudo-element */
.listivo-search-results__filters::before,
.listivo-search-results__filters::after{
  background:none !important;
  box-shadow:none !important;
  border:none !important;
}

/* vnútorné boxy v bare (aby sa nedržala modrá) */
.listivo-search-results__filters *{
  border-color:rgba(212,175,55,.20) !important;
}

/* zlatý focus ring namiesto modrého */
.listivo-search-results__filters input:focus,
.listivo-search-results__filters select:focus,
.listivo-search-results__filters textarea:focus,
.listivo-search-results__filters [tabindex]:focus{
  outline:none !important;
  box-shadow:
    0 0 0 2px rgba(212,175,55,.28),
    0 0 18px rgba(212,175,55,.18) !important;
  border-color:rgba(212,175,55,.55) !important;
}

/* ===================================================== */
/* SEXTERAZ GOLD FILTER BAR — REMOVE BLUE BACKGROUND */
/* ===================================================== */

/* hlavný filter box */
.listivo-search-filter{
  background:linear-gradient(
    180deg,
    #070a12,
    #02040a
  ) !important;

  border-radius:26px !important;

  border:1px solid rgba(212,175,55,.25) !important;

  box-shadow:
    0 40px 120px rgba(0,0,0,.65),
    0 0 35px rgba(212,175,55,.12) !important;
}

/* vnútro (Listivo často dáva modrú sem) */
.listivo-search-filter__inner{
  background:transparent !important;
}

/* všetky pseudo vrstvy ktoré robia modrý glow */
.listivo-search-filter::before,
.listivo-search-filter::after{
  background:none !important;
  box-shadow:none !important;
}

/* pills/chips nech ladia */
.listivo-search-filter .listivo-chip,
.listivo-search-filter .listivo-search-chip{
  background:#000 !important;
  color:#d4af37 !important;
  border:1px solid rgba(212,175,55,.35) !important;
  border-radius:999px !important;
}




/* ===================================================== */
/* SEXTERAZ — GOLD UNIFY FIX (ONE GOLD TO RULE THEM ALL) */
/* ===================================================== */

:root{
  --sx-gold:#d4af37;                 /* hlavné zlato */
  --sx-gold-2:#f7e7a1;               /* jemný highlight */
  --sx-gold-border:rgba(212,175,55,.38);
  --sx-gold-glow:rgba(212,175,55,.22);
  --sx-gold-glow-soft:rgba(212,175,55,.12);
}

/* všetky gold texty/linky/čísla (force) */
.listivo-search-sidebar,
.listivo-search-sidebar *:not(svg):not(path),
.listivo-packages-bar,
.listivo-packages-bar *:not(svg):not(path){
  --theme-accent-color: var(--sx-gold) !important;
}

/* zlaté bodky / indikátory */
.listivo-search-panel__circle,
.listivo-search-panel__circle *{
  background:var(--sx-gold) !important;
  box-shadow:0 0 0 3px rgba(0,0,0,.55), 0 0 18px var(--sx-gold-glow) !important;
}

/* jednotné zlaté bordery + glow na paneloch/fieldoch */
.listivo-search-sidebar,
.listivo-search-filter,
.listivo-field-v2,
.listivo-select-v2,
.listivo-autocomplete-input,
.listivo-input-v2,
.listivo-search-panel,
.listivo-search-panel__terms{
  border-color:var(--sx-gold-border) !important;
  box-shadow:
    0 25px 80px rgba(0,0,0,.65),
    0 0 30px var(--sx-gold-glow-soft) !important;
}

/* focus ring = gold (zruší modré ringy) */
.listivo-search-sidebar input:focus,
.listivo-search-sidebar select:focus,
.listivo-search-sidebar textarea:focus,
.listivo-search-filter input:focus,
.listivo-search-filter select:focus,
.listivo-search-filter textarea:focus,
.listivo-field-v2:focus-within,
.listivo-select-v2:focus-within,
.listivo-autocomplete-input:focus-within{
  outline:none !important;
  border-color:rgba(212,175,55,.65) !important;
  box-shadow:
    0 0 0 2px rgba(212,175,55,.22),
    0 0 22px var(--sx-gold-glow) !important;
}

/* chips/pills jednotné zlato */
.listivo-search-results__filters .listivo-chip,
.listivo-search-results__filters .listivo-search-chip,
.listivo-search-filter .listivo-chip,
.listivo-search-filter .listivo-search-chip{
  background:linear-gradient(180deg,#0a0a0a,#000) !important;
  color:var(--sx-gold) !important;
  border:1px solid var(--sx-gold-border) !important;
  border-radius:999px !important;
  box-shadow:0 10px 26px rgba(0,0,0,.55), 0 0 16px var(--sx-gold-glow-soft) !important;
}

/* zruš modré svg / ikony (ak niekde ostali) */
.listivo-search-sidebar svg,
.listivo-search-filter svg{
  fill:var(--sx-gold) !important;
  stroke:var(--sx-gold) !important;
}

/* zjednotí zlaté linky a zvýraznenia */
.listivo-search-sidebar a,
.listivo-search-filter a{
  color:var(--sx-gold) !important;
}
.listivo-search-sidebar a:hover,
.listivo-search-filter a:hover{
  color:var(--sx-gold-2) !important;
}

/* odstráni zvyšky "blue accent" z tém */
:root{
  --sx-accent-blue: var(--sx-gold) !important;
  --sx-glow-blue: var(--sx-gold-glow) !important;
}

/* ========================================= */
/* FIX: zruš vnútorný inset rám v inputoch    */
/* (nech nezasahuje do písma)                */
/* ========================================= */

/* samotný input – bez inset rámu */
.listivo-location-field input[type="text"],
.listivo-autocomplete-input input,
.listivo-field-v2 input[type="text"],
.listivo-field-v2 input,
.listivo-input-v2 input{
  box-shadow: none !important;
  outline: none !important;
  border: none !important;          /* border nech rieši wrapper */
  background: transparent !important;
  padding-left: 18px !important;    /* aby text nebol nalepený */
}

/* ak Listivo dáva ešte aj "focus ring" priamo na input */
.listivo-location-field input[type="text"]:focus,
.listivo-autocomplete-input input:focus,
.listivo-field-v2 input:focus,
.listivo-input-v2 input:focus{
  box-shadow: none !important;
  outline: none !important;
}

/* wrapper nech má zlatý border, ale bez vnútorného insetu */
.listivo-autocomplete-input,
.listivo-field-v2,
.listivo-location-field .listivo-autocomplete-input{
  box-shadow: 0 0 0 1px rgba(212,175,55,.38), 0 0 22px rgba(212,175,55,.14) !important;
}

/* ikonka blok vľavo nech nezavadzia textu */
.listivo-autocomplete-input__icon,
.listivo-autocomplete-input__with-icon,
.listivo-autocomplete-input--with-icon{
  border-right: none !important;
}