.live-mu-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.mu-live-icon {
  display: flex;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  animation: livePulse 0.5s infinite alternate ease-in-out;
}

@keyframes livePulse {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}
.mu-live-icon img {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.live-mu-label-text {
  font-size: 18px;
  font-weight: bold;
  color: #540064;
}

.live-mu-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.score-left,
.score-right {
  font-size: 64px;
  font-weight: bold;
}

.live-mu-dash {
  font-family: "Roboto Mono", monospace;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.56);
  font-weight: bold;
  display: inline-block;
}

.live-mu-events {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.live-time-elapsed {
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  color: rgba(0, 0, 0, 0.87);
}

.card-match-info {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
}

.left-side,
.right-side {
  display: flex;
  align-items: center;
}
.left-side {
  justify-content: flex-end;
}

.right-side {
  justify-content: flex-start;
}

.live-separator {
  width: 2px;
  height: 14px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.12);
}
.card-match-info {
  display: grid;
  align-items: center;
}

.foul-cards {
  display: flex;
  gap: 1px;
  justify-self: center;
}
.foul-card {
  width: 10px;
  height: 14px;
  transform: rotate(-344deg);
  border-radius: 2px;
  margin: 1px;
}

.yellow {
  background-color: #f2c14b;
}

.red {
  background-color: #ff6f6f;
}

.group-name,
.match-count {
  padding: 0 16px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.87);
  white-space: nowrap;
  justify-self: center;
}

.goal-scorers {
  display: flex;
  padding: 16px 0 0;
  gap: 16px;
  align-items: flex-start;
}

.scorers-left,
.scorers-left {
  display: flex;
  flex-direction: column;
}

.scorers-left {
  align-items: flex-end;
}

.scorers-right {
  align-items: flex-start;
}

.player-name,
.goal-minute {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}
