/* src/assets/css/search.css */
.app_bar_search {
  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_search nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 0 8px;
}
.app_bar_search_group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.search {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  padding: 0 8px 8px 8px;
}
.search_group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.search_input_control::placeholder {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.5;
}
.search_input_control {
  width: 100%;
  height: 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background-color: var(--surface-2);
  border-radius: 48px;
}
.search_button {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-2);
  border-radius: 50%;
}
.search_button:focus .theme,
.search_button:active .theme,
.search_button:hover .theme {
  fill: var(--primary);
}
.search_results::-webkit-scrollbar {
  display: none;
}
.search_results {
  width: 100%;
  max-width: 960px;
  height: calc(100vh - 124px);
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: var(--surface-2);
  border-radius: 16px;
  opacity: 0;
  transition: 0.3s ease-in-out;
  overflow: auto;
}
.search_results_message {
  width: 100%;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.search_results_message_text {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.search_result_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search_result_section_header {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.search_result_section_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.search_result_section_body {
  width: 100%;
}
.search_result_section_body_teams {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.result_team_link {
  width: calc(33% - 10px);
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background-color: var(--surface-1);
  border: 2px solid transparent;
  border-radius: 16px;
  transition: 0.3s ease-in-out;
}
.result_team_link:focus,
.result_team_link:active,
.result_team_link:hover {
  border-color: var(--border);
}
.result_team_logo {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.result_team_logo::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
.result_team_name {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.search_result_section_body_leagues {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.result_league_link {
  width: calc(33% - 10px);
  min-height: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background-color: var(--surface-1);
  border: 2px solid transparent;
  border-radius: 16px;
  transition: 0.3s ease-in-out;
}
.result_league_link:focus,
.result_league_link:active,
.result_league_link:hover {
  border-color: var(--border);
}
.result_league_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%;
}
.result_league_name {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.search_result_section_body_fixtures {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fixture_result_link {
  width: 100%;
  height: 144px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  background-color: var(--surface-1);
  border: 2px solid transparent;
  border-radius: 16px;
}
.fixture_result_link:focus,
.fixture_result_link:active,
.fixture_result_link:hover {
  border-color: var(--primary);
}
.fixture_result_team {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.fixture_result_team_icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.fixture_result_team_icon::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
.fixture_result_team_name {
  max-width: 100%;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.fixture_result_status {
  min-width: 84px;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: var(--surface-2);
  border-radius: 16px;
}
.fixture_result_status_text {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}
.search_copy {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  padding: 8px;
}
.search_title_text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.search_description_text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.suggested_search {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 8px;
}
.suggested_search_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.suggested_search_title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.suggested_search_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.suggested_search_list_link {
  width: 100%;
  height: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background-color: var(--surface-1);
  border-radius: 48px;
}
.suggested_search_list_group {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px;
}
.suggested_search_list_group_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.suggested_search_list_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%;
}
.suggested_search_list_icon.league {
  background-color: var(--surface-2);
}
.suggested_search_list_icon.team {
  position: relative;
  width: 36px;
  height: 36px;
  display: block;
  background-repeat: initial;
  background-size: initial;
  background-position: initial;
  border-radius: 50%;
  overflow: hidden;
}
.suggested_search_list_icon.team::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
}
.suggest_search_list_name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.suggested_search_league_follow_button {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.suggested_search_league_follow_button .follow_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.suggested_search_league_follow_button .follow_icon .theme {
  fill: transparent;
  stroke: var(--text);
  stroke-width: 4px;
  transition: 0.3s ease-in-out;
}
.suggested_search_league_follow_button:focus .theme,
.suggested_search_league_follow_button:active .theme,
.suggested_search_league_follow_button:hover .theme {
  fill: var(--primary);
  stroke: transparent;
}
.suggested_search_league_follow_button[data-active=true] .theme {
  fill: var(--primary);
  stroke: transparent;
}
.suggested_search_team_follow_button {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.suggested_search_team_follow_button .follow_icon {
  width: 24px;
  height: 24px;
  display: block;
}
.suggested_search_team_follow_button .follow_icon .theme {
  fill: transparent;
  stroke: var(--text);
  stroke-width: 4px;
  transition: 0.3s ease-in-out;
}
.suggested_search_team_follow_button:focus .theme,
.suggested_search_team_follow_button:active .theme,
.suggested_search_team_follow_button:hover .theme {
  fill: var(--primary);
  stroke: transparent;
}
.suggested_search_team_follow_button[data-active=true] .theme {
  fill: var(--primary);
  stroke: transparent;
}
@media only screen and (min-width: 640px) {
  .search_result_section_body_fixtures {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .fixture_result_link {
    width: calc(50% - 4px);
  }
  .suggested_search_list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .suggested_search_list_link {
    width: calc(50% - 4px);
  }
}
@media only screen and (min-width: 960px) {
  .fixture_result_team {
    max-width: initial;
  }
}
/*# sourceMappingURL=search-4LYPWS55.css.map */
