@font-face {
  font-family: "Proxima Nova";
  src: url("../fonts/ProximaNova/Proximanova-Regular.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Base styles and typography */
:root {
  /* --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Nunito', sans-serif; */
  --font-size-base: clamp(0.7rem, 0.7vw + 0.3rem, 0.8rem);
  --line-height-base: 1.5;
  --font-weight-normal: 400;
  --font-weight-bold: 500;
  --nav-bg-color: #1e1e1e;
  --nav-text-color: #fff;
  --nav-text-gradient: linear-gradient(to left, #ffffff, #999999);
  --nav-active-bg: linear-gradient(360deg, #042104, #045830);
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.5rem, 3vw + 0.6rem, 2rem);
}
h2 {
  font-size: clamp(1.3rem, 2.5vw + 0.5rem, 1.8rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw + 0.4rem, 1.6rem);
}
h4 {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.4rem);
}
h5 {
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1.2rem);
}
h6 {
  font-size: clamp(0.8rem, 0.8vw + 0.2rem, 1rem);
}

/* Theme */
:root {
  --color-bg: #040b23;
  --color-text: #2c3e50;
  --color-primary: #5d6d7e;
  --color-secondary: #8ea4b8;
  --color-accent: #a9cce3;
  --color-link: #4a5e74;
  --color-link-hover: #34495e;
  --color-table-text: #2c3e50;
}

.dark-mode {
  --color-bg: #2c3e50;
  --color-text: #f4f7f5;
  --color-primary: #8ea4b8;
  --color-secondary: #a9cce3;
  --color-accent: #5d6d7e;
  --color-link: #b3c6d9;
  --color-link-hover: #d0dce6;
  --color-table-text: #f4f7f5;
}

.bg-primary,
.bg-secondary,
.bg-accent {
  color: var(--color-bg) !important;
}
@media (min-width: 576px) {
  .container {
    max-width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Apply theme colors */
body {
  background-color: #020019;
  /* color: var(--color-text); */
}

.navbar,
.jumbotron,
.footer {
  color: #fff !important;
  background: linear-gradient(
    90deg,
    rgba(4, 11, 35, 1) 0%,
    rgba(80, 54, 0, 1) 50%,
    rgba(86, 23, 5, 1) 100%
  );
}

.btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* Shared Styles */
a {
  color: var(--color-link);
  text-decoration: none;
  background-color: transparent;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

.navbar {
  margin-bottom: 0;
}

.jumbotron {
  margin-bottom: 0;
}

.footer {
  padding: 1rem 0;
}

/* General Navigation Styles */
.logo-container {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  margin-right: 30px;
}

.logo-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45px;
  right: 10px;
  bottom: 0;
  background-color: #f9b92f;
  z-index: 1;
  transform: skew(15deg);
}

.main-nav__brand {
  position: relative;
  z-index: 2;
}

/* Main Navigation Styles */
.main-nav {
  /* height: 56px; */
  padding: 0;
}
.main-nav__list {
  column-gap: 10px;
}
.main-nav__link {
  position: relative;
  color: #ffffff !important;
  transition: color 0.3s ease;
  font-size: 13px;
  line-height: normal;
  text-transform: uppercase;
  padding: 0;
}

.main-nav__link:hover {
  color: #ff4000 !important;
}
.main-nav__item.active .main-nav__link {
  position: relative;
  font-weight: bold;
  color: #ff4000 !important;
}
.main-nav__item.active .main-nav__link::after,
.main-nav__item .main-nav__link:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ff4000;
  position: absolute;
  bottom: -22px;
  left: 0;
}
.main-nav__dark-light-toggle {
  display: flex;
  align-items: center;
}
.main-nav__dark-mode-checkbox {
  display: none;
}
.main-nav__dark-mode-label {
  position: relative;
  width: 85px;
  height: 32px;
  display: block;
  border-radius: 100px;
  cursor: pointer;
  margin-bottom: 0px;
  transition: background-color 0.5s;
  /* background: linear-gradient(
		45deg,
		rgba(37, 44, 135, 1),
		rgba(34, 42, 73, 0.2)
	); */
  background: linear-gradient(
    360deg,
    rgba(0, 31, 59, 0.5) 0%,
    rgba(0, 25, 49, 0.5) 50%,
    rgba(26, 31, 43, 0.5) 100%
  );
}
.main-nav__dark-mode-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 1px;
  /* background: linear-gradient(
		360deg,
		rgba(0, 200, 244, 1),
		rgba(66, 83, 243, 1)
	); */
  background: linear-gradient(
    180deg,
    rgba(35, 47, 71, 1) 0%,
    rgba(35, 47, 71, 1) 50%,
    rgba(28, 34, 47, 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;
}
.main-nav__toggle-circle {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: #f2f2f2;
  border-radius: 100px;
  top: 3px;
  left: 4px;
  transition: left 0.5s, background 0.5s;
  /* background: linear-gradient(93deg, #0157ff 12.13%, #a3ffff 101.78%); */
  background: #ff4002;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.main-nav__toggle-circle svg {
  width: 15px;
  height: 15px;
}

.main-nav__toggle-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.main-nav__toggle-circle:active {
  background: linear-gradient(93deg, #0146d9 12.13%, #7fffff 101.78%);
}

.main-nav__toggle-circle:active svg {
  transform: scale(0.95);
}
.main-nav__toggle-text {
  position: absolute;
  top: 50%;
  left: 35px;
  transform: translateY(-50%);
  /* color: #00fffd; */
  color: #ffffff;
  font-weight: bold;
  transition: color 0.5s;
}
.main-nav__dark-mode-checkbox:checked + .main-nav__dark-mode-label {
  /* background: #242424; */
  background: linear-gradient(
    45deg,
    rgba(37, 44, 135, 1),
    rgba(34, 42, 73, 0.2)
  );
}
.main-nav__dark-mode-checkbox:checked
  + .main-nav__dark-mode-label
  .main-nav__toggle-circle {
  left: 55px;
  background: linear-gradient(180deg, #777, #3a3a3a);
}
.main-nav__dark-mode-checkbox:checked
  + .main-nav__dark-mode-label
  .main-nav__toggle-text {
  color: #fff;
  left: 10px;
}
.main-nav__dark-mode-checkbox:checked
  + .main-nav__dark-mode-label
  .main-nav__toggle-text::before {
  content: "Light";
  font-size: 14px;
  text-transform: uppercase;
}
.main-nav__dark-mode-checkbox:not(:checked)
  + .main-nav__dark-mode-label
  .main-nav__toggle-text::before {
  content: "Dark";
  font-size: 14px;
  text-transform: uppercase;
}
.main-nav__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-top {
  display: block;
  padding: 0.65rem 0.5rem;
  color: #fff;
  /* font-family: 'Oswald'; */
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 3px;
}
.menu-top:hover {
  outline: none;
  text-decoration: none;
  color: #212121;
}
.menu-top-nha-cai a {
  background: linear-gradient(142deg, #bb5014 0%, #8b0000 100%);
}
.menu-cuoc-8xbet a {
  background: linear-gradient(142deg, #ffd600 0%, #b05500 100%);
}

/* START: mobile navbar */
@media (max-width: 991px) {
  .navbar-nav {
    row-gap: 12px;
  }
  .nav-mobile {
    background: #1e1e1e;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
  }
  .nav-mobile .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar-brand {
    color: #fff !important;
    font-weight: bold;
    font-size: 1.5rem;
  }
  .navbar-toggler {
    border: none;
    padding: 0;
  }
  .navbar-toggler:focus {
    outline: none;
  }
  .navbar-toggler-icon {
    background-image: none !important;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
    position: relative;
  }
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff4000;
    transition: transform 0.3s ease-in-out;
  }
  .navbar-toggler-icon::before {
    top: 30%;
    box-shadow: 0 6px 0 #ff4000;
  }
  .navbar-toggler-icon::after {
    bottom: 25%;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(6px) rotate(45deg);
    box-shadow: none;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-mobile .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e1e1e;
    padding: 1rem;
  }
  .nav-mobile .nav-link {
    background: linear-gradient(to left, #ffffff, #999999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 10px 0 0 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    padding: 5px 15px;
    /* font-family: 'Oswald'; */
    text-transform: uppercase;
  }
  .nav-mobile .nav-item.active .nav-link {
    position: relative;
    color: #ff4000 !important;
    width: max-content;
    border-radius: 6px;
    padding: 5px 15px;
    background: transparent;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: initial;
  }
  .nav-mobile .nav-item.active .nav-link::before,
  .nav-mobile .nav-item.active .nav-link:hover::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ff4000;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .nav-mobile .nav-link svg {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
  }
  .nav-mobile .menu-top-nha-cai a,
  .nav-mobile .menu-cuoc-8xbet a {
    width: max-content;
  }
}
/* END: mobile navbar */

/* START: main-page */
.main-page {
  border-radius: 7px;
  background-size: 100%;
  margin-bottom: 16px;
}
.page_bars {
  background: linear-gradient(0deg, #01112e 0%, #182a42 100%);
  border-radius: 10px;
  position: relative;
}
.main-page .sports-bars {
  /* border-bottom: 1px solid #ffffff17; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
  position: relative;
  padding: 16px;
  padding-bottom: 11px;
}
.main-page .sports-bars::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgb(255 255 255 / 10%);
}
.main-page .sports-bars ul {
  list-style: none;
  width: 100%;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  flex: 0 0 calc(100% - 250px);
  padding-right: 6px;
  border-bottom: none;
}
.main-page .sports-bars ul li {
  position: relative;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.main-page .sports-bars ul li button.active,
.main-page .sports-bars ul li button:focus,
.main-page .sports-bars ul li button:hover {
  position: relative;
  /* color: #feba4b; */
  color: #ffffff;
  font-weight: 600;
  border: none;
  text-shadow: 0px 0.92px 3.678px rgba(0, 0, 0, 0.24);
  background: linear-gradient(178deg, #002669, #004bcf);
  border-radius: 100px;
}

.main-page .sports-bars ul li button.active::before,
.main-page .sports-bars ul li button:focus::before,
.main-page .sports-bars ul li button:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 1px;
  border: none;
  background: linear-gradient(178deg, #013b8b, #001450);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.main-page .sports-bars ul li button img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(10%) saturate(1200%)
    hue-rotate(190deg) brightness(94%) contrast(105%);
}
.main-page .sports-bars ul li button.active img,
.main-page .sports-bars ul li button:focus img,
.main-page .sports-bars ul li button:hover img {
  filter: unset;
}

/* .main-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;
}

.main-page .sports-bars ul li button {
  background: #0e192d;
  border: 1px solid transparent;
  color: #395688;
  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: 5px;
  font-weight: 600;
  min-width: auto;
  height: 39px;
  outline: 0;
  border-radius: 100px;
  margin-bottom: 0;
  color: #395688;
  text-align: center;
  text-shadow: 0px 0.92px 3.678px rgba(0, 0, 0, 0.24);
  font-family: Oswald;
  font-size: 13.793px;
  font-style: normal;
  font-weight: 600;
}
.main-page .sports-bars ul li button span {
  line-height: 0;
}
/* START: switch */
.main-page .sports-bars .btn-livescore {
  /* width: 131px; */
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  border: 1px solid #3a3a3a;
  border-radius: 30px;
  background: #0e192d;
  color: #c4c4c4;
  font-size: 14px;
  font-family: Oswald;
  font-weight: 600;
  text-transform: uppercase;
  padding: 7px 14px 7px 10px;
}
.main-page .sports-bars .btn-livescore svg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-page .sports-bars .btn-livescore svg.lv-svg-active {
  display: none;
}
.main-page .sports-bars .btn-livescore span {
  z-index: 2;
}
.switch {
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  justify-content: space-between;
  line-height: 20px;
  margin-bottom: 0;
}
.switch input {
  display: none;
}
.switch .switch-style {
  background: #a3a3a3;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  height: 18px;
  width: 32px;
  position: relative;
  transition: all 0.3s ease-in-out;
  margin-right: 5px;
}
.switch .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;
}

/* background: linear-gradient(180deg, rgba(0, 31, 59, 0.5) 0%, rgba(0, 25, 49, 0.5) 50%, rgba(26, 31, 43, 0.5) 100%); */
/* box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.12); */
.switch > input[type="checkbox"]:checked + .switch-style {
  background: #ff4002;
}
.switch > input[type="checkbox"]:checked + .switch-style:before {
  left: 16px;
}
/* END: switch */

/* Football tabs */
.football-tab {
  padding: 0 16px 12px 16px;
}
.main-page .list-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  gap: 12px;
  padding: 0 6px;
  margin-bottom: 0;
}
.main-page .list-filter li a.now {
  position: relative;
  color: #fff;
  background: linear-gradient(360deg, #003547, #002d4d);
}
.main-page .list-filter li a.now::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  /* background: linear-gradient(180deg, #232f47 2%, #232f47 47%, #1c222f 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;
}
.main-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: 1px solid rgba(60, 68, 89, 1); */
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  background: #102243;
  /* background: linear-gradient(360deg, #242c3f, rgba(34, 42, 73, 0.2)); */
}
.match__settings button.settings-btn {
  position: relative;
  /* font-family: Raleway; */
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  height: 34px;
  gap: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
  padding: 0 8px;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  border: none;
  border-radius: 11px;
  background: linear-gradient(360deg, #242c3f, rgba(34, 42, 73, 0.2));
}
.match__settings button.settings-btn:focus {
  outline: none;
}
.match__settings button.settings-btn:hover {
  border: 1px solid rgba(60, 68, 89, 1);
}
.main-page .list-filter li {
  position: relative;
  z-index: 999;
}
.main-page .list-filter li a.active,
.main-page .list-filter li a:hover {
  color: #56fbc3;
  border: 1px solid transparent;
  position: relative;
  border-radius: 8px;
  font-weight: 600;
  z-index: 1;
  background: linear-gradient(
    360deg,
    rgba(31, 62, 171, 0.32),
    rgba(22, 89, 81, 0.2)
  );
  /* box-shadow: 0px -2px 6px 0px rgba(255, 200, 50, 0.3); */
}
.main-page .list-filter li a.active::before,
.main-page .list-filter li a:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  /* background: linear-gradient(180deg, #ffc547, #8192bf); */
  background: linear-gradient(
    360deg,
    rgba(0, 101, 144, 1),
    rgba(35, 59, 83, 0)
  );
  -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;
}
.main-page .list-filter li a.now .num {
  background: #012a38;
}
.main-page .list-filter li a .num {
  background: #012a38;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  border-radius: 38px;
  width: 22px;
  height: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 11px;
}
.main-page .list-filter li a.active .num {
  color: #ffffff;
}
.match__settings {
  display: flex;
  justify-content: flex-end;
  padding-right: 6px;
}

/* Recent Changes */
.form-group.sl-leagues .form-control {
  position: relative;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.375rem 0.75rem;
  z-index: 1;
  background: linear-gradient(360deg, #0e192d, #0e192d);
}

.form-group.sl-leagues {
  position: relative;
  border-radius: 6px;
  padding: 1px;
  margin-bottom: 0 !important;
  background: linear-gradient(360deg, #0e192d, #0e192d);
}

.form-group.sl-leagues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(180deg, #232f47 2%, #232f47 47%, #1c222f 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;
}

.form-group.sl-leagues::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='%232FB925' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M12.4588 0.718764C12.87 0.29833 13.2811 0.289571 13.6923 0.692486C14.1035 1.0954 14.1035 1.48955 13.6923 1.87495L7.86123 7.34057C7.71171 7.51575 7.50613 7.60334 7.24448 7.60334C6.98283 7.60334 6.77725 7.51575 6.62773 7.34057L0.796657 1.87495C0.385489 1.48955 0.385489 1.0954 0.796657 0.692485C1.20783 0.28957 1.61899 0.298329 2.03015 0.718764L7.24448 5.55373L12.4588 0.718764Z' fill='%232FB925'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}
.form-group.sl-leagues .form-control::-ms-expand {
  display: none;
}
.form-group.sl-leagues option {
  /* background: linear-gradient(180deg, #232f47 2%, #232f47 47%, #1c222f 100%); */
  background-color: #212529;
}

@media (max-width: 992px) {
  .main-page .list-filter {
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 0 0 12px 0;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .main-page .sports-bars ul li button {
    flex-direction: column;
    gap: 10px;
    min-width: 90px;
    height: 60px;
  }
  .main-page .sports-bars ul li button svg {
    width: 24px;
    height: 24px;
  }
  .main-page .sports-bars ul li button.active::before,
  .main-page .sports-bars ul li button:focus::before,
  .main-page .sports-bars ul li button:hover::before {
    width: 55px;
  }
  .main-page .list-filter li a {
    gap: 5px;
  }
  .main-page .sports-bars ul li::after {
    right: 0;
  }
}
@media (max-width: 767px) {
  .main-page .sports-bars ul {
    gap: 10px;
  }

  .main-page .list-filter li a {
    min-width: 150px;
    padding: 5px 10px;
  }
  .main-page .sports-bars .btn-livescore {
    width: 145px;
  }
  span.txt {
    width: inherit;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
  }
  .main-page .sports-bars {
    display: grid;
    grid-template-columns: 1fr 145px;
    gap: 10px;
  }
  .main-page .sports-bars ul li button {
    min-width: 70px;
  }
  .switch > input[type="checkbox"]:checked + .switch-style:before {
    left: 5px;
  }
}
@media (max-width: 589px) {
  .main-page .sports-bars ul li button {
    font-size: 11px;
    min-width: 70px;
  }
  .main-nav__toggle {
    align-items: flex-end;
    flex-direction: column;
  }
  .main-page .sports-bars {
    padding: 15px 12px;
    grid-template-columns: 1fr 90px;
  }
  .main-page .sports-bars .btn-livescore {
    width: 120px;
  }
  .main-page .sports-bars ul {
    flex: 0 0 calc(100% - 150px);
  }
  .main-page .sports-bars ul li {
    margin: 0;
  }
}

@media (max-width: 456px) {
  .switch > input[type="checkbox"]:checked + .switch-style:before {
    left: 5px;
  }
  .main-page .list-filter li a {
    font-size: 11px;
    font-weight: 500;
  }
  .main-page .list-filter {
    gap: 5px;
  }
  .main-page .sports-bars {
    gap: 0;
  }
  .main-page .sports-bars ul {
    justify-content: normal;
    padding-right: 0;
    gap: 7px;
    flex: 0 0 calc(100% - 110px);
  }
  .main-page .sports-bars {
    padding: 10px 0px;
  }
  .main-page .sports-bars ul li button {
    min-width: auto;
    font-size: 9px;
    border-radius: 12px !important;
    padding: 0px;
    padding-inline: 3px;
  }
  .main-page .sports-bars .btn-livescore {
    width: 72px;
    padding: 7px 0 7px 0px;
  }
  .switch {
    font-size: 11px;
  }
}
/* END: main-page */

/* START: Grid Matches */
.grid-matches_wrapper {
  margin-top: 20px;
}
.grid-matches {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.main-grid-match {
  position: relative;
  border-radius: 11px;
  background: #01112e
    url("../images/front/grid-match_bg.png")
    center center / cover no-repeat;
}
#basketball .main-grid-match {
  background: #14141466
    url("../images/front/grid-match_bg-basketball.svg")
    center center / cover no-repeat;
}
#tennis .main-grid-match {
  background: #14141466
    url("../images/front/grid-match_bg-tennis.svg")
    center center / cover no-repeat;
}
#volleyball .main-grid-match {
  background: #14141466
    url("../images/front/grid-match_bg-volleyball.svg")
    center center / cover no-repeat;
}
#badminton .main-grid-match {
  background: #14141466
    url("../images/front/grid-match_bg-badminton.svg")
    center center / cover no-repeat;
}
.main-grid-match::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 11px;
  padding: 1px;
  background: linear-gradient(180deg, #232f47 2%, #232f47 47%, #1c222f 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;
}
.main-grid-match a {
  text-decoration: none;
}
.grid-match__tennis .team-name-group {
  height: 45px;
}
.gmd-tournament-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  text-align: center;
  padding: 5px 12px;
  color: #fff;
}
.gmd-match-league {
  text-align: left;
  color: #828b98;
  text-transform: uppercase;
  font-size: 12px;
}
.gmd-match-league img {
  height: 14px;
  width: 14px;
}
.gmd-comp_logo {
  height: 14px;
  width: 14px;
  object-fit: contain;
}
.gmd-match-league {
  text-align: left;
  color: #828b98;
  text-transform: uppercase;
  font-size: 11px;
}
.gmd-elapsed-time {
  position: relative;
  border-radius: 5px;
  text-align: center;
}
.gmd-elapsed-wrapper {
  position: absolute;
  top: -25px;
  width: 120px;
  height: 30px;
}
.gmd-elapsed {
  width: 100%;
  height: 100%;
}
.gmd-e_minutes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  /* font-weight: bold; */
  color: #fff;
  text-wrap: nowrap;
}
.gmd-match-date {
  text-align: right;
  font-size: 12px;
  color: #f5a800;
  opacity: 0.8;
}
.gmd-match-date span {
  position: relative;
  padding: 4.5px 10px;
  margin-bottom: 0;
  border-radius: 13px;
  box-shadow: inset 0px 0px 0 1px #262d3f;
  color: #ffb517;
  font-size: 12px;
  font-family: "Proxima Nova", sans-serif;
  font-weight: 400;
  line-height: 20px;
}
.gmd-match-date span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 13px;
  padding: 1px;
  background: linear-gradient(0deg, #ffb517 20%, rgb(1 22 56) 62%);
  -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;
}
.gmd-content_match {
  align-items: start;
  color: #fff;
  display: flex;
  /* grid-template-columns: 1fr 85px 1fr; */
  padding: 0 0.5rem 0.8rem;
  text-align: center;
  align-items: center;
}
.gmd-home_team {
  display: grid;
  justify-content: end;
  justify-items: center;
  align-items: center;
  gap: 5px;
  padding-right: 35px;
  flex: 1;
}
.gmd-team .team-logo-group img {
  height: 50px;
  width: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 2px;
}
.gmd-mid_score {
  width: max-content;
}
.grid-match__status .grid-match__vs {
  background: linear-gradient(
    113deg,
    #1553ef 7.37%,
    #0c3089 57.22%,
    #0b2a79 66.05%,
    #000 131.67%
  );
  /* 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;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.grid-match__status .grid-match__vs {
  margin-inline: 20px;
}
.grid-match__vs {
  color: #bbbbbb;
  white-space: nowrap;
}
.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;
}
.gmd-score-box {
  border-radius: 5px;
  display: flex;
  font-size: clamp(1.1875rem, 2vw + 0.5rem, 1.1875rem);
  font-weight: 500;
  gap: 0.3rem;
  justify-content: space-evenly;
  padding: 5px;
  background: linear-gradient(90deg, #0e0065 0%, #09003f 100%);
}
.gmd_home-score.is-win p,
.gmd_away-score.is-win p {
  background: linear-gradient(0deg, #2532d5 0%, #070e59 76.25%);
  padding-inline: 10px;
  color: white;
}
.is-win p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 6px;
  padding: 1px;
  background: linear-gradient(
    360deg,
    rgba(0, 200, 244, 0.75),
    rgba(66, 83, 243, 0.75)
  );
  -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;
}
.gmd_home-score p {
  position: relative;
  border-radius: 5.625px;
  /* padding: 0 10px; */
  padding-inline: 10px 3px;
  margin-bottom: 0;
}
.gmd_away-score p {
  position: relative;
  margin-bottom: 0;
  border-radius: 5.625px;
  /* padding: 0 10px; */
  padding-inline: 3px 10px;
}
.gmd-away_team {
  display: grid;
  justify-content: start;
  justify-items: center;
  align-items: center;
  gap: 5px;
  padding-left: 35px;
  flex: 1;
}
.gmd-match-footer-tennis {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  gap: 12px;
}
.gmd-match-footer-tennis .t-incident-tennis {
  width: 200px;
  gap: 4px;
}
.gmd-match-footer-tennis .t-incident-tennis-5 {
  width: 260px;
}
.gmd-match-footer-tennis .t-incident-tennis .tib-row-head {
  display: none;
}
.gmd-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;
}
.gmd-match-footer-tennis .grid-pt div {
  height: 24px;
  display: flex;
  align-items: center;
}
.gmd-match-footer-tennis .grid-pt .grid-pt-home {
  margin-bottom: 8px;
}
.gmd-match-footer {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr 1fr;
  padding: 4px 10px 3px 10px;
  margin: 0 12px 6px 12px;
  align-items: center;
  border-radius: 11px;
  box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.12);
  /* background: linear-gradient(
		180deg,
		rgba(0, 31, 59, 0.5) 0%,
		rgba(0, 25, 49, 0.5) 50%,
		rgba(26, 31, 43, 0.5) 100%
	); */
  background: transparent;
}
.gmd-match-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 11px;
  padding: 1px;
  background: linear-gradient(
    0deg,
    rgba(26, 30, 35, 0) 0%,
    rgb(104 115 205 / 50%) 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;
}
.gmd-match-footer__streamer {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #bbbbbb;
  justify-content: flex-end;
}
/* BLV toggle */
.extra-info {
  display: none;
  flex-direction: row;
  gap: 5px;
}
.toggle-btn {
  position: relative;
  background: none;
  border: none;
  color: #bbbbbb;
  /* background-color: #122A33; */
  border: none;
  border-radius: 38px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.toggle-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 24px;
  opacity: 0.3;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 54.5%,
    rgba(255, 255, 255, 0) 100%
  );
}
.blv-count {
  display: flex;
  align-items: center;
  gap: 5px;
}
span.blv-arrow {
  color: #bbbbbb;
}
.gmd-match-footer__streamer.active span.blv-arrow {
  color: #2c73f2;
}
/* .gmd-match-footer__streamer.active span:first-child {
	display: none;
} */
.gmd-match-footer:has(.no-blv),
.gmd-match-footer:has(.int-blv) {
  grid-template-columns: 1fr 1fr 1fr;
}
.gmd-match-footer__streamer:has(.no-blv),
.gmd-match-footer__streamer:has(.int-blv) {
  justify-content: center;
}
.no-blv img {
  filter: grayscale(100%);
  pointer-events: none;
}
.toggle-btn.no-blv img {
  filter: grayscale(100%);
}
.toggle-btn.no-blv:has(img) {
  pointer-events: none;
}
.no-blv .blv-count {
  display: none;
}
.toggle-btn.no-blv::after {
  display: none;
}
.toggle-btn:hover,
.gmd-match-footer__streamer.active .toggle-btn {
  /* border: 1px solid #00461D; */
  border: none;
  background: transparent;
}
.gmd-match-footer__streamer.active .toggle-btn img,
.gmd-match-footer__streamer.active .toggle-btn span:first-child {
  display: none;
}
.gmd-match-footer__streamer.active .toggle-btn.no-blv {
  border: 1px solid transparent;
  background-color: transparent;
}
button.toggle-btn span {
  font-size: 12px;
}
.toggle-btn:focus {
  outline: none;
}
.gmd-match-footer__streamer.active .extra-info {
  display: flex;
  align-items: center;
}
/* BLV toggle */
.gmd-match-footer__flag * {
  font-size: 12px;
}
.gmd-match-footer__flag {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  /* margin: 0 auto; */
  border-radius: 38px;
  font-size: 11px;
  background: linear-gradient(360deg, #003547, #002d4d);
  min-width: 160px;
  padding: 0 4px;
  height: 22px;
  gap: 3px;
}
.gmd-match-footer__flag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(180deg, #015078, #002d48);
  -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;
}
.gmd-match-footer__flag.flag-mobile {
  display: none;
}

.grid-match__h2h-vs {
  gap: 2px;
  align-items: center;
}
.grid-match__h2h-vs img {
  height: 12px;
  width: 12px;
  object-fit: contain;
}

@media screen and (max-width: 1200px) {
  .grid-match__h2h-vs img {
    height: 10px;
    width: 10px;
  }
}

@media (max-width: 575px) {
  .gmd-match-footer__flag {
    display: none;
  }
  .gmd-match-footer__flag.flag-mobile {
    display: flex;
    margin: 0 auto;
    gap: 6px;
  }

  .gmd-match-footer:not(:has(.no-blv)),
  .gmd-match-footer:not(:has(.int-blv)) {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 390px) {
  .grid-match__h2h-vs {
    gap: 2px;
  }
  .grid-match__h2h-vs img {
    height: 9px;
  }
}
.gmd-match__goal-scoring {
  gap: 3px;
  color: #fff;
  padding: 3px 0 3px 3px;
}
.gmd-match__corner-yellow {
  gap: 3px;
  color: #fff;
  padding: 3px 0 3px 3px;
}
.gmd-match__goal-scoring .gmd-ht {
  color: #0cc956;
}
span.gmd-match__corner-ball {
  gap: 3px;
  padding: 3px 3px;
  color: #fff;
}
.gmd-match-footer__odds {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  height: 30px;
}
.main-grid-match a {
  text-decoration: none;
}
.main-grid-match a.odds-comp img {
  width: 66px;
  height: auto;
  object-fit: contain;
}
#tennis a.odds-comp img {
  width: auto;
  max-width: 73px;
}
.main-grid-match.grid-match--is-hot {
  border: 1px solid #be3342;
}
.gmd-match__odds {
  color: #8d92a2;
  font-family: "Roboto";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  position: relative;
  min-width: 90px;
}
.gmd-match__odds::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 24px;
  opacity: 0.3;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 54.5%,
    rgba(255, 255, 255, 0) 100%
  );
}
.gmd-match__odds::after {
  content: "";
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 24px;
  opacity: 0.3;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 54.5%,
    rgba(255, 255, 255, 0) 100%
  );
}
.gmd-match__odds-item {
  display: flex;
  justify-content: space-between;
  line-height: 16px;
  gap: 15px;
  position: relative;
}
.gmd-match__odds-item p {
  margin-bottom: 0;
}
.odds_inc {
  color: #0cc956;
}
.odds_dec {
  color: #ff0000;
}
.odds_neut {
  color: #1a83ff;
}
.events_box .btn-custom {
  background: -webkit-linear-gradient(72.67deg, #ff7f23 -19.2%, #ffbc09 87.67%);
  background: -o-linear-gradient(72.67deg, #ff7f23 -19.2%, #ffbc09 87.67%);
  background: linear-gradient(17.33deg, #ff7f23 -19.2%, #ffbc09 87.67%);
  border-radius: 3px;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17.0016px;
  line-height: 27px;
  text-transform: uppercase;
  color: #04060b;
  width: 100%;
}

@media (max-width: 991px) {
  .grid-matches {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .grid-match__tennis .team-name-group {
    height: 36px;
  }
  .gmd-away_team p,
  .gmd-home_team p {
    width: 100px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
  }
  .gmd-match-footer__streamer:has(.no-blv),
  .gmd-match-footer__streamer:has(.int-blv) {
    justify-content: start !important;
  }
}

@media (max-width: 576px) {
  .gmd-match-footer__streamer.active .extra-info {
    flex-direction: column;
    position: absolute;
    top: 100%;
    /* left: 0; */
    width: 85px;
    background: linear-gradient(
      180deg,
      rgba(0, 31, 59, 1) 0%,
      rgba(0, 25, 49, 1) 50%,
      rgba(26, 31, 43, 0.5) 100%
    );
    border-radius: 6px;
    padding: 5px 7px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 998;
  }
  .extra-info_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 3px;
  }
  button.toggle-btn span {
    font-size: 11px;
  }
  .gmd-match__odds {
    font-size: 10px;
    min-width: 85px;
  }
  .gmd-match__odds-item {
    gap: 10px;
  }
  .main-grid-match a.odds-comp img {
    width: 50px;
    height: auto;
    object-fit: contain;
  }
  .gmd-match-footer {
    grid-template-columns: 120px 1fr 1fr;
  }
  .gmd-match-footer__flag {
    margin: 0;
    /* margin-left: auto; */
  }
}

@media (max-width: 480px) {
  .gmd-home_team {
    padding-right: 5px;
  }
  .gmd-away_team {
    padding-left: 5px;
  }
  .gmd-score-box {
    font-size: 17px;
  }
}

@media (max-width: 450px) {
  .gmd-match-footer__flag {
    font-size: 10px;
  }
  .gmd-match-footer {
    grid-template-columns: 90px 1fr 1fr;
  }
  .gmd-match__goal-scoring img {
    /*display: none;*/
  }
  .gmd-match-footer__streamer .toggle-btn img,
  .gmd-match-footer__streamer .toggle-btn span:first-child {
    display: none;
  }
  .main-grid-match a.odds-comp img {
    width: 50px;
  }
  .gmd-match__odds {
    font-size: 9px;
    min-width: 80px;
  }
  .gmd-match-footer {
    padding: 5px;
    margin: 0.25rem 0.35rem 0.25rem 0.35rem;
  }
  .extra-info_one img {
    width: 18px;
    height: 18px;
  }
  .gmd-match-league {
    width: 90px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* END: Grid Matches */

/* NEW CUSTOM */
/* Recent Changes */
.gmd-content_match {
  align-items: start;
  color: #fff;
  display: flex;
  /* grid-template-columns: 1fr 85px 1fr; */
  padding: 0 0.5rem 9px;
  text-align: center;
  align-items: center;
}
.gmd-home_team {
  display: grid;
  justify-content: end;
  justify-items: center;
  align-items: center;
  gap: 5px;
  padding-right: 37px;
  flex: 1;
  p {
    margin-bottom: 0 !important;
    width: 150px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
  }
}
.gmd-away_team {
  display: grid;
  justify-content: start;
  justify-items: center;
  align-items: center;
  gap: 5px;
  padding-left: 37px;
  flex: 1;
  p {
    margin-bottom: 0 !important;
    width: 150px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
  }
}
.gmd-mid_score {
  width: max-content;
  min-width: 74px;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .gmd-home_team {
    padding-right: 5px;
  }
  .gmd-away_team {
    padding-left: 5px;
  }
  .gmd-score-box {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .gmd-away_team p,
  .gmd-home_team p {
    width: 100px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
  }
}

.redirectPopup {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 73%;
  z-index: 1;
}

.toggle-btn {
  background: none;
  border: none;
  color: #bbbbbb;
  border: 1px solid transparent;
  border-radius: 38px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  margin-bottom: 0;
}
/* FIX Center Odds */
.gmd-match__odds-item {
  display: flex;
  justify-content: space-around;
  line-height: 16px;
  gap: 10px;
  position: relative;
  text-align: center;
}
.gmd-match__odds-item p {
  margin-bottom: 0;
  flex: 1;
}
/* Fix BLV */
.extra-info_one svg {
  width: 30px;
  height: 30px;
}
.extra-info_one span {
  color: #BBBBBB;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.events_box .btn-custom {
  background: -webkit-linear-gradient(72.67deg, #ff7f23 -19.2%, #ffbc09 87.67%);
  background: -o-linear-gradient(72.67deg, #ff7f23 -19.2%, #ffbc09 87.67%);
  background: linear-gradient(17.33deg, #ff7f23 -19.2%, #ffbc09 87.67%);
  border-radius: 3px;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 17.0016px;
  line-height: 27px;
  text-transform: uppercase;
  color: #04060b;
  width: 100%;
}

.form-group.sl-leagues .form-control {
  border: none;
  border-radius: 30px;
  color: #fff;
  /* background: linear-gradient(180deg, rgba(0, 31, 59, 0.5) 0%, rgba(0, 25, 49, 0.5) 50%, rgba(26, 31, 43, 0.5) 100%); */
  background: url(../images/front/dropdown-bg.png) no-repeat center center /
    cover;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.375rem 0.75rem;
  position: relative;
  z-index: 1;
}

.form-group.sl-leagues {
  position: relative;
  border-radius: 30px;
  background: url(../images/front/dropdown-bg.png) no-repeat center center /
    cover;
  padding: 1px;
}

.form-group.sl-leagues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(180deg, #232f47 2%, #232f47 47%, #1c222f 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;
}

.form-group.sl-leagues::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M12.4588 0.718764C12.87 0.29833 13.2811 0.289571 13.6923 0.692486C14.1035 1.0954 14.1035 1.48955 13.6923 1.87495L7.86123 7.34057C7.71171 7.51575 7.50613 7.60334 7.24448 7.60334C6.98283 7.60334 6.77725 7.51575 6.62773 7.34057L0.796657 1.87495C0.385489 1.48955 0.385489 1.0954 0.796657 0.692485C1.20783 0.28957 1.61899 0.298329 2.03015 0.718764L7.24448 5.55373L12.4588 0.718764Z' fill='%23919191'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 2;
}

.form-group.sl-leagues .form-control::-ms-expand {
  display: none;
}
.form-group.sl-leagues,
.form-group.sl-leagues .form-control {
  margin-bottom: 0;
}
.sl-leagues option {
  background-color: rgba(26, 31, 43, 0.7);
  backdrop-filter: blur(10px);
}
.gmd-match-league {
  color: white !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
}
.gmd-match-league .text-ellipsis {
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.extra-info_one a,
.extra-info_one a:hover {
  color: transparent;
}
.gmd-elapsed-time {
  position: relative;
  border-radius: 5px;
  text-align: center;
  max-height: 26px;
}
.gmd-elapsed-wrapper {
  position: absolute;
  top: -25px;
  width: 120px;
  height: 30px;
}
.gmd-elapsed {
  width: 100%;
  height: 100%;
}
@media (max-width: 589px) {
  .main-page .sports-bars ul {
    justify-content: normal;
    gap: 5px;
  }
}
.gmd-match-footer__flag img {
  height: 12px;
}
.gmd-match-footer__flag {
  font-size: 14px;
  font-family: "Roboto";
}
.gmd-score-box.grid-match__vs:not(.t_vs_num) {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: linear-gradient(287.75deg, #0d1e54 13.9%, #0a49e7 78.55%);
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
}
.gmd-score-box.grid-match__vs.t_vs_num {
  padding: 5px;
}
@media (max-width: 768px) {
  .gmd-away_team p,
  .gmd-home_team p {
    width: 100px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
    font-size: 12px;
    white-space: nowrap;
  }
}
.gmd-match-league {
  color: #828b98 !important;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Roboto", sans-serif;
  font-weight: 400 !important;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0px;
  text-transform: uppercase;
}
.gmd-match__odds-item .up {
  color: #0cc956;
}
.gmd-match__odds-item .down {
  color: #ff0000;
}
.gmd-match__odds-item .odds_neut {
  color: #1a83ff;
}

@media (max-width: 767px) {
  .main-page .sports-bars ul li button {
    margin-bottom: 0;
  }
  span.txt {
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: nowrap;
  }
}
@media (max-width: 768px) {
  .main-page .sports-bars ul li button.active::before,
  .main-page .sports-bars ul li button:focus::before,
  .main-page .sports-bars ul li button:hover::before {
    width: auto;
  }
}
.gmd-match-league .text-ellipsis {
  position: relative;
  display: inline-block;
  text-wrap: nowrap;
  white-space: nowrap;
}

.gmd-match-league .text-ellipsis::after {
  content: attr(data-attr);
  display: none;
}

@media (max-width: 767px) {
  .gmd-match-league .text-ellipsis {
    color: transparent;
    position: relative;
  }

  .gmd-match-league .text-ellipsis::after {
    display: inline;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
  }
  .gmd-match-footer__flag {
    font-size: 12px;
  }
}
.main-page,
body,
.content-section {
  background: #020019 !important;
}

.extra-info_one a {
  gap: 4px;
}
div#match,
div#match .container {
  padding: 0;
}

@media (max-width: 576px) {
  .extra-info_one.int-blv {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 450px) {
  .gmd-match-footer {
    grid-template-columns: 120px 1fr 1fr;
  }
}
.team-live.mt-2 {
  margin-bottom: 7px;
}
@media (max-width: 450px) {
  .home-featured {
    padding-inline: 15px;
  }

  section#matches {
    padding-inline: 10px;
  }
}

@media (max-width: 767px) {
  .switch > input[type="checkbox"]:checked + .switch-style:before {
    left: 16px;
  }
}
@media (max-width: 456px) {
  .switch > input[type="checkbox"]:checked + .switch-style:before {
    left: 16px;
  }
}

@media (max-width: 576px) {
  .gmd-match-footer:has(.no-blv),
  .gmd-match-footer:has(.int-blv) {
    grid-template-columns: 1fr 80px 1fr;
  }
  .gmd-match-footer__odds {
    gap: 5px;
  }
}

@media (max-width: 380px) {
  .main-grid-match a.odds-comp img {
    width: 40px;
  }
}
@media (max-width: 576px) {
  .extra-info.extra-info_one {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 3px;
  }
  .gmd-match-footer:not(:has(.no-blv)),
  .gmd-match-footer:not(:has(.int-blv)) {
    grid-template-columns: 1fr 80px 1fr;
  }
  .extra-info_one span {
    font-size: 10px;
  }
  .extra-info_one svg {
    width: 25px;
    height: 25px;
  }
  .gmd-match-footer__flag {
    font-size: 11px;
  }
}
@media (max-width: 450px) {
  .gmd-match__odds {
    font-size: 9px;
    min-width: 70px;
  }
  .gmd-match__odds::after {
    right: 20px;
  }
  .gmd-match__odds::before {
    left: 20px;
  }
}
.btn-share {
  min-width: 60px;
}

/* matches__filter-leagues */

.matches__filter--leagues .sl-leagues {
  position: relative;
  width: 100%;
  margin: 0;
  max-width: 209px;
}
.custom-dropdown-trigger {
  background-color: #102243;
  color: white;
  padding: 8px 16px 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-dropdown-trigger img {
  display: none;
}

.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.5);

  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;
}

.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.2) 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: 40%;
  right: 15px;
  width: 13px;
  height: 13px;
  border: solid #00eb1f;
  border-width: 0 2px 2px 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;
  color: white;
  font-size: 13px;
  font-family: Raleway;
  font-weight: 700;
  line-height: 18px;
}

@media (max-width: 576px) {
  .custom-dropdown-trigger {
    padding: 8px 20px;
  }

  .custom-dropdown-content {
    width: 100%;

    top: 45px;
  }
}

/* END: matches__filter-leagues */

.sport-loading {
  font-family: "Roboto";

  border-collapse: collapse;

  border: 1px solid #343940;

  width: 320px;

  text-align: center;

  padding: 12px;

  margin: 0 auto;

  color: white;

  position: relative;

  right: -50%;
}

@media (max-width: 767px) {
  .sport-loading {
    right: unset;

    position: static;
  }
}
#tennis a.odds-comp img {
  width: 70px !important;
}
.nav.custom-tabs.as-hide-popup-chat {
  margin-bottom: 12px;
}
.home .filter-row {
  display: none;
  padding-top: 16px;
  padding-bottom: 16px;
}
.home .filter-row.active {
  display: flex;
  position: relative;
}
.gmd-score-box p {
    color: white;
}
@media (max-width: 767px) {
  #basketball .grid-match__vs {
    transform: scale(0.8);
  }
  #basketball .grid-match__status {
    min-width: 58px;
  }
  .main-page .sports-bars ul li button.active::before,
  .main-page .sports-bars ul li button:focus::before,
  .main-page .sports-bars ul li button:hover::before {
    content: none !important;
  }
  .home .filter-row.active {
    flex-wrap: wrap;
  }
  .matches__filter--leagues .sl-leagues {
    max-width: 100%;
  }
}
