@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --gray-light: #9e9e9e;
  --link-video-img: #80343b;
  --gray-dark: #525252;
  --white-table: #E5E4E2;
  --red-old: #BF2633;
  --blue-original: #1570BF;
  --gray-odd: #e8eced;
  --gray-even: #e8eced50;
  --box-shadow: rgba(5, 57, 94, .5);
  --box-shadow-second: rgba(5, 57, 94, .05);
  --white-text: #fff;
  --table-header: #292C69;
  --yellow: #b5c8e8;
  --bluegreen: #01A2B1;
  --bluegreen-light: #00AAAB;
  --red: #D71D45;
  --red-light: #EF3E56;
  --blue: #005B7F;
  --orange: #F0562B;
  --gray: #D1D3D4;
  --gray-light: #E6E7E8;
  --gray-head-table: #777;
  --black: #000;
  --main-border-radius: 7px;
  --second-border-radius: 9px;
  --font-lato: "Lato", sans-serif;
  --font-bold: 400;
  --font-bolder: 700;
}

* {
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
  font-family: var(--font-lato);
}

a {
  color: var(--blue-original);
}
a:visited {
  color: var(--blue-original);
}

#hockey {
  display: none;
  max-height: 70vh;
  overflow: auto;
}
#hockey > div {
  margin: 0 0.5rem;
}

#main {
  max-height: 70vh;
  overflow: auto;
}
#main > div {
  margin: 0 0.5rem;
}

.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  max-width: 1320px;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.frame {
  margin-top: 2em;
  display: flex;
  justify-content: center;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  flex-wrap: wrap;
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.column {
  flex: 0 0 auto;
  width: 16.66666667%;
}

h1 {
  font-size: 1.7rem;
  margin-left: 26px;
}

h2 {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  margin-left: 26px;
}

header {
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0.5rem;
}
header > div {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  box-shadow: 1px 3px 8px var(--box-shadow);
  border: 1px solid var(--white-table);
  border-radius: var(--main-border-radius);
  -webkit-border-radius: var(--main-border-radius);
  -moz-border-radius: var(--main-border-radius);
  -ms-border-radius: var(--main-border-radius);
  -o-border-radius: var(--main-border-radius);
}
header > div > button {
  padding: 0.5rem;
  background: var(--gray-even);
  border: none;
  border-right: 1px solid var(--white-table);
}
header > div > button:last-child {
  border-right: none;
}
header > div > button:hover {
  background: var(--gray-odd);
  cursor: pointer;
}

.nav-wrapper {
  margin: 1rem 0.5rem 0 0.5rem;
  display: grid;
  grid-template-columns: 50% 50%;
  border-top-left-radius: var(--main-border-radius);
  border-top-right-radius: var(--main-border-radius);
  border-top: 1px solid var(--white-table);
  border-left: 1px solid var(--white-table);
  border-right: 1px solid var(--white-table);
  background: var(--gray-even);
  box-shadow: 1px 3px 8px var(--box-shadow);
}
.nav-wrapper > button {
  border: none;
  background: none;
  font-size: 1.05rem;
  padding: 1rem 0;
}
.nav-wrapper > button:first-child {
  border-top-left-radius: var(--main-border-radius);
}
.nav-wrapper > button:last-child {
  border-left: 1px solid var(--white-table);
  border-top-right-radius: var(--main-border-radius);
}
.nav-wrapper > button:hover {
  background: var(--gray-odd);
  cursor: pointer;
}

.table-header {
  margin: 0 0.5rem;
  font-weight: var(--font-bolder);
  background: var(--table-header);
  border: 1px solid var(--table-header);
  border-bottom: none;
  list-style: none;
  display: grid;
  color: var(--white-text);
  grid-template-columns: 20% 20% 30% 15% 15%;
  box-shadow: 1px 3px 8px var(--box-shadow);
}
.table-header > li {
  padding: 1rem;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--white-table);
}
.table-header > li:last-child {
  border-right: none;
}

.main-section {
  margin: 1rem 0rem;
  border-radius: var(--main-border-radius);
  -webkit-border-radius: var(--main-border-radius);
  -moz-border-radius: var(--main-border-radius);
  -ms-border-radius: var(--main-border-radius);
  -o-border-radius: var(--main-border-radius);
  box-shadow: 1px 3px 8px var(--box-shadow);
}
.main-section:first-child {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.main-section:first-child > .category {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: var(--second-border-radius);
  border-bottom-right-radius: var(--second-border-radius);
}
.main-section:first-child > .category > div {
  border-bottom: none;
}

.category {
  display: grid;
  grid-template-columns: 70% 15% 15%;
  border-top-right-radius: var(--second-border-radius);
  border-top-left-radius: var(--second-border-radius);
}
.category > div {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--white-table);
  border-bottom: 1px solid var(--white-table);
}
.category > div:first-child {
  font-size: 1.05rem;
  font-weight: var(--font-bolder);
}
.category > div:first-child > a {
  color: var(--black);
}
.category > div:first-child > a:visited {
  color: var(--black);
}
.category > div:last-child {
  border-right: none;
}

.section-title {
  padding: 8px 16px;
  font-size: 1.05rem;
  font-weight: var(--font-bolder);
}

.item-row {
  display: grid;
  grid-template-columns: 20% 20% 30% 15% 15%;
  background-color: var(--gray-even);
}
.item-row:nth-child(odd) {
  background-color: var(--gray-odd);
}
.item-row > div {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--white-table);
}
.item-row > div:first-child {
  font-weight: var(--font-bold);
  color: var(--red-old);
}
.item-row > div:last-child {
  border-right: none;
}
.item-row > div:nth-child(1) {
  grid-column: span 1;
}
.item-row > div:nth-child(2) {
  grid-column: span 1;
}
.item-row > div:nth-child(3) {
  grid-column: span 1;
  font-style: italic;
}
.item-row > div:nth-child(4) {
  grid-column: span 1;
}
.item-row > div:nth-child(5) {
  grid-column: span 1;
}

.border-bottom-radius-10 {
  border-bottom-left-radius: var(--main-border-radius);
  border-bottom-right-radius: var(--main-border-radius);
}

.video-img-wrapper > a {
  color: var(--link-video-img);
}
.video-img-wrapper > a:visited {
  color: var(--link-video-img);
}

.video-img-wrapper-category > a {
  color: var(--black);
}
.video-img-wrapper-category > a:visited {
  color: var(--black);
}

@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
  .column {
    flex: 0 0 auto;
    width: 20% !important;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .column {
    flex: 0 0 auto;
    width: 25% !important;
  }
}
@media (max-width: 992px) {
  body {
    overflow: auto;
  }
  #hockey,
  #main {
    overflow: initial;
    max-height: none;
  }
  .container {
    max-width: 720px;
  }
  .column {
    flex: 0 0 auto;
    width: 33.33333333% !important;
  }
  .table-header {
    display: none;
  }
  .main-section:first-child > .category > div {
    border-right: 0;
  }
  .category {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
  }
  .category > div:nth-child(1) {
    border-right: 0;
    border-bottom: 0;
    justify-content: center;
    grid-column: 1/span 2;
    grid-row: 1/span 1;
  }
  .category > div:nth-child(2) {
    border-right: 0;
    justify-content: center;
    grid-column: 1/span 1;
    grid-row: 2/span 1;
  }
  .category > div:nth-child(3) {
    justify-content: center;
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
  .section-title {
    text-align: center;
  }
  .item-row {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto auto;
  }
  .item-row > div {
    border-right: 0;
  }
  .item-row > div:nth-child(1) {
    font-size: 1.02rem;
    grid-column: 1/span 2;
  }
  .item-row > div:nth-child(2) {
    font-size: 0.95rem;
    grid-column: 1/span 2;
    grid-row: 2/span 1;
  }
  .item-row > div:nth-child(3) {
    font-size: 0.9rem;
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
  .item-row > div:nth-child(4) {
    justify-content: center;
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .item-row > div:nth-child(5) {
    justify-content: center;
    grid-column: 2/span 1;
    grid-row: 4/span 1;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  .column {
    flex: 0 0 auto;
    width: 50% !important;
  }
}