/* src/assets/css/team.css */
.screen {
  gap: 0;
}
.app_bar_team {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-bottom: 0;
  padding-left: env(safe-area-inset-left);
  background-color: var(--surface-1);
  z-index: 2;
}
.app_bar_team nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.app_bar_team_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.app_bar_breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.app_bar_breadcrumb_icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.team_follow_button {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.team_follow_button svg {
  width: 24px;
  height: 24px;
  display: block;
}
.team_follow_button svg .theme {
  fill: transparent;
  stroke: var(--text);
  stroke-width: 4px;
  transition: 0.3s ease-in-out;
}
.team_follow_button:focus .theme,
.team_follow_button:active .theme,
.team_follow_button:hover .theme {
  fill: var(--primary);
  stroke: transparent;
}
.team_follow_button[data-active=true] .theme {
  fill: var(--primary);
  stroke: transparent;
}
.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 96px;
}
.team_tool_bar {
  position: sticky;
  top: -86px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background-color: var(--surface-1);
  z-index: 1;
}
.team_info {
  width: 100%;
  max-width: 960px;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background-color: var(--surface-2);
  border-radius: 36px;
}
.team_logo {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.team_logo::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
.team_name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.team_actions_bar {
  width: 100%;
  max-width: 960px;
  min-height: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.team_actions_link {
  width: 33.33%;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  font-size: 14px;
  background-color: vaR(--surface-2);
  border-radius: 48px;
  transition: 0.3s ease-in-out;
}
.team_actions_link:focus,
.team_actions_link:active,
.team_actions_link:hover {
  background-color: var(--primary);
}
.team_actions_link[data-active=true] {
  font-weight: 600;
  background-color: var(--primary);
}
.team_overview {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 8px;
  z-index: 0;
}
.team_overview_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_section_header {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.team_overview_title {
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_insight_btn {
  width: 192px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--surface-2);
  border-radius: 48px;
  transition: 0.3s ease-in-out;
}
.team_overview_insight_btn:focus,
.team_overview_insight_btn:active,
.team_overview_insight_btn:hover {
  background-color: var(--primary);
}
.team_overview_insight_btn[data-active=true] {
  background-color: var(--primary);
}
.team_overview_description {
  width: 100%;
  height: 67.5px;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.team_overview_description[data-active=true] {
  height: initial;
}
.team_overview_description::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36px;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      var(--background) 75%);
}
.team_overview_description[data-active=true]::after {
  height: initial;
}
.team_overview_insight {
  width: 100%;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competitions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_section_group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.team_overview_section_group_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_summary {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_summary_group {
  display: flex;
  gap: 8px;
}
.team_overview_competitions_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_competitions_wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.team_overview_competitions_panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_competitions_panel_league_link {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.team_overview_competitions_panel_league_icon {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.team_overview_competitions_panel_league_title {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--text);
}
.team_overview_competitions_panel_league_country {
  font-size: 10px;
  font-weight: 400;
}
.team_overview_competitions_panel_league_name {
  font-weight: 600;
}
.team_overview_competition_stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_competition_stats_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team_overview_competition_stats_section_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_overview {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_overview_card {
  width: calc(33.33% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_overview_card:nth-child(1) {
  width: 100%;
}
.team_overview_competition_stats_overview_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_overview_card_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team_overview_competition_stats_overview_card_content_icon {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--surface-1);
  border-radius: 50%;
}
.form_icon_w {
  background-color: var(--primary);
}
.form_icon_l {
  background-color: var(--red);
}
.team_overview_competition_stats_overview_card_content_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_streaks {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_streak_card {
  width: calc(33.33% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_streak_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_streak_card_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team_overview_competition_stats_streak_card_content_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_attack {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_attack_card {
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_attack_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_attack_card_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team_overview_competition_stats_attack_card_content_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_defense {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_defense_card {
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_defense_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_defense_card_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team_overview_competition_stats_defense_card_content_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_discipline {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_discipline_card {
  width: calc(50% - 4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_discipline_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_discipline_card_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team_overview_competition_stats_discipline_card_content_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_penalties {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_penalties_card {
  width: calc(33.33% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_penalties_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_penalties_card_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team_overview_competition_stats_penalties_card_content_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.team_overview_competition_stats_insight {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_overview_competition_stats_insight_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.team_overview_competition_stats_insight_card_text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.team_copy {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  padding: 8px;
}
.team_title_text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.team_description_text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.team_position_table {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  padding: 8px;
  z-index: 0;
}
.team_position_table_message {
  width: 100%;
  max-width: 960px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 36px;
}
.team_position_table_message_text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.team_position_table_header {
  width: 100%;
  min-height: 33px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.team_position_table_header_link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.team_position_table_icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--surface-1);
  border-radius: 50%;
}
.team_position_table_title {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--text);
}
.league_country {
  font-size: 10px;
  font-weight: 400;
}
.league_name {
  font-weight: 600;
}
.team_position_table_button {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-1);
  border-radius: 50%;
}
.team_position_table_button svg {
  width: 16px;
  height: 16px;
  display: block;
}
.team_position_table_button svg .theme {
  fill: var(--text);
}
.team_position_table_button:focus .theme,
.team_position_table_button:active .theme,
.team_position_table_button:hover .theme {
  fill: var(--primary);
}
.team_position_table_body {
  width: 100%;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  padding: 8px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.team_position_table_body_group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.team_position_table_body_group_title {
  width: max-content;
  margin-bottom: 8px;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--surface-2);
  border-radius: 48px;
}
.team_position_table_row {
  width: 100%;
  min-height: 36px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.team_position_table_row.body[data-team=true] {
  background-color: var(--surface-2);
}
.team_position_table_body_group .team_position_table_row.body:last-child {
  border: none;
}
.team_position_table_row_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.team_position_table_heading {
  display: flex;
  flex-direction: column;
}
.team_position_table_heading_value {
  min-width: 30px;
  font-size: 14px;
  font-weight: 600;
}
.team_position_table_heading_value.rank {
  padding-left: 8px;
}
.team_position_table_heading_value.played,
.team_position_table_heading_value.goal_diff,
.team_position_table_heading_value.points {
  text-align: center;
}
.team_position_table_col {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
}
.team_position_description {
  width: 4px;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
}
.team_position_no_description {
  visibility: hidden;
  width: 4px;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
}
.team_position_description[data-zone=league-strong] {
  background-color: var(--zone-blue);
}
.team_position_description[data-zone=league-medium] {
  background-color: var(--zone-orange);
}
.team_position_description[data-zone=league-weak] {
  background-color: var(--zone-green);
}
.team_position_description[data-zone=relegation] {
  background-color: var(--zone-red);
}
.team_position_no_description {
  background-color: transparent;
}
.team_position_table_col_value {
  min-width: 30px;
  font-size: 14px;
}
.team_position_table_col_value.rank {
  min-width: 20px;
  font-size: 14px;
}
.team_position_table_col_value.icon {
  position: relative;
  min-width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.team_position_table_col_value.icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
}
.team_position_table_col_value.played,
.team_position_table_col_value.goal_diff,
.team_position_table_col_value.points {
  text-align: center;
}
.team_position_table_indicators {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  padding: 8px;
}
.team_position_table_indicators_description {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}
.team_position_table_indicators_description_status {
  width: 12px;
  height: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team_position_table_indicators_description_status[data-status=promotion-1] {
  background-color: var(--promotion-1);
}
.team_position_table_indicators_description_status[data-status=promotion-2] {
  background-color: var(--promotion-2);
}
.team_position_table_indicators_description_status[data-status=playoff],
.team_position_table_indicators_description_status[data-status=promotion-2-qualifier] {
  background-color: var(--playoff);
}
.team_position_table_indicators_description_status[data-status=relegation] {
  background-color: var(--relegation);
}
.team_position_table_indicators_description_label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.fixtures {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 8px;
  z-index: 0;
}
.matches {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fixture_round {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fixture_round_title {
  width: 100%;
  min-height: 24px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background-color: var(--surface-1);
  border-radius: 48px;
}
.fixture_date_group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fixture_date_title {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.match {
  width: 100%;
  min-height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  background-color: var(--surface-1);
  border-radius: 48px;
}
.match_status {
  width: 48px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-top-left-radius: 48px;
  border-bottom-left-radius: 48px;
}
.match_status[data-live=true] {
  background:
    linear-gradient(
      135deg,
      rgba(40, 167, 69, 0.50) 0%,
      var(--background) 100%);
  overflow: hidden;
}
.match_status[data-status=HT] {
  background:
    linear-gradient(
      135deg,
      rgba(255, 152, 0, 0.50) 0%,
      var(--background) 100%);
  overflow: hidden;
}
.match_status[data-status=FT] {
  background:
    linear-gradient(
      135deg,
      rgba(244, 67, 54, 0.50) 0%,
      var(--background) 100%);
  overflow: hidden;
}
.match_status[data-status=PEN] {
  background:
    linear-gradient(
      135deg,
      rgba(244, 67, 54, 0.50) 0%,
      var(--background) 100%);
  overflow: hidden;
}
.match_status[data-status=AET] {
  background:
    linear-gradient(
      135deg,
      rgba(244, 67, 54, 0.50) 0%,
      var(--background) 100%);
  overflow: hidden;
}
.match_status_text {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.match_status[data-live=true] .match_status_text {
  width: 18px;
  color: var(--primary);
}
.match_status[data-status=HT] .match_status_text {
  color: #FB8C00;
}
.match_status[data-status=FT] .match_status_text {
  color: #E53935;
}
.match_status[data-status=PEN] .match_status_text {
  color: #E53935;
}
.match_status[data-status=AET] .match_status_text {
  color: #E53935;
}
.match_status[data-live=true] .match_status_text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50%;
  font-weight: 600;
  background-color: var(--primary);
  border-radius: 48px;
  animation: pingpongLine 2s ease-in-out infinite;
}
.match_status[data-live=true][data-paused=true] .match_status_text::after {
  display: none;
}
@keyframes pingpongLine {
  0% {
    left: 0%;
  }
  40% {
    left: 70%;
  }
  60% {
    left: 70%;
  }
  100% {
    left: 0%;
  }
}
.match_teams_link {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.match_team {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.match_team_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.team_icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.team_icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
}
.team_name {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
}
.match_score_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 4px;
}
.match_score {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.match_penalty {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
}
.match_score[data-winner=true] {
  color: var(--primary);
}
.match_score[data-display=false] {
  display: none;
}
.match_score[data-display=true] {
  display: block;
}
.match_action {
  width: 48px;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-top-right-radius: 48px;
  border-bottom-right-radius: 48px;
}
.match_follow_button {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.match_follow_button svg {
  width: 24px;
  height: 24px;
  display: block;
}
.match_follow_button svg .theme {
  fill: transparent;
  stroke: var(--text);
  stroke-width: 4px;
  transition: 0.3s ease-in-out;
}
.match_follow_button:focus .theme,
.match_follow_button:active .theme,
.match_follow_button:hover .theme {
  fill: var(--primary);
  stroke: transparent;
}
.match_follow_button[data-active=true] .theme {
  fill: var(--primary);
  stroke: transparent;
}
.match_follow_button[data-disabled=true] {
  pointer-events: none;
  opacity: 0.25;
}
@media only screen and (min-width: 960px) {
  .team_overview_competitions_header_group {
    width: 50%;
  }
}
/*# sourceMappingURL=team-MKDAACDY.css.map */
