:host .wrapper {
  position: relative;
  align-items: center;
  justify-content: space-between;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  background-size: 125%;
  box-shadow: var(--card-box-shadow);
  border-radius: var(--card-border-radius);
  margin: 10px auto;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
:host .wrapper .line {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 40px;
  font-size: 13px;
}
:host .wrapper .line div {
  padding: 0 15px;
  display: flex;
  align-items: center;
}
:host .wrapper .line div .svg-container {
  display: flex;
  height: 15px;
  width: 15px;
  align-items: center;
  margin-right: -10px;
}
:host .wrapper .line div .svg-container svg {
  height: 15px;
  fill: white;
}
:host .wrapper .line div .svg-container.vk {
  height: 20px;
  width: 20px;
  margin-top: -1px;
}
:host .wrapper .line div .svg-container.vk svg {
  height: 20px;
}
:host .wrapper .line div .svg-container.web {
  margin-top: -1px;
}
:host .wrapper .line div a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}
:host .wrapper .line div a:hover {
  text-decoration: underline;
}
:host .wrapper .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
:host .wrapper .content img {
  height: 125px;
  width: 125px;
  --shadow: var(--card-content-filter-shadow);
}
:host .wrapper .content .info {
  display: flex;
  flex-direction: column;
  text-align: right;
}
:host .wrapper .content .info .name {
  margin: 0 0 20px;
  font-size: 36px;
  color: white;
  text-shadow: var(--card-text-shadow);
}
:host .wrapper .content .params-wrapper {
  display: flex;
  justify-content: flex-end;
}
:host .wrapper .content .params-wrapper .parameters {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 10px;
  text-transform: uppercase;
}
:host .wrapper .content .params-wrapper .parameters:last-child {
  margin-right: 0;
}
:host .wrapper .content .params-wrapper .parameters .parameter {
  display: flex;
  flex-direction: column;
}
:host .wrapper .content .params-wrapper .parameters .parameter ftb-team-logo {
  height: 20px;
}
:host .wrapper .content .params-wrapper .parameters .parameter:first-child {
  margin-bottom: 20px;
}
:host .wrapper .content .params-wrapper .parameters .parameter .value {
  margin-bottom: 5px;
  font-weight: 600;
  white-space: nowrap;
}
:host .wrapper .content .params-wrapper .parameters .parameter .value.team {
  cursor: pointer;
}
:host .wrapper .content .params-wrapper .parameters .parameter .value.team:hover {
  transform: scale(1.05);
}
:host .wrapper .content .params-wrapper .parameters .parameter .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}