a {color:#fff}
.filter-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.schedule .filter-tags__day {
    display: flex;
    align-items: center;
    gap: 6px;
}
.schedule .filter-tags__day .tag_item.active {
    color: #fff;
    border-color: #6fc026;
    background: #6fc026;
}
.schedule .filter-tags__day .tag_item:not(.today) {
    max-width: 50px;
}
.schedule .filter-tags__day .tag_item {
    border-radius: 8px;
    border: 1px solid transparent;
    background: #292C33;
    padding: 5px 10px;
    color: #9497A4;
    position: relative;
    gap: 6px;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    line-height: 18px;
    cursor: pointer;
    font-size: 13px;
    user-select: none;
}
.schedule .filter-tags__day .tag_item .count {
    color: #fff;
    font-size: 10px;
    min-width: 18px;
    border-radius: 10px;
    background-color: var(--main-color);
    position: absolute;
    top: -10px;
    right: -10px;
    text-align: center;
    height: 18px;
    line-height: 18px;
}
.schedule .filter-tags__day .tag_item b {
    color: #fff;
	display: block;
}
.schedule .tag_content {
  display: none;
}
.schedule .tag_content.active {
  display: block;
}
.tourz {
  background-color: #23252E;
  margin-bottom: 20px;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
    margin-bottom: 0px;
}
.tourz li:nth-child(2n+1) {
  background-color: #292B34;
}
.tourz li.league_title {
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #003232 !important;
  color:#fff;
}
.tourz li {
  padding: 16px 10px;
}
.tourz .match--odd {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tourz .match__time {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.tourz .match__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
  font-weight: 600;
  line-height: 22px;
}
.tourz .match__commentator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-transform: capitalize;
  display: flex;
  gap: 5px;
  align-items: center;
}
.grid-match__date, .grid-match__datef {
  font-size: 12px;
}
.tourz .match__team.team--home {
  flex-direction: row-reverse;
  text-align: right;
}
.tourz .match__team {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
  min-width: 100px;
  overflow: auto;
}
.tourz .team__logo {
  width: 32px;
  height: 32px;
}
.tourz .match__ts {
  min-width: 60px;
  display: flex;
  gap: 6px;
  justify-content: center;
  font-weight: 700;
}
.time-loaded, .time-loaded-m {
  font-size: 14px;
  font-weight: 500;
  color: var(--main-bg-btn);
  text-transform: uppercase;
}
.tourz li:nth-child(2n+1) {
  background-color: #292B34;
}
.tourz .match__teams.eventz {
    flex: none;
}
.badge-live {
  border-radius: 20px;
  background: #df2c2c;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding: 1px 8px;
  line-height: 20px;
  color: #fff;
}
.blink {
  animation: 0.65s linear infinite blind;
}
@keyframes blind {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
img, svg {
    vertical-align: middle;
}
.tag_item span {display:block;}
@media (max-width: 767px) {
    .tourz .match__time {
        position: static;
        transform: none;
    }
        .tourz .match--odd {
        flex-direction: column;
    }
    .tourz .match__commentator {
        display: none;
    }
    .match__teams {font-size:14px;}
    .tourz li {
    padding: 16px 0px;
}
.schedule .filter-tags__day .tag_item {padding:5px 5px;}
}