/* src/assets/css/league.css */
.screen {
  gap: 0;
}
.app_bar_league {
  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_league nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.app_bar_league_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%;
}
.league_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%;
}
.league_follow_button svg {
  width: 24px;
  height: 24px;
  display: block;
}
.league_follow_button svg .theme {
  fill: transparent;
  stroke: var(--text);
  stroke-width: 4px;
  transition: 0.3s ease-in-out;
}
.league_follow_button:focus .theme,
.league_follow_button:active .theme,
.league_follow_button:hover .theme {
  fill: var(--primary);
  stroke: transparent;
}
.league_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;
}
.league_tool_bar {
  position: sticky;
  top: -130px;
  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;
}
.league_progress {
  width: 100%;
  max-width: 960px;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 36px;
}
.league_progress_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.league_details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.league_details_flag {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.league_details_text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.league_progress_body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_progress_bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--surface-1);
  border-radius: 48px;
}
.league_progress_bar_indicator {
  height: 4px;
  background-color: var(--primary);
  border-radius: 48px;
  width: 0;
  animation: fillBar 1s ease-out forwards;
}
@keyframes fillBar {
  from {
    width: 0;
  }
  to {
    width: var(--progress);
  }
}
.league_progress_footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.league_progress_text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.league_actions_bar {
  width: 100%;
  max-width: 960px;
  min-height: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.league_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;
}
.league_actions_link:focus,
.league_actions_link:active,
.league_actions_link:hover {
  background-color: var(--primary);
}
.league_actions_link[data-active=true] {
  font-weight: 600;
  background-color: var(--primary);
}
.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;
}
.league_copy {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  padding: 8px;
}
.league_title_text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.league_description_text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.league_overview {
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 8px;
  z-index: 0;
}
.league_overview_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.league_overview_section_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_section_group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_overview_section_group_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.league_overview_section_subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_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;
}
.league_overview_summary_card {
  width: calc(50% - 4px);
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.league_overview_summary_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_summary_card_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_leaders {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_overview_leaders_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.league_overview_leaders_card_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.league_overview_leaders_card_header_group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.league_overview_leaders_card_header_group {
  justify-content: space-between;
}
.league_overview_leaders_card_header_group_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.league_overview_leaders_card_body_form_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-2);
  border-radius: 50%;
}
.league_overview_leaders_card_header_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.league_overview_leaders_card_header_icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.league_overview_leaders_card_header_icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.league_overview_leaders_card_header_icon::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(9px);
}
.league_overview_leaders_card_header_name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}
.league_overview_leaders_card_body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_overview_leaders_card_body_group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.league_overview_leaders_card_body_card {
  width: calc(50% - 4px);
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.league_overview_leaders_card_body_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_leaders_card_body_card_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_performance {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.league_overview_performance_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.league_overview_performance_card.attack {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.league_overview_performance_card.defense {
  padding-top: 8px;
}
.league_overview_performance_card_header {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.league_overview_performance_card_header_group {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.league_overview_performance_card_title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_performance_card_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.league_overview_performance_card_icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.league_overview_performance_card_icon::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
.league_overview_performance_card_name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_performance_card_rating {
  width: 100%;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.league_overview_performance_card_rating_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_performance_card_rating_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.league_overview_performance_card_body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_overview_performance_card_body_group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.league_overview_performance_goals {
  width: 100%;
  height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.league_overview_performance_goals_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_performance_goals_text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_performance_card_footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_overview_performance_card_footer_group {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.league_overview_performance_summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.league_overview_performance_summary_text {
  font-size: 14px;
  font-weight: 600;
}
.league_overview_form {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px;
  background-color: var(--surface-1);
  border-radius: 16px;
}
.league_overview_form_card {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.league_overview_form_card_title {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.league_overview_form_card_group {
  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;
}
.league_overview_form_card_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.league_overview_form_card_icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.league_overview_form_card_icon::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
.league_overview_form_card_name {
  font-size: 12px;
  font-weight: 600;
}
.league_overview_form_card_identifiers {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.league_overview_form_card_identifiers_icon {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}
.form_icon_w {
  background-color: var(--primary);
}
.league_overview_form_card_identifiers .form_icon_d {
  background-color: var(--surface-1);
}
.form_icon_l {
  background-color: var(--red);
}
@media only screen and (min-width: 640px) {
  .league_overview_form_card_identifiers_icon {
    font-size: 14px;
    border-radius: 50%;
  }
}
@media only screen and (min-width: 960px) {
  .league_overview_summary_card {
    width: calc(25% - 6px);
  }
  .league_overview_leaders_card_body_card {
    width: calc(25% - 6px);
  }
}
/*# sourceMappingURL=league-K34EAOWN.css.map */
