:host {
  display: flex;
  flex-direction: column-reverse;
}
:host .item {
  height: 65px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  text-align: left;
  justify-content: flex-start;
  margin-left: 5px;
  user-select: none;
  transition: all 0.3s;
}
:host .item.removed {
  transform: translateX(-65px);
  margin-top: -65px;
}
:host .item.removed .tooltip {
  display: none;
}
:host .item.new {
  margin-bottom: -65px;
}
:host .item.new .tooltip {
  display: none;
}
:host .item .label {
  font-size: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  max-width: 60px;
  overflow: hidden;
}
:host .item .fav-star {
  position: absolute;
  top: 3px;
  left: -5px;
  opacity: 0;
  transition: opacity 0.3s;
}
:host .item .fav-star svg {
  height: 10px;
  width: 10px;
  fill: white;
}
:host .item.favorite .fav-star {
  opacity: 1;
}
:host .item.favorite .tooltip .name .icon.fill {
  opacity: 0.8;
}
:host .item .tooltip {
  position: absolute;
  height: 34px;
  border-radius: 5px;
  top: 13px;
  left: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s;
}
:host .item .tooltip .name {
  padding-left: 5px;
  white-space: nowrap;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s;
}
:host .item .tooltip .name .icon {
  padding: 0 10px;
  display: flex;
  align-items: center;
  margin-top: -4px;
}
:host .item .tooltip .name .icon svg {
  height: 13px;
  width: 13px;
  fill: white;
}
:host .item .tooltip .name .icon.fill {
  position: absolute;
  right: 0px;
  top: 2px;
  opacity: 0;
  transition: opacity 0.2s;
}
:host .item .tooltip .name:hover {
  color: rgba(255, 255, 255, 0.9);
}
:host .item .tooltip .name:hover .icon.fill {
  opacity: 0.7;
}
:host .item .tooltip button {
  background: transparent;
  width: 45px;
  height: 20px;
  border: none;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}
:host .item .tooltip button:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
:host .item .tooltip button:hover .icon svg {
  fill: white;
}
:host .item .tooltip button .icon {
  padding: 0 10px;
}
:host .item .tooltip button .icon svg {
  height: 15px;
  width: 15px;
  fill: rgba(255, 255, 255, 0.8);
  transition: fill 0.3s;
}
:host .item:hover .tooltip {
  opacity: 1;
}
:host .item img,
:host .item ftb-stadium-photo,
:host .item ftb-player-photo,
:host .item ftb-user-photo {
  height: 40px;
  width: 40px;
}
:host .item ftb-stadium-photo {
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  padding: 2px;
  border-radius: 10px;
}
:host .item ftb-player-photo {
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  padding: 2px;
  border-radius: 10px;
}
:host .item ftb-user-photo {
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  padding: 2px;
  border-radius: 10px;
}
:host .item ftb-team-logo {
  height: 40px;
  --placeholder-fill: rgba(255, 255, 255, 0.7);
}
:host .item .post {
  display: flex;
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  padding: 2px;
  border-radius: 10px;
}
:host .item .post img {
  border-radius: 10px;
}
:host .item .game {
  width: 40px;
  height: 40px;
  position: relative;
}
:host .item .game ftb-team-logo {
  height: 25px;
  width: 25px;
  --placeholder-fill: rgba(255, 255, 255, 0.7);
  position: absolute;
}
:host .item .game ftb-team-logo:first-of-type {
  top: 3px;
  left: 3px;
  z-index: 10;
}
:host .item .game ftb-team-logo:last-of-type {
  bottom: 3px;
  right: 3px;
}
:host .item .season {
  position: relative;
  text-align: center;
}
:host .item .season ftb-flag {
  height: 40px;
}