:host {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  margin: 10px auto;
  background: var(--card-background);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  color: #fff;
  overflow: hidden;
  text-align: center;
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  background-position: top center;
}
:host .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
:host .wrapper .line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 40px;
  font-size: 13px;
}
:host .wrapper .line a {
  cursor: pointer;
  margin-left: 3px;
}
:host .wrapper .line a:hover {
  text-decoration: underline;
}
:host .wrapper .line > div {
  display: flex;
  padding: 0 15px;
}
:host .wrapper .line > div span {
  padding: 0 5px;
}
:host .teams {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
:host .teams .team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
}
:host .teams .team .team-logo {
  height: 125px;
  --shadow: var(--card-content-filter-shadow);
  cursor: pointer;
  transition: all 0.2s;
  --placeholder-fill: rgba(255, 255, 255, 0.6);
}
:host .teams .team .team-logo:hover {
  transform: scale(1.1);
}
:host .teams .team .name {
  margin-top: 10px;
  color: white;
  font-size: 24px;
  font-weight: 300;
}
:host .teams .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}
:host .teams .info .score {
  font-size: 82px;
  color: white;
  text-shadow: var(--card-text-shadow);
}
:host .teams .info .score .sep {
  margin: 0 10px;
}
:host .teams .info .score .no-score {
  font-size: 60px;
}
:host .teams .info .score .td {
  font-size: 25px;
  margin-left: 5px;
}
:host .teams .info .pen {
  font-size: 20px;
  color: white;
  text-shadow: var(--card-text-shadow);
  margin-top: -15px;
  margin-bottom: 15px;
}
:host .staff-container {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
:host .staff-container .staff {
  background-color: var(--card-bg-color);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: 0% top;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  margin: 5px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  flex: 1;
}
:host .staff-container .staff::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 .staff-container .staff:hover::after {
  opacity: 0.1;
}
:host .staff-container .staff img {
  height: 30px;
  margin-right: 10px;
}
:host .staff-container .staff ftb-user-photo {
  height: 30px;
  width: 30px;
  margin-right: 10px;
  border-radius: 10px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.8);
}
:host .staff-container .staff .name {
  width: 100%;
}
:host .svg-container svg {
  height: 20px;
  width: 26px;
  fill: white;
}