:host {
  display: block;
  max-width: var(--element-max-width);
  min-width: var(--element-min-width);
  margin: 10px auto;
  position: relative;
  overflow: hidden;
}
:host h2 {
  color: rgba(255, 255, 255, 0.8);
}
:host .event {
  position: relative;
  padding: 0 10px;
  overflow: hidden;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  min-height: 50px;
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.95);
}
:host .event .minute {
  width: 45px;
  min-height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
}
:host .event .minute:before {
  content: " ";
  display: block;
  width: 2px;
  background: rgba(0, 0, 0, 0.2);
  flex: 1;
  min-height: 12.5px;
}
:host .event .minute:after {
  content: " ";
  display: block;
  width: 2px;
  background: rgba(0, 0, 0, 0.2);
  flex: 1;
  min-height: 12.5px;
}
:host .event .minute .content {
  min-height: 25px;
  display: flex;
  align-items: center;
}
:host .event ftb-team-logo {
  height: 25px;
  width: 25px;
  margin-right: 10px;
  --shadow: var(--card-content-filter-shadow);
  --placeholder-fill: rgba(255, 255, 255, 0.6);
}
:host .event .top-line {
  display: flex;
  align-items: center;
}
:host .event .comment {
  font-size: 13px;
  flex: 1;
  text-align: right;
  padding-right: 10px;
}
:host .event .comment.standalone {
  text-align: left;
  font-size: 14px;
  margin-left: -20px;
}
:host .event .players {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  line-height: 14px;
}
:host .event .players a:hover {
  text-decoration: underline;
}
:host .event .players .second-player-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
:host .type i {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
:host .type .goal {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}
:host .type .goal svg {
  fill: rgba(255, 255, 255, 0.6);
}
:host .type .yellow {
  width: 12px;
  height: 20px;
  background: yellow;
  transform: rotate(7deg);
}
:host .type .red {
  width: 12px;
  height: 20px;
  background: red;
  transform: rotate(8deg);
}