: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 ftb-stadium-photo {
  height: 175px;
  min-width: 175px;
  box-shadow: var(--card-content-box-shadow);
  border-radius: var(--card-border-radius);
  background: rgba(255, 255, 255, 0.05);
}
: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 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;
  display: flex;
  align-items: center;
}
:host .wrapper .line div a:hover {
  text-decoration: underline;
}
:host .wrapper .line div a .svg-container {
  display: flex;
  padding: 5px;
  justify-content: center;
}
:host .wrapper .line div a .svg-container svg {
  padding: 0;
  margin: 0;
  height: 16px;
  width: 16px;
}
: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 .info .name {
  margin: 0 0 20px;
  font-size: 36px;
  color: white;
  text-shadow: var(--card-text-shadow);
  text-align: right;
}
:host .wrapper .content .info .description {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  text-align: right;
  margin-left: 25px;
}