
/* END: home-page */
.home-page {
  /* border-radius: 7px; */
  /* background: url(../images/home/bg-home-top.svg) no-repeat; */
  /* background-size: 100%; */
  margin-bottom: 16px;
  font-family: "Oswald", sans-serif;
}

/* START: page_bars */
.home-page .page_bars {
  background: linear-gradient(0deg, #111213 0%, #262932 100%);
  border-radius: 7px;
  position: relative;
  margin-bottom: 20px;
}
.home-page .sports-bars {
	border-bottom: 1px solid #ffffff00;
	display: grid;
  grid-template-columns: 1fr 130px;
  gap: 6px;
	align-items: center;
  padding: 16px 16px 12px 16px;
	position: relative;
}
.home-page .sports-bars::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: rgb(255 255 255 / 10%);
}
.home-page .sports-bars ul {
	list-style: none;
	width: 100%;
	display: flex;
	gap: 26px;
	margin: 0;
	padding: 0;
	border-bottom: none;
}
.home-page .sports-bars ul li {
	position: relative;
  margin-bottom: 0;
}
.nav-tabs .nav-item {
	margin-bottom: -1px;
}
.home-page .sports-bars ul li button.active,
.home-page .sports-bars ul li button:focus,
.home-page .sports-bars ul li button:hover {
	color: #00fffd;
	text-shadow: 0px 0.92px 3.678px rgba(0, 0, 0, 0.24);
	border-radius: 7px;
	position: relative;
	background: linear-gradient(
		360deg,
		rgba(37, 44, 135, 1),
		rgba(34, 42, 73, 0.2)
	);
}
.home-page .sports-bars ul li button.active span,
.home-page .sports-bars ul li button:focus span,
.home-page .sports-bars ul li button:hover span {
  background: unset;
  color: #00FFFD;
  -webkit-text-fill-color: #00FFFD;
}
.home-page .sports-bars ul li button.active::before,
.home-page .sports-bars ul li button:focus::before,
.home-page .sports-bars ul li button:hover::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 7px;
	padding: 1px;
	background: linear-gradient(
		360deg,
		rgba(0, 200, 244, 1),
		rgba(66, 83, 243, 1)
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask-composite: xor;
	pointer-events: none;
}
.home-page .sports-bars ul li button.active svg .svg-path,
.home-page .sports-bars ul li button:focus svg .svg-path,
.home-page .sports-bars ul li button:hover svg .svg-path {
	fill: url(#activeGradient); /* linear-gradient(360deg, #FEBA4B, #986F2D); */
}

.home-page .sports-bars ul li {
	position: relative;
}
.home-page .sports-bars ul li::after {
	content: "";
	display: block;
	width: 1px;
	height: 24px;
	background: linear-gradient(
		360deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.5) 55%,
		rgba(255, 255, 255, 0) 100%
	);
	position: absolute;
	right: -10%;
	top: 50%;
	transform: translate(50%, -50%);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #495057;
	background-color: #fff;
	border-color: #dee2e6 #dee2e6 #fff;
}

.home-page .sports-bars ul li button {
  font-family: Oswald;
	background: transparent;
	border: none;
	color: #FFEDED;
	text-shadow: 0px 0.92px 3.678px rgba(0, 0, 0, 0.24);
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	gap: 7px;
	font-weight: 600;
	min-width: 125px;
	height: 39px;
	outline: 0;
	border-radius: 7px;
}
.home-page .sports-bars ul li button span {
	background: linear-gradient(-82.9deg, rgb(255, 255, 255) 5.8%, rgb(153, 153, 153) 95.41%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* START: switch */
.home-page .sports-bars .btn-livescore {
	position: relative;
	width: 100%;
	height: 32px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
  color: #fff;
  font-family: Oswald;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  background: #1B1D21;
  border: 1px solid transparent;
  border-radius: 30px;
  padding: 0 10px;
  margin-bottom: 0;
}
.home-page .sports-bars .btn-livescore::before {
  content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 30px;
	padding: 1px;
  background: linear-gradient(7.9deg, rgb(0, 200, 244) 6.4%, rgb(66, 83, 243) 95.05%);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
}
.home-page .sports-bars .btn-livescore .switch-style {
  background: #3E3E3E;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  height: 18px;
  width: 32px;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-right: 6px;
	z-index: 2;
}
.home-page .sports-bars .btn-livescore .switch-style:before {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  left: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.home-page .sports-bars .btn-livescore > input[type="checkbox"]:checked + .switch-style {
  background: linear-gradient(93deg, #0157ff 12.13%, #a3ffff 101.78%);
}
.home-page .sports-bars .btn-livescore > input[type="checkbox"]:checked + .switch-style:before {
  left: 16px;
}

.home-page .sports-bars .btn-livescore input {
	display: none;
}

.home-page .sports-bars .btn-livescore .switch-custom {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 25px;
	background: transparent;
	overflow: hidden;
	z-index: 1;
}

.home-page .sports-bars .btn-livescore > input[type="checkbox"]:checked ~ .switch-custom::before {
	content: "";
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(to top, #00c8f4, #4253f3);
	border-radius: 25px;
	z-index: -1;
}

.home-page .sports-bars .btn-livescore > input[type="checkbox"]:checked ~ .switch-custom:after {
  content: "";
	position: absolute;
	top: 1.5px;
	left: 1.5px;
	right: 1.5px;
	bottom: 1.5px;
	background: #000;
	border-radius: 25px;
	z-index: -1;
	background: linear-gradient(to top, #2532d5, #070e59);
	border-image-source: linear-gradient(to bottom, #00c8f4, #4253f3);
}

.home-page .sports-bars .btn-livescore > input[type="checkbox"]:checked + .switch-style {
	background: linear-gradient(93deg, #0157ff 12.13%, #a3ffff 101.78%);
}

.home-page .sports-bars .btn-livescore .txt {
	position: relative;
	z-index: 2;
  color: #FFEDED;
  text-align: center;
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16.552px; /* 118.227% */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-page .sports-bars .btn-livescore span.txt-pc {
  display: block;
}

.home-page .sports-bars .btn-livescore span.txt-sm {
  display: none;
}
/* END: switch */

/* filter */
.home-page .filter-row {
  display: none;
  padding: 20px 12px 16px;
  grid-template-columns: 1fr 200px;
  gap: 16px;
  position: relative;
}
.home-page .filter-row.active {
  display: grid;
}
.home-page .list-filter {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style: none;
	gap: 12px;
  margin-bottom: 0;
}
.home-page .list-filter li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	min-width: 120px;
	height: 34px;
	padding: 0 8px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	line-height: 18px;
	white-space: nowrap;
	font-family: Raleway;
	color: #ffffff;
  background: #4a586736;
}
.home-page .list-filter li {
	position: relative;
	z-index: 9;
}
.home-page .list-filter li a.active,
.home-page .list-filter li a:hover {
	color: #9BFFAB;
	position: relative;
	font-weight: 600;
	z-index: 1;
  background: linear-gradient(
		360deg,
		rgba(31, 62, 171, 0.32),
		rgba(22, 89, 81, 0.2)
	);
}
.home-page .list-filter li a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 6px;
	padding: 1px;
  background: transparent;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask-composite: xor;
	pointer-events: none;
}
.home-page .list-filter li a.active::before,
.home-page .list-filter li a:hover::before {
  background: linear-gradient(
		360deg,
		rgba(0, 101, 144, 1),
		rgba(35, 59, 83, 0)
	);
}
.home-page .list-filter li a.now {
	color: #9bffab;
	background: linear-gradient(180deg, #042104 39.71%, #045830 119.12%);
}
.home-page .list-filter li a.now::before {
  background: linear-gradient(-3.19deg, rgb(62, 212, 106) 2.71%, rgb(0, 42, 12) 97.57%);
}
.home-page .list-filter li a .num {
	background: #162737;
	border: none;
	color: #ffffff;
	font-weight: 700;
	border-radius: 38px;
	width: 22px;
	height: 18px;
	display: inline-flex;
	justify-content: center;
	align-items: flex-start;
	font-size: 11px;
  font-family: Oswald;
}
.home-page .list-filter li a.now .num {
	background: #202229;
}
@media (max-width: 1250px) {
 	.home-page .list-filter {
		overflow-x: scroll;
		overflow-y: hidden;
		gap: 10px;
    padding-bottom: 6px;
	}

  .home-page .list-filter::-webkit-scrollbar {
    height: 4px;
  }

  .home-page .list-filter::-webkit-scrollbar-track {
    background: transparent; 
  }

  .home-page .list-filter::-webkit-scrollbar-thumb {
    background: #202229; 
  }
}
@media (max-width: 1199px) {
	.home-page .list-filter li a {
		min-width: fit-content;
		gap: 7px;
    min-width: 100px;
	}
	.football-tab .row.ft__rows {
		flex-direction: column;
	}
	.match__settings {
		justify-content: flex-start;
		margin-top: 10px;
	}
	.home-page .sports-bars {
		align-items: center;
	}
	.home-page .sports-bars ul li button {
		min-width: 100px;
	}
}
@media (max-width: 1250px) {
  .home-page .list-filter {
    gap: 6px;
  }
}

@media (max-width: 992px) {
  .home-page .sports-bars {
    grid-template-columns: 1fr 120px;
  }

  .home-page .sports-bars ul {
    gap: 8px;
  }

	.home-page .sports-bars ul li::after {
		right: -4px;
	}

  .home-page .sports-bars ul li button {
		min-width: 90px;
		padding: 10px 5px;
    font-size: 12px;
	}

  .home-page .sports-bars .btn-livescore {
    font-size: 12px;
  }

  .home-page .sports-bars .btn-livescore .txt {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .home-page .sports-bars {
    grid-template-columns: 1fr 110px;
  }

  .home-page .sports-bars ul {
		gap: 6px;
	}

	.home-page .sports-bars ul li button {
    display: grid;
    grid-template-columns: 1fr;
		font-size: 11px;
    border-radius: 7px;
		flex-direction: column;
		gap: 4px;
    padding: 6px;
		min-width: 50px;
		height: 50px;
	}
  .home-page .sports-bars ul li button.active,
  .home-page .sports-bars ul li button:focus,
  .home-page .sports-bars ul li button:hover,
  .home-page .sports-bars ul li button.active::before,
  .home-page .sports-bars ul li button:focus::before,
  .home-page .sports-bars ul li button:hover::before {
    border-radius: 7px;
  }
	.home-page .sports-bars ul li button svg {
    margin: 0 auto;
    height: 16px;
    width: 16px;
    object-fit: contain;
  }
  .home-page .sports-bars ul li button span {
    line-height: 13px;
  }
	.home-page .sports-bars .btn-livescore {
    padding: 0 4px;
	}
  .home-page .sports-bars .btn-livescore .switch-style {
    height: 16px;
    margin-right: 6px;
  }
  .home-page .sports-bars .btn-livescore .switch-style:before {
    width: 12px;
    height: 12px;
  }
	.home-page .sports-bars .btn-livescore span.txt {
		width: auto;
		overflow: hidden;
		text-overflow: ellipsis;
		text-wrap: nowrap;
    font-size: 11px;
	}
  .home-page .list-filter li a {
		gap: 5px;
	}
	.home-page .list-filter li a.active,
	.home-page .list-filter li a:hover {
		font-weight: 500;
	}
}

@media (max-width: 576px) {
  .home-page .sports-bars {
		grid-template-columns: 1fr 68px;
    padding: 3px 6px 8px;
  }
  .home-page .sports-bars ul {
    justify-content: start;
    gap: 0;
  }
  .home-page .sports-bars ul li::after {
		right: -1px;
	}
  .home-page .sports-bars ul li button {
    font-size: 9px;
    height: 45px;
    min-width: 45px;
  }
  .home-page .sports-bars .btn-livescore {
    height: 26px;
  }
  .home-page .sports-bars .btn-livescore .switch-style {
    height: 14px;
    width: 24px;
    margin-right: 4px;
  }
  .home-page .sports-bars .btn-livescore .switch-style:before {
    width: 11px;
    height: 11px;
  }
  .home-page .sports-bars .btn-livescore > input[type="checkbox"]:checked + .switch-style:before {
    left: 11px;
  }
	.home-page .sports-bars .btn-livescore span.txt {
    font-size: 9px;
  }
	.home-page .sports-bars .btn-livescore span.txt-pc {
    display: none;
  }
	.home-page .sports-bars .btn-livescore span.txt-sm {
    display: block;
    width: auto;
  }
	.home-page .list-filter li a.now img {
		width: 45px;
	}
  .home-page .filter-row {
    padding: 15px 10px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
	.home-page .list-filter li a {
		font-size: 11px;
		font-weight: 600;
    min-width: 85px;
    padding: 0 6px;
    gap: 4px;
    height: 30px;
	}
  .home-page .list-filter li a .num {
    font-size: 8px;
    width: 20px;
    height: 16px;
    line-height: 15px;
  }

  .home-page .filter-row {
    padding: 10px 6px 0;
  }
}

@media (max-width: 365px) {
	.home-page .sports-bars ul li button {
		min-width: 40px;
	}
}
@media (max-width: 350px) {
  .home-page .sports-bars {
    padding: 10px 0;
    gap: 0;
  }
	.home-page .sports-bars ul li button {
		min-width: 35px;
    font-size: 8px;
	}
}
/* END: home-page */

/* START: match popup */
/* START: nav-tabs */
.hpu-nav-tabs {
  background: transparent;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: .5rem;
  list-style: none;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  border-bottom: 1px solid #343940;
  padding-top: 6px;
  padding-bottom: 12px;
}
.hpu-nav-tabs .hpu-nav-item {
  padding: 0px;
}
.hpu-nav-tabs .hpu-nav-item a,
.hpu-nav-tabs .hpu-nav-item a:hover {
  align-items: center;
  background: linear-gradient(250deg, #22252c 33.6%, #222734 43.94%, #242c3e 59.4%);
  border: .0625rem solid #343940;
  border-radius: 6px;
  color: #afb4ba;
  cursor: pointer;
  display: flex;
  font-family: Roboto Condensed;
  font-size: .875rem;
  font-weight: 400;
  justify-content: center;
  line-height: .5625rem;
  padding: .5rem .75rem;
  text-align: center;
  text-transform: uppercase;
}
.hpu-nav-tabs .hpu-nav-item a.active {
  background: linear-gradient(124.54deg, #2fb925, #36633f 27.66%, #042601 68.97%);
  border: .0625rem solid #3ed46a;
  color: #4cf446;
  position: relative;
}
/* END: nav-tabs */
.match-popup {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
}
.match-popup.statistic-section {
  top: 40px;
}
.match-popup .statics-popup,
.match-popup .incident-popup {
  width: 420px;
  background-color: #2F3031;
  border-radius: 13px;
  padding: 8px;
}
.hpu-home-scrollable-content {
  max-height: 380px;
  overflow-y: auto;
}
/* START: statistics */
.hpu-stats {
  border-radius: 4px;
  padding: 1rem;
  padding-top: 35px;
}
.hpu-stats__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hpu-stats__line {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  gap: 0.69rem;
  position: relative;
}
.hpu-stats__value {
  color: #fff;
  font-family: "Raleway";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem;
  position: absolute;
  left: 0;
  bottom: 100%;
  margin-bottom: 0.38rem;
}
.hpu-stats__value--away {
  right: 0;
  left: auto;
}
.hpu-stats__value.hpu-stats__home-win,
.hpu-stats__value.hpu-stats__away-win {
  color: #4fa747;
}
.hpu-stats__bar {
  border-radius: 0;
}
.hpu-stats__bar-wrapper {
  flex: 1;
  background: #292c30;
  height: 0.5625rem;
  overflow: hidden;
  display: flex;
  border-radius: 0;
}
.hpu-stats__bar-wrapper--home {
  justify-content: flex-end;
}
.hpu-stats__bar-wrapper--away {
  display: flex;
  justify-content: flex-start;
}
.hpu-stats__bar-wrapper.hpu-stats__home-win .hpu-stats__bar,
.hpu-stats__bar-wrapper.hpu-stats__away-win .hpu-stats__bar {
  background: #06be46;
}
.hpu-stats__bar {
  background: #007dbb;
  height: 100%;
  display: block;
}
.hpu-stats__title {
  position: absolute;
  color: #fff;
  text-align: center;
  font-family: "Raleway";
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1rem;
  bottom: 100%;
  margin-bottom: 0.38rem;
}
/* END: statistics */

/* START: summary */
.hpu-summary-block {
  position: relative;
  font-family: 'Roboto';
}
.hpu-summary-block__start {
  text-align: center;
  padding-left: 25px;
  z-index: 2;
  padding: 3px 12px 18px 48px;
}
.hpu-summary-block__event {
  padding: 10px 12px;
  position: relative;
  justify-content: flex-end;
}
.hpu-summary-block__event-time {
  min-width: 24px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: "Roboto Condensed";
  flex-basis: 39px;
}
.hpu-summary-block__event-icon {
  display: flex;
  justify-content: flex-start;
  padding: 0px 12px;
  position: relative;
}
.hpu-summary-block__event-icon::before {
  height: 54px;
  display: block;
  width: 1px;
  background: #5D5D5D;
  content: "";
  position: absolute;
  left: 49%;
  z-index: 1;
  top: 0px;
}
.hpu-summary-block__event-icon .hpu-icon {
  width: 33px;
  height: 33px;
  flex-shrink: 0;
  background: #1A1A1A;
  border: 2px solid #535353;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.hpu-summary-block__event-score {
  align-items: center;
  justify-content: flex-end;
}
.hpu-summary-block__event-score button {
  border-radius: 30px;
  border: 1px solid #1B842E;
  background: #303339;
  white-space: nowrap;
  height: 24px;
  min-width: 60px;
  color: #fff;
  font-weight: 700;
  font-family: 'Roboto';
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
.hpu-summary-block__player {
  width: 100%;
  gap: 6px;
}
.hpu-summary-block__player .hpu-player-avatar {
  width: 32px;
  height: 32px;
}
.hpu-summary-block__player-logo img {
  object-fit: contain;
}
.hpu-summary-block__player-logo--in {
  border-radius: 50%;
  border: 3px solid #2187E5;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.hpu-summary-block__player-logo--out {
  border-radius: 50%;
  border: 3px solid #E53030;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
.hpu-summary-block__player-name {
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  justify-content: center;
}
.hpu-summary-block__player-name--sub {
  opacity: 0.5;
}
.hpu-summary-block__player-name span {
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hpu-summary-block__midfield {
  white-space: nowrap;
  min-width: 87px;
  height: 24px;
  color: #fff;
  font-weight: 700;
  font-family: 'Roboto';
  font-size: 13px;
  border-radius: 30px;
  border: 1px solid #1456FF;
  background: linear-gradient(113deg, #1553EF 7.37%, #0C3089 57.22%, #0B2A79 66.05%, #000 131.67%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}
.hpu-summary-block__event--home {
  flex-direction: row-reverse;
}
.hpu-summary-block__event--home .hpu-summary-block__player {
  flex-direction: row-reverse;
  align-items: center;
}
.hpu-summary-block__event--home .hpu-summary-block__event-score {
  justify-content: flex-start;
}
.hpu-summary-block__event--home .hpu-summary-block__event-score .hpu-score-home {
  color: #00EB1F;
}
.hpu-summary-block__event--away .hpu-summary-block__event-icon {
  justify-content: flex-end;
}
.hpu-summary-block__event--away .hpu-summary-block__event-score .hpu-score-away {
  color: #00EB1F;
}
@media (max-width: 576px) {
  .hpu-summary-block__player {
    gap: 4px;
  }
  .hpu-summary-block__player .hpu-player-avatar {
    width: 24px;
    height: 24px;
  }
  .hpu-summary-block__player-logo--in, .hpu-summary-block__player-logo--out {
    border-width: 1px;
  }
  .hpu-summary-block__player-name {
    font-size: 12px;
  }
  .hpu-summary-block__player-name span {
    max-width: 60px;
  }
}
/* END: summary */
/* END: match popup */


/* START: odd btn */
.odds-btn {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  font-style: normal;
  width: 100%;
}
.odds-btn .odds-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  height: 17px;
  padding: 0 2px;
  min-width: 82px;
  border-radius: 16px;
  border: 1px solid #edffb959;
}
.odds-btn .odds-item.odds-item-center {
  border: 1px solid #8deaff54;
}
.odds-btn .odds-item span {
  color: #8D92A2;
  font-size: 10px;
  font-weight: 400;
  flex: 1;
  display: flex;
  justify-content: center;
}
.odds-btn .odds-item .down {
  color: #FF0000;
}
.odds-btn .odds-item .up {
  color: #00C44D;
}
@media (max-width: 576px) {
  .odds-btn {
    grid-template-columns: 1fr;
    width: auto;
    position: relative;
    gap: 0;
  }
  .odds-btn::before, .odds-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 2px;
    height: 35px;
    background: url(../images/bg-odd-1.svg) no-repeat;
  }
  .odds-btn::before {
    left: 24px;
  }
  .odds-btn::after {
    right: 24px;
  }
  .odds-btn .odds-item {
    border: 1px solid transparent;
    gap: 14px;
    padding: 0;
    height: 12px;
  }
  .odds-btn .odds-item.odds-item-center {
    border: 1px solid transparent;
  }
  .odds-btn .odds-item span {
    font-size: 9px;
  }
}
/* END: odd btn */

/* matches__filter-leagues */
.matches__filter--leagues .sl-leagues {
	position: relative;
	width: 100%;
	margin: 0;
}
.custom-dropdown-trigger {
	background-color: #4a586736;
	color: white;
	padding: 5px 20px 5px 10px;
	border-radius: 5px;
	font-size: 13px;
	cursor: pointer;
	border: none;
	position: relative;
	display: flex;
	align-items: center;
  gap: 8px;
}

.custom-dropdown-trigger img {
	height: 16px;
  width: 16px;
  object-fit: contain;
}

.custom-dropdown-content {
	display: none;
	position: absolute;
	top: 38px;
	right: 0;
  min-width: 200px;
	width: max-content;
	z-index: 999;
	border-radius: 6px;
	background: #141516;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.50);
	border: 1px solid #ffffff1c;
}

.custom-dropdown-content .custom-dropdown-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff1c;
  padding: 13px 15px;
}

.custom-dropdown-content .custom-dropdown-head span {
  color: #00FF4B;
  text-shadow: 0px 0.92px 3.678px rgba(0, 0, 0, 0.24);
  font-family: Oswald;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}

.custom-dropdown-content .custom-dropdown-head .custom-dropdown-close {
  cursor: pointer;
}

.custom-dropdown-list {
  max-height: 450px;
  overflow: auto;
}

.show-dropdown {
	display: block;
}

.custom-dropdown-option {
	color: white;
	padding: 13px 15px;
	cursor: pointer;
	font-size: 13px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #ffffff1c;
  font-family: Roboto;
  font-weight: 400;
}

.custom-dropdown-option .league-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-dropdown-option img {
	height: 16px;
  width: 16px;
  object-fit: contain;
}

.custom-dropdown-option .count {
	font-family: Roboto;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-dropdown-option:hover,
.custom-dropdown-option.active {
  border-top: 1px solid #006590;
  border-bottom: 1px solid #006590;
  color: #00FF4B;
  background: linear-gradient(270deg, rgba(11, 13, 12, 0.32) 42.28%, rgba(22, 53, 89, 0.20) 50.82%);
}

.custom-dropdown-option:hover .count svg g,
.custom-dropdown-option.active .count svg g {
  opacity: 1;
}

.custom-dropdown-option:hover .count svg path,
.custom-dropdown-option.active .count svg path {
  fill: #00FFFD;
}

.custom-dropdown-trigger::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
  width: 8px;
  height: 8px;
  border: solid #00EB1F;
  border-width: 0 1px 1px 0;
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
}

.custom-dropdown-trigger span {
  width: 120px;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  font-family: Raleway;
  font-weight: 700;
}

@media (max-width: 576px) {
  .custom-dropdown-content {
    width: 100%;
    top: 45px;
  }
}
/* END: matches__filter-leagues */

/* START: Match List */
.grid-matches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.grid-match {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #506b4e54;
  color: #000;
  height: 100%;
}

.grid-match__team-home {
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.grid-match__vs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px;
  width: 100%;
  align-items: center;
}
.grid-match__vs .home-score {text-align: left;}
.grid-match__vs .away-score {text-align: right;}

.grid-match__team-away {
  padding: 0px;
}

.grid-match__info {
  color: #fff;
  font-size: 14px;
  padding: 15px 10px 15px 10px;
  line-height: 20px;
}

.grid-match__vs {
  color: #BBBBBB;
  white-space: nowrap;
}

.grid-matches__item {
  display: block;
  cursor: pointer;
  position: relative;
  cursor: pointer;
}
.grid-matches__item .redirectPopup {
	height: 71%;
}

.grid-matches__item a,
.teambox a,
#tv_links a {
  text-decoration: none;
}

.grid-matches__item a:hover,
.teambox a:hover {
  color: #34495e;
}

.grid-match--flag {
  background: #373737;
  color: #828B98;
  font-family: 'Roboto';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  border-radius: 24px;
  padding: 3px 10px;
  gap: 10px;
}
.grid-match--flag-h2h {
  background-color: transparent;
  padding: 0px;
  gap: 6px;
}
.grid-match__h2h-vs {
  gap: 4px;
  align-items: center;
  background-color: #141516;
  padding: 4px 6px;
  border-radius: 24px;
}
.grid-match__h2h-vs img {
  height: 12px;
  width: 12px;
  object-fit: contain;
}
.grid-match--flag .grid-match__goal-scoring {
  gap: 4px;
}
.grid-match--flag .grid-match__corner-ball {
  gap: 3px;
  align-items: center;
}
.grid-match--flag .grid-match__yellow-ball {
  gap: 4px;
  align-items: center;
}
.grid-match__footer-football {
  display: none;
  justify-content: center;
  margin-bottom: 10px;
}
.grid-match__footer-football .grid-match--flag {
  justify-content: space-between;
}
.grid-match__goal-scoring span {
  color: #00C44D;
}
.grid-match__goal-scoring .grid-match__half-court {
  color: #fff;
  color: #969696;
}
.grid-matches__item .grid-match__odds {
  color: #8D92A2;
  font-family: 'Roboto';
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 145.455% */
  position: relative;
  min-width: 105px;
}
.grid-matches__item .grid-match__odds .grid-match__odds-item {
  display: flex;
  justify-content: space-between;
  line-height: 15px;
  gap: 15px;
  position: relative;
}
.grid-matches__item .grid-match__odds .grid-match__odds-item p {
  color: #8D92A2;
  font-family: 'Roboto';
  font-size: 11px;
  margin: 0px;
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
}
div[odds]:not([odds=""]) .grid-match__odds::before  {
  content: '';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 24px;
  opacity: 0.3;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0) 100%);
}
div[odds]:not([odds=""]) .grid-match__odds::after {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 24px;
  opacity: 0.3;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 55%, rgba(255, 255, 255, 0) 100%);
}
div[odds=""] .grid-match__odds{
  opacity: 0 !important;
}
.grid-match__odds-item .down {
  color: #FF0000;
}
.grid-match__odds-item .up {
  color: #00C44D;
}
.grid-match__time {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 2;
}
.grid-match__time .icon-haflt {
  position: relative;
}
.grid-match__time .progress-bar {
  position: absolute;
  left: 3px;
  top: 2px;
  height: 86%;
  background: rgba(18, 117, 37, 0.63);
  border-bottom-left-radius: 60px;
  width: 20%;
  border-bottom-right-radius: 0px;
}
.grid-match__time .icon-haflt text {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.grid-match--is-today .grid-match__day {
  display: none;
}

.grid-match__team {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.grid-matches__item .blv li .avatar-round {
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.grid-matches__item .blv li .avatar-round:before{
  content: '';
  position: absolute;
  background: url(../images/border-avatar.svg) no-repeat;
}
.grid-matches__item .blv li span {
  color: #FFF;
  text-align: center;
  font-family: 'Raleway';
  font-size: 0.688rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1rem;
}
.grid-matches__item .blv li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.grid-match__team .team-logo-group-away-logo {
  margin-left: 0;
}

.grid-match--is-hot {
  color: #fafafa!important;
}

.grid-match--is-hot a:hover {
  color: #ecf0f1!important;
}

.grid-match--is-hot .grid-match__vs {
  color: #fff;
}

.grid-matches__item p {
  margin-bottom: 0px !important;
}
.grid-matches__item .grid-match {
  background: #232324 url(../images/bg-match/bg-match.png) no-repeat bottom;
  border-radius: 11px;
  display: block;
  height: auto;
  color: #fff;
  padding: 0 12px;
}
.grid-matches__item .grid-match-basketball {
  background: #232324 url(../images/bg-match/bg-match-basketball.png) no-repeat bottom;
}
.grid-matches__item .grid-match-tennis {
  background: #232324 url(../images/bg-match/bg-match-tennis.png) no-repeat bottom;
}
.grid-matches__item .grid-match-badminton {
  background: #232324 url(../images/bg-match/bg-match-badminton.png) no-repeat bottom;
  background-size: cover;
}
.grid-matches__item .grid-match-volleyball {
  background: #232324 url(../images/bg-match/bg-match-volleyball.png) no-repeat bottom;
}
.grid-matches__item .grid-match.grid-match--is-hot:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 11px;
  padding: 1px;
  background: linear-gradient(155deg, #FF0000 0%, #630606 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.grid-matches__item .grid-match__header {
  display: flex;
  justify-content: space-between;
  padding: 8px 0 9px 0;
}

.grid-matches__item .grid-match__league img {
	width: 14px;
	height: 14px;
}
.grid-matches__item .grid-match__league {
  font-family: Roboto;
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.grid-matches__item .grid-match__league .text-ellipsis {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Roboto;
font-weight: 400;
font-size: 11px;
line-height: 14px;
letter-spacing: 0px;
text-transform: uppercase;
color: #828B98;
}

.commentator-more .commentator-toggle-btn {
	background: none;
	border: none;
	color: #bbbbbb;
	border: 1px solid transparent;
	border-radius: 38px;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
  z-index: 2;
  position: relative;
}
.commentator-more .commentator-toggle-btn::after {
  display: none;
}
.commentator-more .commentator-toggle-btn .line-left {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
}
.commentator-more .blv-count {
	display: flex;
	align-items: center;
	gap: 5px;
  font-size: 12px;
}
.commentator-more a,
.commentator-more a:hover,
.commentator-more span.blv-arrow {
	color: #bbbbbb;
}
.commentator-more .commentator-toggle-btn span {
	font-size: 11px;
  line-height: 10px;
}
.commentator-more .commentator-toggle-btn:focus {
	outline: none;
}

.commentator-more .commentator-toggle-btn:hover {
	border: 1px solid #262d3f;
	background: transparent;
}
.commentator-more .commentator-list {
  width: 100px;
  background: #303030;
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
.commentator-more .commentator-list a {
  margin-bottom: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ffffff1a;
}
.commentator-more .commentator-list a:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
  margin-bottom: 0;
}
.commentator-more .commentator-list .commentator-item_0 {
	display: none !important;
}
/* BLV toggle */

.grid-matches__item .grid-match__date {
  color: #C2E598;
  text-align: center;
  font-family: "Proxima Nova", "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border-radius: 13px;
  padding: 1px 8px;
  background: linear-gradient(#1a1e23, #1a1e23) padding-box, linear-gradient(180deg, #1a1e23 0%, #01a441 100%) border-box;
  border: 1px solid transparent;
  height: 23px;
}

.grid-matches__item .grid-match__body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 0 18px;
}

.grid-matches__item .grid-match-tennis .grid-match__body {
  padding: 10px 6px;
}

.grid-matches__item .grid-match__team {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: flex-start;
      -ms-flex-pack: flex-start;
          justify-content: flex-start;
  flex-direction: row;
  gap: 10px;
}

.grid-matches__item .grid-match__team--name {
  max-height: 19px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  max-width: 140px;
}

.grid-matches__item .grid-match__team-home {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  justify-content: flex-start;
}

.grid-matches__item .grid-match__team-home .grid-match__team--name {
  text-align: right;
}

.grid-matches__item .grid-match__team img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.grid-matches__item .grid-match__team .grid-match__team--name {
  color: #fff;
  font-family: 'Roboto';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
}

.grid-matches__item .grid-match__status {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-basis:100px;
  padding: 0px 5px;
  flex-direction: column;
  height: 32px;
}

.grid-matches__item .grid-match__status .grid-match__vs {
  background: linear-gradient(125deg, #1553ef, #0c3089 27.66%, #0c1a4c 68.97%);
  stroke-width: 1px;
  stroke: #1456FF;
  color: #FFF;
  text-align: center;
  font-family: 'Roboto';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 100% */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.grid-matches__item .grid-match__status .grid-match__vs.t_vs_num {
  border-radius: 36px;
  border: 1px solid #1456ff;
  background: linear-gradient(113deg, #1553ef 7.37%, #0c3089 57.22%, #0b2a79 66.05%, #000 131.67%);
  color: #FFF;
  text-align: center;
  font-family: 'Roboto';
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 117.647% */
  width: inherit;
  height: inherit;
  gap: 8px;
}
.grid-matches__item .grid-match__status .grid-match__vs.t_vs_num span {
  color: #FFF;
  text-align: center;
  font-family: 'Roboto';
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 117.647% */
  flex: 1;
}
.grid-matches__item .grid-match__status .grid-match__vs.t_vs_num span.score-size-min {
  font-size: 15px;
}
.grid-matches__item .grid-match__status .t_time {
  color: #FFF;
  text-align: center;
  font-family: 'Raleway';
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
  display: block;
  padding: 1px 8px;
  border-radius: 2px;
}

.grid-matches__item .t_time.t_time_num {
  text-align: center;
  font-family: 'Roboto';
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.grid-matches__item .grid-match__footer {
  border-radius: 7px;
  position: relative;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}
.grid-matches__item .grid-match__footer::before {
    content: '';
    position: absolute;
    height: 21px;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 7px;
    padding: 1px;
    background: linear-gradient(360deg, rgba(25, 25, 32, 0) 0%, rgba(63, 65, 70, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    pointer-events: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.grid-matches__item .grid-match__footer::after {
  content: '';
  opacity: 0.32;
  background: linear-gradient(90deg, #333A42 0%, #FFF 48.79%, #333A42 97.58%);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 107px;
  max-width: 100%;
  height: 1px;
}

.grid-match__footer-tennis {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 12px;
}
.grid-match__footer-tennis .t-incident-tennis {
  width: 230px;
  gap: 4px;
}
.grid-match__footer-tennis .t-incident-tennis-5 {
  width: 260px;
}
.grid-match__footer-tennis .t-incident-tennis .tib-row-head {
  display: none;
}
.grid-match__footer-tennis .grid-pt {
  color: #B8D891;
  text-align: center;
  font-family: Roboto;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.grid-match__footer-tennis .grid-pt div {
  height: 24px;
  display: flex;
  align-items: center;
}
.grid-match__footer-tennis .grid-pt .grid-pt-home {
  margin-bottom: 8px;
}
.grid-match__footer-left {
  flex: 1;
  display: flex;
  z-index: 2;
}
.grid-match__footer-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.grid-match__footer-right {
  flex: 1;
  z-index: 2;
  gap: 4px;
}
.grid-match__footer-right .odds-comp img{
  height: 24px;
  width: auto;
  position: relative;
  z-index: 2;
}
.grid-matches__item .redirectPopup {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.grid-matches__item .redirectPopup:hover {
  color: #fff;
}

.grid-matches__item .btn-detail,
.grid-matches__item .btn-odds {
  border-radius: 4px;
  background: linear-gradient(139deg, #008360 0%, #49EC44 100%);
  color: #FFF;
  text-align: center;
  font-family: 'Oswald';
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  text-transform: uppercase;
  padding: 4px 12px;
}
.grid-matches__item .btn-detail:hover,
.grid-matches__item .btn-odds:hover {
  color: #FFFFFF;
}

.grid-matches__item .btn-detail {
  background: #2A3038;
}

.grid-match--is-hot {
  background-color: #fb5858ab;
}

.grid-matches__item .commentator {
  color: #BBB;
  font-family: 'Roboto';
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .grid-match__footer-football {
    display: flex;
  }

  .grid-match__footer .grid-match__footer-left {
    display: none;
  }

  .grid-matches__item .grid-match__body {
    padding: 10px 0px;
  }

  .grid-matches__item .grid-match__team .grid-match__team--name {
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 100px;
  }
}

@media only screen and (max-width: 992px) {
  .grid-matches {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .grid-matches__item .grid-match__body {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .grid-matches__item .grid-match__league .text-ellipsis {
    display: flex;
    font-size: 0;
  }
  .grid-matches__item .grid-match__league .text-ellipsis::after {
    content: attr(data-attr);
    font-size: 12px;
  }
  .grid-matches__item .grid-match__footer {
    padding: 0px;
  }
  .grid-matches__item .grid-match__league {
    font-size: 12px;
  }
}

@media screen and (max-width: 575px) {
  .grid-matches__item .grid-match__status .grid-match__vs.t_vs_num {
    gap: 5px;
  }
  .grid-matches__item .commentator {font-size: 10px;}
  .grid-matches__item .commentator svg {width: 34px !important; height: 34px !important; }
  .grid-match__footer-right svg {width: 52px;}
  .grid-matches__item .grid-match__odds {min-width: inherit;}
  .grid-matches__item .grid-match__odds , .grid-matches__item .grid-match__odds .grid-match__odds-item p{font-size: 8px;line-height: 10px;}
  div[odds]:not([odds=""]) .grid-match__odds::before,div[odds]:not([odds=""]) .grid-match__odds::after {display: none;}
  .grid-matches__item .grid-match__odds .grid-match__odds-item {gap: 10px;}
  .grid-matches__item .grid-match__body {
    padding: 21px 0px 27px;
  }
  .grid-matches__item .grid-match__status {
    flex-basis: 85px;
  }
  .grid-matches__item .grid-match__odds .grid-match__odds-item p{text-align: center;display: flex;flex: 1;justify-content: center;white-space: nowrap;}
  .grid-matches__item .odds-comp img{
    height: 22px;
  }
  .grid-matches__item .grid-match-tennis .grid-match__body {
    padding: 10px 6px;
  }
  .grid-matches__item .grid-match__team .grid-match__team--name {
    max-width: 85px;
  }
  .grid-matches__item .grid-match__team img {
    width: 32px;
    height: 32px;
  }
  .grid-match__team .team-logo-group {
    flex-direction: column;
  }
  .grid-match__team .team-logo-group .team-logo-1 {
    margin-left: 0;
    margin-top: -10px;
  }
  .grid-match__team .team-name-group {
    gap: 6px;
  }
}
@media screen and (max-width: 391px) {
  .grid-matches__item .grid-match__team .grid-match__team--name {
    max-width: 70px;
  }
}
/* END: Match List */
/* New home mobile */
@media (max-width: 1350px) {
  .grid-match--flag-h2h {
    font-size: 10px;
    gap: 2px;
    padding: 0;
    padding: 3px;
  }

  .grid-match__h2h-vs img {
    height: 10px;
    width: 10px;
  }
}

@media screen and (max-width: 768px) {
  .grid-match--flag {
    padding: 3px 6px 2px 6px;
    font-size: 10px;
  }
  .grid-match--flag-h2h {
    padding: 0;
    font-size: 9px;
  }
  .home #matches .col-md-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .home #matches .col-md-12 {
      padding-left: 10px;
      padding-right: 10px;
  }
  .grid-matches__item .grid-match__league .text-ellipsis::after {
      color: #828B98;
      font-family: Roboto;
      font-size: 11px;
      line-height: 15px;
      font-style: normal;
      font-weight: 400;
  }
  .grid-matches__item .grid-match__date {
    font-size: 11px;
  }
  #football {
    .grid-match__footer-football {
        display: none;
    }
    .grid-match__footer .grid-match__footer-left {
      display: flex;
    }
    .grid-matches__item .grid-match__footer {
      padding: 0px !important;
      gap: 0 !important;
      height: 37px;
      padding-left: 4px !important;
      padding-right: 4px !important;
    }
    .firtst-commentator {
      display: none !important;
    }
    .grid-matches__item .commentator {
      font-size: 10px;
      padding-left: 5px;
    }
    .grid-matches__item .commentator svg {
      width: 24px !important;
      height: 24px !important;
    }
    .commentator-more .commentator-list .commentator-item_0 {
      display: flex !important;
    }
    .dropdown-menu.commentator-list.show {
      left: -10px !important;
      min-width: auto;
      max-width: 72px;
      padding-inline: 0;
    }
    .grid-matches__item .grid-match {
      padding: 0px 6px;
    }
    .grid-matches__item .odds-comp img {
      height: auto;
      width: 52px;
    }
    .dropdown-menu.commentator-list.show {
      min-width: auto !important;
    }
    .commentator-more .commentator-toggle-btn .line-left {
      display: none;
    }
    .commentator-more .blv-count {
      color: #03bd4c;
    }
    .grid-match--flag .grid-match__corner-ball {
      gap: 2px;
    }
    .grid-match__odds-item{
      gap: 5px;
    }
    .grid-match--flag .grid-match__goal-scoring {
      gap: 3px;
    }
  }
}

@media screen and (max-width: 576px) {
  .grid-match--flag {
    gap: 6px;
  }
  .grid-match--flag-h2h {
    gap: 2px;
    padding: 0;
  }
  .grid-match__h2h-vs {
    gap: 2px;
    padding: 0px 3px;
  }
  .grid-match__h2h-vs img {
    height: 9px;
    width: 9px;
  }
}

@media screen and (max-width: 391px) {
  .grid-match__h2h-vs .grid-match__goal {
    font-size: 8px !important;
  }
  .grid-match__h2h-vs img {
    height: 8px;
    width: 8px;
  }
}
