:host {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  padding: 15px;
  margin: 10px auto;
  background: var(--card-background);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  color: #fff;
  overflow: hidden;
  align-items: stretch;
  background-color: var(--card-bg-color);
  background-image: var(--card-bg-image);
  background-size: cover;
  background-position: 0% top;
  background-size: 150%;
}
:host ftb-user-photo {
  height: 135px;
  width: 135px;
  border-radius: var(--card-border-radius);
  margin-right: 20px;
  box-shadow: var(--card-content-box-shadow);
}
:host .info {
  display: flex;
  flex: 1;
  margin-left: 25px;
  flex-direction: column;
  text-align: right;
  justify-content: space-between;
}
:host .info .name {
  font-size: 36px;
  color: white;
  text-shadow: var(--card-text-shadow);
}
:host .info .roles {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
:host .info .parameters {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  text-transform: uppercase;
}
:host .info .parameters .parameter {
  display: flex;
  padding-left: 20px;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
:host .info .parameters .parameter:first-child {
  margin-bottom: 20px;
}
:host .info .parameters .parameter .value {
  margin-bottom: 5px;
  font-weight: 600;
  white-space: nowrap;
}
:host .info .parameters .parameter .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}