:host {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  margin: 10px auto;
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  color: #fff;
  overflow: hidden;
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  background-size: 225%;
}
:host .name {
  margin: 0;
  margin-bottom: 15px;
  font-size: 36px;
  color: white;
  text-shadow: var(--card-text-shadow);
}
:host .position {
  font-size: 11px;
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: -10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 160px;
  box-sizing: border-box;
  text-align: center;
}
:host ftb-player-photo {
  width: 160px;
  height: 160px;
  border-radius: var(--card-border-radius);
  margin-right: 20px;
  box-shadow: var(--card-content-box-shadow);
}
: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 .team {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
}
:host .wrapper .line .team ftb-team-logo {
  height: 18px;
  margin-right: 5px;
  --placeholder-fill: rgba(255, 255, 255, 0.7);
}
:host .wrapper .line a {
  cursor: pointer;
}
: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 .wrapper .line b {
  margin-right: 3px;
}
:host .wrapper .line a {
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 12px;
}
:host .wrapper .line a:hover {
  text-decoration: underline;
}
:host .wrapper .line .contact {
  display: flex;
  align-items: center;
}
:host .wrapper .line .contact b {
  margin-right: 10px;
}
:host .wrapper .line .contact .contact-data {
  margin-left: 5px;
  display: flex;
  align-items: center;
}
:host .wrapper .line .contact .contact-data div {
  display: flex;
  align-items: center;
}
:host .wrapper .line .contact .contact-data div .svg-container {
  height: 18px;
  width: 18px;
  display: inline-block;
  margin: 0;
  padding: 0;
}
:host .wrapper .line .contact .contact-data div .svg-container svg {
  fill: white;
}
:host .wrapper .line.top {
  height: 35px;
  font-size: 12px;
}
:host .wrapper .line.top div {
  display: flex;
  align-items: center;
}
:host .wrapper .line.top div small {
  margin-left: 5px;
  margin-top: -3px;
}
:host .wrapper .content {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
:host .info {
  display: flex;
  flex-direction: column;
  text-align: right;
}
:host .params-wrapper {
  display: flex;
  justify-content: flex-end;
}
:host .params-wrapper .parameters {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  text-transform: uppercase;
}
:host .params-wrapper .parameters:last-child {
  margin-right: 0;
}
:host .params-wrapper .parameters .parameter {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
:host .params-wrapper .parameters .parameter:first-child {
  margin-bottom: 20px;
}
:host .params-wrapper .parameters .parameter .value {
  margin-bottom: 5px;
  font-weight: 600;
  white-space: nowrap;
}
:host .params-wrapper .parameters .parameter .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}