:root {
  color-scheme: light;
  --bg: #eef3f7;
  --panel: #ffffff;
  --panel-soft: #f8fafb;
  --line: #d9e0e6;
  --line-strong: #b7c4cf;
  --text: #1d2a33;
  --muted: #62717d;
  --green: #0b8d55;
  --blue: #1d5f9f;
  --supplier-blue: #6f8eac;
  --supplier-blue-dark: #314258;
  --red: #c83d38;
  --amber: #a86b00;
  --shadow: 0 8px 22px rgba(28, 42, 52, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  background: linear-gradient(135deg, #34455c 0%, #273548 100%);
  border-bottom: 0;
  color: #fff;
}

.topbar__inner {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  min-height: 54px;
  padding: 0 18px;
}

.brand {
  font-size: 17px;
  font-weight: 700;
}

.navlink {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 4px;
  color: #fff;
  padding: 6px 10px;
  text-decoration: none;
}

.navlinks {
  align-items: center;
  display: flex;
  gap: 8px;
}

.page {
  margin: 0 auto;
  max-width: 1100px;
  padding: 16px 18px 34px;
}

.page--live {
  max-width: 1180px;
}

.summary {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce4eb;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 12px;
}

.summary--live {
  align-items: flex-start;
}

.summary__main {
  min-width: 220px;
}

.summary__side {
  align-items: flex-end;
  display: grid;
  gap: 7px;
}

.live-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-end;
}

.match-filter {
  align-items: center;
  border: 1px solid #cbd8e2;
  display: inline-flex;
}

.match-filter button {
  background: #f5f8fa;
  border: 0;
  border-right: 1px solid #cbd8e2;
  color: #405464;
  cursor: pointer;
  font-size: 12px;
  min-height: 28px;
  padding: 5px 10px;
}

.match-filter button:last-child {
  border-right: 0;
}

.match-filter button.is-active {
  background: #6f8eac;
  color: #fff;
  font-weight: 700;
}

.odds-company-control {
  align-items: center;
  color: #536673;
  display: inline-flex;
  font-size: 12px;
  gap: 6px;
}

.odds-company-control select {
  background: #fff;
  border: 1px solid #cbd8e2;
  color: #253747;
  cursor: pointer;
  min-height: 28px;
  padding: 4px 26px 4px 8px;
}

.summary h1,
.summary h2 {
  font-size: 15px;
  line-height: 1.25;
  margin: 0;
}

.summary p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.status {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.status strong {
  color: var(--text);
}

.warning,
.error {
  border: 1px solid;
  margin: 14px 0;
  padding: 10px 12px;
}

.warning {
  background: #fff9e9;
  border-color: #ead190;
  color: #6c4a00;
}

.error {
  background: #fff0ee;
  border-color: #e5aaa4;
  color: #8f221c;
}

.table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 8px 10px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

th {
  background: #e8eef2;
  color: #394a56;
  font-size: 13px;
  font-weight: 700;
}

tr:last-child td {
  border-bottom: 0;
}

tbody tr[data-href] {
  cursor: pointer;
}

tbody tr[data-href]:hover {
  background: #f0f8f3;
}

.league {
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

.league-dot {
  border-radius: 999px;
  display: inline-block;
  flex: 0 0 auto;
  height: 10px;
  width: 10px;
}

.team-cell {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.team-logo {
  background: #eef2f5;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  display: inline-grid;
  font-size: 11px;
  font-weight: 700;
  height: 26px;
  place-items: center;
  object-fit: contain;
  padding: 2px;
  width: 26px;
}

.logo-fallback {
  background: #7892ad;
  border-color: #607b96;
  color: #fff;
  object-fit: initial;
}

.muted {
  color: var(--muted);
}

.match-header {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  padding: 16px;
}

.match-title {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.side {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.side--away {
  flex-direction: row-reverse;
  text-align: right;
}

.side img {
  height: 46px;
  width: 46px;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank {
  color: var(--muted);
  font-size: 13px;
}

.versus {
  background: #eef4f8;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #304451;
  font-weight: 700;
  padding: 8px 12px;
}

.meta-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.meta-item {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  padding: 8px 10px;
}

.meta-item span {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.meta-item strong {
  display: block;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.section__head {
  align-items: center;
  background: #fff;
  border-bottom: 2px solid var(--supplier-blue);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 9px 12px;
}

.section__head h2 {
  color: #6f8eac;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.section__body {
  padding: 14px 18px 18px;
}

.supplier-hero {
  background:
    linear-gradient(rgba(38, 56, 78, 0.82), rgba(38, 56, 78, 0.82)),
    url("https://static.top-esport.com/images/live_bg.jpg") center / cover;
  color: #fff;
  margin: -16px -18px 18px;
  padding: 12px 0 22px;
}

.hero-meta {
  align-items: center;
  display: flex;
  gap: 12px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 18px 20px;
}

.hero-badge {
  background: #f5e400;
  color: #4b4b00;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
}

.hero-match {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(300px, 1fr) 110px minmax(300px, 1fr);
  margin: 0 auto;
  max-width: 980px;
  padding: 0 18px 26px;
}

.hero-team {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  min-width: 0;
}

.hero-team--away {
  justify-content: flex-start;
}

.hero-team-name {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  white-space: normal;
}

.hero-logo {
  background: #fff;
  border: 3px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  display: grid;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: 700;
  height: 58px;
  object-fit: contain;
  place-items: center;
  width: 58px;
}

.hero-logo.logo-fallback {
  background: #7892ad;
}

.hero-score {
  text-align: center;
}

.hero-score strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.hero-score span {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-weight: 700;
  margin-top: 3px;
}

.odds-board {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px auto 26px;
  max-width: 760px;
}

.odds-table {
  min-width: 0;
}

.odds-title {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 7px;
  text-align: center;
}

.odds-row {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 70px repeat(3, 1fr);
  margin-bottom: 6px;
}

.odds-row span:first-child {
  color: #4f5e69;
  font-size: 13px;
  text-align: right;
}

.odds-row--head span {
  color: #8492a0;
  font-size: 12px;
  text-align: center;
}

.price-chip {
  background: #eef1f4;
  color: #4d5d69;
  display: block;
  font-weight: 700;
  min-height: 26px;
  padding: 5px 8px;
  text-align: center;
}

.price-chip--live {
  background: var(--supplier-blue);
  color: #fff;
}

.donut-pair {
  border-top: 1px solid #e5ebf0;
  display: grid;
  gap: 90px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 6px auto 0;
  max-width: 650px;
  padding-top: 26px;
}

.donut-card {
  text-align: center;
}

.supplier-donut-chart {
  display: inline-block;
  height: 183px;
  margin-bottom: 10px;
  position: relative;
  width: 183px;
}

.supplier-donut-svg {
  display: block;
  height: 183px;
  overflow: visible;
  width: 183px;
}

.supplier-donut-base {
  stroke: #e6edf2;
}

.supplier-donut-segment {
  cursor: default;
  outline: none;
  transition: opacity 0.16s ease, stroke-width 0.16s ease;
}

.supplier-donut-segment:hover,
.supplier-donut-segment:focus {
  opacity: 0.86;
  stroke-width: 21;
}

.supplier-donut-title {
  color: #5a6872;
  fill: #5a6872;
  font-size: 18px;
  font-weight: 700;
}

.supplier-donut-tooltip {
  background: rgba(35, 44, 52, 0.92);
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  left: 50%;
  line-height: 1.4;
  min-width: 118px;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: none;
  position: absolute;
  top: 6px;
  transform: translate(-50%, -8px);
  transition: opacity 0.14s ease, transform 0.14s ease;
  z-index: 2;
}

.supplier-donut-chart:has(.supplier-donut-segment:hover) .supplier-donut-tooltip,
.supplier-donut-chart:has(.supplier-donut-segment:focus) .supplier-donut-tooltip,
.supplier-donut-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.donut-meta {
  color: #4f5e69;
}

.supplier-donut-meta,
.supplier-donut-legend {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
}

.supplier-donut-legend {
  color: #677683;
  font-size: 12px;
  margin-top: 8px;
}

.supplier-donut-legend span {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.supplier-donut-legend i {
  background: var(--dot);
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  width: 8px;
}

.stack {
  display: grid;
  gap: 20px;
}

.subsection-title,
.mini-title {
  color: #5d7d9c;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.supplier-table {
  font-size: 12px;
  min-width: 920px;
}

.supplier-table th {
  background: var(--supplier-blue);
  border-bottom: 0;
  color: #fff;
  font-size: 12px;
  padding: 7px 8px;
  text-align: center;
}

.supplier-table td {
  border-color: #edf1f4;
  padding: 6px 8px;
  text-align: center;
}

.supplier-table tbody tr:nth-child(even) {
  background: #fbfcfd;
}

.supplier-table--compact {
  min-width: 880px;
}

.supplier-history-table {
  min-width: 1040px;
}

.supplier-table--stat {
  margin-top: 8px;
  min-width: 900px;
}

.supplier-table--stat th,
.supplier-table--stat td {
  padding: 5px 6px;
}

.hidden-stat {
  display: none;
}

[hidden] {
  display: none !important;
}

.score-cell,
.team-focus {
  color: #e14848;
  font-weight: 700;
}

.mark {
  font-weight: 700;
}

.mark-win,
.mark-over,
.result-win {
  color: #e00000;
}

.mark-loss,
.result-loss {
  color: #008000;
}

.mark-draw,
.result-draw {
  color: #1f66c1;
}

.mark-under {
  color: #008000;
}

.team-winner,
.score-cell strong,
.handicap-star {
  color: #e00000;
  font-weight: 700;
}

.neutral-mark {
  color: #666;
}

.red-card {
  background: #d00;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin: 0 3px;
  min-width: 12px;
  padding: 2px 3px;
  text-align: center;
}

.record-summary {
  background: #f6f7f8;
  border: 1px solid #e0e6eb;
  color: #6a7884;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  padding: 9px 12px;
}

.table-filter {
  align-items: center;
  color: #5e6d78;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  justify-content: flex-end;
  margin: -2px 0 6px;
}

.filter-check {
  align-items: center;
  display: inline-flex;
  gap: 3px;
  white-space: nowrap;
}

.filter-check input {
  accent-color: #1f73c9;
  height: 12px;
  margin: 0;
  width: 12px;
}

.filter-select {
  align-items: center;
  display: inline-flex;
  gap: 4px;
}

.filter-select select,
.history-limit {
  border: 1px solid #b7c5d2;
  color: #4c5f70;
  font-size: 12px;
  height: 20px;
  min-width: 42px;
}

.record-summary strong {
  font-weight: 700;
}

.empty {
  color: var(--muted);
  padding: 10px 0;
}

.split {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split > * {
  min-width: 0;
}

.mini-title {
  font-weight: 700;
  margin: 0 0 8px;
}

.stats-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-row {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr;
  padding: 9px 10px;
}

.stat-row strong {
  color: var(--blue);
}

.stat-row span:nth-child(2) {
  color: var(--muted);
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.source-box {
  background: #f6f9fb;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
  padding: 8px 10px;
  word-break: break-all;
}

pre {
  background: #f6f9fb;
  border: 1px solid var(--line);
  margin: 0;
  max-height: 320px;
  overflow: auto;
  padding: 10px;
  white-space: pre-wrap;
}

.live-board {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.live-table {
  font-size: 12px;
  min-width: 1120px;
}

.live-table th {
  background: var(--supplier-blue);
  border-color: #5f7e9c;
  color: #fff;
  font-size: 12px;
  padding: 7px 6px;
  text-align: center;
}

.live-table td {
  border-color: #edf1f4;
  padding: 4px 6px;
  text-align: center;
}

.live-table tbody tr:nth-child(even):not(.live-date-row) {
  background: #f9fbfc;
}

.live-table tbody tr:hover:not(.live-date-row) {
  background: #edf7ef;
}

.live-col-country {
  width: 8%;
}

.live-col-league {
  width: 7%;
}

.live-col-time {
  width: 4%;
}

.live-col-status {
  width: 6%;
}

.live-col-team {
  width: 17%;
}

.live-col-score {
  width: 6%;
}

.live-col-odds {
  width: 16%;
}

.live-col-half {
  width: 4%;
}

.live-col-data {
  width: 6%;
}

.live-col-extra {
  width: 3%;
}

.live-date-row td {
  background: #e8eef2;
  color: #415565;
  font-weight: 700;
  padding: 6px 10px;
  text-align: left;
}

.live-date-row--result td {
  background: #dfe7ee;
}

.country-cell {
  width: 42px;
}

.country-flag {
  display: inline-block;
  height: 16px;
  object-fit: cover;
  vertical-align: middle;
  width: 22px;
}

.country-fallback {
  background: #d9e2ea;
  border: 1px solid #c2ccd5;
  display: inline-block;
  height: 16px;
  vertical-align: middle;
  width: 22px;
}

.live-league {
  color: #fff;
  font-weight: 700;
  max-width: 86px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-time,
.live-status-cell,
.live-half,
.live-data {
  color: #455766;
}

.match-minute {
  color: #e14848;
  display: inline-block;
  min-width: 22px;
}

.second-dot {
  animation: secondBlink 1s steps(2, start) infinite;
  background: #e14848;
  border-radius: 999px;
  display: inline-block;
  height: 5px;
  margin-left: 2px;
  vertical-align: middle;
  width: 5px;
}

.state-badge {
  color: #6a7884;
  display: inline-block;
  font-weight: 700;
  min-width: 28px;
}

.state-1,
.state-3,
.state-7,
.state-8,
.state-9 {
  color: #e14848;
}

.state-2 {
  color: #1f66c1;
}

.state-4,
.state-10,
.state-12 {
  color: #555;
}

.state-6,
.state-13,
.state-14,
.state-15 {
  color: #8a6a00;
}

.live-team {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-team a {
  color: #22313c;
  font-weight: 700;
  text-decoration: none;
}

.live-team--home {
  text-align: right;
}

.live-team--away {
  text-align: left;
}

.live-team sup {
  color: #667684;
  font-weight: 400;
  margin-left: 4px;
  margin-right: 4px;
}

.live-score {
  font-size: 13px;
  font-weight: 700;
}

.score-link {
  color: #555;
  text-decoration: none;
}

.score-link.live {
  color: #555;
}

.score-link.over {
  color: #555;
}

.score-link .is-score-updated {
  color: #e00000;
  font-weight: 800;
}

.pending-score {
  color: #9aa6b0;
}

.live-odds-cell {
  min-width: 152px;
}

.live-odds-stack {
  display: grid;
  gap: 2px;
}

.live-odds {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-odds li {
  background: #f0f3f6;
  border-right: 1px solid #dce5ec;
  color: #3f4f5d;
  min-height: 19px;
  padding: 2px 4px;
  position: relative;
}

.live-odds li:last-child {
  border-right: 0;
}

.live-odds .hc {
  background: #e4ebf1;
  color: #263a49;
  font-weight: 700;
}

.live-odds .up {
  background: #ffe8e5;
  color: #d80000;
  font-weight: 700;
}

.live-odds .down {
  background: #e7f5ec;
  color: #008000;
  font-weight: 700;
}

.live-odds .up::before,
.live-odds .down::before {
  display: inline-block;
  font-size: 9px;
  line-height: 1;
  margin-right: 2px;
  vertical-align: 1px;
}

.live-odds .up::before {
  content: "▲";
}

.live-odds .down::before {
  content: "▼";
}

.live-odds .is-line-updating {
  background: #8196cf;
  color: #fff;
  font-weight: 700;
}

.live-odds--ou li {
  color: #657481;
}

.live-odds-empty {
  color: #9ba8b2;
}

.live-half {
  color: #657481;
  font-weight: 700;
}

.data-icon {
  background: #6f8eac;
  color: #fff;
  display: inline-grid;
  font-size: 11px;
  font-weight: 700;
  height: 18px;
  place-items: center;
  text-decoration: none;
  width: 18px;
}

.data-icon-group {
  align-items: center;
  display: inline-flex;
  gap: 3px;
}

.data-icon--empty {
  background: #ccd6de;
  color: #eef3f7;
}

.odds-chart-icon {
  background: #5c7c9a;
  color: #fff;
  display: inline-grid;
  font-size: 10px;
  font-weight: 700;
  height: 16px;
  place-items: center;
  width: 16px;
}

.top-marker {
  color: #5d7284;
  font-size: 11px;
}

.is-updating {
  animation: liveRowPulse 1.2s ease;
}

.score-event-popup {
  background: #fff;
  border: 1px solid #536c84;
  box-shadow: 0 10px 24px rgba(34, 47, 60, 0.18);
  color: #2d3d49;
  display: none;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 12px;
  min-width: 340px;
  position: absolute;
  z-index: 1000;
}

.score-event-popup.is-visible {
  display: block;
}

.score-event-popup__loading,
.score-event-popup__empty {
  color: #657481;
  padding: 10px 12px;
  text-align: center;
}

.score-event-table {
  border-collapse: collapse;
  min-width: 0;
  width: 100%;
}

.score-event-table th,
.score-event-table td {
  border-bottom: 1px solid #e4ebf1;
  padding: 4px 6px;
  white-space: nowrap;
}

.score-event-table th {
  background: #6f8eac;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

.score-event-table .home {
  text-align: right;
  width: 45%;
}

.score-event-table .away {
  text-align: left;
  width: 45%;
}

.score-event-table .score,
.score-event-table .minute {
  background: #eef3f7;
  color: #263a49;
  font-weight: 700;
  text-align: center;
  width: 10%;
}

.score-event-table img {
  height: 14px;
  vertical-align: -2px;
  width: 14px;
}

.goal-toast-region {
  bottom: 42px;
  display: none;
  left: 50%;
  max-width: min(1120px, calc(100vw - 48px));
  position: fixed;
  transform: translateX(-50%);
  width: min(1120px, calc(100vw - 48px));
  z-index: 999;
}

.goal-toast-region.is-visible {
  display: block;
}

.goal-toast {
  background: #fff;
  border: 2px solid #354053;
  box-shadow: 0 16px 36px rgba(31, 45, 60, 0.22);
  color: #333;
  cursor: pointer;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.goal-toast__top {
  background: #354053 url("https://static.top-esport.com/images/pop_top_en.png") no-repeat center bottom;
  background-size: auto 55px;
  height: 55px;
}

.goal-toast__body {
  align-items: center;
  display: grid;
  grid-template-columns: 10% 33% 8% 33% 9%;
  min-height: 94px;
  padding: 0 14px;
}

.goal-toast__minute {
  font-size: 16px;
  line-height: 40px;
  text-align: center;
}

.goal-toast__team {
  font-size: 20px;
  font-weight: 700;
  line-height: 40px;
  min-width: 0;
  overflow: hidden;
  padding-right: 19px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.goal-toast__team--away {
  padding-left: 19px;
  padding-right: 0;
  text-align: left;
}

.goal-toast__score {
  align-items: center;
  background: #f3f4f5;
  display: flex;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 40px;
  padding: 5px;
  white-space: nowrap;
}

.goal-toast .is-scorer {
  color: #ec5956;
}

.goal-toast__icon {
  display: block;
  height: 42px;
  justify-self: center;
  width: 42px;
}

@keyframes secondBlink {
  50% {
    opacity: 0;
  }
}

@keyframes liveRowPulse {
  0% {
    background: #fff4ce;
  }
  100% {
    background: transparent;
  }
}

@media (max-width: 760px) {
  .topbar__inner,
  .page {
    padding-left: 12px;
    padding-right: 12px;
  }

  .summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .status {
    text-align: left;
  }

  .goal-toast-region {
    bottom: 48px;
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
  }

  .goal-toast__body {
    grid-template-columns: 48px minmax(0, 1fr) 72px minmax(0, 1fr) 48px;
    padding: 0 8px;
  }

  .goal-toast__team {
    font-size: 15px;
    padding-right: 8px;
  }

  .goal-toast__team--away {
    padding-left: 8px;
  }

  .goal-toast__score {
    font-size: 17px;
  }

  .supplier-hero {
    margin-left: -12px;
    margin-right: -12px;
  }

  .hero-match,
  .odds-board,
  .donut-pair {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .hero-team,
  .hero-team--away {
    justify-content: center;
  }

  .hero-score strong {
    font-size: 28px;
  }

  .odds-row {
    grid-template-columns: 64px repeat(3, 1fr);
  }

  .table-filter {
    justify-content: flex-start;
  }

  .meta-grid,
  .split,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
