:host {
  display: block;
  margin: 10px auto;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
}
:host .items {
  display: flex;
  flex-wrap: wrap;
  margin: -4px;
  padding: 4px;
}
:host .items ftb-team-season {
  flex: 1;
  min-width: calc(33.33% - 8px);
}
:host .items .season {
  background-color: var(--card-bg-color);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: 0% top;
  position: relative;
  cursor: pointer;
  flex: 1;
  margin: 2px;
  height: calc(100% - 4px);
  overflow: hidden;
}
:host .items .season::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  border-radius: var(--card-border-radius);
  opacity: 0;
  transition: opacity 0.3s;
}
:host .items .season:hover::after {
  opacity: 0.1;
}
:host .items .season .background {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
:host .items .season .content {
  padding: 7.5px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
:host .items .season .country {
  text-align: right;
}
:host .items .season .country ftb-flag {
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 2.5px;
}
:host .items .season .country .country-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
:host .items .season .champ-name .name {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  font-size: 16px;
  text-align: left;
}
:host .items .season .champ-name .stats {
  font-size: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  letter-spacing: 0.5px;
}
:host .items .season .champ-name .stats .param {
  margin-right: 2.5px;
}
:host .items .season .champ-name .stats .param b {
  color: rgba(255, 255, 255, 0.9);
  font-size: 9px;
  margin-right: 2px;
}