.football_team_teams {
  display: flex;
  flex: 1 1;
}
.football_team_team {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1;
}
.football_team_teamimg img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.football_team_teamname {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: var(--typography-font-size-body2-sm);
  line-height: var(--typography-line-height-body2-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-foreground-foreground-default);
}
.football_team_score {
  display: flex;
  align-items: center;
}
.football_team_team img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.football_team_scorebox {
  min-width: 20px;
  text-align: center;
  font-size: var(--typography-font-size-body2-strong-sm);
  line-height: var(--typography-line-height-body2-strong-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-foreground-foreground-default)
}
.football_team_scoreindicator {
  width: 8px;
  height: 20px;
  display: flex;
  align-items: center;
  margin-left: var(--space-sm);
}
.football_team_scorereddot {
  background-color: var(--color-red-60);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 var(--space-xs);
}
.football_team_scoreindicator svg {
  transform: rotate(-180deg);
}
.football_team {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.team-win {
  font-weight: var(--font-weight-bold);
}
.fixture_teams:has(> div:nth-child(2) .team-win) > div:first-child .football_team_teamname,
.fixture_teams:has(> div:nth-child(2) .team-win) > div:first-child .football_team_scorebox,
.football_content_teamdata:has(.team-win) + .football_content_teamdata .football_team_teamname,
.football_content_teamdata:has(.team-win) + .football_content_teamdata .football_team_scorebox {
  color: var(--color-foreground-foreground-strong);
}
@media(min-width: 961px) {
  .football_team_teamname {
    font-size: var(--typography-font-size-body1-lg);
    line-height: var(--typography-line-height-label1-lg);
  }
  .football_team_scorebox {
    font-size: var(--typography-font-size-body1-strong-lg);
    line-height: var(--typography-line-height-body1-strong-lg);
  }
  .football_team_team img {
    width: 32px;
    height: 32px;
  }
}