/* src/assets/css/match.css */
.screen {
  gap: 0;
}
.app_bar_matches {
  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: 1;
}
.app_bar_nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
}
.app_bar_matches_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.match_tool_bar_wrapper {
  position: sticky;
  top: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  background-color: var(--surface-1);
  z-index: 1;
}
.matches_tool_bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.matches_date_scroller_container {
  width: 100%;
  min-height: 54px;
  max-width: 960px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.matches_date_scroller_button {
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}
.matches_date_scroller_button svg {
  width: 24px;
  height: 24px;
  display: block;
}
.matches_date_scroller_button svg .theme {
  fill: var(--text);
  transition: 0.3s ease-in-out;
}
.matches_date_scroller_button:focus .theme,
.matches_date_scroller_button:active .theme,
.matches_date_scroller_button:hover .theme {
  fill: var(--primary);
}
.matches_date_scroller::-webkit-scrollbar {
  display: none;
}
.matches_date_scroller {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  white-space: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.matches_date_scroller_link {
  min-width: 96px;
  height: 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 14px;
  color: var(--text);
  background-color: var(--surface-2);
  border-bottom: 2px solid transparent;
  border-radius: 48px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.matches_date_scroller_link:focus,
.matches_date_scroller_link:active,
.matches_date_scroller_link:hover {
  color: var(--text);
  background-color: var(--primary);
}
.matches_date_scroller_link[data-active=true] {
  font-weight: 600;
  color: var(--text);
  background-color: var(--primary);
}
.day {
  font-size: 12px;
}
.date {
  font-size: 12px;
}
.content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 96px;
}
.matches_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;
}
.matches_message_text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
nav.fixture_menu {
  width: 100%;
  max-width: 960px;
  min-height: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 auto;
}
.fixture_menu_scroll::-webkit-scrollbar {
  display: none;
}
.fixture_menu_scroll {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow-x: auto;
}
.fixture_menu_button {
  flex: 1;
  min-width: 108px;
  height: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background-color: var(--surface-2);
  border: 2px solid transparent;
  border-radius: 48px;
}
.fixture_menu_button:focus,
.fixture_menu_button:active,
.fixture_menu_button:hover {
  background-color: var(--primary);
  transition: 0.3s ease-in-out;
}
.fixture_menu_button[data-active=true] {
  font-weight: 600;
  background-color: var(--primary);
  transition: 0.3s ease-in-out;
}
.fixture_menu_button[data-disabled=disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.fixture_menu_button_count {
  top: -4px;
  font-size: 12px;
  font-weight: 600;
}
.fixtures_wrapper {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 8px;
  z-index: 0;
}
.fixtures_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.fixtures_description {
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background-color: var(--surface-1);
  border-radius: 16px;
}
.fixtures {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.leagues {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.league {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.league_link {
  min-height: 33px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.league_icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--surface-1);
  border-radius: 50%;
}
.league_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;
}
.matches {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.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_text .extra {
  position: absolute;
  top: -12px;
  right: -8px;
  font-size: 12px;
}
.match_status[data-live=true] .match_status_text {
  width: 18px;
  color: #43A047;
}
.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: 16px;
  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_penalty {
  font-size: 10px;
  font-weight: 600;
  color: var(--text);
}
.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) {
  .matches_date_scroller_button {
    display: flex;
  }
}
/*# sourceMappingURL=match-DJG3K5FM.css.map */
