:host {
  display: block;
  max-width: 500px;
  min-width: 230px;
  background-color: var(--card-bg-color);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: 0% top;
  box-sizing: border-box;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  cursor: pointer;
}
:host .bg {
  width: 100%;
  height: 100%;
  position: relative;
}
:host .bg .content {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 15px 15px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
:host .bg:after {
  display: block;
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(0, 0, 0, 0.1);
}
:host .bg:hover:after {
  opacity: 1;
}
:host .bg ftb-team-logo {
  height: 40px;
  --placeholder-fill: rgba(255, 255, 255, 0.8);
}
:host .bg .name-block {
  flex: 1;
  text-align: right;
}
:host .bg .name-block .name {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
:host .bg .name-block .rating {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
:host .bg .name-block .player-data .period {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
  margin-top: -5px;
}
:host .bg .name-block .player-data .stats {
  margin-top: 2px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
}
:host .bg .name-block .player-data .stats b {
  margin-left: 5px;
  margin-right: 2px;
  color: rgba(255, 255, 255, 0.7);
}