/* ==========================================================
   Ballaxy Clean Base
   Dark-only design tokens + header/ticker/content shell
   ========================================================== */

:root {
  /* Colors */
  --color-bg: #171717;
  --color-bg-deep: #111111;
  --color-surface: #252525;
  --color-surface-2: #2b2b2b;
  --color-surface-3: #303030;
  --color-text: #f4f7fb;
  --color-muted: rgba(244, 247, 251, .68);
  --color-subtle: rgba(244, 247, 251, .46);
  --color-border: rgba(255, 255, 255, .10);
  --color-border-strong: rgba(255, 255, 255, .18);
  --color-accent: #ffc400;
  --color-accent-2: #ffd000;
  --color-black: #000000;

  /* Legacy aliases so copied/old plugin markup inherits the same theme line */
  --bg: var(--color-bg);
  --surface: var(--color-surface);
  --surface-light: var(--color-surface-3);
  --text: var(--color-text);
  --muted: var(--color-muted);
  --border: var(--color-border);
  --accent: var(--color-accent);

  /* Fonts */
  --font-body: 'Oxygen', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Encode Sans Condensed', 'Arial Narrow', var(--font-body);

  /* Font sizes */
  --fs-xxs: clamp(.62rem, .58rem + .12vw, .70rem);
  --fs-xs: clamp(.70rem, .66rem + .15vw, .78rem);
  --fs-sm: clamp(.78rem, .74rem + .18vw, .90rem);
  --fs-base: clamp(.90rem, .86rem + .22vw, 1rem);
  --fs-md: clamp(1rem, .94rem + .28vw, 1.15rem);
  --fs-lg: clamp(1.25rem, 1.04rem + .9vw, 1.75rem);
  --fs-xl: clamp(1.65rem, 1.18rem + 2vw, 2.55rem);
  --fs-xxl: clamp(2.20rem, 1.45rem + 3vw, 4.10rem);

  /* Line heights */
  --lh-tight: .92;
  --lh-heading: 1.02;
  --lh-body: 1.55;

  /* Spacing */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Layout */
  --container: 1180px;
  --container-wide: 1440px;
  --content: 760px;
  --sidebar: 320px;
  --gutter: clamp(16px, 3vw, 32px);

  /* Shape/effects */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 18px 50px rgba(0,0,0,.28);
  --transition: 160ms ease;

  /* Header */
  --header-height: 64px;
  --ticker-height: 38px;
}

* { box-sizing: border-box; }
html { background: var(--color-bg); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--color-accent); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-main { min-height: 60vh; }
.top-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-black);
}
body.admin-bar .top-sticky { top: 32px; }
body.admin-bar .site-header { top: 32px; }

/* Header: compact sports-media bar matching reference */
.site-header {
  background: var(--color-black);
  border-bottom: 2px solid var(--color-accent);
}
.header-inner {
  width: min(100% - 32px, var(--container-wide));
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.site-branding {
  display: contents;
}
.logo-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #fff;
  color: #050505;
  line-height: 1;
  overflow: hidden;
}
.logo-img { display: block; width: 100%; height: 100%; object-fit: contain; }
.ballaxy-wordmark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  color: #050505;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.07em;
}
.ballaxy-wordmark span { color: #050505; }
.site-title-link {
  display: inline-block;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 1.05rem + 1vw, 2.15rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.site-title-link:hover { color: var(--color-text); }
.main-nav { min-width: 0; overflow: hidden; }
.main-nav .menu,
.fallback-menu,
.mega-menu-root,
.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .menu,
.fallback-menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(18px, 1.55vw, 30px);
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  white-space: nowrap;
}
.main-nav .menu::-webkit-scrollbar,
.fallback-menu::-webkit-scrollbar { display: none; }
.main-nav a,
.fallback-menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  padding: 0;
  color: rgba(244,247,251,.72);
  font-size: clamp(.86rem, .76rem + .25vw, 1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: none;
}
.main-nav a::after,
.fallback-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
}
.main-nav a:hover,
.fallback-menu a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.fallback-menu .is-active > a { color: var(--color-text); opacity: 1; }
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.fallback-menu .is-active > a::after { background: var(--color-text); }
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.icon-btn,
.burger {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: var(--radius-sm);
}
.icon-btn:hover,
.burger:hover { background: rgba(255,255,255,.08); color: var(--color-text); }
.icon { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.user-avatar { width: 22px; height: 22px; border-radius: 50%; display: block; }
.header-menu-toggle { order: initial; }
.burger { gap: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: currentColor; transition: transform var(--transition), opacity var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.user-menu { position: relative; }
.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 150px;
  padding: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: var(--transition);
}
.user-menu.active .user-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.user-dropdown a { display: block; padding: 9px 10px; font-size: var(--fs-xs); color: var(--color-text); }
.user-dropdown a:hover { background: rgba(255,255,255,.06); }
/* Mega menu / search */
.mega-menu {
  display: none;
  background: var(--color-bg-deep);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.mega-menu.active { display: block; }
.mega-inner { padding-block: var(--space-5); display: grid; gap: var(--space-4); }
.mega-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface);
}
.mega-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  padding: 12px 14px;
  outline: 0;
}
.mega-search button {
  border: 0;
  border-left: 1px solid var(--color-border);
  background: var(--color-accent);
  color: #111;
  width: 46px;
}
.mega-menu-root {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.mega-menu-root a {
  display: block;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-sm);
  text-transform: uppercase;
}

/* Ticker wrapper: keep plugin shortcode output intact, only provide shell */
.city-bar,
.football-ticker-wrap {
  min-height: var(--ticker-height);
  background: var(--color-black);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.football-ticker-shell {
  width: 100vw;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.football-ticker-shell::-webkit-scrollbar { height: 4px; }
.football-ticker-shell::-webkit-scrollbar-thumb { background: rgba(255,255,255,.24); }

/* Optional league/team rails copied into future templates inherit these base styles */
.ballaxy-header-competition-strip,
.ballaxy-header-team-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.ballaxy-header-competition-scroll,
.ballaxy-team-strip-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.ballaxy-header-competition-scroll::-webkit-scrollbar,
.ballaxy-team-strip-scroll::-webkit-scrollbar { display: none; }
.ballaxy-header-competition-track,
.ballaxy-team-strip-track {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ballaxy-header-competition-pill {
  flex: 0 0 auto;
  padding: 8px 0;
  color: var(--color-muted);
  font-size: var(--fs-xxs);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
}
.ballaxy-header-competition-pill.is-active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.ballaxy-team-strip-item { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; opacity: .84; }
.ballaxy-team-strip-item img { width: 28px; height: 28px; object-fit: contain; }
.ballaxy-team-strip-item:hover { opacity: 1; }

/* Blank content shells */
.blank-page-section { padding-block: clamp(32px, 7vw, 96px); }
.blank-container { display: grid; gap: var(--space-5); }
.blank-header { max-width: 720px; }
.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--color-accent);
  font-size: var(--fs-xxs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: var(--lh-heading);
  letter-spacing: -.035em;
}
h1 { font-size: var(--fs-xxl); }
.blank-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--color-border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  color: var(--color-muted);
  padding: var(--space-8);
  text-align: center;
}
.blank-panel p { margin: 0; }

/* Footer */
.site-footer {
  margin-top: var(--space-16);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-deep);
}
.footer-inner {
  padding-block: var(--space-10);
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: var(--space-8);
  align-items: start;
}
.footer-inner p { color: var(--color-muted); margin: .75rem 0 0; max-width: 340px; font-size: var(--fs-xs); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.footer-nav a { color: var(--color-muted); font-size: var(--fs-xs); font-weight: 700; text-transform: uppercase; }
.footer-copy { justify-self: end; }

@media (max-width: 900px) {
  :root { --header-height: 56px; }
  body.admin-bar .top-sticky { top: 46px; }
  body.admin-bar .site-header { top: 46px; }
  .header-inner { width: min(100% - 24px, var(--container-wide)); grid-template-columns: auto auto auto 1fr auto; gap: 12px; }
  .site-title-link { font-size: 1.45rem; }
  .main-nav { display: none; }
  .mega-menu.active { display: block; }
  .mega-inner { max-height: calc(100dvh - var(--header-height)); overflow: auto; }
  .mega-menu-root { display: grid; gap: 0; }
  .mega-menu-root a { padding: 13px 0; border-bottom: 1px solid var(--color-border); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { justify-self: start; }
}

@media (max-width: 600px) {
  :root { --gutter: 14px; --header-height: 54px; }
  .header-inner { width: min(100% - 20px, var(--container-wide)); gap: 10px; }
  .logo-link, .ballaxy-wordmark { width: 34px; height: 34px; min-width: 34px; font-size: 1.05rem; }
  .site-title-link { font-size: 1.25rem; }
  .header-actions { gap: 2px; }
  .blank-page-section { padding-block: var(--space-8); }
  .blank-panel { min-height: 190px; padding: var(--space-5); }
}

/* Header/ticker alignment pass */
:root {
  --color-bg: #171717;
  --header-bg: var(--color-bg);
  --header-inner: 1440px;
  --ticker-inner: var(--header-inner);
}

.top-sticky,
.site-header,
.football-ticker-wrap {
  background: var(--header-bg);
}

.site-header {
  border-bottom: 0 !important;
}

.header-inner,
.football-ticker-shell {
  width: min(100% - 32px, var(--header-inner));
  margin-inline: auto;
}

.football-ticker-wrap {
  border: 0 !important;
  margin: 0;
  padding: 0 0 18px;
}

.football-ticker-shell {
  overflow: hidden;
}

.football-ticker-shell > * {
  max-width: none !important;
}

.header-inner {
  grid-template-columns: auto auto auto minmax(0, 1fr) auto;
  gap: 18px;
}

.icon-btn,
.header-menu-toggle {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 4px;
}

.icon-btn:hover,
.header-menu-toggle:hover {
  color: var(--color-text);
  background: rgba(255,255,255,.08);
}

.header-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-toggle .header-icon,
.user-toggle .header-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.main-nav a,
.fallback-menu a {
  min-height: var(--header-height);
}

@media (max-width: 1024px) {
  .header-inner,
  .football-ticker-shell {
    width: min(100% - 20px, var(--header-inner));
  }

  .main-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto auto 1fr auto;
  }
}

@media (max-width: 640px) {
  .site-title-link {
    font-size: 1.45rem;
  }

  .logo-link,
  .ballaxy-wordmark {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .football-ticker-wrap {
    padding-bottom: 12px;
  }
}

/* Header/customizer stability pass */
:root {
  --color-bg: #171717;
  --header-bg: #171717;
  --header-inner: 1440px;
  --ticker-inner: var(--header-inner);
}

html,
body,
.top-sticky,
.site-header,
.football-ticker-wrap {
  background: var(--color-bg) !important;
}

.site-header,
.football-ticker-wrap,
.mega-menu {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none;
}

.header-inner,
.football-ticker-shell {
  width: min(100% - 32px, var(--header-inner));
  margin-inline: auto;
}

.football-ticker-wrap {
  padding: 0 0 18px !important;
  overflow: hidden;
}

.football-ticker-shell {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.football-ticker-shell::-webkit-scrollbar {
  display: none;
}

.ticker-customizer-placeholder {
  min-height: var(--ticker-height);
  display: flex;
  align-items: center;
  color: var(--color-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.icon-btn,
.header-menu-toggle,
.header-search-toggle,
.user-toggle {
  border: 0 !important;
  background: transparent !important;
  color: var(--color-text) !important;
  box-shadow: none !important;
}

.icon-btn:hover,
.header-menu-toggle:hover,
.header-search-toggle:hover,
.user-toggle:hover {
  background: rgba(255,255,255,.08) !important;
}

.header-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-search-toggle .header-icon,
.user-toggle .header-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@media (max-width: 1024px) {
  .header-inner,
  .football-ticker-shell {
    width: min(100% - 20px, var(--header-inner));
  }
}

@media (max-width: 640px) {
  .football-ticker-wrap {
    padding-bottom: 12px !important;
  }
}

/* Stage 0.1.4: header/ticker/admin settings polish */
:root {
  --color-bg: #171717;
  --header-bg: var(--color-bg);
  --header-inner: 1440px;
  --ticker-inner: var(--header-inner);
  --container: 1180px;
}

html,
body,
.top-sticky,
.site-header,
.football-ticker-wrap {
  background: var(--color-bg) !important;
}

.top-sticky {
  position: sticky;
  top: 0;
  z-index: 5000;
  background: var(--color-bg) !important;
}

body.admin-bar .top-sticky {
  top: 32px;
}

.site-header {
  position: relative;
  z-index: 2;
  border: 0 !important;
  box-shadow: none !important;
}

.header-inner,
.football-ticker-shell {
  width: min(100% - 32px, var(--header-inner));
  margin-inline: auto;
}

.header-inner {
  min-height: 64px;
}

.icon-btn,
.header-menu-toggle,
.header-search-toggle,
.user-toggle {
  width: 42px !important;
  height: 42px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--color-text) !important;
  box-shadow: none !important;
}

.header-icon,
.header-search-toggle .header-icon,
.user-toggle .header-icon {
  width: 24px !important;
  height: 24px !important;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:hover,
.header-menu-toggle:hover,
.header-search-toggle:hover,
.user-toggle:hover {
  background: rgba(255,255,255,.08) !important;
}

/* Mega menu overlays below the header instead of pushing the ticker/page down. */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  background: var(--color-bg) !important;
  border: 0 !important;
  box-shadow: 0 28px 70px rgba(0,0,0,.55) !important;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  width: min(100% - 32px, var(--header-inner));
  max-width: none;
  margin-inline: auto;
  padding-block: 18px 22px;
}

/* Ticker shell: same width as header, no separators, keep plugin card styling. */
.football-ticker-wrap {
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 0 18px !important;
  overflow: visible;
}

.football-ticker-shell {
  overflow: visible;
  text-align: left;
  scrollbar-width: none;
}

.football-ticker-shell::-webkit-scrollbar {
  display: none;
}

.football-ticker-shell > *,
.football-ticker-shell .bilis-fmt-shell {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  background: transparent !important;
  border: 0 !important;
}

.football-ticker-shell .bilis-fmt-controls {
  justify-content: flex-start !important;
  background: transparent !important;
  border: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.football-ticker-shell .bilis-fmt {
  background: transparent !important;
  border: 0 !important;
  overflow: visible !important;
}

.football-ticker-shell .bilis-fmt::before {
  display: none !important;
}

.football-ticker-shell .bilis-fmt-track-wrap {
  flex: 1 1 auto;
  overflow: hidden;
  padding-top: 0 !important;
}

.football-ticker-shell .bilis-fmt-track {
  justify-content: flex-start !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Bleacher Report-like ticker arrows while preserving plugin behavior. */
.football-ticker-shell .bilis-fmt-arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 20 !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateY(-50%) !important;
  border: 2px solid rgba(255,255,255,.72) !important;
  border-radius: 10px !important;
  background: rgba(10,10,10,.94) !important;
  color: transparent !important;
  font-size: 0 !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.45) !important;
}

.football-ticker-shell .bilis-fmt-prev {
  left: 10px !important;
}

.football-ticker-shell .bilis-fmt-next {
  right: 10px !important;
}

.football-ticker-shell .bilis-fmt-arrow::before {
  content: '';
  width: 13px;
  height: 13px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
}

.football-ticker-shell .bilis-fmt-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.football-ticker-shell .bilis-fmt-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

.football-ticker-shell .bilis-fmt-arrow:hover {
  border-color: #fff !important;
  background: #050505 !important;
}

@media (max-width: 782px) {
  body.admin-bar .top-sticky { top: 46px; }
}

@media (max-width: 1024px) {
  .header-inner,
  .football-ticker-shell,
  .mega-inner {
    width: min(100% - 20px, var(--header-inner));
  }

  .main-nav { display: none; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 58px; }
  .site-title-link { font-size: 1.45rem; }
  .icon-btn,
  .header-menu-toggle,
  .header-search-toggle,
  .user-toggle {
    width: 38px !important;
    height: 38px !important;
  }
  .header-icon,
  .header-search-toggle .header-icon,
  .user-toggle .header-icon {
    width: 22px !important;
    height: 22px !important;
  }
  .football-ticker-wrap { padding-bottom: 12px !important; }
  .football-ticker-shell .bilis-fmt-arrow {
    width: 38px !important;
    height: 38px !important;
  }
}
