.published {
  margin: auto;
}
.published li .scoreinfo {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.published li .scoreinfo span.team {
  height: fit-content;
}
.published li.pens {
  display: grid !important;
  grid-template-columns: 1fr !important;
  padding: 10px !important;
  margin-top: 0 !important;
}
.published span.pitch {
  font-size: 0.8em !important;
}
.published li.fix_main .scoreinfo {
  margin-top: 2px !important;
}
.published .score {
  text-align: center;
  font-size: 1.2em;
  padding: 0 10px;
}
.published .score .val {
  font-weight: 600;
}
.published .fixture_winner {
  color: green;
  font-weight: bold;
}
.key {
  line-height: 18px;
  height: 18px;
}
.key span {
  line-height: 18px;
}
.footer {
  padding-bottom: 80px !important;
}
@keyframes blinking-recent-score {
  0% {
    background-color: yellow;
  }
  50% {
    background-color: rgba(0, 0, 0, 0.1);
  }
  100% {
    background-color: yellow;
  }
}
.recent-score {
  animation: blinking-recent-score 1s infinite;
  background-color: rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}
.recent-score .scoreinfo {
  display: none;
}
.recent-score p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 9s linear infinite;
  font-size: 1.2em;
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
