:root {
   --background: #f9fcfe;
   --surface: #ffffff;
   --text: #15202b;
   --muted: #567086;
   --line: #c9dcef;
   --accent: #006aa8;
   --accent-strong: #004f80;
   --brand: #006aa8;
   --warning: #8a6500;
   --warning-bg: #fff0b8;
}

.brand {
   color: var(--brand);
}

.brand:hover {
   color: var(--brand);
}

.site-header {
   background: #006aa8;
   color: #ffcc00;
}

.site-header-main {
   flex: 1 1 auto;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   width: 100%;
}

.site-header a {
   color: #ffcc00;
}

.site-header a:hover {
   color: #ffcc00;
}

.page-shell {
   padding-top: 24px;
   padding-bottom: 24px;
}

.about-page {
   width: min(720px, 100%);
   margin: 0 auto;
}

.about-letter {
   padding: clamp(32px, 7vw, 72px);
   border: 1px solid var(--line);
   border-radius: 2px;
   background: var(--surface);
   box-shadow: 0 12px 30px rgba(21, 32, 43, 0.06);
   color: var(--text);
   font-family: Georgia, "Times New Roman", serif;
   font-size: 18px;
   line-height: 1.75;
}

.about-letter p {
   margin: 0;
}

.about-letter p + p {
   margin-top: 1.35em;
}

.public-header-actions {
   display: flex;
   flex: 1 1 auto;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   min-width: 0;
}

.public-header-primary-links,
.public-header-secondary-links {
   display: flex;
   align-items: center;
   gap: 12px;
}

.public-header-secondary-menu {
   display: block;
}

.public-header-primary-links {
   margin-left: 24px;
}

.public-header-menu-toggle {
   display: none;
   align-items: center;
   padding: 4px 8px;
   border: 1px solid transparent;
   border-radius: 999px;
   color: #ffcc00;
   cursor: pointer;
   font-size: 12px;
   font-weight: 800;
   text-transform: uppercase;
   white-space: nowrap;
}

.public-header-menu-toggle::-webkit-details-marker {
   display: none;
}

.public-header-secondary-links {
   display: flex;
}

@media (max-width: 720px) {
   .public-header-actions {
      align-self: stretch;
      flex: 0 0 auto;
      width: 100%;
   }
}

@media (orientation: portrait) {
   .site-header-main {
      align-items: center;
      flex-direction: row;
      gap: 14px;
   }

   .public-header-actions {
      align-self: auto;
      flex: 1 1 auto;
      width: auto;
   }

   .public-header-secondary-menu {
      position: relative;
   }

   .public-header-menu-toggle {
      display: inline-flex;
   }

   .public-header-secondary-links {
      display: none;
      align-items: stretch;
      flex-direction: column;
      gap: 7px;
      position: absolute;
      z-index: 20;
      top: calc(100% + 7px);
      right: 0;
      min-width: 170px;
      padding: 7px;
      border: 1px solid rgba(255, 204, 0, 0.35);
      border-radius: 12px;
      background: #006aa8;
      box-shadow: 0 14px 30px rgba(0, 79, 128, 0.18);
   }

   .public-header-secondary-menu[open]
      .public-header-secondary-links {
      display: flex;
   }

   .public-header-secondary-links .public-member-link {
      justify-content: flex-start;
      width: 100%;
      border-radius: 8px;
   }
}

.public-member-link {
   display: inline-flex;
   align-items: center;
   padding: 4px 8px;
   border: 1px solid transparent;
   border-radius: 999px;
   color: #ffcc00;
   font-size: 12px;
   font-weight: 800;
   text-transform: uppercase;
   white-space: nowrap;
}

.public-member-link:hover {
   color: #ffffff;
}

.public-member-link.is-active {
   border-color: #ffcc00;
   background: #ffcc00;
   color: #006aa8;
}

.public-member-link.is-active:hover {
   color: #004f80;
}

.statistics-heading {
   display: flex;
   align-items: flex-start;
   justify-content: flex-end;
   gap: 18px;
   width: min(720px, 100%);
   margin-left: auto;
   margin-right: auto;
}

.statistics-heading-controls {
   display: flex;
   align-items: center;
   gap: 12px;
}

.statistics-heading .statistics-month-select {
   flex: 0 0 240px;
   width: 240px;
   min-width: 240px;
}

.statistics-heading .statistics-sport-select {
   flex: 0 0 220px;
   width: 220px;
   min-width: 220px;
}

.statistics-month-menu
   .date-dropdown-option .date-option-content {
   display: block;
}

.statistics-page {
   width: min(720px, 100%);
   margin: 0 auto;
}

.statistics-card-heading {
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   gap: 16px;
   margin-bottom: 14px;
}

.statistics-participant-count {
   display: flex;
   flex: 0 0 auto;
   align-items: baseline;
   gap: 6px;
   color: var(--muted);
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   white-space: nowrap;
}

.statistics-participant-count strong {
   color: var(--accent-strong);
}

.statistics-table-wrap {
   overflow-x: auto;
   border-radius: 12px;
   background: #eef5fb;
   color: #006aa8;
}

.statistics-table {
   width: 100%;
   border-collapse: collapse;
   color: inherit;
   font-size: 12px;
}

.statistics-table th,
.statistics-table td {
   padding: 5px 8px;
   border-bottom: 1px solid rgba(0, 106, 168, 0.22);
   text-align: left;
}

.statistics-table thead th {
   background: transparent;
   color: inherit;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 0.04em;
   text-transform: uppercase;
}

.statistics-table tbody tr:last-child th,
.statistics-table tbody tr:last-child td {
   border-bottom: 0;
}

.statistics-table tbody tr:hover th,
.statistics-table tbody tr:hover td {
   background: rgba(0, 106, 168, 0.08);
}

.statistics-table tbody th {
   color: inherit;
   font-weight: 800;
}

.statistics-rank,
.statistics-points {
   width: 1%;
   color: var(--accent-strong);
   font-variant-numeric: tabular-nums;
   font-weight: 800;
   white-space: nowrap;
}

.statistics-table td.statistics-points {
   font-size: 16px;
   text-align: right;
}

.statistics-table thead th:last-child {
   text-align: right;
   white-space: nowrap;
}

.statistics-notice {
   width: min(720px, 100%);
   margin-left: auto;
   margin-right: auto;
}

.member-watches-page {
   width: min(520px, 100%);
   margin: 0 auto;
}

.member-watches-push-status {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   margin: 0 0 20px;
   padding: 0 0 12px;
   border-bottom: 1px solid var(--line);
}

.member-watches-push-status p {
   min-width: 0;
   margin: 0;
   color: var(--muted);
   font-size: 12px;
   font-weight: 800;
   overflow-wrap: anywhere;
   text-transform: uppercase;
}

.member-watches-push-status.is-active {
   padding: 8px 10px;
   border: 1px solid #c9e0cd;
   border-radius: 4px;
   background: #f4faf4;
}

.member-watches-push-status.is-active p {
   color: #2f6b3b;
}

.member-watches-push-status.is-error p {
   color: #8c2d2d;
}

.member-watches-push-status.is-error {
   padding: 10px 12px;
   border: 1px solid #e0aaaa;
   border-left: 4px solid #c95757;
   border-radius: 4px;
   background: #fff5f5;
}

.member-watches-push-action {
   flex: 0 0 auto;
}

.member-watches-push-registration-form {
   display: none;
}

.member-watches-search-container {
   position: relative;
   margin-bottom: 8px;
}

.member-watches-search {
   display: flex;
   align-items: stretch;
   margin: 0;
}

.member-watches-search-field {
   flex: 1 1 auto;
   min-width: 0;
   margin: 0;
}

.member-watches-search-field input {
   min-height: 40px;
   background-color: #ffffff;
}

.member-watches-search-field input:focus {
   border-color: var(--line);
   outline: none;
   box-shadow: 0 0 0 2px rgba(0, 106, 168, 0.18);
}

.member-watches-search-results {
   position: absolute;
   z-index: 10;
   top: calc(100% + 4px);
   right: 0;
   left: 0;
   max-height: 420px;
   overflow-y: auto;
   border: 1px solid rgba(0, 106, 168, 0.45);
   border-radius: 4px;
   background: var(--surface);
   box-shadow:
      0 0 0 2px rgba(0, 106, 168, 0.18),
      0 10px 24px rgba(20, 22, 20, 0.12);
}

.member-watches-search-results[hidden] {
   display: none;
}

.member-watches-search-results .member-watch-results {
   border: 0;
   border-radius: 0;
}

.member-watches-search-results .member-watch-result {
   padding: 10px 16px 10px 12px;
}

.member-watches-search-status {
   margin: 0;
   padding: 12px 16px 12px 12px;
   color: var(--muted);
   font-size: 12px;
   font-weight: 700;
}

.member-watches-search-status.is-error {
   color: var(--accent-strong);
}

.member-watches-notification-settings {
   display: flex;
   align-items: stretch;
   width: 100%;
   margin: 0 0 20px;
   color: var(--muted);
   font-size: 12px;
   font-weight: 700;
}

.member-watches-notification-settings select {
   flex: 1 1 auto;
   width: 100%;
   min-height: 40px;
   padding: 5px 32px 5px 8px;
   border: 1px solid var(--line);
   border-radius: 3px;
   background-color: var(--subgrid-row);
   color: var(--text);
   font-family:
      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
   font-size: 13px;
   font-weight: 700;
   line-height: 1.25;
}

.member-watches-notification-settings select:focus {
   background-color: #ffffff;
}

.member-watches-section-title {
   margin: 20px 0 8px;
   color: var(--muted);
   font-size: 12px;
   font-weight: 800;
   text-transform: uppercase;
}

.member-watch-results {
   display: flex;
   flex-direction: column;
   gap: 6px;
   margin: 0;
   padding: 8px 8px 8px 0;
   border: 1px solid var(--line);
   border-left: 3px solid rgba(0, 106, 168, 0.35);
   border-radius: 4px;
   background: var(--subgrid-row);
   list-style: none;
   overflow: hidden;
}

.member-watch-result {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 12px 12px 12px 8px;
   border: 1px solid var(--line);
   border-radius: 3px;
   background: var(--surface);
}

@media (hover: hover) and (pointer: fine) {
   .member-watch-result[data-member-watch-add-row] {
      cursor: pointer;
      transition:
         border-color 120ms ease,
         background-color 120ms ease;
   }

   .member-watch-result[data-member-watch-add-row]:hover {
      border-color: var(--accent);
      background: var(--subgrid-row-hover);
   }
}

.member-watch-avatar {
   display: flex;
   flex: 0 0 40px;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border: 1px solid var(--line);
   border-radius: 50%;
   background: #f1f6fa;
   color: #ffcc00;
   overflow: hidden;
}

.member-watch-image-container {
   position: relative;
   flex: 0 0 40px;
   width: 40px;
   height: 40px;
}

.member-watch-image-link {
   text-decoration: none;
}

.member-watch-image-link:focus-visible {
   outline: 2px solid var(--accent-strong);
   outline-offset: 3px;
}

.member-watch-image-tooltip {
   position: absolute;
   z-index: 20;
   top: 50%;
   left: calc(100% - 1px);
   display: none;
   flex-direction: column;
   gap: 2px;
   width: max-content;
   max-width: 240px;
   padding: 6px 8px;
   border: 1px solid var(--line);
   border-radius: 3px;
   background: var(--surface);
   box-shadow: 0 8px 18px rgba(20, 22, 20, 0.16);
   color: var(--text);
   font-size: 11px;
   font-weight: 400;
   line-height: 1.25;
   white-space: normal;
   transform: translateY(-50%);
}

.member-watch-image-container:hover
   .member-watch-image-tooltip,
.member-watch-image-container:focus-within
   .member-watch-image-tooltip {
   display: flex;
}

.member-watch-image-tooltip a {
   color: var(--accent-strong);
}

.member-watch-avatar svg {
   width: 24px;
   height: 24px;
   opacity: 0.65;
}

.member-watch-avatar img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
}

.member-watch-name {
   flex: 1 1 auto;
   min-width: 0;
   overflow-wrap: anywhere;
   font-weight: 700;
}

.member-watch-information {
   color: var(--muted);
   font-size: 12px;
   font-weight: 400;
}

.member-watch-next-activity {
   display: block;
   margin-top: 3px;
   color: var(--muted);
   font-size: 10px;
   font-weight: 400;
   line-height: 1.25;
   overflow-wrap: anywhere;
}

.member-watch-action-form {
   flex: 0 0 auto;
   margin: 0;
}

.member-watch-already-added-label {
   flex: 0 0 auto;
   padding: 6px 10px;
   border: 1px solid var(--line);
   border-radius: 3px;
   background: var(--subgrid-row);
   color: var(--muted);
   font-size: 11px;
   font-weight: 800;
   white-space: nowrap;
}

.member-watch-action-button {
   min-height: 32px;
   padding: 0 12px;
   border: 1px solid var(--accent);
   border-radius: 3px;
   background: transparent;
   color: var(--accent);
   font: inherit;
   font-size: 12px;
   font-weight: 800;
   cursor: pointer;
}

.member-watch-action-button:hover {
   background: var(--accent);
   color: #ffffff;
}

.member-watch-remove-button {
   border-color: var(--line);
   color: var(--muted);
}

.member-watch-remove-button:hover {
   border-color: var(--muted);
   background: var(--muted);
   color: #ffffff;
}

.member-watches-empty {
   margin: 0;
   color: var(--muted);
   font-size: 12px;
   font-weight: 700;
   padding: 12px;
}

.public-install-promotion {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   width: min(974px, 100%);
   margin: 0 auto 20px;
   padding: 12px 14px;
   border: 1px solid var(--line);
   border-left: 4px solid #ffcc00;
   border-radius: 8px;
   background: var(--surface);
   color: var(--text);
}

.public-install-promotion[hidden] {
   display: none;
}

.public-install-message {
   margin: 0;
   font-size: 14px;
}

.public-install-actions {
   display: flex;
   flex: 0 0 auto;
   align-items: center;
   gap: 8px;
}

.public-install-button,
.public-install-dismiss {
   min-height: 36px;
   padding: 7px 12px;
   border-radius: 6px;
   font: inherit;
   font-size: 13px;
   font-weight: 700;
   cursor: pointer;
}

.public-install-button {
   border: 1px solid var(--accent);
   background: var(--accent);
   color: #ffffff;
}

.public-install-button:hover {
   background: var(--accent-strong);
}

.public-install-dismiss {
   border: 1px solid var(--line);
   background: transparent;
   color: var(--muted);
}

.public-install-dismiss:hover {
   border-color: var(--accent);
   color: var(--accent-strong);
}

.index-heading {
   display: flex;
   align-items: flex-start;
   justify-content: flex-start;
   gap: 18px;
   width: min(974px, 100%);
   margin-left: auto;
   margin-right: auto;
   margin-bottom: 28px;
}

.visually-hidden {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}

.index-heading-left {
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 12px;
   flex-wrap: wrap;
}

.sport-select {
   display: block;
   flex: 0 0 180px;
   position: relative;
   width: 180px;
   min-width: 180px;
}

.index-participants {
   flex: 0 0 auto;
   width: max-content;
   min-width: 0;
}

.index-participants-info {
   display: inline-flex;
   align-items: center;
   justify-content: flex-start;
   gap: 8px;
   width: max-content;
   min-height: 48px;
   padding: 7px 14px 7px 12px;
   border: 1px solid var(--line);
   border-left: 4px solid #ffcc00;
   border-radius: 8px;
   background: rgba(0, 106, 168, 0.06);
   color: var(--muted);
   font-size: 13px;
   font-weight: 700;
   line-height: 1.2;
}

.index-participants-count {
   color: var(--accent-strong);
   font-size: 21px;
   font-variant-numeric: tabular-nums;
   font-weight: 800;
}

.index-participants-value {
   margin-left: 0;
}

.index-participants-filter {
   text-decoration: none;
   transition:
      background 120ms ease,
      border-color 120ms ease,
      color 120ms ease;
}

.index-participants-filter:hover {
   border-color: rgba(0, 106, 168, 0.55);
   background: rgba(0, 106, 168, 0.12);
   color: var(--accent-strong);
}

.index-participants-filter:focus-visible {
   outline: 2px solid rgba(0, 106, 168, 0.45);
   outline-offset: 2px;
}

.index-participants-filter.is-selected {
   position: relative;
   border-color: var(--accent);
   border-left-color: #ffcc00;
   background: var(--accent);
   color: #ffcc00;
}

.index-participants-filter.is-selected::after {
   position: absolute;
   right: 6px;
   bottom: -9px;
   left: 6px;
   height: 3px;
   border-radius: 2px;
   background: var(--accent);
   content: "";
}

.index-participants-filter.is-selected .index-participants-count {
   color: #d8e7ef;
}

.date-select {
   flex: 0 0 220px;
   width: 220px;
   min-width: 220px;
}

.date-dropdown {
   position: relative;
   width: 100%;
}

.date-dropdown-toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   width: 100%;
   min-height: 48px;
   padding: 7px 17px 7px 20px;
   border: 1px solid rgba(255, 204, 0, 0.55);
   border-radius: 999px;
   background: #006aa8;
   box-shadow: 0 8px 18px rgba(20, 22, 20, 0.04);
   color: #ffcc00;
   font-size: 15px;
   font-weight: 800;
   line-height: 1.2;
   cursor: pointer;
}

.date-dropdown-toggle:hover {
   background: #005f98;
}

.date-dropdown-toggle:focus-visible {
   outline: 2px solid rgba(255, 204, 0, 0.35);
   outline-offset: 2px;
}

.date-dropdown-chevron {
   display: block;
   flex: 0 0 auto;
   position: absolute;
   top: 50%;
   right: 16px;
   width: 8px;
   height: 8px;
   border-right: 2px solid #ffcc00;
   border-bottom: 2px solid #ffcc00;
   transform: translateY(-65%) rotate(45deg);
   transition: transform 140ms ease;
}

.date-dropdown.is-open .date-dropdown-chevron {
   transform: translateY(-20%) rotate(225deg);
}

.date-dropdown-menu {
   display: grid;
   gap: 4px;
   position: absolute;
   z-index: 20;
   top: calc(100% + 7px);
   left: 0;
   width: 100%;
   min-width: 200px;
   padding: 7px;
   border: 1px solid rgba(0, 106, 168, 0.25);
   border-radius: 12px;
   background: #f7f9f7;
   box-shadow: 0 14px 30px rgba(0, 79, 128, 0.18);
}

.date-dropdown-menu[hidden] {
   display: none;
}

.date-dropdown-option {
   display: block;
   padding: 9px 11px;
   border-left: 3px solid transparent;
   border-radius: 7px;
   color: #397293;
   font-size: 13px;
   font-weight: 750;
   line-height: 16px;
   text-align: left;
   text-decoration: none;
   white-space: nowrap;
}

.date-dropdown-option:hover,
.date-dropdown-option:focus-visible {
   border-left-color: rgba(255, 204, 0, 0.72);
   background: rgba(0, 106, 168, 0.08);
   color: #004f80;
   outline: none;
}

.date-dropdown-option.is-selected {
   border-left-color: #ffcc00;
   background: #006aa8;
   color: #ffcc00;
}

.date-option-country-flag {
   display: block;
   flex: 0 0 auto;
   width: 16px;
   height: auto;
}

.date-option-content {
   display: inline-flex;
   align-items: center;
   flex-wrap: wrap;
   column-gap: 0.3em;
}

.date-dropdown-toggle .date-option-content {
   justify-content: center;
   width: 100%;
   text-align: center;
   transform: translateX(-5px);
}

.date-dropdown-toggle [data-date-option-fit] {
   flex-wrap: nowrap;
   min-width: 0;
   overflow: hidden;
}

.date-option-day,
.date-option-date {
   white-space: nowrap;
}

[data-date-option-fit] .date-option-day,
[data-date-option-fit] .date-option-date {
   flex-shrink: 0;
}

.date-option-label {
   display: inline-flex;
   column-gap: 0.3em;
}

.date-dropdown-option [data-date-option-fit] .date-option-label {
   min-width: 0;
   overflow: hidden;
}

.date-option-participant-count {
   display: inline-flex;
   align-items: center;
   gap: 3px;
   margin-left: 4px;
   white-space: nowrap;
}

.date-dropdown-option .date-option-content {
   display: grid;
   grid-template-columns: minmax(0, 1fr) 48px;
   column-gap: 4px;
   width: 100%;
}

.date-dropdown-option .date-option-participant-count {
   margin-left: 0;
}

.activity-agenda {
   --activity-time-column: 160px;
   --activity-time-gap: 14px;
   display: grid;
   gap: 24px;
   position: relative;
   width: min(974px, 100%);
   margin-left: auto;
   margin-right: auto;
}

.activity-agenda::before {
   position: absolute;
   z-index: 0;
   top: 15px;
   bottom: 15px;
   left: calc(
      var(--activity-time-column) + var(--activity-time-gap)
   );
   width: 2px;
   background: rgba(0, 106, 168, 0.28);
   content: "";
   transform: translateX(-2px);
}

.activity-now-marker {
   display: flex;
   align-items: center;
   gap: 12px;
   position: relative;
   z-index: 2;
   margin: 4px 0 2px;
   margin-left: calc(
      var(--activity-time-column) + var(--activity-time-gap)
   );
}

.activity-past-toggle-row,
.activity-tomorrow-link-row,
.activity-date-separator-row {
   display: flex;
   align-items: center;
   gap: 12px;
   position: relative;
   z-index: 2;
   margin: 0 0 6px;
   margin-left: calc(
      var(--activity-time-column) + var(--activity-time-gap)
   );
}

.activity-date-separator-row.is-watched {
   margin-top: 30px;
}

.activity-past-toggle-line,
.activity-tomorrow-link-line,
.activity-date-separator-line {
   flex: 1;
   height: 1px;
   background:
      linear-gradient(
         90deg,
         transparent,
         rgba(0, 106, 168, 0.22),
         transparent
      );
}

.activity-past-toggle-button,
.activity-tomorrow-link {
   display: inline-flex;
   align-items: center;
   padding: 7px 14px;
   border: 1px solid rgba(0, 106, 168, 0.45);
   border-radius: 999px;
   background: rgba(0, 106, 168, 0.14);
   color: var(--accent-strong);
   font: inherit;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.04em;
   white-space: nowrap;
   box-shadow: 0 8px 18px rgba(20, 22, 20, 0.04);
   cursor: pointer;
}

.activity-past-toggle-button:hover,
.activity-tomorrow-link:hover {
   border-color: rgba(0, 106, 168, 0.7);
   background: rgba(0, 106, 168, 0.22);
   color: var(--accent-strong);
}

.activity-past-toggle-button:focus-visible,
.activity-tomorrow-link:focus-visible {
   outline: 2px solid rgba(0, 106, 168, 0.45);
   outline-offset: 2px;
}

.activity-date-separator-label {
   display: inline-flex;
   align-items: center;
   padding: 7px 14px;
   border: 1px solid rgba(0, 106, 168, 0.32);
   border-radius: 999px;
   background: rgba(0, 106, 168, 0.08);
   color: var(--accent-strong);
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.04em;
   white-space: nowrap;
}

.activity-date-separator-label.is-today,
.activity-date-separator-label.is-watched {
   border-color: rgba(255, 204, 0, 0.45);
   background: rgba(255, 204, 0, 0.22);
   color: var(--accent);
   box-shadow: 0 8px 18px rgba(20, 22, 20, 0.04);
}

.activity-past-activities-hidden
   .activity-past-activity-hidden {
   display: none;
}

.activity-now-marker-line {
   flex: 1;
   height: 1px;
   background:
      linear-gradient(
         90deg,
         transparent,
         rgba(0, 106, 168, 0.22),
         transparent
      );
}

.activity-now-marker-badge {
   display: inline-flex;
   align-items: center;
   padding: 7px 14px;
   border: 1px solid rgba(255, 204, 0, 0.45);
   border-radius: 999px;
   background: rgba(255, 204, 0, 0.22);
   color: var(--accent);
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.04em;
   white-space: nowrap;
   box-shadow: 0 8px 18px rgba(20, 22, 20, 0.04);
}

.activity-agenda-section {
   --activity-phase-color: #f2c91f;
   --activity-phase-glow: rgba(242, 201, 31, 0.58);
   display: grid;
   grid-template-columns:
      var(--activity-time-column) minmax(0, 1fr);
   gap: var(--activity-time-gap);
   align-items: stretch;
   position: relative;
   z-index: 1;
}

.activity-day-phase-morning,
.activity-day-phase-evening {
   --activity-phase-color: #e9953f;
   --activity-phase-glow: rgba(233, 149, 63, 0.5);
}

.activity-day-phase-night {
   --activity-phase-color: #52618f;
   --activity-phase-glow: rgba(82, 97, 143, 0.55);
}

.activity-agenda-time {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 6px;
   padding-top: 4px;
}

.activity-time-row {
   display: flex;
   align-items: center;
   position: relative;
   z-index: 3;
   width: calc(100% + var(--activity-time-gap));
   transform: translateY(24px);
}

.activity-group-time-item {
   display: flex;
   align-items: center;
   position: relative;
   z-index: 3;
   width: calc(100% + var(--activity-time-gap));
   min-height: 43px;
   transform: translateY(20px);
}

.activity-group-time-item.has-ended .activity-time-badge {
   background: #e8ece7;
   color: var(--muted);
}

.activity-group-time-item.has-ended .activity-time-point::before {
   background: rgba(0, 106, 168, 0.38);
   box-shadow: none;
}

.activity-time-badge {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   min-height: 34px;
   padding: 0 14px;
   border-radius: 999px;
   background: var(--accent);
   color: #ffcc00;
   font-weight: 800;
   letter-spacing: 0.02em;
   white-space: nowrap;
}

.activity-time-value {
   font-size: 15px;
   font-variant-numeric: tabular-nums;
   letter-spacing: 0.04em;
}

.activity-time-connector {
   display: flex;
   flex: 1;
   align-items: center;
   min-width: 12px;
}

.activity-time-connector::before {
   position: relative;
   z-index: 1;
   width: 100%;
   height: 1px;
   background: rgba(0, 106, 168, 0.42);
   content: "";
   transform: translateX(4px);
}

.activity-time-point {
   display: block;
   flex: 0 0 18px;
   position: relative;
   z-index: 3;
   width: 18px;
   height: 18px;
   border-radius: 50%;
   background: #f7f9f7;
   transform: translateX(7px);
}

.activity-time-point::before {
   position: absolute;
   z-index: 2;
   inset: 3px;
   border-radius: 50%;
   background: var(--activity-phase-color);
   box-shadow: 0 0 7px var(--activity-phase-glow);
   content: "";
   transform: translateX(1px);
}

.activity-duration-rail {
   --activity-duration-color: var(--activity-phase-color);
   position: absolute;
   z-index: 2;
   top: 53px;
   bottom: 4px;
   left: calc(
      var(--activity-time-column) + var(--activity-time-gap) - 2px
   );
   width: 2px;
   min-height: 44px;
   color: var(--activity-duration-color);
   pointer-events: none;
}

.activity-duration-line {
   display: block;
   width: 3px;
   height: 100%;
   border-radius: 999px;
   background: currentColor;
   opacity: 0.72;
}

.activity-duration-end-point {
   position: absolute;
   bottom: -5px;
   left: 50%;
   width: 12px;
   height: 12px;
   border: 3px solid #f7f9f7;
   border-radius: 50%;
   background: currentColor;
   box-shadow: 0 0 0 1px currentColor;
   transform: translateX(-50%);
}

.activity-duration-end-time {
   position: absolute;
   right: 11px;
   bottom: -7px;
   padding: 2px 5px;
   border-radius: 5px;
   background: #f7f9f7;
   color: var(--muted);
   font-size: 11px;
   font-weight: 800;
   font-variant-numeric: tabular-nums;
   line-height: 1;
   white-space: nowrap;
}

.activity-is-ongoing {
   --activity-duration-color: #7d8589;
}

.activity-is-upcoming .activity-duration-rail,
.activity-has-ended .activity-duration-rail {
   --activity-duration-color: #006aa8;
}

.activity-is-ongoing .activity-duration-line {
   width: 3px;
   opacity: 0.78;
   box-shadow: 0 0 2px rgba(125, 133, 137, 0.1);
}

.activity-is-ongoing .activity-entry {
   border-color: #d8ad00;
   box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.18);
}

.activity-has-ended {
   opacity: 0.7;
}

.activity-has-ended .activity-entry {
   border-color: rgba(0, 106, 168, 0.5);
}

.activity-status-badge {
   display: inline-flex;
   position: absolute;
   z-index: 1;
   top: 13px;
   right: 54px;
   padding: 3px 8px;
   border-radius: 999px;
   font-size: 10px;
   font-weight: 900;
   letter-spacing: 0.04em;
   text-transform: uppercase;
}

.activity-ongoing-badge {
   background: rgba(255, 204, 0, 0.3);
   color: #755f00;
}

.activity-ongoing-dots {
   display: inline-block;
   width: 1.5em;
}

.activity-ongoing-dots::after {
   content: ".";
   animation: activity-ongoing-dots 2.4s steps(1, end) infinite;
}

@keyframes activity-ongoing-dots {
   0%,
   32% {
      content: ".";
   }

   33%,
   65% {
      content: "..";
   }

   66%,
   100% {
      content: "...";
   }
}

@media (prefers-reduced-motion: reduce) {
   .activity-ongoing-dots::after {
      animation: none;
      content: "...";
   }
}

.activity-ended-badge {
   background: rgba(0, 106, 168, 0.14);
   color: #004f80;
}

.activity-is-ongoing .activity-entry-organization,
.activity-has-ended .activity-entry-organization {
   padding-right: 125px;
}

.activity-agenda-items {
   display: grid;
   gap: 10px;
   align-self: stretch;
   min-width: 0;
   padding-left: 14px;
   max-width: 800px;
}

.activity-entry {
   position: relative;
   min-width: 0;
   padding: 12px 14px;
   border: 2px solid #006aa8;
   border-radius: 12px;
   background: #eef5fb;
   color: #006aa8;
   box-shadow: 0 1px 0 rgba(20, 22, 20, 0.02);
   font-size: 13px;
   line-height: 1.35;
}

.activity-entry h2,
.activity-entry p,
.activity-entry span {
   color: inherit;
}

.activity-entry-organization,
.activity-entry-title {
   padding-right: 42px;
}

.activity-entry-organization {
   margin-top: 0px;
   margin-bottom: 0px;
   color: #397293;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.025em;
   line-height: 1.2;
}

.activity-organization-portrait {
   display: none;
}

.activity-organization-canonical {
   margin-left: 0.2em;
}

.activity-entry-title {
   position: relative;
   min-width: 0;
   margin-top: 4px;
   margin-bottom: 0px;
   color: #004f80;
   font-size: 19px;
   font-weight: 850;
   letter-spacing: -0.01em;
   line-height: 1.16;
}

.activity-entry-title + p {
   margin-top: 4px;
}

.activity-channel-list {
   display: flex;
   flex-wrap: wrap;
   gap: 5px;
   margin-top: 7px;
}

.activity-time-channel-list {
   flex-direction: column;
   align-items: flex-start;
   justify-content: flex-start;
   max-width: calc(100% - 8px);
   margin: 27px 0 0 4px;
}

.activity-agenda-section-grouped .activity-time-channel-list {
   margin-top: 23px;
}

.activity-channel-chip {
   display: inline-flex;
   align-items: center;
   min-height: 21px;
   padding: 2px 8px;
   border: 1px solid rgba(0, 106, 168, 0.24);
   border-radius: 999px;
   background: rgba(255, 255, 255, 0.72);
   color: #397293;
   font-size: 10px;
   font-weight: 800;
   line-height: 1.2;
   white-space: nowrap;
}

.activity-channel-chip-link {
   gap: 3px;
   color: var(--accent-strong);
   text-decoration: none;
}

.activity-channel-chip-stream-icon {
   width: 9px;
   height: 9px;
   flex: 0 0 9px;
   fill: currentColor;
}

.activity-channel-chip-link:hover {
   border-color: var(--accent-strong);
   background: rgba(0, 106, 168, 0.08);
}

.activity-channel-chip-link:focus-visible {
   outline: 2px solid rgba(0, 106, 168, 0.45);
   outline-offset: 2px;
}

.activity-group-schedule {
   display: grid;
   gap: 8px;
   margin: 12px 0 0;
   padding: 0;
   list-style: none;
}

.activity-group-schedule-item {
   display: grid;
   grid-template-columns: auto minmax(0, 1fr);
   gap: 3px 10px;
   align-items: center;
   min-width: 0;
   min-height: 43px;
   padding: 7px 9px;
   border: 1px solid rgba(0, 106, 168, 0.22);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.5);
}

.activity-group-schedule-item.has-ended {
   opacity: 0.62;
}

.activity-group-schedule-item.is-ongoing {
   border-color: #ffcc00;
   background: rgba(255, 204, 0, 0.12);
   opacity: 1;
}

.activity-group-slot-time {
   font-weight: 850;
   font-variant-numeric: tabular-nums;
   white-space: nowrap;
}

.activity-group-slot-content {
   min-width: 0;
   overflow: hidden;
}

.activity-group-slot-title {
   display: block;
   min-width: 0;
   max-width: 100%;
   overflow: hidden;
   font-weight: 750;
}

.activity-group-slot-participants {
   display: none;
   margin-left: 0.25em;
   font-weight: 500;
}

.activity-group-slot-channel-list {
   margin-top: 4px;
}

.activity-group-schedule-item.has-tv-channels {
   grid-template-rows: auto auto;
}

.activity-group-schedule-item.has-tv-channels
   .activity-group-slot-channel-list {
   grid-column: 1 / -1;
   grid-row: 1;
   margin: 0 0 1px;
}

.activity-group-schedule-item.has-tv-channels
   .activity-group-slot-time {
   grid-column: 1;
   grid-row: 2;
}

.activity-group-schedule-item.has-tv-channels
   .activity-group-slot-content {
   grid-column: 2;
   grid-row: 2;
}

.activity-group-slot-description {
   margin-left: 5px;
   color: var(--muted);
   font-size: 11px;
   line-height: 1.35;
}

.activity-group-description {
   margin-bottom: 0;
}

.activity-entry .activity-meta {
   color: #004f80;
}

.activity-participant-table-wrap {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   margin-top: 12px;
}

.activity-participant-table-frame {
   width: 100%;
   overflow-x: auto;
}

.activity-participant-name {
   font-weight: 750;
}

.activity-participant-watched {
   background: transparent;
}

.activity-participant-watched .activity-participant-name {
   color: inherit;
   font-weight: 850;
}

.activity-participant-watched-badge {
   display: inline-flex;
   align-items: center;
   margin-left: 6px;
   padding: 1px 5px;
   border: 1px solid rgba(0, 106, 168, 0.45);
   border-radius: 999px;
   background: rgba(0, 106, 168, 0.1);
   color: var(--accent-strong);
   font-size: 9px;
   font-weight: 800;
   line-height: 1.2;
   white-space: nowrap;
   vertical-align: 1px;
}

.activity-participant-col-start-time {
   width: 1%;
   white-space: nowrap;
}

.activity-participant-start-time-link {
   color: inherit;
   text-decoration: underline;
}

.activity-participant-start-time-link:hover {
   color: var(--accent-strong);
}

.activity-participant-col-discipline {
   width: 1%;
   white-space: nowrap;
}

.activity-team-name-portrait {
   display: none;
}

.activity-team-name-landscape {
   display: inline;
}

.activity-participant-out-badge {
   display: inline-flex;
   margin-left: 6px;
   padding: 1px 5px;
   border: 1px solid currentColor;
   border-radius: 999px;
   font-size: 9px;
   font-weight: 800;
   line-height: 1.2;
}

.activity-participant-watch-priority-badge {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 15px;
   height: 15px;
   margin-left: 5px;
   border: 1px solid rgba(138, 101, 0, 0.55);
   border-radius: 999px;
   background: rgba(255, 204, 0, 0.2);
   color: var(--warning);
   font-size: 9px;
   font-weight: 800;
   line-height: 1;
   vertical-align: 1px;
}

.activity-participant-table {
   width: 100%;
   min-width: 540px;
   border-collapse: collapse;
   color: inherit;
   font-size: 12px;
}

.activity-participant-table th,
.activity-participant-table td {
   padding: 5px 8px;
   border-bottom: 1px solid rgba(0, 106, 168, 0.22);
   text-align: left;
   vertical-align: top;
}

.activity-participant-table th {
   font-size: 11px;
   text-transform: uppercase;
}

.activity-participant-table th button {
   padding: 0;
   border: 0;
   background: transparent;
   color: inherit;
   font: inherit;
   text-transform: inherit;
   cursor: pointer;
}

.activity-participant-table th button::after {
   content: " ↕";
   opacity: 0.55;
}

.activity-participant-table th[aria-sort="ascending"] button::after {
   content: " ↑";
   opacity: 1;
}

.activity-participant-table th[aria-sort="descending"] button::after {
   content: " ↓";
   opacity: 1;
}

.activity-participant-table-collapsed
   .activity-participant-row-collapsed {
   display: none;
}

.activity-participant-table-inactive-collapsed
   .activity-participant-inactive:not(.activity-participant-watched) {
   display: none;
}

.activity-participant-toggle {
   display: inline-block;
   padding: 0;
   border: 0;
   background: transparent;
   color: var(--accent);
   font: inherit;
   font-size: 12px;
   font-weight: 800;
   text-align: center;
   text-decoration: underline;
   cursor: pointer;
}

.activity-participant-toggle:hover {
   color: var(--accent-strong);
}

.activity-participant-toggle:focus-visible {
   outline: 2px solid rgba(0, 106, 168, 0.45);
   outline-offset: 2px;
}

.activity-sources {
   margin: 12px 0 0 10px;
   color: #397293;
   font-size: 10px;
   line-height: 1.3;
}

.activity-sources-toggle {
   display: inline-flex;
   padding: 0;
   color: inherit;
   font-size: inherit;
   font-weight: 800;
   text-decoration: underline;
   cursor: pointer;
   list-style: none;
}

.activity-sources-toggle::-webkit-details-marker {
   display: none;
}

.activity-sources-toggle::after {
   content: "+";
}

.activity-sources[open] .activity-sources-toggle::after {
   content: "−";
}

.activity-sources-toggle:hover {
   color: var(--accent-strong);
}

.activity-sources-toggle:focus-visible {
   outline: 2px solid rgba(0, 106, 168, 0.45);
   outline-offset: 2px;
}

.activity-sources-table {
   width: 100%;
   margin-top: 6px;
   border-collapse: collapse;
   text-align: left;
}

.activity-sources-table td {
   padding: 3px 8px 3px 0;
   text-align: left;
   vertical-align: top;
}

.activity-source-kind {
   width: 1%;
   white-space: nowrap;
   font-weight: 800;
}

.activity-source-kind::after {
   content: ":";
}

.activity-source-link {
   min-width: 0;
   color: inherit;
   overflow-wrap: anywhere;
}

.participant-country-flag {
   display: block;
   width: 16px;
   height: auto;
}

.activity-meta {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 6px;
   margin-bottom: 3px;
   color: var(--muted);
   font-size: 11px;
   font-weight: 700;
   line-height: 1.2;
   text-transform: uppercase;
}

.activity-entry-sport-icon {
   display: inline-block;
   position: absolute;
   top: 13px;
   right: 14px;
   width: 42px;
   height: 42px;
   background-color: #006aa8;
   mask-image: var(--sport-icon-url);
   mask-position: center;
   mask-repeat: no-repeat;
   mask-size: contain;
   -webkit-mask-image: var(--sport-icon-url);
   -webkit-mask-position: center;
   -webkit-mask-repeat: no-repeat;
   -webkit-mask-size: contain;
}

.activity-entry-sport-country-tag {
   display: block;
   position: absolute;
   z-index: 2;
   top: 42px;
   right: 8px;
   box-sizing: border-box;
   width: 24px;
   height: 15px;
   border: 2px solid #ffffff;
   border-radius: 3px;
   background: #ffffff;
   box-shadow: 0 1px 2px rgba(20, 22, 20, 0.28);
   object-fit: cover;
   pointer-events: none;
}

.activity-entry-sport-country-tag-symbol {
   top: 34px;
   right: 12px;
   width: 22px;
   height: 29px;
   border: 0;
   background: transparent;
   box-shadow: none;
   object-fit: contain;
}

.activity-teaser {
   color: var(--muted);
   font-size: 12px;
   font-weight: 400;
   line-height: 1.35;
}

@media (max-width: 720px) {
   .public-install-promotion {
      flex-direction: column;
      align-items: stretch;
   }

   .public-install-actions {
      justify-content: flex-end;
   }

   .index-heading {
      width: 100%;
   }

   .activity-agenda {
      --activity-time-column: 125px;
      --activity-time-gap: 8px;
   }

   .activity-agenda-section {
      align-items: start;
   }

   .activity-agenda-time {
      padding-top: 2px;
   }

   .activity-agenda-items {
      padding-left: 10px;
   }

   .activity-now-marker {
      display: none;
   }
}

@media (orientation: portrait), (max-width: 720px) {
   .index-heading-left {
      width: 100%;
   }

   .date-select {
      flex: 1.1 1 0;
      width: auto;
      min-width: 140px;
   }

   .sport-select {
      flex: 0.9 1 0;
      width: auto;
      min-width: 140px;
   }

}

@media (orientation: portrait) {
   .index-heading-watched .index-heading-left {
      width: 100%;
   }

   .index-heading-watched .sport-select {
      flex: 1 1 auto;
      width: 100%;
      min-width: 0;
   }
}

.sport-dropdown-toggle {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 10px;
   position: relative;
   width: 100%;
   min-height: 48px;
   padding: 7px 14px 7px 16px;
   border: 1px solid rgba(255, 204, 0, 0.55);
   border-radius: 999px;
   background: #006aa8;
   color: #ffcc00;
   font-size: 15px;
   font-weight: 800;
   line-height: 1.2;
   cursor: pointer;
}

.sport-dropdown-toggle:hover {
   background: #005f98;
}

.sport-dropdown-toggle:focus-visible {
   outline: 2px solid rgba(255, 204, 0, 0.35);
   outline-offset: 2px;
}

.sport-option-content {
   display: flex;
   align-items: baseline;
   justify-content: center;
   gap: 5px;
   width: 100%;
   min-width: 0;
   text-align: center;
   transform: translateX(-5px);
}

.sport-option-name {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.sport-option-count {
   flex: 0 0 auto;
   color: #d8e7ef;
   font-variant-numeric: tabular-nums;
}

.sport-dropdown-chevron {
   display: block;
   position: absolute;
   top: 50%;
   right: 16px;
   width: 8px;
   height: 8px;
   border-right: 2px solid #ffcc00;
   border-bottom: 2px solid #ffcc00;
   transform: translateY(-65%) rotate(45deg);
   transition: transform 140ms ease;
}

.sport-select.is-open .sport-dropdown-chevron {
   transform: translateY(-20%) rotate(225deg);
}

.sport-dropdown-menu {
   display: none;
   gap: 7px;
   position: absolute;
   z-index: 20;
   top: calc(100% + 7px);
   left: 0;
   width: 100%;
   padding: 7px;
   border: 1px solid rgba(0, 106, 168, 0.25);
   border-radius: 12px;
   background: #f7f9f7;
   box-shadow: 0 14px 30px rgba(0, 79, 128, 0.18);
}

.sport-select.is-open .sport-dropdown-menu {
   display: grid;
}

.sport-dropdown-menu .index-participants {
   width: 100%;
}

.sport-dropdown-menu .index-participants-info {
   display: grid;
   grid-template-columns: minmax(0, 1fr) auto;
   gap: 8px;
   width: 100%;
   min-height: 40px;
   padding: 5px 12px 5px 10px;
   border: 1px solid var(--line);
   border-left: 4px solid #ffcc00;
   border-radius: 8px;
   background: rgba(0, 106, 168, 0.06);
   color: var(--muted);
   font-size: 13px;
   font-weight: 700;
   line-height: 1.2;
}

.sport-dropdown-menu .index-participants-filter:hover,
.sport-dropdown-menu .index-participants-filter:focus-visible {
   border-color: rgba(0, 106, 168, 0.55);
   border-left-color: #ffcc00;
   background: rgba(0, 106, 168, 0.12);
   color: var(--accent-strong);
   outline: 2px solid rgba(0, 106, 168, 0.45);
   outline-offset: 2px;
}

.sport-dropdown-menu .index-participants-filter.is-selected {
   border-color: var(--accent);
   border-left-color: #ffcc00;
   background: #006aa8;
   color: #ffcc00;
}

.sport-dropdown-menu .index-participants-filter.is-selected::after {
   display: none;
}

.sport-dropdown-menu .index-participants-count {
   color: inherit;
   font-size: 15px;
}

.sport-country-flag {
   display: block;
   flex: 0 0 auto;
   width: 16px;
   height: auto;
}

.sport-option-content .sport-country-flag {
   align-self: center;
}

.sport-dropdown-menu .sport-country-row {
   grid-template-columns: auto auto 1fr;
}

.sport-dropdown-menu .sport-country-row .index-participants-count {
   justify-self: end;
}

@media (orientation: portrait), (max-width: 720px) {
   .activity-agenda {
      --activity-time-column: 112px;
      --activity-time-gap: 6px;
   }

   .activity-organization-landscape {
      display: none;
   }

   .activity-organization-portrait {
      display: inline;
   }

   .activity-team-name-landscape {
      display: none;
   }

   .activity-team-name-portrait {
      display: inline;
   }

   .activity-now-marker {
      display: flex;
   }

   .activity-now-marker-badge {
      padding: 5px 10px;
      font-size: 10px;
   }

   .activity-is-ongoing .activity-entry,
   .activity-has-ended .activity-entry {
      padding-top: 52px;
   }

   .activity-status-badge {
      right: auto;
      left: 14px;
   }

   .activity-entry-sport-icon {
      right: 14px;
      left: auto;
   }

   .activity-agenda-section-grouped
      .activity-group-schedule-item {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 3px 10px;
   }

   .activity-agenda-section-grouped
      .activity-group-slot-time {
      display: block;
      flex: 0 0 auto;
   }

   .activity-agenda-section-grouped
      .activity-group-slot-content {
      display: block;
      flex: 1 1 auto;
      min-width: 0;
   }

   .activity-agenda-section-grouped
      .activity-group-schedule-item.has-tv-channels {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      grid-template-rows: auto auto;
   }

   .activity-agenda-section-grouped
      .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-channel-list {
      display: flex;
      flex-wrap: wrap;
      min-width: 0;
      max-width: 100%;
      grid-column: 1 / -1;
      grid-row: 2;
      justify-content: flex-start;
      margin: 0;
   }

   .activity-agenda-section-grouped
      .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-time {
      grid-column: 1;
      grid-row: 1;
   }

   .activity-agenda-section-grouped
      .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-content {
      grid-column: 2;
      grid-row: 1;
   }

   .activity-agenda-section-grouped
      .activity-group-slot-title {
      white-space: nowrap;
   }

   .activity-agenda-section-grouped
      .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-content {
      flex: 1 1 auto;
   }

   .activity-is-ongoing .activity-entry-organization,
   .activity-has-ended .activity-entry-organization {
      max-width: none;
      padding-right: 0;
      overflow: visible;
      text-overflow: clip;
      white-space: normal;
   }
}

@media (orientation: landscape) and (min-width: 721px) {
   .sport-select {
      flex: 0 0 220px;
      width: 220px;
      min-width: 220px;
   }

   .activity-status-badge {
      top: 18px;
      right: 68px;
   }

   .activity-group-schedule-item.has-tv-channels {
      grid-template-columns: auto minmax(0, 1fr) auto;
      grid-template-rows: auto;
   }

   .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-channel-list {
      grid-column: 3;
      grid-row: 1;
      justify-content: flex-end;
      margin: 0;
   }

   .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-time {
      grid-column: 1;
      grid-row: 1;
   }

   .activity-group-schedule-item.has-tv-channels
      .activity-group-slot-content {
      grid-column: 2;
      grid-row: 1;
   }

   .activity-group-slot-participants {
      display: inline;
   }
}

@media (max-width: 600px) and (orientation: portrait),
   (max-width: 720px) {
   .activity-group-slot-description {
      display: none;
   }

   .activity-group-description {
      display: none;
   }

   .activity-participant-table {
      min-width: 0;
   }

   .activity-participant-table th,
   .activity-participant-table td {
      padding: 5px 2px;
   }

   .activity-participant-col-club,
   .activity-participant-col-country {
      display: none;
   }

   .activity-participant-col-age {
      width: 1%;
      white-space: nowrap;
   }

   .activity-participant-table-has-represented
      .activity-participant-col-age {
      display: none;
   }

   .activity-participant-table-has-start-time
      .activity-participant-col-age {
      display: none;
   }

   .activity-participant-table-has-discipline
      .activity-participant-col-age {
      display: none;
   }
}

@media (max-width: 720px) and (orientation: portrait) {
   .activity-group-description {
      display: block;
   }
}

@media (max-width: 720px) {
   .about-letter {
      padding: 32px 24px;
      font-size: 17px;
   }

   .statistics-heading {
      flex-direction: column;
   }

   .statistics-heading-controls {
      flex-direction: row;
      width: 100%;
   }

   .statistics-heading .statistics-month-select {
      flex: 1 1 0;
      width: auto;
      min-width: 140px;
   }

   .statistics-heading .statistics-sport-select {
      flex: 1 1 0;
      width: auto;
      min-width: 140px;
   }

   .statistics-card-heading {
      align-items: center;
   }
}
