/* Shared score-ticker behavior; sport themes continue to own card appearance. */
.sf-score-ticker-host {
  position: relative;
  min-width: 0;
}
.sf-score-ticker-viewport {
  min-width: 0;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}
.sf-score-ticker-viewport::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.sf-score-ticker-running {
  max-width: calc(100% - 36px) !important;
  margin-inline-end: 36px !important;
}
.sf-score-ticker-track {
  animation: none !important;
  transform: none !important;
  flex-wrap: nowrap !important;
}
.sf-score-ticker-track:not(.sf-score-ticker-viewport) {
  display: flex !important;
  width: max-content !important;
  max-width: none !important;
  overflow: visible !important;
}
.sf-score-ticker-direct {
  display: flex !important;
  flex-wrap: nowrap !important;
}
.sf-score-ticker-track > * {
  flex: 0 0 auto !important;
}
.sf-score-ticker-host > button.sf-score-ticker-control {
  appearance: none !important;
  position: absolute !important;
  z-index: 3;
  inset-inline-end: 2px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 28px !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid currentColor !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: inherit !important;
  opacity: .65;
  box-shadow: none !important;
  font: 700 11px/1 Arial, sans-serif !important;
  letter-spacing: 0 !important;
  text-indent: 0 !important;
  cursor: pointer;
}
/*
 * The pause and play marks are DRAWN, not typed.
 *
 * They used to be the characters 'Ⅱ' (U+2161 ROMAN NUMERAL TWO) and '▶'
 * (U+25B6) set in Arial at 11px. Whether either one paints depends on the font
 * actually resolved on the visitor's machine, and at 11px behind 0.65 opacity on
 * a near-black bar the result read as an empty ring — reported independently as
 * a missing icon on page after page. Borders cannot go missing.
 */
.sf-score-ticker-host > button.sf-score-ticker-control::before {
  content: '';
  display: block;
  box-sizing: border-box;
  width: 9px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.sf-score-ticker-host > button.sf-score-ticker-control[data-paused='true']::before {
  width: 0;
  height: 0;
  border-left: 9px solid currentColor;
  border-right: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-inline-start: 2px;
}
.sf-score-ticker-host > button.sf-score-ticker-control:hover,
.sf-score-ticker-host > button.sf-score-ticker-control:focus-visible {
  opacity: 1;
}
.sf-score-ticker-host > button.sf-score-ticker-control:focus-visible {
  outline: 2px solid currentColor !important;
  outline-offset: 3px;
}
.sf-score-ticker-host > button.sf-score-ticker-control[hidden] {
  display: none !important;
}
/* Keep the fixed Scores label out of the rail's expanding cloned content. */
.gx-tb-tick:has(.sf-score-ticker-viewport) > .elementor-container > .gx-tb-tick-key {
  flex-shrink: 0 !important;
}
.gx-tb-tick:has(.sf-score-ticker-viewport) > .elementor-container > .gx-tb-tick-track {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}
