:host {
  display: block;
  min-width: var(--element-min-width);
  max-width: var(--element-max-width);
  margin: 0 auto;
  margin-bottom: 50px;
  overflow: hidden;
}
:host h2 {
  color: var(--header-color);
  margin: var(--header-margins);
  display: var(--header-display);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
:host .items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -2px;
}
:host .items .league {
  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;
}
:host .items .league::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 .league:hover::after {
  opacity: 0.1;
}
:host .items .league .background {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
:host .items .league .city {
  margin-left: 20px;
  text-align: right;
}
:host .items .league .city ftb-flag {
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 2.5px;
}
:host .items .league .city .city-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
:host .items .league .league-name .name {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  font-size: 16px;
  text-align: left;
}
:host .items .league .league-name .parameters {
  margin-top: 2px;
  font-size: 9px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  letter-spacing: 0.5px;
}
:host .items .league .league-name .parameters b {
  color: rgba(255, 255, 255, 0.8);
}