.inf-page-header, .inf-page-body, .inf-page-footer, .inf-page-single-table-row img, .inf-page-footer-race-time-text, .inf-data-lap, .inf-data-speed, .inf-data-race-time, .inf-data-name, .inf-data-bib, .inf-data-rank, .inf-data-car, .inf-page-single-table, .inf-page-single-table-row, .inf-page-single-table-row-header, .inf-page-single-table-row-item, .inf-page-single-table-row-header-item, .inf-page-single-table-row-header-item-first, .inf-page-single-table-row-header-item-last {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.inf-page-footer-race-time-text, .inf-data-lap, .inf-data-speed, .inf-data-race-time, .inf-data-name, .inf-data-bib, .inf-data-rank, .inf-data-car, .inf-page-single-table, .inf-page-single-table-row, .inf-page-single-table-row-header, .inf-page-single-table-row-item, .inf-page-single-table-row-header-item, .inf-page-single-table-row-header-item-first, .inf-page-single-table-row-header-item-last {
  display: grid;
  place-items: center;
  place-content: center;
  font-size: inherit;
}

:root {
  --info-system-single_table_row_count: 25;
  --info-system-meeting-country-flag: "";
}

@font-face {
  font-family: "Open Sans Condensed Light";
  src: url("/fonts/open_sans/OpenSans_Condensed-Light.ttf") format("truetype"); /* Adjust the format if necessary */
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans Condensed Normal";
  src: url("/fonts/open_sans/OpenSans_Condensed-Regular.ttf") format("truetype"); /* Adjust the format if necessary */
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans SemiCondensed Regular";
  src: url("/fonts/open_sans/OpenSans_SemiCondensed-Regular.ttf") format("truetype"); /* Adjust the format if necessary */
  font-weight: 300;
  font-style: normal;
}
.inf-page {
  width: 100vw;
  height: 100vh;
  margin: 0;
  font-size: 2vh;
}

.inf-page-header {
  font-size: 4vh;
}

.inf-page-body {
  font-size: 2vh;
}

/* data */
.inf-page-single-table-row-header-item-last, .inf-page-single-table-row-header-item-first, .inf-page-single-table-row-header-item, .inf-page-single-table-row-item, .inf-page-single-table-row-header, .inf-page-single-table-row, .inf-page-single-table, .inf-data-car, .inf-data-rank, .inf-data-bib, .inf-data-name, .inf-data-race-time, .inf-data-speed, .inf-data-lap {
  font-size: 2.5vh;
  text-transform: uppercase;
}

.inf-data-name {
  justify-content: start;
}

.content-to-transform {
  display: inherit;
}

/* single table */
.inf-page-single-table {
  grid-template-columns: 100%;
  grid-template-rows: repeat(var(--info-system-single_table_row_count), calc(100% / var(--info-system-single_table_row_count)));
  color: var(--info-system-main-color);
}

.inf-page-single-table-row {
  grid-template-rows: 100%;
  overflow: visible;
}

.inf-page-single-table-row img {
  object-fit: scale-down;
}

.inf-page-single-table-row-header {
  grid-template-rows: 100%;
  overflow: visible;
}

.inf-page-single-table-row:nth-child(odd) {
  background-color: var(--info-system-background-color);
}

.inf-page-single-table-row:nth-child(even) {
  background-color: #1B1612;
}

.inf-page-single-table-row-header-item-first {
  margin-left: -20%;
  padding-left: 20%;
  width: 120%;
}

.inf-page-single-table-row-header-item-last {
  margin-right: -20%;
  padding-right: 20%;
  width: 120%;
}

@keyframes fadeHotIcon {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.hot-icon {
  animation: fadeHotIcon 120s linear forwards;
  filter: invert(75%) sepia(92%) saturate(1812%) hue-rotate(360deg) brightness(105%) contrast(105%);
  height: 60% !important;
  width: auto !important;
}
