html {
  overflow-y: hidden;
}
h5 {
  text-align: center;
  font-size: 19px;
}
.content {
  border-bottom: 3px solid #51a332;
  border-top: 3px solid #51a332;
  padding: 10px 0;
}
.content.border-none {
  border: inherit;
  padding: 0;
}
.header {
  text-transform: uppercase;
  text-align: center;
  height: 35px;
  line-height: 30px;
}
.matches-container {
  position: relative;
  width: 100%;
  height: 94px;
  padding: 0 41px;
  overflow: hidden;
}
.matches-container .matches {
  white-space: nowrap;
  left: 0;
  position: absolute;
  margin-left: 41px;
  min-width: calc(100% - 163px);
  transition: all 0.8s ease-in;
}
.matches-container .matches.mf-autoscroll {
  transition: left 1.1s cubic-bezier(0.22, 1, 0.36, 1), right 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.matches-container .matches .match.mf-current {
  animation: mf-pulse 1.2s ease-out 1;
}
.matches-container .matches .match {
  margin-left: -4px;
  float: none;
  display: inline-block;
  border-bottom: 0;
  min-width: 216px;
  width: 216px;
  padding: 0;
  min-height: 95px!important;
  font-size: 11px;
  z-index: 5;
  position: relative;
  border-right: 1px solid #d8d8d8;
}
.matches-container .matches .match:nth-child(3n) {
  margin-left: -3px;
}
.matches-container .matches .match .match-head {
  display: flex;
  justify-content: space-between;
  background-color: #51a332;
  color: #fff;
  padding: 5px;
  font-weight: bold;
  font-size: 13px;
}
.matches-container .matches .match .match-head .competition {
  width: 175px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.matches-container .matches .match .match-body .team-name {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
}
.matches-container .matches .match .match-body .team-name .text {
  width: 46%;
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #777;
}
.matches-container .matches .match .match-body .team-name :last-child {
  text-align: right;
}
.matches-container .matches .match .match-body .date {
  width: 80px;
  display: inline-block;
  position: relative;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}
.matches-container .matches .match .match-body .date .status {
  width: 100%;
  line-height: 15px;
  height: 15px;
}
.matches-container .matches .match .match-body .date .status.upcoming {
  background-color: #b4b4b4;
  color: #313131;
}
.matches-container .matches .match .match-body .date .status.live-status {
  background: #000000;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 10px;
}
.matches-container .matches .match .match-body .date .time {
  background-color: #eaeaea;
  color: #313131;
  font-size: 16px;
  font-weight: normal;
  height: 22px;
  line-height: 22px;
  padding: 0 3px;
}
.matches-container .matches .match .match-body .date .time .penaltis {
  font-size: 13px;
}
.matches-container .matches .match .match-body .shields {
  width: calc(50% - 40px);
  display: inline-block;
}
.matches-container .matches .match .match-body .shields .circle-container {
  text-align: center;
}
.matches-container .matches .match .match-body .shields .circle-container .shield,
.matches-container .matches .match .match-body .shields .circle-container .flag {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  vertical-align: middle;
  object-fit: cover;
}
.matches-container .matches .match .match-body .shields .circle-container .flag {
  height: 20px;
}
@keyframes mf-pulse {
  0% {
    box-shadow: inset 0 0 0 0 rgba(81, 163, 50, 0);
  }
  25% {
    box-shadow: inset 0 0 0 2px rgba(81, 163, 50, 0.75);
  }
  100% {
    box-shadow: inset 0 0 0 2px rgba(81, 163, 50, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .matches-container .matches.mf-autoscroll {
    transition: none;
  }
  .matches-container .matches .match.mf-current {
    animation: none;
  }
}
.footer {
  height: 3px;
  margin-top: 10px;
  background-color: #51a332;
}
.footer.h-0 {
  height: 0;
}
.mf-nav {
  display: block;
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9999;
  background-color: #51a332;
}
.mf-nav.mfn-next {
  background-image: url(../../../../common/images/arrow_next.png);
  background-size: 32px;
  right: 0px;
  border-left: 1px solid #e3e3e3;
}
.mf-nav.mfn-prev {
  background-image: url(../../../../common/images/arrow_prev.png);
  background-size: 32px;
  left: 0px;
  border-right: 1px solid #e3e3e3;
}
.mirror .matches-container .matches {
  left: auto;
  right: 43px;
  margin: 0;
}
.mirror .matches-container .matches .match .match-head {
  flex-direction: row-reverse;
}
.mirror .matches-container .matches .match .match-body .team-name {
  flex-direction: row-reverse;
}
.mirror .matches-container .matches .match .match-body .team-name .text:first-child {
  text-align: right;
}
.mirror .matches-container .matches .match .match-body .team-name .text:nth-child(2) {
  text-align: left;
}
.mirror .matches-container .matches .match .match-body .date .time {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 5px;
}
.mirror .matches-container .matches .match .match-body > div:nth-child(2) {
  float: right;
}
.mirror .matches-container .matches .match .match-body > div:nth-child(4) {
  float: left;
}
