:host {
  display: block;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  margin: 10px auto;
}
:host h2 {
  color: var(--header-color);
  margin: var(--header-margins);
  display: var(--header-display);
}
:host .items {
  display: flex;
  flex-wrap: wrap;
  margin: -2px;
}
:host .items .stats {
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  width: 100%;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
}
:host .items .stats:before {
  content: " ";
  display: block;
  background: rgba(0, 0, 0, 0.1);
  height: 5px;
  width: 100%;
}
:host .items .stats:after {
  content: " ";
  display: block;
  background: rgba(0, 0, 0, 0.1);
  height: 5px;
  width: 100%;
}
:host .items .stats .row {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
:host .items .stats .row:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
:host .items .stats .row .side {
  flex: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
}
:host .items .stats .row .side div {
  padding: 5px;
}
:host .items .stats .row .side b {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.85);
}
:host .items .stats .row .side:last-of-type {
  text-align: right;
  flex-direction: row-reverse;
}
:host .items .stats .row .side .mini-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
:host .items .stats .row .side .mini-score ftb-team-logo {
  height: 20px;
  margin-top: 7px;
  margin-bottom: -2px;
  --placeholder-fill: rgba(255, 255, 255, 0.7);
}
:host .items .stats .row .side .mini-score .score {
  font-size: 12px;
  font-weight: 600;
}
:host .items .stats .row .side .mini-score:hover .score {
  text-decoration: underline;
}
:host .items .stats .row .center {
  max-width: 120px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
:host .items ftb-game-card {
  flex: 1;
  margin: 0 1px;
  max-width: 498px;
  min-width: 350px;
}
:host .items ftb-game-card .game {
  flex: 1;
  max-width: 498px;
  min-width: 350px;
}