.main_wrapper {
  max-width: 380px;
  margin: 0 auto;
}

.fixtures_cnt {
  /* background-color: var(--fixture-bg-color);
  padding: 8px; */
  border-radius: 4px;
}

.leagues_topic {
  text-align: center;
  margin-bottom: 12px;
}

.leagues_topic h2 {
  color: #000;
  font-size: 1.2em;
}

.select_box_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.parent_select_box {
  padding: 0 8px;
}

.select_box_cnt #leagues,
.select_box_cnt #weeks {
  padding: 4px 8px;
}

.select_box_cnt #leagues {
  flex: 95%;
}

.select_box_cnt #weeks {
  flex: 5%;
}

.league_name {
  background-color: var(--header-bg-color);
  padding: 6px 0;
  text-align: center;
}

.league_name h3 {
  color: #fff;
  font-size: 0.85em;
}

.week_name {
  background-color: var(--second-header-bg-color);
  padding: 6px 0;
  text-align: center;
}

.week_name h4 {
  color: #fff;
  font-size: 0.85em;
}

.fixture_result {
  display: flex;
  align-items: center;
  padding: 6px;
}

.week_cnt .fixture_result:nth-child(even) {
  background-color: #f3f3f3;
}

.fixture_result .match_detail {
  width: 15px;
  display: inherit;
}

.fixture_result .match_teams {
  width: calc(100% - 60px);
  display: flex;
  align-items: center;
  color: #333;
  font-size: 0.75em;
}

.fixture_result .match_teams .host_team {
  width: 127px;
  text-align: left;
}

.fixture_result .match_teams .match_goals {
  width: 60px;
  padding: 0 6px;
  text-align: center;
}

@media only screen and (min-width: 380px) {
  .fixture_result .match_teams .match_goals {
    width: 39px;
  }
}

.fixture_result .match_teams .guest_team {
  width: 127px;
}

.fixture_result .match_status {
  width: 45px;
  display: inherit;
  justify-content: flex-end;
  color: #333;
  font-size: 0.7em;
}

.select_champion,
.select_world_cup {
  width: 95%;
  margin: 0 auto;
}

.champion_topic h2 {
  color: #0097a7;
}

.champion_name {
  background-color: var(--header-bg-champion);
}
.week_group h4 {
  background-color: var(--second-header-bg-color);
  text-align: center;
  color: #fff;
  font-size: 0.85em;
  padding: 6px 0;
}
.world_cup_group {
  background-color: var(--header-bg-color-world-cup);
  padding: 6px 0;
  text-align: center;
}
.world_cup_group h3 {
  color: #fff;
  font-size: 0.85em;
}
