@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400&display=swap');

:root {
  --text-primary: #08c;
  --text-secondary: #2d3e50;
  --primary-bg: #080808;
  --secondary-bg: #000;
  --link-bg: #bbb;
  --grey-bg: #ccc;
  --light-bg: #eee;
  --suspended-color: #730709;
  --red-color: #ff0000;
  --yellow-color: #ffff00;
  --green-color: #00ff00;
  --white-color: #fff;
  --site-color: #000;
  --green-bg: #145b12;
  --blue-color: #0000ff;
}

::placeholder {
  color: white !important;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: white !important;
}

:-ms-input-placeholder {
  color: white !important;
}

::-ms-input-placeholder {
  color: white !important;
}

.back {
  background-color: #d4eaff !important;
  /* Light blue for back bets */
  color: #000 !important;
}

/* // style={{ width: "150px", padding: "8px 10px", cursor: "pointer" }} */
.nav-menu-car {
  width: 150px !important;
  padding: 8px 10px !important;
  cursor: pointer;
  min-width: 150px !important;
  box-sizing: border-box !important;
}

.nav-menu-car.active {
  width: 150px !important;
  padding: 8px 10px !important;
  min-width: 150px !important;
}

.lay {
  background-color: #ffe2e2 !important;
  /* Light red for lay bets */
  color: #000 !important;
}

.new-logo-desktop-img {
  width: 10rem;
  /* equivalent to Tailwind's w-44 */
  height: 70px;
  margin-right: 12px;
  display: flex;
}

.bg-orange-gradient {
  background: linear-gradient(180deg, #fa7e29 0%, #F6682F 80%, #F6682F 100%) !important;
}

/* new nav menu */
.runner-rows-container {
  /* margin-top: 10px; Adjust as needed */
}

.runner-row {
  /* margin-bottom: 5px; Space between runner rows */
}

/* === Active State === */

/* 1. Text turns red */
.nav-tab.active .navspan {
  color: #7817ff;
}

/* 2. Button outline red */
.navbutton.active {
  border: 2px solid #7817ff;
}

/* 3. SVG (icon) outline red */
.navbutton.active {
  border: 2px solid #7817ff;
  border-radius: 6px;
  /* so the outline looks neat */
  padding: 3px;
  /* space inside so border doesn’t cut the icon */
}


.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 0.25rem; */
  padding: 0.2rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-width: fit-content;
  text-decoration: none;
}

.nav-tab:hover {
  /* background: #f3f4f6; */
  text-decoration: none;

}


/* grid */
.grid-responsive {
  display: grid;
  gap: 0.25rem;
  /* gap-1 */
  grid-template-columns: repeat(1, minmax(0, 1fr));
  /* grid-cols-1 */
}

/* new grid class name */
.matches-container {
  width: 100%;
}

.matches-list {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  background: white border: 1px solid #ffffffff;
}

.match-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  /* padding-right: 8px; */
  /* gap: 0.5rem; */
  /* border-bottom: 1px solid #f8f8f8; */
}

.centered-absolute-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
}

.centered-absolute-text-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /*top:10; */
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}

@media (min-width: 768px) {
  .match-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.match-info {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid black;

}

@media (min-width: 768px) {
  .match-info {
    grid-template-columns: repeat(7, 1fr);
  }
}

.team-details {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .team-details {
    grid-column: span 4;
    /* background-color: #1f3155ff;   */
  }
}

.team-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.team-text {
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 95%;
}

.team-name {
  font-family: 'Titillium Web', sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.league-name {
  font-family: 'Titillium Web', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.match-time,
.match-date-replica {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
}

.match-date-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #ff0000;
  /* background: #e9eff8; */
  /* font-weight: 600; */
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-bottom: 0.15rem;
  padding-top: 0.15rem;
  margin: 0 4px;
  /* gap: 0.1rem; */
}

/* width: 78px;
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: #ff0000;
    background: #e9eff8;
    padding: 4px;
    margin: 0 4px; */

.live-label {
  color: #16a34a;
  font-weight: 600;
  font-size: 0.85rem;
  /* margin-bottom: 0.25rem; */
  position: relative;
  overflow: hidden;
}

.live-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #16a34a;
  transform: translateX(-100%);
  animation: slide-back-forth 1.5s ease-in-out infinite alternate;
}

@keyframes slide-back-forth {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


.match-broadcast {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0.5rem;
}

.odds-container {
  width: 100%;
}

.odds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 100%;
  align-items: center;
}

.odds-box {
  border: 1px solid #000000;
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border: 1px solid #f8f8f8;
}




.odd-box-span {}

.odd-blue {
  background-color: #66d1ff;
}

.odd-pink {
  background-color: #ffb4c5;
}

.new-header-expo-buttons {
  position: absolute;
  top: 0;
  left: calc(100% - 25%);
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.new-Expo-image-button {
  width: 65px;
  height: 25px;
}

.nav-tab.active {
  /* background: #dc2626; */
  /* background: #7817ff; */
  text-decoration: none;

  /* height:100%; */
  /* width:100%; */

  color: #fff;
}

.nav-icon-img {
  width: 30px;
  height: 30px;
}

.main-content {
  /* overflow-y: auto;
  height: 100vh; */
  padding: 0.5rem;
  background-color: #080808;
}

.nav-icon {
  /* font-size: 1rem; */
  margin: 0;
  line-height: 1;
}

.nav-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin: 0;
  /* line-height: 1; */
}

.main-nav-pre::-webkit-scrollbar {
  /* display: none;             Chrome, Safari, Edge */
  background-color: rgb(32, 32, 32);
  border: none;
}

.main-nav {
  scrollbar-width: thin;
    scrollbar-color: #7817ff transparent;
}

.main-nav {
  background: #fff;
  /* padding: 0rem 2rem; */
  display: flex;
  /* gap: 1rem; */
  overflow-x: auto;
  /* border-bottom: 1px solid #e5e7eb; */
  background: black;
  /* scrollbar-width: 1px; */
}

.main-nav::-webkit-scrollbar {
  height: 8px;
}

.main-nav::-webkit-scrollbar-track {
  background: transparent;
}

.main-nav::-webkit-scrollbar-thumb {
  background: #7817ff;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.main-nav::-webkit-scrollbar-thumb:hover {
  background: #5c0fcc;
}
/* Grid container */
.casino-games-style {
  display: grid;
  gap: 4px;
  /* padding: 16px; */
  width: 100%;
}

/* Responsive grid columns */
@media (min-width: 1200px) {
  .casino-games-style {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .casino-games-style {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 767px) {
  .casino-games-style {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Game box container */
.casino-game-box {
  position: relative;
  height: 100;
  width: 100%;
  /* aspect-ratio: 1/1; Creates square aspect ratio */
  overflow: hidden;
  /* Hides anything outside the box */
}

/* Image styling - this is the object-cover equivalent */
.casino-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Key property - makes image cover container */
  object-position: center;
  /* Centers the image */
  display: block;
  /* Removes default inline spacing */
}

/* sidebar new  */
.matchlist-coupon-card-first {
  overflow-y: auto;
  /* max-height:1vh; */
}

/* Sidebar Styles */
.sidebar {
  position: static;
  width: 360px;
  background: white;
  border-right: 1px solid #ffff;
  padding: 1rem 0;
  overflow-y: auto;
}

.sidebar-header {
  padding: 0 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.sidebar-header h3 {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  background: white;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  gap: 0.5rem;
  border-left: 3px solid transparent;
}

.sidebar-item:hover {
  background: #f9fafb;
  color: red;
}

.sidebar-item.active {
  background: #fef2f2;
  /* border-left-color: #dc2626; */
  color: #dc2626;
}

.truncated-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-icon {
  font-size: 3rem;
  margin-right: 0.95rem;
}

.sidebar-text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
}

.sidebar-text-other {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
}

.sidebar-arrow {
  font-size: 0.5rem;
  color: #6b7280;
  transition: transform 0.2s;
}

.sidebar-arrow-expand {
  font-size: 0.4rem;
  color: #6b7280;
  transition: transform 0.2s;
}

.sidebar-arrow.expanded {
  transform: rotate(180deg);
}

/* Sidebar Submenu */
.sidebar-submenu {
  background: #f8fafc;
  /* border-left: 3px solid #e5e7eb; */
  /* margin-left: 0.35rem; */
}

.sidebar-subitem {
  padding: 0.5rem 1rem 0.5rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  border-left: 2px solid transparent;
}

.sidebar-subitem:hover {
  background: #f1f5f9;
  /* border-left-color: #dc2626; */
  color: #dc2626;
}

.subitem-text {
  font-size: 0.7rem;
  /* color: #dc2626; */
  font-weight: 400;
}

.subitem-text:hover {
  font-size: 0.7rem;
  color: #dc2626;
  font-weight: 400;
}

.sidebar-img-icon {
  width: 22px;
  height: 18px;
}

/* filter button */
/* Filter Buttons */
.filter-buttons {
  display: flex;
  /* border-radius:50px; */
  gap: 0.3rem;
  /* margin-bottom: 1.5rem; */
}

.filter-btn {
  padding: 0.3rem 1rem;
  background: #fff;
  color: #dc2626;
  border: 1px solid #dc2626;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: #dc2626;
  color: #fff;
}


/* grid */
.grid-responsive {
  display: grid;
  gap: 0.25rem;
  /* gap-1 */
  grid-template-columns: repeat(1, minmax(0, 1fr));
  /* grid-cols-1 */
}

/* new grid class name */
.matches-container {
  width: 100%;
}

.matches-list {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  background: white border: 1px solid #ffffffff;
}

.match-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  /* padding-right: 8px; */
  /* gap: 0.5rem; */
  /* border-bottom: 1px solid #f8f8f8; */
}

.centered-absolute-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
}

.centered-absolute-text-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /*top:10; */
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}

@media (min-width: 768px) {
  .match-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.match-info {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid black;

}

@media (min-width: 768px) {
  .match-info {
    grid-template-columns: repeat(7, 1fr);
  }
}

.team-details {
  grid-column: span 2;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .team-details {
    grid-column: span 4;
    /* background-color: #1f3155ff;   */
  }
}

.team-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.team-text {
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 95%;
}

.team-name {
  font-family: 'Titillium Web', sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

/* Sidebar styles extracted from PreDashboard sidebar markup
   This file collects classes used inside the <aside> block so you can copy/paste it
   into another file. Adjust colors/spacing to perfectly match your PreDashboard as needed. */

.new-shuff-sidebar {
  width: 250px;
  background: linear-gradient(180deg, #0b0c0d 0%, #0f1112 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

/* When collapsed, make a compact narrow sidebar */
.new-shuff-collapsed {
  width: 64px !important;
}

/* Border container for groups inside the sidebar */
.new-shuff-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  /* padding-bottom: 8px; */
}

.sidebar-padding-controller {
  padding-top: 22px !important;
  padding-bottom: 24px !important;
}

.sidebar-padding-controller .new-shuff-collapsed {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

.sidebar-padding-collapse {
  padding-top: 27px !important;
  padding-bottom: 27px !important;
}

/* Sidebar nav item */
.new-shuffle-nav-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.9);
}

.new-shuffle-nav-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.new-shuffle-nav-item.active {
  background: linear-gradient(90deg, rgba(136, 108, 255, 0.12), rgba(136, 108, 255, 0.04));
  color: #eae6ff;
}

.scroll-sidebar-content {
  overflow-y: auto;
  /* max-height: calc(100vh - 160px); */
  padding-right: 6px;
  /* room for scrollbar */
}

.league-group {
  margin-bottom: 8px;
}

.league-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-weight: 700;
  color: #fff;
  background: #111317;
  border-radius: 6px;
}

.league-rows {
  margin-top: 6px;
}

/* utility classes used by PreDashboard markup */
.icon-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.odds-box-hover {
  padding: 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background-color: black;
}

.live-box {
  color: #fff;
  height: 1.25rem;
  /* padding:2px; */
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #149200;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  border-radius: 4px;

}

.odds-box-hover {
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
}

.odds-box-hover:hover {
  background-color: #886cff;
  color: white;
}

.odds-box-hover .odds-span-hover {
  color: #886cff;
  /* transition: color 0.2s; */
}

.odds-box-hover:hover .odds-span-hover {
  color: white;
}

.odds-box-hover:hover span.odds-span-hover {
  color: #fff !important;
}

.odds-span-hover {
  color: #7817ff;
  font-weight: 600;
}

/* collapsed sidebar helpers matching markup */
.new-shuff-sidebar .fs-7 {
  font-size: 0.85rem;
}

.new-shuff-sidebar .fs-5 {
  font-size: 1.1rem;
}

/* small responsive tweaks */
@media (max-width: 768px) {
  .new-shuff-sidebar {
    width: 72px;
  }

  .new-shuff-collapsed {
    width: 56px;
  }
}

.league-name {
  font-family: 'Titillium Web', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.matches-list-dash {
  padding: 10px;
}

.match-time,
.match-date-replica {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
}

.match-date-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  color: #d48d08;
  /* background: #e9eff8; */
  /* font-weight: 600; */
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-bottom: 0.15rem;
  padding-top: 0.15rem;
  margin: 0 4px;
  /* gap: 0.1rem; */
}

/* width: 78px;
    display: block;
    font-size: 9px;
    font-weight: 500;
    color: #ff0000;
    background: #e9eff8;
    padding: 4px;
    margin: 0 4px; */

.live-label {
  color: #16a34a;
  font-weight: 600;
  font-size: 0.85rem;
  /* margin-bottom: 0.25rem; */
  position: relative;
  overflow: hidden;
}

.live-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #16a34a;
  transform: translateX(-100%);
  animation: slide-back-forth 1.5s ease-in-out infinite alternate;
}

@keyframes slide-back-forth {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


.match-broadcast {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 0.5rem;
}

.odds-container {
  width: 100%;
}

.odds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 100%;
  align-items: center;
}

.odds-box {
  /* border: 1px solid #ccc; */
  padding: 0.75rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: black;
  border: 1px solid #000000;
}




.odd-box-span {}

.odd-blue {
  background-color: #66d1ff;
}

.odd-pink {
  background-color: #ffb4c5;
}

.bet-button-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;

}

.user-btn:hover,
.user-btn:focus {
  text-decoration: none !important;
  /* Removes underline */
}

.header-user {
  /* background-color: var(--main-color); */
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;

}

.bet-button-price em {
  font-size: 0.70rem;
  font-style: normal;
  font-weight: 400;
}

.new-header-right {
  display: flex;
  align-items: start;
  gap: 15px;
  flex: 1;
  justify-content: space-between;
  padding-left: 10px;
}

.main-navbutton-container-flex {
  display: flex;
  gap: 15px
}

.btn-logged-header-img {
  width: 20px;
  height: 20px;

}

.new-withdrawal-btn {
  display: flex;
  /* Required for gap to work */
  align-items: center;
  /* Vertically center the icon and text */
  gap: 0.5rem;
  background: #8b0000;
  color: #fff !important;
  border-bottom: 4px solid darkgreen;
  padding: 0.4rem 1rem;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background-color 0.3s, border-bottom-color 0.3s;
}

.new-deposit-btn {
  display: flex;
  /* Required for gap to work */
  align-items: center;
  /* Vertically center the icon and text */
  gap: 0.5rem;
  background: darkgreen !important;
  color: #fff !important;
  border-bottom: 4px solid #8b0000;
  padding: 0.4rem 1rem;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: background-color 0.3s, border-bottom-color 0.3s;
}

/* Base button styling similar to shadcn */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

/* Variant: link-style button (like .new-user-btn) */
.btn-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /* Creates space between icon and text */
  /* background-color: darkgreen; */
  color: #fff;
  /* border-bottom: 4px solid #8b0000; */
  /* transition: background-color 0.3s, border-bottom-color 0.3s; */
}

.user-btn-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: black;
  text-decoration: none;
}

.user-btn-text:hover {
  color: black;
  text-decoration: none;
  text-underline: none;
}

/* Optional: for icon size inside buttons */
.btn-icon {
  width: 12px;
  height: 12px;
}

/* new navbar css */
/* Logo.css */

.new-logo-container {
  /* Add any container-specific styles here if needed */
}



@media (max-width: 768px) {
  .new-logo-desktop-img {
    width: 6rem;
    /* Tailwind's md:w-24 */
    display: none;
  }

  .nav-menu-car {
    width: 120px !important;
    padding: 5px 5px !important;
    cursor: pointer;
    min-width: 120px !important;
  }

  .nav-menu-car.active {
    width: 120px !important;
    padding: 5px 5px !important;
    min-width: 120px !important;
  }

  .odds-box {
    /* border: 1px solid #ccc; */
    padding: 0.35rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border: 1px solid black;
  }

  .centered-absolute-text-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /*top:3; */
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
  }

  .centered-absolute-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 3;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 10px;
  }

  .new-Expo-image-button {
    width: 60px;
    height: 20px;
  }


  .new-header-expo-buttons {
    position: absolute;
    top: 0;
    left: calc(100% - 62%);
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
}


/* Navbar.css */

/* Navbar.css */

.new-navbar-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 765px) and (max-width: 918px) {
  .new-navbar-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .new-header-right {
    display: flex;
    align-items: start;
    gap: 15px;
    flex: 1;
    justify-content: space-between;
    padding-left: 10px;
  }
}

@media (min-width: 768px) {
  .new-navbar-wrapper {
    padding-left: 6rem;
    /* approx md:px-24 */
    padding-right: 6rem;
  }
}

.main-div-expo-button-relatve {
  position: relative;
}

.new-navbar-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0.75rem 0.5rem;
  position: relative;
}

@media (max-width: 768px) {
  .new-navbar-container {
    background-color: #000;
  }
}

@media (min-width: 918px) {
  .new-navbar-container {
    flex-direction: row;
    align-items: center;
    position: relative;
  }
}

.new-navbar-left {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .new-navbar-left {
    flex-direction: column;
    justify-content: center;
    flex-basis: 110px;
  }
}

.new-navbar-logo {
  width: fit-content;
}

.new-navbar-mobile-button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (min-width: 768px) {
  .new-navbar-mobile-button {
    display: none;
  }
}

.new-navbar-search {
  display: flex;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .new-navbar-search {
    margin: 0;
    flex-basis: 60%;
  }
}

.new-navbar-desktop-button {
  display: none;
  /* background-color: #c10930; */
}

@media (min-width: 768px) {
  .new-navbar-desktop-button {
    display: flex;
    justify-content: flex-end;
    flex-basis: 100%;
  }
}

/* navbar search component  */
/* Search.css */

.new-search-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .new-search-wrapper {
    margin-top: 0;
  }
}

.new-search-input-wrapper {
  position: relative;
  width: 100%;
}

.new-search-input {
  width: 100%;
  height: 100%;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  background: transparent;
  box-shadow: none;
}

.new-search-icon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  color: white;
}

@media (min-width: 768px) {
  .new-search-icon {
    color: black;
  }
}

.new-search-rules-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .new-search-rules-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/*  rules page */
.reusable-accordion-container {
  padding: 0.5rem;
  padding-top: 0;
  padding-bottom: 0;
}

.reusable-accordion-title {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: white;
  font-weight: bold;
}

.reusable-accordion-content {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.25rem;
}

/* RulesModal.css */

.new-rules-button {
  background-color: #c10930;
  color: white;
  padding: 0.35rem 1.1rem;
  border-radius: 0.25rem;
  border-bottom: 4px solid #6d081d;
  cursor: pointer;
  transition: background-color 0.3s, border-bottom-color 0.3s;
}

.new-rules-button:hover {
  background-color: #6d081d;
  border-bottom-color: #c10930;
}

.new-rules-modal {
  margin: 0 auto;
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
  background-color: white;
  width: 100%;
  max-width: 768px;
  /* similar to max-w-screen-md */
  border-radius: 0.375rem;
}

.new-rules-title {
  background-color: #343435;
  padding: 0.5rem;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  font-size: 1.25rem;
  color: white;
}

/* modal css */
/* Modal.css */

.new-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  overflow-y: auto;
  transition: background-color 0.3s ease;
}

.new-modal-visible {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.4);
  /* black/40 */
}

.new-modal-hidden {
  visibility: hidden;
  background-color: transparent;
}

/* NavSearch.css */

.nav-search-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  /* Changed from center to prevent height issues */
  position: relative;
  /* padding: 10px; */
}

.nav-search-main {
  /* flex-grow: 1; */
  width: 100%;
}

.nav-search-input-wrapper {
  position: relative;
  display: inline-block;
  width: 350px;
  max-width: 100%;
  /* Adjust as needed */
}

.nav-search-input {
  width: 100%;
  padding: 8px 30px 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.nav-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.nav-search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  /* background: white; */
  /* border: 1px solid #ddd; */
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav-search-suggestions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-search-suggestions li {
  padding: 8px 10px;
  cursor: pointer;
}

.nav-search-suggestions li:hover {
  background-color: #f5f5f5;
}

.nav-search-rules {
  margin-left: 20px;

  display: flex;
}

.new-modal-container {
  position: relative;
  border-radius: 0.75rem;
  background-color: transparent;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: fit-content;
  transition: all 0.3s ease;
  height: fit-content;
}

.new-modal-open {
  transform: scale(1);
  opacity: 1;
  margin-top: 60px;
}

.new-modal-closed {
  transform: scale(1.25);
  opacity: 0;
}

.new-modal-close-button {
  /*position: absolute;*/
  /*top: 1.5rem;*/
  /*right: 1rem;*/
  /*z-index: 10;*/
  /*color: white;*/
  /*background: transparent;*/
  /*border: none;*/
  /*border-radius: 9999px;*/
  /*padding: 0.25rem;*/
  /*font-size: 1.25rem;*/
  /*cursor: pointer;*/
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  color: white;
  background: transparent;
  border: none;
  border-radius: 9999px;
  padding: 0.25rem;
  font-size: 1.25rem;
  cursor: pointer;
}

/* accordian css */
/* Container */
.new-accordion-wrapper {
  padding: 0.5rem;
  padding-bottom: 0;
  padding-top: 0;
}


/* Accordion box */
.new-accordion {
  margin-bottom: 0.75rem;
  border: none;
}

/* Summary Header (like MUI AccordionSummary) */
.new-accordion-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #8b0000;
  padding: 6px 12px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  user-select: none;
}

/* Icon next to title */
.new-accordion-icon {
  font-size: 1rem;
}

/* Content area (like AccordionDetails) */
.new-accordion-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: white;
}

/* When open */
.new-accordion-details.open {
  max-height: 500px;
  /* enough to show long content */
}

/* Each paragraph inside */
.new-accordion-detail-item {
  padding: 0.5rem;
  border-top: 1px solid #ccc;
  font-size: 0.95rem;
}



/*General CSS*/

html,
body {
  height: auto;
  overflow: auto;
  font-family: 'Titillium Web', sans-serif;
  /*font-family: Arial, Verdana, Helvetica, sans-serif;*/
  color: var(--site-color);
  font-size: 16px;
  line-height: 15px;
  background-color: #080808;
}

.p-r {
  position: relative;
}

@font-face {
  font-family: 'CardCharacters';
  src: url('font/CardCharacters.eot?#iefix') format('embedded-opentype'),
    url('font/CardCharacters.woff') format('woff'), url('CardCharacters.ttf') format('truetype'),
    url('CardCharacters.svg#CardCharacters') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CasinoNumFont';
  src: url('font/casino3dmarquee-webfont.woff2') format('woff2'),
    url('font/casino3dmarquee-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.card-icon {
  font-family: CardCharacters !important;
  display: inline-block;
}

#load {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  position: fixed !important;
  align-items: center;
  z-index: 9999;
  position: relative;
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
}

#load-inner {
  position: relative;
  text-align: center;
}

#load-inner img {
  display: block;
  height: 65px;
}

#load-inner i {
  font-size: 24px;
  color: rgb(255, 255, 255);
  margin-top: 40px;
}

.modal-header {
  padding: 10px;
  background: var(--theme1-bg);
  color: var(--primary-color);
  border-radius: 0;
  border: 0;
  display: flex;
  align-items: center;
}

.modal-body {
  max-height: calc(96vh - 47px);
  overflow: auto;
}

.modal-content {
  border: 0;
  border-radius: 0;
}

.modal-header .close {
  color: var(--primary-color);
  opacity: 1;
}

.modal-header .close:focus,
.modal-header .close:hover {
  color: var(--primary-color);
  opacity: 1;
}

ul {
  margin-bottom: 0;
  padding: 0;
}

li {
  list-style: none;
}

p {
  margin-bottom: 0;
}

.btn-theme {
  color: var(--primary-color) !important;
  background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg)) !important;
  width: 100% !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2) !important;
  border: 0 !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  position: relative;
}

.suspended {
  position: -webkit-sticky !important;
  position: relative;
}

.sports-wrapper .main-market .suspended:after {
  width: 60%;
  /* Matches the 6 odds boxes width (3 back + 3 lay) */
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.bookmaker-market .suspended:after {
  width: 60%;
  /* Matches the 6 odds boxes width (3 back + 3 lay) */
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.bookmaker-market .col-4 .suspended:after {
  width: 40%;
  content: attr(data-title);
  font-size: 12px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.teen9-container .suspended:after {
  width: 60%;
}

.teenpatti-1day .suspended:after {
  width: 40%;
}

.teenpatti-20 .suspended:after {
  width: 50%;
}

.teenpatti-open .suspended:after {
  width: 60%;
}

.poker-20 .suspended:after {
  width: 40%;
}

.poker-1day .suspended:after {
  width: 60%;
}

.poker-6player .suspended:after {
  width: 100%;
}

.casino-32A .suspended:after {
  width: 40%;
}

.casino-32B .suspended:after {
  width: 40%;
}

.casino-32B .casino-32-worli .suspended:after {
  width: 100%;
}

.dragon-tiger-20 .suspended:after {
  width: 100%;
}

.dragon-tiger-1day .suspended:after {
  width: 100%;
  font-family: 'Font Awesome 5 Free';
  content: '\f023';
  font-weight: 900;
  font-size: 16px;
  color: var(--white-color);
}

.dragon-tiger-1day .dt-odds .suspended:after {
  width: 60%;
}

.aaa .aaa-odds .suspended:after {
  width: 40%;
}

.aaa .suspended:after {
  width: 100%;
}

.bollywood-table .bt-odds .suspended:after {
  width: 40%;
}

.bollywood-table .suspended:after {
  width: 100%;
}

.lucky7 .suspended:after {
  width: 100%;
}

.worli-matka .suspended {
  position: relative;
  display: table;
  width: 100%;
}

.worli-matka .suspended:after {
  width: 100%;
}

.suspendedtd {
  position: relative;
}

.suspendedtd:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white-color);
  text-transform: uppercase;
  font-family: 'Font Awesome 5 Free';
  content: '\f023';
  font-weight: 900;
  font-size: 16px;
  top: 0;
  width: 100%;
}

.dt-card .suspended {
  position: relative;
}

.dt-card .suspended:after {
  width: 100%;
  font-size: 12px;
}

.btn-theme.suspended:after {
  border-radius: 4px;
}

.box-1 {

  font-size: 13px;
  font-weight: 700;
  /* width: 16.66666%; */
  width: 100%;
  border: none;
  border-right: 1px solid #fff;
  line-height: normal;
  padding: 4px 0;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  color: #333;
  align-items: center;
  flex-direction: column;


}

.box-1.border-fake-end {
  box-shadow: inset -1px 0 0 #000;
  /* fake right border */
}

.profit-box-num {
  color: #fff;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

/* Profit */
.profit-box-green {
  background-color: #149200;
  /* your profit green */
}

/* Loss */
.profit-box-red {
  background-color: #d93025;
  /* red for negative */
}


.box-2 {

  font-size: 13px;
  font-weight: 700;
  width: 100%;
  /* width: 16.66666%; */
  border: none;
  border-right: 1px solid #fff;
  line-height: normal;
  padding: 4px 0;
  text-transform: capitalize;
  color: #333;

}

.box-3 {

  font-size: 13px;
  font-weight: 700;
  width: 16.66666%;
  border: none;
  border-right: 1px solid #fff;
  line-height: normal;
  padding: 4px 0;
  text-transform: capitalize;
  color: #333;

}

.box-4 {
  width: 40%;
  min-width: 40%;
  max-width: 40%;
}

.box-5 {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}

.box-6 {
  width: 60%;
  min-width: 60%;
  max-width: 60%;
}

.box-7 {
  width: 70%;
  min-width: 70%;
  max-width: 70%;
}

.box-8 {
  width: 80%;
  min-width: 80%;
  max-width: 80%;
}

.box-9 {
  width: 90%;
  min-width: 90%;
  max-width: 90%;
}

.box-10 {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.container-fluid-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.container {
  max-width: 1200px;
}

.row.row1 {
  margin-left: -1px;
  margin-right: -1px;
}

.row.row1>[class*='col-'] {
  padding-left: 1px;
  padding-right: 1px;
}

.row.row2 {
  margin-left: -2px;
  margin-right: -2px;
}

.row.row2>[class*='col-'] {
  padding-left: 2px;
  padding-right: 2px;
}

.row.row3 {
  margin-left: -3px;
  margin-right: -3px;
}

.row.row3>[class*='col-'] {
  padding-left: 3px;
  padding-right: 3px;
}

.row.row4 {
  margin-left: -4px;
  margin-right: -4px;
}

.row.row4>[class*='col-'] {
  padding-left: 4px;
  padding-right: 4px;
}

.row.row5 {
  margin-left: -5px;
  margin-right: -5px;
}

.row.row5>[class*='col-'] {
  padding-left: 5px;
  padding-right: 5px;
}

.row.row5>[class='col'] {
  padding-left: 5px;
  padding-right: 5px;
}

.row.row6 {
  margin-left: -6px;
  margin-right: -6px;
}

.row.row6>[class*='col-'] {
  padding-left: 6px;
  padding-right: 6px;
}

.row.row7 {
  margin-left: -7px;
  margin-right: -7px;
}

.row.row7>[class*='col-'] {
  padding-left: 7px;
  padding-right: 7px;
}

.row.row8 {
  margin-left: -8px;
  margin-right: -8px;
}

.row.row8>[class*='col-'] {
  padding-left: 8px;
  padding-right: 8px;
}

.row.row9 {
  margin-left: -9px;
  margin-right: -9px;
}

.row.row9>[class*='col-'] {
  padding-left: 9px;
  padding-right: 9px;
}

.row.row10 {
  margin-left: -10px;
  margin-right: -10px;
}

.row.row10>[class*='col-'] {
  padding-left: 10px;
  padding-right: 10px;
}

.m-b-5 {
  margin-bottom: 5px;
}

.m-t-5 {
  margin-top: 5px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-r-10 {
  margin-right: 10px;
}

.m-r-5 {
  margin-right: 5px;
}

.p-r-10 {
  padding-right: 10px !important;
}

.m-b-0 {
  margin-bottom: 0;
}

.p-t-0 {
  padding-top: 0;
}

.p-t-5 {
  padding-top: 5px;
}

.p-t-10 {
  padding-top: 10px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-t-25 {
  padding-top: 25px;
}

.p-t-30 {
  padding-top: 30px;
}

.p-b-0 {
  padding-bottom: 0;
}

.p-b-5 {
  padding-bottom: 5px;
}

.p-b-10 {
  padding-bottom: 10px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.p-b-20 {
  padding-bottom: 20px;
}

.p-b-25 {
  padding-bottom: 25px;
}

.p-b-30 {
  padding-bottom: 30px;
}

.p-l-0 {
  padding-left: 0;
}

.p-l-5 {
  padding-left: 5px;
}

.p-l-10 {
  padding-left: 10px;
}

.p-l-15 {
  padding-left: 15px;
}

.p-l-20 {
  padding-left: 20px;
}

.p-l-25 {
  padding-left: 25px;
}

.p-l-30 {
  padding-left: 30px;
}

.p-r-0 {
  padding-right: 0;
}

.p-r-5 {
  padding-right: 5px;
}

.p-r-10 {
  padding-right: 10px;
}

.p-r-15 {
  padding-right: 15px;
}

.p-r-20 {
  padding-right: 20px;
}

.p-r-25 {
  padding-right: 25px;
}

.p-r-30 {
  padding-right: 30px;
}

.box-w1 {
  width: 85px;
  max-width: 85px;
  min-width: 85px;
}

.box-w2 {
  width: 170px;
  max-width: 170px;
  min-width: 170px;
}

.box-w3 {
  width: 255px;
  max-width: 255px;
  min-width: 255px;
}

.fancy-market .box-w1 {
  width: 50px;
  max-width: 50px;
  min-width: 50px;
}

.fancy-market .box-w2 {
  width: 100px;
  max-width: 100px;
  min-width: 100px;
}

.fancy-market .box-w3 {
  width: 150px;
}

.fancy-market .box-w4 {
  width: 200px;
}

.fancy-market .box-w5 {
  width: 250px;
}

.fancy-market .box-w6 {
  width: 300px;
}

.fancy-market .box-w7 {
  width: 350px;
}

.fancy-market .box-w8 {
  width: 400px;
}

.fancy-market .box-w9 {
  width: 450px;
}

.fancy-market .box-w10 {
  width: 500px;
}

.box-h1 {
  height: 40px;
}

.box-h2 {
  height: 80px;
}

.box-h3 {
  height: 120px;
}

.box-h4 {
  height: 160px;
}

.box-h5 {
  height: 200px;
}

/*Main CSS*/

.main {
  /* min-height: calc(100vh - 159px); */
  /* height: 100%;
  overflow-y: auto */
}

.header {
  background-color: var(--theme1-bg);
  color: var(--primary-color);
}

.header a {
  color: var(--primary-color);
}

.header-bottom {
  background-color: var(--theme2-bg);
  /* margin-top: 10px; */
  padding: 9px 0;
}

.header-bottom li a {
  color: var(--secondary-color);
  text-transform: uppercase;
  padding: 5px 15px;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.search .fa-search-plus {
  color: var(--primary-color);
  font-size: 24px;
  margin-left: 10px;
  /*position: absolute;
    right: 10px;
    top: 7px;*/
  float: right;
  margin-top: 5px;
}

.header-top {
  height: 60px;
  margin-top: 10px;
  display: flex;
}

.header-top ul {
  padding-top: 10px;
  align-items: flex-start;
}

.logo img {
  width: auto;
  height: 50px;
}

.logo-login {
  width: 100%;
}

.search {
  position: relative;
  margin-right: 20px;
  z-index: 2;
}

.search input {
  height: 35px;
  border: 0;
  padding: 0;
  outline: 0;
  width: 0;
  /* border-radius: 2px 2px 0 0; */
  /* border-radius: 17px; */
  /* box-shadow: 0 0 5px var(--secondary-bg); */
  transition: width 0.4s linear;
}

/* UserProfileDropdown.css */
.user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 8px 12px;
}

.user-btn:hover {
  text-decoration: none;
}

.btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  max-width: 250px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 200px;
  padding: 0;
  list-style: none;
}

.header-list {
  padding: 8px 16px;
  /* border-bottom: 1px solid #eee; */
  color: white
}

.header-list:hover {
  background-color: #202329;
}

.header-list a {
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
}

.header-user {
  padding: 8px 16px;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  /* border-bottom: 1px solid #eee; */
}

.ballance,
.expose,
.account {
  margin-left: 10px;
  max-width: 230px;
  margin-top: 0;
}

.header-bottom nav {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.header-bottom li a:hover {
  text-decoration: none;
  background-color: transparent !important;
  color: inherit !important;
}

.header-bottom li a:before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: var(--primary-bg);
  height: 2px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}


/* scrolling the match list */
/* Top-level container: full viewport height */


/* Row container: Bootstrap row fills full height */
.row {}

/* Sidebar + content columns fill full height */
.col-10,
.col-2,
.col-lg-10,
.col-lg-2 {}

/* Only scroll the Outlet area */
/* .scrollable-content {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
} */



.header-bottom li a:hover:before,
.header-bottom li a:focus:before,
.header-bottom li a:active:before {
  left: 0;
  right: 0;
}

.header-bottom li a.active {
  background-color: var(--primary-bg);
  color: var(--secondary-color);
}

.account .fa-chevron-down {
  margin-left: 5px;
}

.account>span {
  cursor: pointer;
  position: relative;
}

.account ul {
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 1000;
  min-width: 170px;
  /* padding: 5px 0; */
  margin: 5px 8px 9px;
  font-size: 14px;
  text-align: left;
  background-color: var(--primary-bg);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.header-list {
  padding: 10px 12px;
  color: rgb(255, 255, 255)
}

.header-top .account ul li {
  /* padding: 6px 0px; */
}

.header-top .account ul li:hover {
  background: #f5f5f5;
}

.border-top {
  border-top: 1px solid #ccc;
}

.header-top .account ul li a,
.header-top .account ul li label {
  text-transform: capitalize;
  text-decoration: none;
  display: flex;
  width: 100%;
  padding: 0.25rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.header-top .account ul h6 {
  padding: 0 8px;
  color: var(--site-color);
}

.sidebar {
  padding: 0 !important;
  height: 100vh;
  min-height: 100%;
  max-width: 100% !important;
  background-color: var(--grey-bg);
  color: var(--site-color);
  overflow-y: auto;
}

.sidebar-title {
  background-color: var(--theme1-bg);
  padding-bottom: 0;
  cursor: pointer;
  padding: 4px 6px;
  margin-bottom: 0;
  margin-top: 1px;
}

.sidebar-title h5 {
  color: var(--primary-color);
  width: 100%;
  font-size: 18px;
}

.sidebar .sidebar-title :before {
  font-family: 'Font Awesome 5 Free';
  content: '\f107';
  padding-right: 3px;
  font-weight: 900;
  float: right;
}

.sidebar .sidebar-title.collapsed :before {
  content: '\f105';
}

.sidebar .nav-item .nav-link {
  background: var(--link-bg);
  color: var(--site-color);
  border-bottom: 1px solid #9e9e9e;
  font-weight: normal;
  font-size: 14px;
  /* padding: 0.3rem 1rem; */
}

.sidebar .nav-item.active .nav-link {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--white-color);
}

.sidebar .mtree-main {
  /* padding: 5px 10px; */
}

.sidebar .mtree li {
  padding: 2px 0 2px 10px;
  position: relative;
}

.sidebar .mtree>li {
  padding-left: 0;
}

.sidebar .mtree li a {
  position: relative;
  font-size: 12px;
  text-decoration: none;
  color: var(--site-color);
}

.sidebar .mtree li a:hover {
  text-decoration: none;
}

ul.mtree.transit li.mtree-open>a::after {
  content: '-';
}

ul.mtree.transit li.mtree-closed>a::after {
  content: '+';
}

ul.mtree.transit li.mtree-node>a::after {
  font-weight: bold;
  font-size: 14px;
  position: relative;
  right: -5px;
  top: 0;
  color: var(--site-color);
}

.mtree-open ul li::after {
  bottom: 0;
  content: '';
  left: 4px;
  position: absolute;
  top: 0px;
  border-left: 1px solid var(--secondary-bg);
}

.mtree-open ul li::before {
  background: var(--theme1-bg);
  bottom: auto;
  content: '';
  height: 8px;
  left: 0px;
  margin-top: 2px;
  position: absolute;
  right: auto;
  width: 8px;
  z-index: 1;
  border-radius: 50%;
}

#user-book .mtree-open ul li::before {
  background: none;
  height: 0;
  width: 0;
}

.mtree-skin-selector {
  display: none;
}

.sidebar .report-menu li {
  padding: 5px 0;
}

.sidebar .report-menu li a {
  font-size: 14px;
  color: var(--site-color);
}

.sidebar .report-menu li a i {
  margin-right: 10px;
}

marquee {
  display: inline-block;
  width: 55%;
  font-size: 14px;
  font-style: italic;
  position: absolute;
  bottom: -7px;
  right: 0;
  color: var(--primary-color);
}

.game-header {
  padding: 8px;
  overflow: hidden;
  -ms-flex-pack: justify;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--theme1-bg);
  border-radius: 2px 2px 0 0;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.4);
}

.featured-box {
  margin-top: 5px;
  /* background-color: #111317; */
}

.featured-box-detail {
  max-width: 70% !important;
  -ms-flex: 0 0 70% !important;
  flex: 0 0 70% !important;
  min-height: 70vh;
}

.game-header h2 {
  margin: 6px 17px 3px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
}

.coupon-navigation-filter {
  display: inline-block;
  height: 28px;
  border-radius: 2px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 8px 16px 0;
  margin: 0 0 0 8px;
  text-decoration: none;
  color: #1e1e1e;
  border: 1px solid #bfbfbf;
  background-color: #bfbfbf;
}

.casino-32A tbody {
  position: relative;
}

.coupon-navigation-filter:first-child {
  margin-left: 0;
}

.coupon-card {
  margin-bottom: 16px;
  border-radius: 0 0 2px 2px;
}

.coupon-card .card-header {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  font-size: 12px;
  padding: 8px;
  width: 100%;
  float: left;
  color: var(--primary-color);
  background-color: #111317;
}

.coupon-card-first .card-header {
  border-radius: 0;
}

.card-header {
  /*line-height: 1.6;*/
  padding-top: 4px;
  padding-bottom: 14px;
  /* background-color: #111317; */
  color: var(--secondary-color);

}

.card-header .card-header-title-container {
  float: left;
  line-height: 26px;
}

.coupon-table {
  margin-bottom: 0;
}

.coupon-table thead {
  border-bottom: 3px solid black;
}

.coupon-table thead th {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 6px 0;
  padding-left: 0px;
  color: #303030;
}

.coupon-table thead th:first-child {
  text-align: left;
  width: auto;
  text-indent: 0;
}

.coupon-table .main-market thead th:first-child {
  width: 52%;
}

.coupon-table .bookmaker-market thead th:first-child {
  width: 68%;
}

.bookmaker-container .box-w1 {
  width: 60px;
  min-width: 60px;
  max-width: 60px;
}

.coupon-table td:first-child .active {
  margin-right: 30px;
  float: right;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #28a745;
}

.report-main-content {
  max-width: 85% !important;
  -ms-flex: 0 0 85%;
  flex: 0 0 85%;
}

.datepicker-wrapper {
  display: inline-block;
  position: relative;
}

.datepicker-wrapper .fa-calendar-alt {
  position: absolute;
  top: 9px;
  right: 10px;
}

.select-report {
  margin-left: 20px;
  display: inline-block;
}

.card-title {
  margin-bottom: 0;
  vertical-align: sub;
  cursor: pointer;
  color: var(--secondary-color);
}

footer {
  position: relative;
  background-color: var(--theme1-bg);
  border-top: 2px solid var(--theme2-bg);
  color: var(--primary-color);
}

.loginInner1 {
  width: 350px;
  margin: 2% auto;
}

.featured-box-login {
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  background: var(--primary-bg);
}

.error {
  margin-top: 10px;
  margin-bottom: 10px;
  /* display: none; */
  color: var(--red-color);
  display: block;
}

.btn-submit .fa-sign-in-alt {
  font-size: 16px;
  margin-left: 10px;
}

.btn-login {
  width: 100%;
}

.form-check-input {
  margin-top: 1px;
}

.fa-android {
  margin-right: 10px;
}

/*Modal Design*/

#modalrules .modal-footer {
  justify-content: left !important;
}

/*
.modal-lg {
    max-width: 90%;
}*/

.modal-xs {
  max-width: 300px;
}

.radio input {
  margin-right: 5px;
}

/* /Model Design*/

.login .form-group {
  position: relative;
}

.login .form-group i {
  position: absolute;
  right: 10px;
  top: 8px;
}

/*Tabs*/

.nav-tabs {
  display: block;
  border-bottom: 0;
}

.nav-tabs .nav-item {
  display: table-cell;
  /*width: 1%;*/
}

.coupon-table button {
  width: 100%;
  min-width: 40px;
  height: 25px;
  margin: 0;
  text-align: center;
  display: inline-block;
  padding: 0px;
  color: #273a47;
  border: 0;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.featured-box-detail .coupon-table button {
  height: auto;
  min-height: 40px;
  padding: 4px 0 1px;
  background: none;
  color: #273a47;
  border: 0;
}

.featured-box-detail .coupon-table button span {
  /*margin-bottom: 3px;*/
  font-size: 10px;
  display: block;
}

.featured-box-detail .coupon-table button span.odd,
.featured-box-detail .coupon-table .team-name {
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 0;
}

.featured-box-detail .coupon-table button span.odd {
  font-size: 14px;
  margin-bottom: 1px;
}

.coupon-table tr td {
  padding: 0;
  vertical-align: middle;
  font-size: 14px;
  word-wrap: break-word;
}

.main-market .table-bordered td,
.main-market .table-bordered th,
.bookmaker-market .table-bordered td,
.bookmaker-market .table-bordered th,
.fancy-market .table-bordered td,
.fancy-market .table-bordered th {
  border-left: 1px solid var(--primary-bg);
  border-right: 1px solid var(--primary-bg);
  border-top: 0;
  border-bottom: 1px solid #dee2e6 !important;
}

.main-market .table-bordered th,
.bookmaker-market .table-bordered th,
.fancy-market .table-bordered th {
  border-bottom: 1px solid var(--primary-bg) !important;
}

.main-market .table-bordered td:last-child,
.bookmaker-market .table-bordered td:last-child,
.fancy-market .table-bordered td:last-child,
.main-market .table-bordered th:last-child,
.bookmaker-market .table-bordered th:last-child,
.fancy-market .table-bordered th:last-child {
  border-right: 0;
}

.main-market .table-responsive .table-bordered,
.bookmaker-market .table-responsive .table-bordered,
.fancy-market .table-responsive .table-bordered {
  border: 0;
}

.fancy-market .coupon-table tr td,
.bookmaker-market .coupon-table tr td,
.main-market .coupon-table tr td {
  padding: 0;
}

.coupon-table tr td:first-child {
  vertical-align: middle;
}

.bookmaker-market thead,
.fancy-market thead,
.main-market thead,
.main-market tbody,
.fancy-market tbody,
.bet-info,
.bet-detail {
  display: table;
  width: 100%;
}

.game-heading {
  background-color: #343435;
  color: var(--secondary-color);
  padding: 8px;
  margin-bottom: 4px;
  width: 100%;
}

.game-heading .card-header-title {
  font-size: 12px;
  font-weight: bold;
}

.main-div-odlay-block-boxes {
  background: "white"
}

.fancy-market .back span,
.fancy-market .lay span {
  display: block;
}

.modal-book {
  position: relative;
}

.modal-book .book-bet {
  position: absolute;
  top: -15px;
  left: 0;
  color: var(--red-color);
  font-size: 14px;
}

.sidebar-right {
  max-width: 30% !important;
  -ms-flex: 0 0 30% !important;
  flex: 0 0 30% !important;
  padding-left: 0 !important;
}

.place-bet {
  position: relative;
  overflow: hidden;
  background-color: #111317;
}

.loading {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -27px 0px 0px -27px;
}

.site-loading {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 100000;
}

.site-loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -27px 0px 0px -27px;
}

.sports-wrapper.load {
  /* background-image: url('../../public/imgs/loader.gif'); */
  background-position: center center;
}

.place-bet .card-body {
  padding: 0 0 10px 0;
}

.place-bet.place-bet-football .card-body {
  display: block;
}

.place-bet .value-buttons .btn {
  width: auto;
  border: 0;
  min-width: 23.9%;
  border-radius: 0px;
  margin-top: 2px;
  float: left;
  background-color: var(--theme2-bg);
  /* color: #fff; */
  background-color: white;
  font-weight: normal;
  font-size: 14px;
}

.place-bet .change-value,
.my-bet .clear-all {
  font-size: 12px;
  padding: 2px 6px;
  background-color: #111317;
}

.place-bet .coupon-table tr td {
  padding: 4px;
  font-weight: bold;
  border: #866bff;
}

.table-responsive-new::-webkit-scrollbar {
  width: 8px;
}

.table-responsive-new::-webkit-scrollbar-track {
  background: #111317;
  /* track background */
}

.table-responsive-new::-webkit-scrollbar-thumb {
  background-color: #000;
  /* scrollbar thumb (black) */
  border-radius: 10px;
}

.table-responsive-new {
  scrollbar-width: thin;
  scrollbar-color: #000 #111317;
  /* thumb color | track color */
}

.table.coupon-table th {
  border-color: #866bff !important;
  /* force black border */
}

.casino-container-box .suspended::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white-color);
  text-transform: uppercase;
  font-family: 'Font Awesome 5 Free';
  content: '\f023';
  font-weight: 900;
  font-size: 18px;
  top: 0;
  color: #fff;
}

.place-bet .coupon-table tr th {
  padding: 4px;
}

.my-bet .card-body {
  padding: 0;
  border: #866bff
}

.fancy-marker-title h4 {
  padding: 10px;
  background-color: var(--theme2-bg85);
  color: var(--secondary-color);
  font-size: 14px;
}

.featured-box-detail .table-bordered th {
  border-bottom: 0;
}

.my-bet tbody tr td {
  padding: 4px 8px;
}

.ui-helper-hidden-accessible {
  display: none;
}

.place-bet .form-group {
  margin-bottom: 0;
}

/*Custom Scrollbar*/

.mCSB_inside>.mCSB_container {
  margin-right: 15px !important;
}

.bet-buttons {
  width: 70px !important;
  max-width: 70px !important;
}

.video-tv iframe {
  width: 100%;
  height: 100%;
  border: 2px solid var(--grey-bg);
}

.my-bet .fa-times {
  margin-right: 10px;
}

#run-position {
  max-height: 600px !important;
  height: auto !important;
}

.account-statement-report-link {
  cursor: pointer;
}

@-webkit-keyframes blinking {
  0% {
    background-color: #ffc01a;
  }

  49% {
    background-color: #ffc01a;
  }

  50% {
    background-color: #ffc01a;
  }

  99% {
    background-color: #ffc01a;
  }

  100% {
    background-color: #ffc01a;
  }
}

@-moz-keyframes blinking {
  0% {
    background-color: #ffc01a;
  }

  49% {
    background-color: #ffc01a;
  }

  50% {
    background-color: #ffc01a;
  }

  99% {
    background-color: #ffc01a;
  }

  100% {
    background-color: #ffc01a;
  }
}

@keyframes blinking {
  0% {
    background-color: #ffc01a;
  }

  49% {
    background-color: #ffc01a;
  }

  50% {
    background-color: #ffc01a;
  }

  99% {
    background-color: #ffc01a;
  }

  100% {
    background-color: #ffc01a;
  }
}

.blink {
  -webkit-animation: blinking 700ms;
  -moz-animation: blinking 700ms;
  animation: blinking 700ms;
}

#account-statement_wrapper .form-control {
  width: auto;
  display: inline-block;
}

#account-statement_wrapper #account-statement_filter {
  text-align: right;
}

.error-page footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.error-page {
  background-color: #eee;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-content {
  color: #ff0000;
}

.btn-bth {
  background-color: #222;
  color: #fff;
  border-radius: 8px;
}

.disabled {
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
  pointer-events: none;
}

.coupon-table button.custom-btn-spinner {
  height: 12px;
  line-height: 12px;
  min-width: 20px;
  width: 20px;
  vertical-align: top;
  border-radius: 0;
}

.coupon-table button.custom-btn-spinner i {
  font-size: 10px;
}

.amountint {
  width: 35px;
  padding-left: 5px;
  float: left;
  height: 24px;
}

.bet-stake input {
  width: 60px;
  font-size: 12px;
  height: 24px;
}

.bet-for {
  width: 50%;
}

/* 
.bet-odds {
  width: 25%;
} */

.bet-stakes {
  width: 15%;
}

.bet-profit {
  width: 10%;
}

/*.game-name,
.game-date,
.game-odds,
.game-teams {
    display: inline-block;
    width: 48%;
    margin-bottom: 5px;
}*/

.search-game-name,
.game-date {
  float: left;
  width: 50%;
  margin-bottom: 5px;
}

.game-teams {
  width: 100%;
  float: left;
}

.search-game-ul {
  background: var(--primary-bg);
  color: rgb(0, 0, 0);
  padding: 10px;
  width: 500px;
  max-height: 450px;
  overflow: auto;
  box-shadow: 1px 0px 10px var(--secondary-bg);
  position: absolute;
  top: 100%;
}

.search-game-ul li {
  border-bottom: 1px solid var(--grey-bg);
  padding: 5px 0;
  margin-bottom: 5px;
  float: left;
  width: 100%;
}

.search-game-ul li:last-child {
  border-bottom: 0;
}

.search-game-ul li a {
  color: var(--site-color);
}

.search-game-ul li a:hover {
  text-decoration: none;
}

.login {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}

.bet-message td {
  padding: 0 !important;
}

.nav-tabs .nav-link {
  border-radius: 0;
  color: var(--site-color);
  background-color: var(--grey-bg);
  border-right: 1px solid var(--theme2-bg) !important;
  border: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 0;
  border-right-color: 1px solid var(--theme2-bg);
}

.report-main-content form>span {
  display: inline-block;
  padding-top: 10px;
  vertical-align: top;
}

.report-main-content form>.d-inline-block {
  vertical-align: top;
}

.nopading {
  padding: 0 !important;
}

.div-figure {
  width: 31.33% !important;
  overflow: hidden;
  margin-right: 1% !important;
  margin-left: 1% !important;
  padding: 0;
  max-width: 31.33%;
  float: left;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #000;
}

.div-figure img {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.div-figure img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

#gamePlay .modal-lg {
  width: 100%;
  max-width: 100%;
}

#gamePlay .modal-header {
  padding-bottom: 5px;
  padding-top: 5px;
}

/*Design for Rules*/

.rules-container .sidebar {
  padding: 0;
}

.rules-container ul li {
  padding: 12px 5px;
  border-bottom: 2px solid var(--grey-bg);
}

.rules-container .card {
  border: 0;
  border-radius: 0;
}

.rules-container .card-header {
  border-radius: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .wrapper {
    width: 1100px;
    overflow-x: auto;
    overflow-y: hidden;
  }


}

/*Scorecard*/

.scorecard {
  width: 50%;
  padding: 5px;
  position: relative;
  color: var(--white-color);
}

/* Cricket scorecard with background */
.scorecard-cricket {
  width: 50%;
  padding: 5px;
  background-image: url('../imgs/scorecard-bg.png');
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
}

/* Iframe scorecard without background - clean for iframe content */
.scorecard-iframe {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background: none;
  border: none;
  overflow: hidden;
}

.scorecard-iframe iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.scorecard-cricket:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.55);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ball-runs {
  background: var(--theme1-bg);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
}

.ball-runs.four {
  background: #087f23;
}

.ball-runs.six {
  background: #883997;
}

.ball-runs.wicket {
  background: var(--red-color);
}

/*HV Design*/

.hv-container .nav-tabs .nav-link.active {
  border-bottom: 0 !important;
  color: var(--secondary-color);
}

.hv-container .nav-tabs .nav-link {
  background-color: var(--grey-bg);
  border-radius: 0;
  color: var(--site-color);
  font-size: 1rem;
  border-right: 1px solid var(--grey-bg);
  font-weight: bold;
  text-align: center;
}

/*.hv-container .nav-tabs .nav-link:hover
{
    border: 1px solid transparent;
}*/

.hv-container .nav-tabs {
  display: flex;
}

.card-number {
  font-size: 3rem;
  height: 40px;
  line-height: 40px;
}

.hv-container table td {
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

.hv-container .line-odd-even {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: bold;
}

.hv-container .card-odds {
  font-size: 14px;
}

.hv-container table td,
.hv-container table th {
  border-left: 1px solid var(--primary-bg) !important;
  border-right: 1px solid var(--primary-bg) !important;
  border-top: 1px solid var(--primary-bg) !important;
  border-bottom: 1px solid var(--primary-bg) !important;
}

.hv-container .nav-tabs .nav-item {
  min-width: 80px;
  width: auto;
}

.hv-container .btn-submit {
  min-width: 100px;
  background: var(--theme2-bg);
  border-color: var(--theme2-bg);
}

.hv-container .table-ifno i {
  font-size: 22px;
  color: var(--theme2-bg);
  cursor: pointer;
}

.hv-container .table-ifno .hightlight {
  animation: blinkinghighlight 1s infinite;
}

@keyframes blinkinghighlight {
  0% {
    color: var(--site-color);
  }

  49% {
    color: var(--red-color);
  }

  50% {
    color: var(--yellow-color);
  }

  99% {
    color: transparent;
  }

  100% {
    color: var(--site-color);
  }
}

.rulenum {
  margin-right: 5px;
  background: var(--grey-bg);
}

.hv-container .bet-action {
  cursor: pointer;
}

.hv-container .bet-action.selected {
  background: var(--green-color);
  color: var(--white-color);
}

.hv-container #result-desc {
  font-size: 40px;
  padding: 25px;
}

.home-banner {
  text-align: center;
  position: relative;
  display: block;
  max-height: 80vh;
  background-origin: civer;
  background-position: center;
  height: 80vh;
  width: 100%;
  background-size: contain;
  background: cover;
  background-color: var(--primary-bg);
  background-repeat: no-repeat;
}

.btn-black {
  background-color: #222;
  border-color: #222;
  color: var(--white-color);
}

.btn-black:hover {
  color: var(--white-color);
  background-color: var(--secondary-bg);
  border-color: var(--secondary-bg);
}

.btn-black:not(:disabled):not(.disabled).active,
.btn-black:not(:disabled):not(.disabled):active {
  color: var(--primary-color);
  background-color: var(--secondary-bg);
  border-color: var(--secondary-bg);
}

.home-products-container-title {
  padding: 6px !important;
  font-size: 16px;
}

.clock2digit {
  max-width: 300px;
  bottom: -25px;
  position: absolute !important;
  right: -37px;
  width: auto !important;
  transform: scale(0.6);
  top: auto;
}

.clock3digit {
  max-width: 300px;
  bottom: -25px;
  position: absolute !important;
  right: -50px;
  width: auto !important;
  transform: scale(0.6);
}

.clickhere {
  font-size: 20px;
  width: 300px;
  position: relative;
  -webkit-animation: mymove 5s infinite;
  /* Safari 4.0 - 8.0 */
  animation: mymove 5s infinite;
}

.clickhere.blinking {
  animation: blinkingTextClickHere 0.8s infinite;
}

/*.clickhere.blinking:hover span{
    animation:blinkingHoverText 0.8s infinite;
}*/

@-webkit-keyframes mymove {
  0% {
    left: 0;
  }

  25% {
    left: 25%;
  }

  50% {
    left: 100%;
  }

  75% {
    left: 25%;
  }

  100% {
    left: 0;
  }
}

@keyframes blinkingTextClickHere {
  0% {
    color: red;
    left: 0;
  }

  20% {
    color: red;
  }

  40% {
    color: red;
    left: 20px;
  }

  60% {
    color: var(--site-color);
  }

  80% {
    color: var(--site-color);
  }

  100% {
    color: var(--site-color);
    left: 40px;
  }
}

/*Hands and patterns*/

.bet-note {
  text-align: center;
  padding: 10px;
}

.bet-note span {
  font-weight: bold;
  font-style: italic;
  font-size: 1.2rem;
  vertical-align: middle;
}

.won-player {
  border: 2px solid var(--green-color);
  padding: 0 8px;
}

.hands-pattern-container .won-player-container img {
  width: 20px;
}

.patterns-container {
  background-color: rgba(0, 0, 0, 0.5);
  height: 170px;
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.patterns-container p {
  padding: 2px 5px;
  color: var(--white-color);
  text-transform: uppercase;
  cursor: pointer;
}

.patterns-container p:hover {
  background-color: var(--primary-bg);
  color: var(--site-color);
}

.patterns-container p:last-child {
  border-bottom: 0;
}

.video-container {
  position: relative;
  background: var(--secondary-bg);
  min-height: 400px;
}

.hands-pattern-container td {
  text-align: center;
  border: 0;
  padding: 4px;
}

/*.hands-pattern-container td button {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: 0;
    padding: 12px 8px;
}*/

.hands-pattern-container .nav-tabs .nav-link {
  border-radius: 0;
  font-size: 1rem;
  color: var(--site-color);
}

.hands-pattern-container .nav-tabs {
  display: flex;
}

.hands-pattern-container .mCSB_scrollTools {
  width: 6px !important;
}

.hands-pattern-container .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #666 !important;
}

.hands-pattern-container .mCSB_inside>.mCSB_container {
  margin-right: 6px !important;
}

.card-red {
  color: var(--red-color) !important;
}

.card-black {
  color: var(--site-color) !important;
}

.hands-pattern-container .point {
  float: right;
  text-align: right;
  margin-top: 1px;
  font-weight: bold;
  font-size: 16px;
}

.hands-pattern-container .patern-name {
  float: left;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}

.hands-pattern-container .nav-tabs .nav-link {
  background-color: var(--grey-bg);
  border-radius: 0;
  color: var(--site-color);
  font-size: 1rem;
  border-right: 1px solid var(--primary-bg);
  font-weight: 700;
  text-align: center;
}

.ubook b {
  font-weight: normal;
  font-size: 12px;
}

.hands-pattern-container .ubook {
  font-weight: bold;
  float: left;
  margin-top: 5px;
  margin-left: 5px;
}

.hands-pattern-container .min-max {
  font-size: 11px;
  float: right;
}

.hands-pattern-container .hands tr td {
  width: 50%;
}

.hands-pattern-container .patterns tr td {
  width: 33.33%;
}

.theme1bg {
  background-color: var(--theme1-bg);
}

.theme2bg {
  background-color: var(--theme2-bg);
}

.theme1color {
  color: var(--primary-color);
}

.theme2color {
  color: var(--secondary-color);
}

/*.hands-pattern-container td button {
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg));
}*/

.poker9-result .resultd {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

/* Lucky CSS Starts here */

/*.low-high-btn {
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg));
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: 0;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 20px;
}*/

.card-seven img {
  width: 40px;
  cursor: pointer;
}

.lucky-seven-content {
  background-color: var(--light-bg);
  padding: 10px;
}

.luckyseven-img img {
  width: 50px;
}

.card-image {
  display: inline-block;
}

/*Custom CSS*/

.coupon-navigation-filter.active {
  border-color: var(--primary-bg);
  background-color: var(--primary-bg);
}

.coupon-navigation-filter.inplay {
  color: var(--white-color);
  border-color: #20a052;
  background-color: #20a052;
}

.login .main {}

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

.download-apk a:hover {
  color: var(--primary-color);
}

.featured-box-login h4 {
  color: var(--theme1-bg);
}

.table input {
  border: 1px solid var(--grey-bg);
}

.nav-link-all {
  padding: 0.3rem 1rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--theme2-bg);
  border-color: transparent;
  color: var(--secondary-color);
}

.lay,
.lay-color {
  background-color: #f6bfcf !important;
}

.back,
.back-color {
  background-color: #6fd2f6 !important;
}

.layx {
  background-color: #f9c9d4 !important;
}

.backx {
  background-color: #c7eeff !important;
}

.game-heading .card-header-title {
  font-size: 11px;
  text-transform: uppercase;
}

.place-bet thead tr,
.my-bet thead tr {
  background-color: var(--grey-bg);
}

.place-bet .table input {
  background-color: var(--primary-bg);
}

.table tr.bet-info {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
}

.table tr.bet-message {
  background-color: var(--primary-bg);
}

.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

.modal-book {
  color: #303030;
  font-weight: normal;
}

tr.back {
  background-color: #6fd2f6 !important;
}

.activity-modal {
  border: 10px solid var(--theme1-bg);
  border-radius: 8px;
}

.value-buttons button {
  margin-right: 3px;
}

@media (min-width: 1025px) {
  div.table-responsive {
    overflow-x: hidden !important;
  }
}

@media(min-width:768px) {
  .grid-responsive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sidebar-loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(204, 204, 204, 0.5);
  z-index: 10;
}

.sidebar-loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -27px 0px 0px -27px;
  width: 32px;
}

.tv-container {
  margin-top: 0;
  margin-bottom: 4px;
}

.video-iframe {
  border: 0;
  background: #222;
  height: 260px;
  width: 100%;
}

.animation-iframe {
  height: 235px;
  width: 100%;
  /* background-image: url(../../animation_banner.png),
    linear-gradient(var(--theme1-bg), var(--theme2-bg)); */
  background-repeat: no-repeat;
  background-position: center;
  border: 3px solid;
}

.blinking span {
  animation: blinkingText 0.8s infinite;
}

.blinking:hover span {
  animation: blinkingHoverText 0.8s infinite;
}

@keyframes blinkingText {
  0% {
    color: var(--red-color);
  }

  20% {
    color: var(--red-color);
  }

  40% {
    color: var(--yellow-color);
  }

  60% {
    color: var(--yellow-color);
  }

  80% {
    color: var(--white-color);
  }

  100% {
    color: var(--white-color);
  }
}

@keyframes blinkingHoverText {
  0% {
    color: var(--red-color);
  }

  20% {
    color: var(--red-color);
  }

  40% {
    color: var(--yellow-color);
  }

  60% {
    color: var(--yellow-color);
  }

  80% {
    color: var(--white-color);
  }

  100% {
    color: var(--white-color);
  }
}

@keyframes blinkingHoverWhite {
  0% {
    color: var(--red-color);
  }

  20% {
    color: var(--red-color);
  }

  40% {
    color: var(--yellow-color);
  }

  60% {
    color: var(--yellow-color);
  }

  80% {
    color: var(--white-color);
  }

  100% {
    color: var(--white-color);
  }
}

.ball-runs.wicket {
  background: var(--red-color);
}

.ball-runs {
  background: var(--theme1-bg);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--primary-color);
  font-weight: bold;
}

.ball-runs.playera {
  background: #355e3b;
  color: #ff4500;
}

.ball-runs.playerb {
  background: #355e3b;
  color: #ffff33;
}

.ball-runs.playerc {
  background: #355e3b;
  color: #08c;
}

.ball-runs.playertie {
  background: var(--theme2-bg);
  color: var(--secondary-color);
}

.teenpatti-rules {
  cursor: pointer;
}

.teenpatti .modal-dialog {
  width: 370px;
}

#rules-container {
  min-height: 400px;
}

.video-overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  height: auto;
  left: 0;
  content: '';
  top: 0;
  padding: 5px;
}

.video-overlay.right {
  right: 0;
  left: auto;
  text-align: right;
}

.video-overlay h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.video-overlay .card-inner {
  margin-bottom: 5px;
}

.video-overlay img {
  width: 35px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

#result-desc {
  background: rgba(0, 0, 0, 0.4);
  color: var(--white-color);
  text-align: right;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.greenbx {
  color: var(--green-color);
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.yellowbx {
  color: var(--yellow-color);
  font-weight: bold;
  text-transform: uppercase;
}

.redbx {
  color: var(--red-color);
  font-weight: bold;
  text-transform: uppercase;
}

.winner-label {
  /*font-size: 22px;
    color: var(--primary-color);
    padding: 10px;*/
  margin-top: 5px;
}

.round-id {
  font-size: 18px;
}

.player-number {
  border-right: 1px solid var(--theme1-bg);
  flex: 1;
}

.player-number:last-child {
  border-right: 0;
}

.player-container {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-direction: row;
  flex-direction: row;
}

.board-result {
  border-top: 1px solid var(--theme1-bg);
  padding-top: 10px;
  padding-bottom: 10px;
}

.second-row {
  border-top: 1px solid var(--theme1-bg);
}

.player-container {
  /*border-bottom: 1px solid var(--theme1-bg);*/
  padding-bottom: 10px;
}

.last-result {
  cursor: pointer;
  margin-left: 2px;
}

.last-result-slider .owl-prev {
  position: absolute;
  top: 0;
  left: -20px;
}

.last-result-slider .owl-next {
  position: absolute;
  top: 0;
  right: -20px;
}

.last-result-slider .owl-next span,
.last-result-slider .owl-prev span {
  color: #333;
  font-size: 45px;
  line-height: 1;
}

/* Andar Bahar Module */

.andarbahar-module .andar-bahar.table td {
  border: 1px solid #333;
}

.andarbahar-module .andar-bahar.table tr.bet-info {
  background-color: var(--primary-bg);
}

.andarbahar-module .andar-bahar.table .p-title {
  font-size: 16px;
  text-transform: uppercase;
}

.andarbahar-module .andar-bahar-image {
  width: 45px;
  cursor: pointer;
}

.andarbahar-module .ab-slider {
  margin: 0 15px;
  width: 120px;
}

.andarbahar-module #andar-box,
.andarbahar-module #bahar-box {
  vertical-align: top;
  height: 80px;
}

.andarbahar-module #andar-box .game-section,
.andarbahar-module #bahar-box .game-section {
  position: relative;
}

.andarbahar-module #andar-box .game-section .odds,
.andarbahar-module #bahar-box .game-section .odds {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}

.andarbahar-module .owl-next {
  position: absolute;
  top: 0;
  left: -20px;
}

.andarbahar-module .owl-prev {
  position: absolute;
  top: 0;
  right: -20px;
}

.andarbahar-module .owl-next span,
.andarbahar-module .owl-prev span {
  color: var(--white-color);
  font-size: 33px;
}

/*.nav-rules,
.download-apklink {
    margin-top: 5px;
    margin-right: 10px;
}*/

.download-apklink a:hover {
  text-decoration: none;
}

.download-apklink .blinking:hover span {
  animation: blinkingHoverWhite 0.8s infinite;
}

.election-menu {
  animation: blinkingElection 1s infinite;
}

@keyframes blinkingElection {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.div-tooltip {
  display: none;
  position: absolute;
  background-color: transparent;
  padding: 10px;
  color: #222;
  z-index: 1000;
  font-size: 22px;
  text-shadow: 1px 1px 5px var(--grey-bg);
}

.blinking .lineanimation {
  height: 1px;
  width: 20px;
  background-color: red;
  animation: pulse 4s ease infinite alternate, nudge 0.5s linear infinite alternate;
  border-radius: 100%;
  position: absolute;
}

@keyframes pulse {

  0%,
  100% {
    background-color: var(--red-color);
  }

  50% {
    background-color: var(--primary-bg);
  }
}

@keyframes nudge {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(25px, 0);
  }

  100% {
    transform: translate(50px, 0);
  }
}

.card-number {
  font-family: 'CasinoNumFont';
}

.teenpattixyz .main-table.table {
  vertical-align: middle;
}

.teenpattixyz .main-table.table,
.teenpattixyz .main-table.table td,
.teenpattixyz .main-table.table th,
.teenpattixyz .main-table.table tr {
  border-color: #222;
  vertical-align: middle;
  border-bottom: 1px solid #222 !important;
}

.teenpattixyz .main-table.table tr.bet-info {
  background-color: var(--primary-bg);
}

.teenpattixyz .main-table.table .p-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
}

.teenpattixyz .game-section .card-image {
  border: 3px solid #eee;
  display: inline-block;
  width: 45px;
  cursor: pointer;
  margin-bottom: 5px;
  margin-top: 5px;
  cursor: pointer;
}

.teenpattixyz .game-section .card-image.selected {
  border: 3px solid green;
}

.teenpattixyz .main-table.table .brate {
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
}

#modalrules .modal-body,
#gameRulesModal .modal-body {
  height: 80vh;
  overflow: auto;
}

.sidebar-title {
  background-color: var(--theme1-bg);
}



















.back1 {
  background-color: #67ccf5 !important;
}

.back2 {
  background-color: #60c9f5 !important;
}

.lay1 {
  background-color: #ffc6d3 !important;
}

.lay2 {
  background-color: #f9cfdc !important;
}

.d-t-box {
  background-color: var(--light-bg);
  padding: 10px;
}

/*.dt-button {
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg));
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: 0;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 20px;
}*/

.pair-block {
  border-left: 5px solid var(--theme2-bg);
}

.card-dt .card-image img {
  width: 45px;
  cursor: pointer;
}

.modal-backdrop {
  opacity: 0.5;
}

/* Home page casino icons */

.casinoicons {
  position: relative;
  box-shadow: 0 25px 8px -8px;
  border-radius: 4px;
  margin-bottom: 25px;
  cursor: pointer;
}

.stake-btn {
  background-color: #000;

}

.custom-border-place-bet {
  border: 1px solid rebeccapurple;
}

.stake-btn:focus,
.stake-btn:active {
  box-shadow: 0 0 0 0.25rem rgba(134, 107, 255, 0.5) !important;
  outline: none !important;

}


.casinoicons img {
  width: 100%;
  height: auto;
}

.casino-name {
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  color: var(--primary-color);
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: -15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  font-size: 11px;
}

.casino .card-title {
  width: 100%;
}

.new-launch-casino {
  /* -webkit-animation: NAME-YOUR-ANIMATION 1s infinite; */
  /* Safari 4+ */
  /* -moz-animation: NAME-YOUR-ANIMATION 1s infinite; */
  /* Fx 5+ */
  /* -o-animation: NAME-YOUR-ANIMATION 1s infinite; */
  /* Opera 12+ */
  /* animation: NAME-YOUR-ANIMATION 1s infinite;
    position: absolute;
    right: -15px;
    top: -25px;
    padding: 10px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 100; */
  position: absolute;
  left: -39px;
  top: -40px;
  padding: 10px;
  border-radius: 50%;
  height: auto;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

  0%,
  49% {
    background-color: rgba(215, 43, 43, 0.8);
  }

  50%,
  100% {
    background-color: rgba(0, 15, 255, 0.8);
  }
}

.info-icon {
  color: var(--site-color);
  font-size: 16px;
}

.info-block {
  position: relative;
}

.info-block .min-max-info {
  background: rgb(102, 102, 102) none repeat scroll 0% 0%;
  padding: 6px 14px;
  position: absolute;
  color: rgb(255, 255, 255);
  right: 0px;
  z-index: 1000;
}

.casino-content-table {
  background-color: var(--light-bg);
  padding: 15px;
}

.w-1 {
  width: 10% !important;
  min-width: 10% !important;
}

.w-2 {
  width: 20% !important;
  min-width: 20% !important;
}

.w-3 {
  width: 30% !important;
  min-width: 30% !important;
}

.w-4 {
  width: 40% !important;
  min-width: 40% !important;
}

.w-5 {
  width: 50% !important;
  min-width: 50% !important;
}

.w-6 {
  width: 60% !important;
  min-width: 60% !important;
}

.w-7 {
  width: 70% !important;
  min-width: 70% !important;
}

.w-8 {
  width: 80% !important;
  min-width: 80% !important;
}

.w-9 {
  width: 90% !important;
  min-width: 90% !important;
}

.w-10 {
  width: 100% !important;
  min-width: 100% !important;
}

/* Card 32 EU Starts here */

.card32eu-container .card-total-block tr td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.card32eu-container .card-number {
  font-size: 3.5rem;
}

.card32eu-container .info-block .min-max-info {
  left: 0;
  right: unset;
}

.card32eu-container .card32worli .info-block .min-max-info {
  left: unset;
  right: 0;
}

.card32eu-container .bet-action,
.card32eu-container button.back,
.card32eu-container button.lay {
  cursor: pointer;
}

marquee.casino-remark {
  color: #17a2b8;
  width: 100%;
  position: relative;
}

/* dt6 */

.dt6-container .info-block .min-max-info {
  right: unset;
  left: 0;
  white-space: nowrap;
  font-size: 12px;
}

.dt6-container .casino-content-table .info-block .min-max-info {
  right: 0;
  left: unset;
  white-space: nowrap;
  font-size: 12px;
}

.aaa-button {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.aaa-button button {
  padding: 8px;
  border: 0;
  outline: none;
  width: 50%;
  float: left;
  cursor: pointer;
}

.aaa-content {
  background-color: #eee;
  padding: 15px;
}

.aaa-content .card-image img {
  width: 40px;
}

/*Horse Racing*/

.horse-racing .table th,
.horse-racing .table td {
  padding-left: 5px;
  padding-right: 5px;
}

.horse-racing .cloth-icon {
  width: 30px;
}

/*Game Detail*/

.table-header,
.table-row {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  border-bottom: 1px solid black;
  background-color: #202329 !important;
}

.table-row {
  /* background-color: White; */
  /* background-color: #202329 !important; */
}

.fancy-market .table-row {
  border-bottom: 0;
}

.fancy-market .fancy-tripple {
  /*border-bottom: 1px solid #fff;*/
}

.fancy-market .fancy-tripple.suspended::after {
  width: 46%;
  /* Desktop: Covers 2 odds boxes (13% each) + min-max box (20%) = 46% */
}

.fancy-market .fancy-tripple .table-row>div:not(:first-child) {
  border-bottom: 1px solid black;
}

.fancy-market .fancy-tripple .table-row:last-child>div {
  border-bottom: 0;
}

.table-header>div,
.table-row>div {
  padding: 5px 0;
  /* border: 1px solid #fff; */
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
}

.table-header>div {
  border-bottom: 0;
}

.table-header>div:first-child,
.table-row>div:first-child {
  padding-left: 5px;
  padding-right: 5px;
}

.table-header>div:last-child,
.table-row>div:last-child {
  /* border-right: 1px solid #fff; */
  padding-right: 5px;
}

.table-row>div a {
  color: var(--site-color);
}

.table-row>div.back,
.table-row>div.back1,
.table-row>div.back2,
.table-row>div.lay,
.table-row>div.lay1,
.table-row>div.lay2 {
  cursor: pointer;
  border-right: 1px solid #111317
}

.table-row>div button {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
}

.table-row>div .odd~span {
  font-size: 10px;
}

.table-row>div .odd {
  font-size: 13px;
  /*font-weight: bold;*/
  margin-bottom: 1px;
}

.team-name {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fancy-min-max,
.table-remark {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-right: 5px;
  background-color: #212529 !important;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 12px;
}

.market-title {
  background-color: #4a5a69;
  padding: 6px 8px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: bold;
}

.remark {
  color: #8b0000;
  font-weight: bold;
}

.fancy-market .box-6 {
  width: 54%;
  min-width: 54%;
  max-width: 54%;
}

.fancy-market .box-1 {
  width: 13%;
  min-width: 13%;
  max-width: 13%;
}

.team-name,
.country-name {
  font-size: 14px;
  color: white
}

.min-max {
  font-size: 12px;
}

.game-name {
  width: 80%;
  float: left;
}

.game-icons {
  float: left;
  width: 20%;
  text-align: right;
  padding-right: 15px;
}

.game-icon {
  width: 25px;
  text-align: center;
  margin-top: 2px;
  display: inline-block;
}

.game-icon .active {
  display: inline-block !important;
  float: none !important;
  vertical-align: middle !important;
  margin-right: 0 !important;
}

.coupon-table td:first-child .active {
  background-color: #28a745;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

.icon-tv {
  font-size: 0.6875rem;
}

.bookmaker-icon,
.fancy-icon {
  height: 20px;
}

.ic-card {
  height: 18px;
}

.report-container .btn-primary {
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 32px;
}

.report-container .form-control {
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 32px;
}

.b-toast-success .toast .toast-header,
.b-toast-danger .toast .toast-header {
  padding: 10px;
}

.toast .toast-header .close {
  line-height: unset;
}

.b-toast-success .toast .toast-header,
.b-toast-danger .toast .toast-header {
  padding: 14px 20px;
  font-size: 16px;
  box-shadow: 0 0 10px;
}

.b-toaster.b-toaster-top-right .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot {
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: unset !important;
  max-width: unset !important;
  width: auto !important;
}

.b-toast {
  max-width: unset !important;
}

.flip-clock-wrapper ul li a div div.inn {
  background-color: #2e2e2e !important;
  color: #fff !important;
}

.dataTables_filter {
  text-align: right;
}

.dataTables_length select,
.dataTables_filter input {
  display: inline-block;
  width: auto;
}

#rulesList .modal-body {
  padding: 0;
}

#rulesList .modal-dialog {
  max-width: 420px;
}

.player-image-container img {
  width: 50px;
}

.player-number h4 {
  font-size: 16px;
  font-weight: bold;
}

.result-view-all {
  font-size: 14px;
  float: right;
  color: var(--secondary-color);
}

.result-view-all:hover,
.result-view-all:focus {
  color: var(--secondary-color);
}

.result-image img,
.player-type img,
.sixplayer-image img,
.andar-bahar-image {
  width: 50px;
}

.winner-label {
  background-color: var(--green-bg);
  padding: 4px 10px;
  display: inline-block;
  color: var(--white-color);
  min-width: 85px;
}

.tie-label {
  background-color: var(--yellow-bg);
  padding: 4px 10px;
  display: inline-block;
  color: var(--site-color);
  min-width: 85px;
}

.sixplayer-image {
  text-align: center;
}

.teen9-container .table tr,
.teenpatti-1day .table tr {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
}

.teen9-container .table td,
.teen9-container .table th,
.teenpatti-1day .table td,
.teenpatti-1day .table th {
  padding: 5px;
  vertical-align: middle;
  border-bottom: 0;
  border-color: #fff;
}

.teen9-container .bet-action,
.teenpatti-1day .bet-action {
  cursor: pointer;
}

.casino-container .table tr {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
}

#rulesList .modal-dialog.modal-sm {
  max-width: 420px !important;
}

.board-result-inner {
  background: var(--grey-bg);
  padding: 10px;
  color: var(--site-color);
}

.andarbahar-module .video-overlay {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  position: absolute;
  content: '';
  z-index: 10;
  padding: 6px;
}

.andarbahar-module .video-overlay h3 {
  font-size: 9px;
  line-height: 9px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
  width: 200px;
}

.andarbahar-module .video-overlay .card-inner {
  margin-bottom: 3px;
}

.andarbahar-module .video-overlay img {
  border-radius: 4px;
  width: 30px !important;
  height: auto;
  margin-right: 3px;
}

.andarbahar-module .video-overlay .ab-rtlslider {
  margin: 0 15px;
  width: 200px;
}

.andarbahar-module .video-overlay .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.andarbahar-module .video-overlay .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.andarbahar-module .video-overlay .ab-rtlslider .owl-next span,
.andarbahar-module .video-overlay .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
}

.andarbahar-module .andarbg {
  background: lightsalmon;
}

.andarbahar-module .baharbg {
  background: lightgreen;
}

.andarbahar-module #andar-box,
.andarbahar-module #bahar-box {
  vertical-align: top;
  height: 90px;
}

.andarbahar-module .andarbg td:first-child,
.andarbahar-module .baharbg td:first-child {
  vertical-align: middle;
}

.andarbahar-module .andar-bahar.table td {
  border: 1px solid #333;
}

.andarbahar-module #andar-box .game-section,
.andarbahar-module #bahar-box .game-section {
  position: relative;
}

.andarbahar-module .andar-bahar-image {
  width: 45px;
  cursor: pointer;
}

.andarbahar-module #andar-box .game-section .odds,
.andarbahar-module #bahar-box .game-section .odds {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}

.modal-dialog footer {
  background-color: #fff;
}

.modal-dialog.modal-full {
  width: 90%;
  max-width: 90%;
}

.report-main-content a {
  cursor: pointer;
  text-decoration: underline;
}

.text-link {
  color: #007bff;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.text-link-dark {
  color: #222;
}

.text-link-dark:hover,
.text-link-dark:focus {
  text-decoration: underline;
}

.game-rules-icon,
.game-rules-icon:hover,
.game-rules-icon:focus {
  color: #fff;
}

.custom-control-label::after {
  top: 0;
}

.custom-control-label::before {
  top: 0;
}

.binary-chart {
  position: relative;
}

.binary-chart .chart-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  color: #f00;
  font-size: 20px;
  cursor: pointer;
}

.fa-chart-line {
  cursor: pointer;
}

.account-statement-tbl tbody tr {
  cursor: pointer;
}

.search-game-ul {
  display: block;
}

.casino-numfont {
  font-family: 'CasinoNumFont';
  font-size: 270px;
  line-height: 0.8;
  color: #6a0015;
}

.center-cropped {
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 105px;
}

.left_half li.show {
  display: block !important;
}

.left_half li.hide {
  display: none !important;
}

.left_half {
  margin: 0;
}

.ocada-sidebar {
  border-radius: 4px;
  box-shadow: 1px 1px 10px rgba(0, 136, 204, 0.4);
}

.ocada-sidebar a:hover {
  text-decoration: none;
}

.ocada-sidebar li {
  padding: 10px 25px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #555;
  background-color: var(--theme2-bg85);
  color: var(--secondary-color);
}

/*.ocada-sidebar li:before
{
background-color: #fff;
position: absolute;
content: "";
height: 8px;
width: 8px;
border-radius: 50%;
left: 5px;
top: 12px;
}*/

.ocada-sidebar li:hover,
.ocada-sidebar li.active {
  background-color: var(--theme2-bg);
}

.casino-numbers img {
  width: 180px;
}

.casino-bet.place-bet .card-body {
  display: block;
}

.casino-stake {
  height: 30px;
  border: 2px solid #ddd;
  padding: 0 10px;
  font-size: 14px;
  width: 100%;
}

/*.criccasino-select,.criccasino-select:focus
{
background-color: #fff;
color: #ddd;
border: 0;
outline: 0;
box-shadow:none;
}*/

.criccasino-bet-header {
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
}

.criccasino-left-sidebar {
  max-width: 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  padding-right: 0;
}

.criccasino-main-content {
  max-width: 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}

.btn_up,
.btn_down,
.btn_up:hover,
.btn_down:hover,
.btn_up:focus,
.btn_down:focus {
  width: 100px;
  background-color: var(--theme2-bg85);
  color: var(--secondary-color) !important;
  border: 1px solid var(--theme2-bg85);
}

.criccasino-main-content .game-heading {
  padding: 8px;
  background-color: var(--theme2-bg85);
}

.bet-stake input {
  width: 70px;
}

#casino-bet-tbl th {
  width: 33%;
}

.rules-warning {
  float: right;
  /* color: red; */
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
}

.winner-icon i {
  font-size: 26px;
  box-shadow: 0 0 0 var(--secondary-bg);
  -webkit-animation: winnerbox 2s infinite;
  animation: winnerbox 1.5s infinite;
  border-radius: 50%;
  color: #169733;
}

@-webkit-keyframes winnerbox {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(29, 127, 30, 0.6);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(29, 127, 30, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(29, 127, 30, 0);
  }
}

.mx-input {
  height: calc(2.25rem + 2px) !important;
}

.andar-bg {
  background: lightsalmon;
}

.bahar-bg {
  background: lightgreen;
}

.coupon-card td.back,
.coupon-card td.lay {
  cursor: pointer;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(256, 256, 256, 0.5);
  z-index: 1000;
}

.worli-loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(256, 256, 256, 0.5);
  z-index: 1000;
}

.stop-site {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
}

.stop-site>div {
  background-color: #ff0000;
  padding: 30px;
  border-radius: 10px;
  font-size: 30px;
  border: 5px solid #fff;
  line-height: 1;
}

.table-card-container .table tr {
  background-color: transparent;
}

.table-card-container .table tr th {
  border: 0;
}

.table-card img {
  width: 30px;
}

.card-type-icon img {
  width: 25px;
}

.casinoicons {
  position: relative;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

  0%,
  49% {
    background-color: rgba(215, 43, 43, 0.8);
  }

  50%,
  100% {
    background-color: rgba(0, 15, 255, 0.8);
  }
}

/*Diamond Casino*/

.diamond-casino-container .header {
  background-color: var(--theme1-bg);
  color: var(--primary-color);
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.diamond-casino-container .header .logo {
  display: flex;
}

.diamond-casino-container .header .login-container {
  display: flex;
  align-items: center;
}

.diamond-casino-container .header .logo img {
  height: 80px;
  margin-left: 20px;
}

.diamond-casino-container .login-container .input-group {
  width: 180px;
  margin-right: 10px;
  border-radius: 4px;
}

.diamond-casino-container .login-container .input-group.required {
  border: 1px solid #fee002;
}

.diamond-casino-container .login-container .input-group-append {
  display: -ms-flexbox;
  display: flex;
  height: 32px;
}

.diamond-casino-container .login-container .input-group-text {
  background-color: var(--theme1-bg);
  color: #da9e9e;
  border: 0;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-casino-container .login-container .form-control,
.diamond-casino-container .login-container .form-control:hover,
.diamond-casino-container .login-container .form-control:focus {
  border: 0;
  background-color: var(--theme1-bg90);
  color: #da9e9e;
  height: 32px;
  font-size: 13px;
  box-shadow: none;
  outline: 0;
}

.diamond-casino-container .btn-primary {
  background-color: #222;
  border-color: #222;
  color: #fff;
  transition: all 0.8s ease;
}

.diamond-casino-container .btn-primary:hover {
  background-color: #444;
  border-color: #444;
}

.diamond-casino-container .btn-secondary {
  background-color: #fee002;
  border-color: #fee002;
  color: #000;
  transition: all 0.8s ease;
}

.diamond-casino-container .btn-secondary:hover {
  background-color: #fee002;
  border-color: #fee002;
}

.diamond-casino-container .casino-title {
  background: var(--theme1-bg);
  color: #fee002;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
}

.diamond-casino-container .casino-title .arrows {
  position: relative;
  width: 15px;
  height: 15px;
}

.diamond-casino-container .casino-title .arrows-left {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 40px;
}

.diamond-casino-container .casino-title .arrows-right {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: -40px;
}

.diamond-casino-container .casino-title .arrows::before,
.diamond-casino-container .casino-title .arrows span::before {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  width: 15px;
  height: 15px;
  -webkit-animation: arrows 1.5s linear infinite;
  animation: arrows 1.5s linear infinite;
  right: -4px;
  font-size: 1em;
}

.diamond-casino-container .casino-title .arrows span::before {
  -webkit-animation: arrows 1.5s linear infinite -0.25s;
  animation: arrows 1.5s linear infinite -0.25s;
}

.diamond-casino-container .casino-title .arrows span::after {
  -webkit-animation: arrows 1.5s linear infinite -0.5s;
  animation: arrows 1.5s linear infinite -0.5s;
}

@-webkit-keyframes arrows {
  0% {
    opacity: 0;
    -webkit-transform: translate(-5px, -50px);
    transform: translate(-5px, -50px);
  }

  10%,
  90% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(-5px, 0px);
    transform: translate(-5px, 0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-5px, 50px);
    transform: translate(-5px, 50px);
  }
}

@keyframes arrows {
  0% {
    opacity: 0;
    -webkit-transform: translate(-5px, -50px);
    transform: translate(-5px, -50px);
  }

  10%,
  90% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(-5px, 0px);
    transform: translate(-5px, 0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-5px, 50px);
    transform: translate(-5px, 50px);
  }
}

.diamond-casino-container .casino-box {
  position: relative;
}

.diamond-casino-container .casino-box {
  position: relative;
  cursor: pointer;
  transition: all 1s ease;
  margin-bottom: 30px;
  border: 5px solid #fee002;
  box-shadow: 0 0 10px;
}

.diamond-casino-container .casino-box:hover {
  transform: scale(0.95, 0.95);
  z-index: 1000;
}

.diamond-casino-container .casino-icons .casino-login {
  display: flex;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 6px 0;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 16px;
  font-weight: bold;
  flex-direction: column;
}

.diamond-casino-container .casino-icons:hover .casino-login {
  opacity: 1;
}

.diamond-casino-container .casino-icons img {
  width: 100%;
}

.diamond-casino-container .btn-login {
  border-radius: 3px;
  margin-right: 7px;
  text-transform: uppercase;
  width: auto;
}

.diamond-casino-container .casino-name {
  background-color: var(--theme1-bg);
  color: #fee002;
  padding: 10px 0;
  text-align: center;
  position: absolute;
  width: 90%;
  bottom: -20px;
  border-radius: 4px;
  left: 5%;
  font-size: 20px;
  text-transform: uppercase;
  font-family: Casino Flat;
}

.diamond-casino-container .form-control::-webkit-input-placeholder,
.diamond-casino-container input::-webkit-input-placeholder {
  color: #da9e9e;
}

.diamond-casino-container.form-control:-ms-input-placeholder,
.diamond-casino-container input::-ms-input-placeholder {
  color: #da9e9e;
}

.diamond-casino-container .form-control::placeholder,
.diamond-casino-container input::placeholder {
  color: #da9e9e;
}

.diamond-casino-modal .form-control,
.diamond-casino-modal .form-control:hover,
.diamond-casino-modal .form-control:focus {
  border: 0;
  background-color: #772525;
  color: #da9e9e;
  height: 32px;
  font-size: 13px;
  box-shadow: none;
  outline: 0;
}

.diamond-casino-modal .input-group-text {
  background-color: #691e1e;
  color: #da9e9e;
  border: 0;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-casino-modal .btn-primary {
  background-color: #222;
  border-color: #222;
  color: #fff;
  transition: all 0.8s ease;
}

.diamond-casino-modal .btn-primary:hover {
  background-color: #444;
  border-color: #444;
}

.diamond-casino-modal .btn-secondary {
  background-color: #fee002;
  border-color: #fee002;
  color: #000;
  transition: all 0.8s ease;
}

.diamond-casino-modal .btn-secondary:hover {
  background-color: var(--theme2-bg);
  border-color: var(--theme2-bg);
}

.diamond-casino-modal .input-group {
  border-radius: 4px;
}

.diamond-casino-modal .input-group.required {
  border: 1px solid #fee002;
}

#casino-login .modal-content {
  background-color: var(--theme1-bg);
}

.newlacunch-menu a {
  transition: 0.3s ease-in;
  -webkit-animation: newlaunch 1s;
  -moz-animation: newlaunch 1s;
  animation: newlaunch 1s;
  animation-iteration-count: infinite;
}

.newlacunch-menu {
  transition: 0.3s ease-in;
  -webkit-animation: newlaunch 1s;
  -moz-animation: newlaunch 1s;
  animation: newlaunch 1s;
  animation-iteration-count: infinite;
}

@keyframes newlaunch {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #ff0000;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }
}

@-moz-keyframes newlaunch {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #ff0000;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }
}

@-webkit-keyframes newlaunch {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #ff0000;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }
}

.fancy-tab {
  min-height: 300px;
  position: relative;
}

.fancy-message {
  background-color: #ccc;
  color: #000;
  padding: 6px;
  text-align: center;
}

.game-page .nav-tabs {
  display: inline-block;
  box-shadow: 0 8px 8px -7px;
}

.game-page .nav-tabs .nav-link {
  background-color: var(--theme2-bg);
  color: var(--secondary-color);
}

.game-page .nav-tabs .nav-link.active {
  background-color: var(--theme1-bg);
  color: var(--secondary-color);
}

.meter-content img {
  width: 35px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.meter-lh-card-container {
  background-color: #ccc;
  padding: 5px 0;
  text-align: center;
}

.meter-lh-card-container h5 {
  vertical-align: middle;
}

.meter-lh-card img {
  width: 30px;
  margin-right: 5px;
}

.cmeter-container .info-icon {
  color: #fff;
}

.cmeter-container .cmeter-title {
  height: 50px;
}

.cmeter .result-image img {
  width: 35px;
}

.cc-banner-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 60%;
  height: 160px;
  display: flex;
  justify-content: center;
  left: 20%;
  top: 15%;
  color: #fff;
}

.cc-banner-container-inner {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 98%;
  height: 150px;
  display: flex;
  justify-content: center;
  left: 1%;
  top: 3%;
  color: #fff;
  padding: 20px 5px;
  border: 1px solid #fff;
}

.cc-banner-container h4 {
  /* font-family: Digital;*/
  font-family: helvetica, 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.cc-banner-container span {
  font-family: Digital;
  font-weight: bold;
  font-size: 26px;
  line-height: 26px;
}

.cc-banner-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 135px;
  width: 135px;
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #103d9a;
  padding: 5px;
  font-size: 20px;
  font-weight: bold;
}

.cc-banner-title>div {
  line-height: 20px;
}

.cc-banner-ball {
  position: absolute;
  top: 195px;
  width: 100%;
  text-align: center;
}

.cc-banner-ball img {
  width: 40px;
  margin-right: 10px;
}

.score-box {
  position: relative;
  height: 70px;
  margin-bottom: 40px;
  padding: 0 !important;
  border-radius: 0 !important;
}

.backbox {
  position: absolute;
  top: 0;
  left: 70%;
  width: 15%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

.laybox {
  position: absolute;
  top: 0;
  left: 85%;
  width: 15%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.cc-20 .score-img {
  width: 70%;
}

.ball-image {
  width: 50px;
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 10px;
}

.team-score {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  display: flex;
  align-items: center;
  height: 50px;
  left: 20%;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cc-20 .min-max {
  position: absolute;
  top: 53px;
  right: 5px;
}

.cc-20 .book {
  position: absolute;
  top: 5px;
  left: 5px;
}

.cc-20 .video-tv-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.cc-20 .cc-banner-img {
  height: 400px;
  opacity: 0.7;
}

.cc-20 .suspended:after {
  width: 30%;
  height: 50px;
  top: 0;
  right: 0;
  border-radius: 0;
}

.cc-20 .last-result .balls {
  width: 40px;
}

.cc-20 .placebet-run {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

.bounce-enter-active {
  animation: bounce-in 0.5s;
}

.bounce-leave-active {
  animation: bounce-in 0.5s reverse;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.newlaunch-sidemenu span {
  transition: 0.3s ease-in;
  -webkit-animation: newlaunch 1s;
  -moz-animation: newlaunch 1s;
  animation: newlaunch 1s;
  animation-iteration-count: infinite;
}

/*.baccarat .bet-container
{
    display: flex;
}
.baccarat .player-pair
{
    background-color: #086cb8;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 16%;
    margin-right: 1%;
    text-align: left;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.baccarat .banker-pair
{
    background-color: #ae2130;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    width: 16%;
    margin-left: 1%;
    text-align: left;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.baccarat .player-card img
{
    height: 20px;
    margin-right: 2px;
}
.baccarat .player-card .rotate
{
    transform: rotate(270deg);
}
.baccarat .player
{
    background-color: #086cb8;
    width: 22%;
    color: #fff;
    padding: 10px;
}
.tie
{
    background-color: #279532;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22%;
    color: #fff;
    flex-direction: column;
}
.baccarat .banker
{
    background-color: #ae2130;
    width: 22%;
    color: #fff;
    padding: 10px;
}
.baccarat-container
{
    background-color: #eee;
    padding: 15px;
}
.baccarat-container .bet-odds
{
    background-color: var(--theme2-bg);
    font-size: 12px;
    color: #fff;
    width: 100%;
    padding: 6px;
    text-align: center;
    cursor: pointer;
}
.baccarat .baccarat-table tr
{
    background-color: transparent;
}
.baccarat .baccarat-table td
{
    padding: 2px;
    border: 0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    font-size: 12px;
    width: 65%;
}
.baccarat .baccarat-table td:last-child
{
    border-right: 0;
    width: 5%;
}
.baccarat .book
{   
    text-align: center;
    margin-top: 5px;
}*/

.baccarat .bet-container {
  display: flex;
}

.baccarat .player-pair {
  width: 16%;
  margin-right: 1%;
  cursor: pointer;
}

.baccarat .player-pair .suspended:after {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.baccarat .player-pair>div:first-child {
  background-color: #086cb8;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.baccarat .player-pair>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .banker-pair {
  width: 16%;
  margin-left: 1%;
  cursor: pointer;
}

.baccarat .banker-pair .suspended:after {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.baccarat .banker-pair>div:first-child {
  background-color: #ae2130;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.baccarat .banker-pair>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .player-card img {
  height: 20px;
  margin-top: 5px;
}

/*.baccarat .player-card img:first-child
{
    transform: rotate(270deg);
}*/

.baccarat .player {
  width: 22%;
}

.baccarat .player>div:first-child {
  background-color: #086cb8;
  color: #fff;
  padding: 10px;
  height: 70px;
  cursor: pointer;
}

.baccarat .player>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .tie {
  width: 22%;
  cursor: pointer;
}

.baccarat .tie>div:first-child {
  background-color: #279532;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  height: 70px;
}

.baccarat .tie>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .banker {
  width: 22%;
  cursor: pointer;
}

.baccarat .banker>div:first-child {
  background-color: #ae2130;
  color: #fff;
  padding: 10px;
  height: 70px;
}

.baccarat .banker>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat-container {
  background-color: #eee;
  padding: 15px;
}

.baccarat-container .bet-odds {
  background-color: var(--theme2-bg);
  font-size: 12px;
  color: #fff;
  width: 100%;
  padding: 6px;
  text-align: center;
  cursor: pointer;
}

.baccarat-container .table tr {
  background-color: transparent;
}

.baccarat-container .table td {
  padding: 2px;
  border: 0;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  font-size: 12px;
  width: 65%;
}

.baccarat-container .table td:last-child {
  border-right: 0;
  width: 5%;
}

.baccarat .book {
  text-align: center;
  margin-top: 5px;
}

.baccarat .player-card .rotate {
  transform: rotate(270deg);
}

.baccarat .ball-runs.cplayer {
  background-color: #086cb8;
}

.baccarat .ball-runs.cbanker {
  background-color: #ae2130;
}

.baccarat .ball-runs.ctie {
  background-color: #279532;
}

img.lrotate {
  transform: rotate(270deg);
}

img.rrotate {
  transform: rotate(90deg);
}

.ab-2-container {
  width: 100%;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  background-color: #ddd;
  color: #000;
  font-size: 14px;
}

.bet-a {
  display: flex;
  justify-content: center;
  width: 48%;
  margin-left: 2%;
  margin-bottom: 0;
  /*perspective: 45rem;*/
}

.a-title {
  width: 10%;
  text-align: center;
  padding: 5px 0;
  padding-top: 15px;
  /*transform: rotateX(45deg);*/
  font-size: 20px;
}

.sa {
  width: 20%;
  margin-left: 2%;
}

.sa>div:first-child {
  text-align: center;
  padding: 5px 0;
  border: 3px solid yellow;
  border-radius: 8px;
  /*transform: rotateX(45deg);*/
}

.first-bet,
.second-bet {
  width: 25%;
  margin: 0 2%;
}

.first-bet>div:first-child,
.second-bet>div:first-child {
  text-align: center;
  padding: 5px 0;
  border: 3px solid yellow;
  border-radius: 8px;
  /*transform: rotateX(45deg);*/
  background-color: #086cb8;
  color: #fff;
}

.second-bet {
  margin-right: 0;
}

.ab-2-container .book {
  text-align: center;
  margin-top: 5px;
}

.ab-2 .blbox {
  padding: 8px 0;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.ab-2-box {
  background: #ddd;
  color: #000;
  padding: 5px;
}

.ab-2 .bltitle {
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
}

.ab-2 .bltitle img {
  height: 35px;
}

.ab-2 .info-icon {
  color: #000;
}

.ab-2 .card-image img {
  width: 40px;
}

.ab-2 .video-overlay img {
  border-radius: 4px;
  width: 30px !important;
  height: auto;
  margin-right: 3px;
}

.ab-2 .video-overlay .ab-rtlslider {
  margin: 0 15px;
  width: 200px;
}

.ab-2 .video-overlay .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.ab-2 .video-overlay .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.ab-2 .video-overlay .ab-rtlslider .owl-next span,
.ab-2 .video-overlay .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
  color: #fff;
}

.abj-result img {
  border-radius: 4px;
  width: 35px !important;
  height: auto;
  margin-right: 3px;
}

/* .abj-result .ab-rtlslider {
    margin: 0 15px;
    width: 200px
} */

.abj-result .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.abj-result .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.abj-result .ab-rtlslider .owl-next span,
.abj-result .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
  color: #000;
}

.ab-result img {
  border-radius: 4px;
  width: 40px !important;
  height: auto;
  margin-right: 3px;
}

.ab-result .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.ab-result .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.ab-result .ab-rtlslider .owl-next span,
.ab-result .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
  color: #000;
}

.live-casino .casino-icon {
  position: relative;
}

.live-casino .casino-icon img {
  width: 100%;
  height: 200px;
}

.live-casino .casino-icon .casino-name {
  bottom: 0;
}

.live-casino .casinoicons {
  position: relative;
  box-shadow: 0 25px 8px -8px;
  margin-bottom: 25px;
  margin-right: 25px;
  transition: all 1s ease;
}

.live-casino .casinoicons:hover {
  transform: scale(0.95, 0.95);
}

.live-casino .casinoicons img {
  width: 130px;
  height: auto;
}

.live-casino .casino-name {
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  color: var(--primary-color);
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: -15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.live-casino .new-launch-casino {
  -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
  /* Safari 4+ */
  -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
  /* Fx 5+ */
  -o-animation: NAME-YOUR-ANIMATION 1s infinite;
  /* Opera 12+ */
  animation: NAME-YOUR-ANIMATION 1s infinite;
  position: absolute;
  right: -15px;
  top: -25px;
  padding: 10px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 100;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

  0%,
  49% {
    background-color: rgba(215, 43, 43, 0.8);
  }

  50%,
  100% {
    background-color: rgba(0, 15, 255, 0.8);
  }
}

.cc-rules .card {
  border: 1px solid #999;
  box-shadow: 0 8px 6px -6px #000;
  color: #000;
  border-radius: 0;
  margin-bottom: 5px;
  font-size: 14px !important;
}

.cc-rules .card .card-body {
  padding: 8px !important;
}

.cc-rules .card .card-header {
  background-color: transparent;
  padding: 8px;
  color: #000;
}

.cc-rules .card .card-header .card-title {
  color: #000;
  font-size: 16px;
  text-align: center;
}

.cc-rules img {
  height: 30px;
}

.cc-rules .count,
.cc-rules .value {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cc-rules .blink-card {
  animation: blinkcard 1.2s infinite;
}

.cc-rules .card .card-footer {
  padding: 8px;
  background: transparent;
}

@keyframes blinkcard {
  0% {
    background-color: yellow;
  }

  49% {
    background-color: yellow;
  }

  50% {
    background-color: red;
  }

  99% {
    background-color: red;
  }

  100% {
    background-color: yellow;
  }
}

.mymarket {
  text-decoration: underline;
}

.t-underline {
  text-decoration: underline;
}

.cricket-bg-container {
  position: relative;
  font-family: Cricket;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 600px;
  height: 400px;
  margin: 0 auto;
}

/* .cricket-bg-container.cricketv {
  background-image: url('../img/cricketv-bg.jpg');
}

.cricket-bg-container.cricketv2 {
  background-image: url('../img/cricketv2-bg.jpg');
} */

.cricket-bg-container .nation1 {
  position: absolute;
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  top: 13%;
  left: 2%;
  line-height: 1;
  word-break: break-all;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
}

.cricket-bg-container .battle-date {
  position: absolute;
  right: 2%;
  top: 13%;
  color: #000;
  font-size: 1rem;
  word-break: break-all;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
}

.cricket-bg-container .battle-date p {
  line-height: 18px;
}

/*.cricket-bg-container
{
    position: relative;
    font-family: Cricket;
    background-image: url("../img/cricket-bg.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 600px;
    height: 400px;
    margin: 0 auto;
    text-align: center;
}
.cricket-bg-container .nation1
{
    position: absolute;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    bottom: 13%;
    left: 1%;
    max-width: 100px;
    line-height: 1;
    word-break: break-all;
}
.cricket-bg-container .nation2
{
    position: absolute;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    bottom: 13%;
    left: 32%;
    max-width: 100px;
    line-height: 1;
    word-break: break-all;
}
.cricket-bg-container .battle-date
{
    position: absolute;
    left: 13%;
    bottom: 0;
    color: #333;
    font-size: 0.8rem;
}
.cricket-bg-container .battle-date p
{
    line-height: 18px;
}*/

/*.cricketv2-banner
{
    position: relative;
    font-family: Cricket;
    background-image: url("../img/cricketv2-banner.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 600px;
    height: 400px;
    margin: 0 auto;
    text-align: center;
}*/

/*Modal Point Tbale*/

.modal-point-table .modal-content {
  /* background-image: url('../img/point-table-bg.jpg'); */
  background-size: cover;
  padding-top: 160px;
  color: #fff;
}

.modal-point-table.cricketv2 .modal-content {
  /* background-image: url('../img/point-table-bg2.jpg'); */
}

.modal-point-table .modal-content .point-team-name img {
  height: 20px;
  margin-right: 5px;
}

.modal-point-table header {
  padding: 0;
  background: transparent;
  /* color: var(--primary-color); */
  /* border-radius: 0; */
  border: 0;
  height: 0;
}

.point-table-link,
.point-table-link:hover {
  color: #fff;
  text-decoration: underline;
  font-style: italic;
}

.schedule-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 24px 0;
  margin-bottom: 10px;
}

.schedule-team {
  background-image: linear-gradient(rgb(111, 111, 111), rgb(15, 15, 15));
  position: relative;
  padding-left: 10px;
  color: #fff;
  height: 28px;
  line-height: 28px;
  min-width: 45%;
}

.schedule-team.team1 {
  float: left;
}

.schedule-team.team2 {
  float: right;
  text-align: right;
  padding-right: 10px;
}

.schedule-team.team1:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 28px;
  border-top: 14px solid transparent;
  border-left: 22px solid #363636;
  border-bottom: 14px solid transparent;
  right: -22px;
}

.schedule-team.team2:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 28px;
  border-top: 14px solid transparent;
  border-right: 22px solid #363636;
  border-bottom: 14px solid transparent;
  left: -22px;
}

.schedule-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #243084;
  padding: 0 6px;
  height: 24px;
  line-height: 24px;
  min-width: 160px;
  text-align: center;
}

.schedule-date:after {
  position: absolute;
  content: '';
  border-bottom-width: 24px;
  border-bottom-style: solid;
  border-right-width: 24px;
  border-right-style: solid;
  bottom: 0;
  right: -24px;
  height: 24px;
  width: 24px;
  border-color: #243084;
  border-right-color: transparent;
}

.schedule-date:before {
  position: absolute;
  content: '';
  border-bottom-width: 24px;
  border-bottom-style: solid;
  border-left-width: 24px;
  border-left-style: solid;
  bottom: 0;
  left: -24px;
  height: 24px;
  width: 24px;
  border-color: #243084;
  border-left-color: transparent;
}

.schedule-remark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #cb0045;
  padding: 0 6px;
  height: 24px;
  line-height: 24px;
  min-width: 160px;
  text-align: center;
}

.schedule-remark:after {
  position: absolute;
  content: '';
  border-top-width: 24px;
  border-top-style: solid;
  border-right-width: 24px;
  border-right-style: solid;
  top: 0;
  right: -24px;
  height: 24px;
  width: 24px;
  border-color: #cb0045;
  border-right-color: transparent;
}

.schedule-remark:before {
  position: absolute;
  content: '';
  border-top-width: 24px;
  border-top-style: solid;
  border-left-width: 24px;
  border-left-style: solid;
  top: 0;
  left: -24px;
  height: 24px;
  width: 24px;
  border-color: #cb0045;
  border-left-color: transparent;
}

.modal-point-table .close-modal {
  position: absolute;
  right: -8px;
  top: -8px;
  font-size: 30px;
  cursor: pointer;
}

.modal-point-table .body-inner {
  max-height: calc(96vh - 150px);
  padding: 0 15px;
}

.modal-point-table .modal-body {
  padding: 1rem 0;
}

.cricket-match-result tr th:first-child {
  min-width: 100px;
  word-break: break-all;
}

.mail-link:hover {
  color: #333 !important;
}

.mail-link.white,
.mail-link.white:hover {
  color: #fff !important;
}

.font-hindi {
  font-family: 'Hind', sans-serif;
}

.scorecard-2 {
  background-image: none;
  background-color: #eee;
  color: #000;
  padding: 5px;
}

.scorecard-2 .scorecard-message {
  background-color: var(--theme2-bg);
  color: #fff;
  padding: 8px;
  margin-top: 5px;
  position: relative;
}

.scorecard-2 .scorecard-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme2-bg);
  padding: 8px;
  color: #fff;
  cursor: pointer;
}

.scorecard-2 .more-score-detail {
  background-color: #eee;
  padding: 0;
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  color: #444;
  font-size: 14px;
  line-height: 1;
}

.scorecard-2 .more-score-detail .nav-tabs {
  width: 100%;
}

.scorecard-2 .more-score-detail .nav-tabs .nav-link {
  min-width: 100px;
  text-align: center;
}

.scorecard-2 .more-score-detail-left {
  width: 65%;
}

.scorecard-2 .more-score-detail-title {
  background-color: #d2d2d2;
  padding: 6px;
  font-weight: bold;
  color: #222;
}

.scorecard-2 .more-score-detail-desc {
  padding: 6px 6px 0;
}

.scorecard-2 .more-score-detail-right {
  width: 34%;
}

.scorecard-2 .more-score-link {
  position: absolute;
  right: 8px;
  bottom: 7px;
  cursor: pointer;
  text-decoration: underline;
}

.scorecard-2 .bowling-desc {
  border-bottom: 1px solid #ddd;
}

.scorecard-2 .more-score-detail-center {
  width: 1px;
  background-color: #ddd;
}

.game-heading {
  position: relative;
}

.game-heading-score {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #222;
  padding: 10px;
}

.scorecard-2 .more-score-detail-desc [class*='col-'] {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.scorecard-2 .bb-icon {
  max-height: 20px;
  max-width: 20px;
  margin-right: 5px;
}

.scorecard-2 .nav-tabs .nav-link.disabled {
  background-color: #ddd;
  color: #8c8c8c;
  border-color: #ddd;
}

@media only screen and (min-width: 1280px) and (max-width: 1599px) {
  .scorecard-2 .more-score-detail {
    font-size: 11px;
    padding: 5px;
  }
}

.text-bold {
  font-weight: bold;
}

/* Security auth login */

.loginInner1.authentication {
  width: 650px;
}

.loginInner1.authentication .featured-box-login {
  padding: 60px;
}

/* Security auth settings */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #2196f3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.setting-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.setting-box .badge {
  font-size: 16px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 5px 10px;
}

.setting-box span {
  font-size: 24px;
}

.otp-input {
  width: 70px;
  height: 70px;
  padding: 5px;
  margin: 0 10px;
  font-size: 30px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid red !important;
}

.otp-input:focus {
  border: 3px solid var(--theme1-bg);
  outline: none;
  box-shadow: none;
  /*color: var(--theme1-bg);*/
}

.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-download {
  background-color: #59a845;
  border: 2px solid #59a845;
  color: #fff;
  box-shadow: 2px 4px 4px #00000047;
  text-decoration: none !important;
}

.btn-download .fa-android {
  font-size: 45px;
}

.btn-download h4 {
  line-height: 1;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.btn-download .dtext {
  font-size: 18px;
  line-height: 15px;
  text-decoration: none;
}

.btn-download:hover {
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #59a845;
  color: #59a845;
}

.base-timer {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 2px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 10px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__label.green,
.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__label.orange,
.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__label.red,
.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: var(--text-yellow);
}

.security-auth .verify-code {
  border: 1px solid #f2f2f2;
  width: auto;
  font-size: 45px;
  line-height: 1;
  color: #585858;
  background: #e4e4e4;
  padding: 10px;
}

.security-auth a.btn {
  text-decoration: none;
}

.security-auth .form-inline {
  justify-content: center;
}

.security-auth .small-box {
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
}

.security-auth .small-box p {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
}

/* RACE START */

/*Latest Casino*/

.new-casino .back-border {
  border: 2px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 2px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: calc(25% - 8px);
  margin-right: 8px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 48px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-odds-box span {
  display: block;
  font-size: 12px;
  width: 100%;
}

.new-casino .casino-odds-box .casino-odds-box-odd {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.casino-odds-book {
  text-align: center;
  font-size: 14px;
  color: #333;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
}

.casino-odds-book .float-right {
  float: none !important;
}

.new-casino .range-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.new-casino .icon-range {
  position: absolute;
  top: 100%;
  background-color: #333;
  padding: 4px;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 12px;
  z-index: 10;
  right: 0;
  transition: 0.1s;
  text-transform: capitalize;
  color: #fff;
}

.new-casino .video-overlay {
  top: 50%;
  transform: translateY(-50%);
}

.new-casino .redqueen .video-overlay img {
  width: 35px;
}

/*Race*/

/*Latest Casino*/

.new-casino .back-border {
  border: 2px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 2px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: calc(25% - 8px);
  margin-right: 8px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 48px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-odds-box span {
  display: block;
  font-size: 12px;
  width: 100%;
}

.new-casino .casino-odds-box .casino-odds-box-odd {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.casino-odds-book {
  text-align: center;
  font-size: 14px;
  color: #333;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
}

.new-casino .range-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.new-casino .icon-range {
  position: absolute;
  top: 100%;
  background-color: #333;
  padding: 4px;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 12px;
  z-index: 10;
  right: 0;
  transition: 0.1s;
  text-transform: capitalize;
  color: #fff;
}

.new-casino .video-overlay {
  top: 50%;
  transform: translateY(-50%);
}

.new-casino .redqueen .video-overlay img {
  width: 35px;
}

/*Race*/

.new-casino.race {}

.new-casino.race .card-content {
  background-color: #eee;
  padding: 10px;
}

.new-casino.race .casino-odds-box-container-extra {
  width: 100%;
}

.new-casino .video-winner-text {
  color: #fff;
  position: absolute;
  right: 5px;
  top: 5px;
  /*transform: rotate(90deg);*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: calc(100% - 15px);
  font-size: 30px;
  /*letter-spacing: 22px;*/
  width: 25px;
  border: 1px solid yellow;
  padding: 18px;
  z-index: -1;
}

.new-casino.race .video-overlay {
  /*padding-right: 50px;*/
  width: 290.5px;
}

.new-casino.race .casino-video-title {
  /*color: #fff;*/
}

.new-casino.race .total-points {
  display: flex;
  margin-top: 10px;
}

.new-casino.race .total-points>div {
  padding: 5px;
  margin-right: 5px;
  /*background-color: #9f9f9f;*/
  border: 1px solid #fdcf13;
  color: #fff;
}

.new-casino.race .total-points>div:last-child {
  margin-right: 0;
}

/*.new-casino.race .casino-odds-box.casino-yn
        {
            height: 20px;
        }*/

.new-casino .casino-yn {
  display: flex;
  width: 100%;
  justify-content: center;
}

.new-casino .casino-yn>div {
  margin-right: 1%;
}

.new-casino .casino-yn>div:last-child {
  margin-right: 0;
}

.new-casino .casino-yn .casino-odds-box-bhav {
  flex-direction: row;
}

.new-casino .casino-yn+.casino-odds-book {
  width: 66.66%;
  margin-left: auto;
}

.race-modal img {
  width: 50px;
  margin-left: 2px;
  margin-right: 2px;
}

.race-modal .video-winner-text {
  color: #000;
  position: absolute;
  right: -3px;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: calc(100% - 5px);
  font-size: 30px;
  width: 55px;
  border: 1px solid yellow;
  padding: 20px;
  z-index: -1;
  background-color: #efeded;
}

.race-modal .winner-icon {
  right: -110px;
  top: 0;
  bottom: unset;
}

.race-modal .result-image.k-image {
  position: absolute;
  right: -60px;
}

.race-modal .race-result-box {
  width: 386px;
  position: relative;
  z-index: 10;
}

.last-result.playersuit {
  background-color: #d5d5d5;
  border: 1px solid #626262;
  line-height: 27px;
}

.last-result.playersuit img {
  height: 26px;
}

.new-casino.race .card-icons {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 34px;
  background-color: #f2f2f291;
  display: inline-block;
}

.new-casino.race .card-icons img {
  width: 26px;
}

.new-casino.race .video-overlay>div,
.race-result-box>div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-video-rules-icon {
  border: 1px solid #999;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  right: 5px;
  top: 5px;
  z-index: 100;
  color: #fff;
  display: flex;
  height: 40px;
  width: 40px;
  font-size: 24px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.new-casino .casino-video-rules-icon:hover,
.new-casino .casino-video-rules-icon:focus {
  background-color: rgba(115, 115, 115, 0.5);
  outline: 0;
}

/* RACE ED */

#rules-modal .modal-body,
#rulesList .modal-body {
  text-align: center;
  padding: 0;
  background: #333;
}

#rules-modal .modal-body img,
#rulesList .modal-body img {
  max-height: calc(100vh - 120px);
}

.slide-fade-enter-active,
.slide-fade-leave-active {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.slide-fade-enter,
.slide-fade-leave-to {
  opacity: 0;
  transform: rotateY(90deg);
}

/*Horse Detail*/

.horse-detail .country-name label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: var(--font-body);
}

.horse-detail .country-name label img {
  height: 25px;
  margin-right: 5px;
  border: 1px solid #c6c6c6;
  border-radius: 2px;
}

.horse-detail .country-name label>div:last-child {
  width: calc(100% - 50px);
}

.horse-detail .country-name label div:last-child>span:first-child {
  font-weight: bold;
  float: left;
  width: 100%;
  margin-bottom: 5px;
}

.horse-detail .country-name label .jockey-detail {
  font-size: 14px;
  margin-top: 5px;
}

.horse-time-detail {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 5px 0 5px;
}

.horse-time-detail a {
  display: flex;
}

.horse-time-detail span {
  background: var(--theme2-bg);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.horse-time-detail span.active {
  position: relative;
}

.horse-time-detail span.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-right: 10px solid transparent;
  border-top: 10px solid green;
}

.horse-detail .suspended:after {
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  width: 60%;
}

.horse-detail .horse-attr {
  background: #ebe7e7;
  border: 1px solid #ccc;
  padding: 2px;
  font-size: 14px;
  margin-left: 2px;
  border-radius: 4px;
  color: #333;
}

.padding-top {
  padding-top: 50px;
}

.padding-bottom {
  padding-bottom: 50px;
}

.section-title {
  padding: 15px 0px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

.table-responsive-new {
  overflow-x: scroll !important;
  max-height: 300px;
  overflow-y: scroll;
  background-color: #111317;
}

.table-responsive-new th {
  white-space: nowrap;
}

.tab_video {
  border: none;
  width: 100%;
  height: 155px;
  margin-top: -8px;
}

.red {
  color: #fff;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  background-color: #d93025;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

.green {
  color: #fff;
  height: 1.25rem;
  background-color: #149200;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

.marquee-container {
  height: 25px;
}

.flex05 {
  flex: 0.5;
}

.justify-content-end {
  justify-content: end;
}

.tx-12 {
  font-size: 12px !important;
}

.tx-14 {
  font-size: 14px;
}

.tx-13 {
  font-size: 13px;
}

.pr0 {
  padding-right: 0px;
}

.pl0 {
  padding-right: 0px;
}

.profile-right-side {
  align-items: center;
}

.marqueeheader {
  width: 100%;
  display: flex;
  align-items: center;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
}



.p0 {
  padding: 0px !important;
}

.mbc-5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.wnwrap {
  white-space: nowrap;
}

#customers1 th {
  background: var(--theme1-bg);
  color: var(--primary-bg);
}

.btn-primary {
  color: #fff;
  background-color: var(--theme1-bg);
  border-color: var(--theme1-bg);
}

.card-header h4 {
  text-transform: uppercase;
  font-size: 20px;
}

.card-header {
  padding: 5px 10px;
  background-color: #111317;
}




/* #111317 */

.place-bet .card-header {
  background: #111317 !important;
  color: #fff !important;
}

.place-bet .card-header .card-title,
.place-bet .card-header span {
  color: #fff !important;
}

/* Live Match stream header (in right sidebar) */
#sidebar-right .card .card-header {
  background: #111317 !important;
  color: #fff !important;
}

#sidebar-right .card .card-header .card-title,
#sidebar-right .card .card-header span,
#sidebar-right .card .card-header i {
  color: #fff !important;
}

/* My Bet header */
.my-bet .card-header {
  background: #111317 !important;
  color: #fff !important;
}

.my-bet .card-header .card-title,
.my-bet .card-header a {
  color: #fff !important;
}

.coupon-table.scorall.mybet {
  background-color: #111317;
  /* light blue */
}










.mrc-5 {
  margin-right: 5px;
}

.p10 {
  padding: 10px !important;
}

.btn-primary {
  width: 100%;
}

.mobile-loader {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.header-b-menu {
  height: 36px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  height: 36px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme2-bg);
}

.header-b-menu a {
  color: #fff;
  font-weight: bold;
  animation: blinker 1s linear infinite;
  text-decoration: none;
}

.btn-link {
  font-weight: 400;
  color: #fff;
  background-color: transparent;
}

.fancy-group {
  display: flex;
}

.fancy-group li {
  width: 95px;
}

.fancy-group li a {
  text-align: center;
  border: 1px solid #fff !important;
}

.fancy-group li a.active {
  background-color: var(--theme1-bg) !important;
  border-color: #fff;
  color: var(--secondary-color);
  border-bottom: 2px solid #fff;
}

.bg-gray {
  background-color: #eee;
}

.book-btn {
  background: #ccc;
  padding: 3px;
}

.fw-600 {
  font-weight: 600;
}

.p5 {
  padding-bottom: 5px !important;
}

.favourite li {
  flex: 1;
  max-width: 100%;
  min-width: calc(20% - 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  background: var(--theme2-bg);
  margin-right: 5px;
  border-radius: 0;
  color: var(--primary-bg);
}

.favourite li a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  color: var(--primary-bg);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.favourite li a span {
  margin-left: 5px;
  white-space: nowrap;
  height: auto;
  max-width: calc(100% - 27px);
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  animation: new-launch 1s linear infinite;
}

.favourite {
  padding: 0px 0px 5px 0px;
  overflow-x: auto;
  display: flex;
  align-items: center;
}

.favourite ul {
  display: flex;
  width: 100%;
}

.favourite ul li {
  display: flex;
  margin-right: 5px;
  white-space: nowrap;
}

.favourite ul li a {
  text-decoration: none;
}

.ReactModal__Overlay {
  z-index: 2000;
}

.new-logo-mobile-img {
  width: 6rem;
  display: none;
}

@media (max-width: 768px) {
  .ReactModal__Content {
    margin-top: 20%;
  }

  .card-cutting-layout {
    margin-bottom: 40px;
  }

  .whatsapp-link-small {
    margin-bottom: 65px;
  }

  .nav-search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    /* Adjust as needed */
  }

  .new-logo-mobile-img {
    width: 6rem;
    display: flex;
  }

  .nav-search-rules {
    display: none;
  }

  .slot-iframe.show {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /* height: 96vh; */
    transition: none;
  }

  .home-page .casino-list-item {
    width: calc(25% - 10px);
  }

  .btn-deposit {
    padding: 5px;
    margin-bottom: 5px;
    margin-right: 0px;
    font-size: 13px;
    width: 77px;
  }

  .btn-withdraw {
    padding: 5px;
    margin-bottom: 0px;
    margin-right: 0px;
    font-size: 13px;
    width: 77px;
  }

  .slot-iframe .slot-header {
    padding: 5px;
  }

  .close-slot-frame {
    font-size: 18px;
  }

  .slot-iframe iframe {
    height: calc(100% - 31px);
  }

  .fantasy-iframe.show {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: none;
  }

  .fantasy-iframe .slot-header {
    padding: 5px;
  }

  .fantasy-iframe iframe {
    height: calc(100% - 31px);
  }

  .slot-header .title h4 {
    font-size: 20px;
  }
}

.modal-content {
  background-color: var(--primary-bg);
  border: 0;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.5);
  z-index: 5;
  margin-top: 5%;
}

.search-input:focus {
  width: auto;
}

.MuiInputLabel-root.Mui-focused {
  color: #000 !important;
}

.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  color: #000 !important;
}

.MuiAutocomplete-root .MuiFilledInput-root {
  padding-left: 0px !important;
}

.wd-100 {
  width: 100%;
}

.new-casino .back-border {
  border: 3px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 3px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: 100%;
  margin-right: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.casino-32A .suspended::after {
  width: 40%;
  height: 45px;
}

.casino-32A .suspended.heightsuspend::after {
  height: 69px;
}

.dragon-tiger-1day .dt-odds .suspended::after {
  width: 60%;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 60px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.teenpatti-20 .suspended::after {
  width: 50%;
  height: 43px;
}

.onedaypoker .suspended::after {
  width: 40%;
}

.new-casino .back-border {
  border: 3px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 3px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: 100%;
  margin-right: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.casino-32A .suspended::after {
  width: 40%;
}

.dragon-tiger-1day .dt-odds .suspended::after {
  width: 60%;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 60px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-odds-box>div {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.teenpatti-20 .suspended::after {
  width: 50%;
  height: 43px;
}

.onedaypoker .suspended::after {
  width: 40%;
}

.box-2 {
  width: 20%;
  min-width: 20%;
  max-width: 20%;
}

.box-25 {
  width: 25%;
  min-width: 25%;
  max-width: 25%;
}

.box-15 {
  width: 15%;
  min-width: 15%;
  max-width: 15%;
}

.box-35 {
  width: 35%;
  min-width: 35%;
  max-width: 35%;
}

.box-5 {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}

.box-3 {
  width: 30%;
  min-width: 30%;
  max-width: 30%;
}

.box-4 {
  width: 40% !important;
  min-width: 40%;
  max-width: 40%;
}

.notice-casino-odds {
  border: 1px solid #ccc;
  padding: 5px;
  display: flex;
  color: #8b0000;
  font-weight: bold;
  margin-bottom: 10px;
}

.imgspace {
  margin-bottom: 5px;
  margin-top: 5px;
}

.new-casino .casino-odds-box span {
  display: block;
  font-size: 12px;
  width: 100%;
  line-height: 20px;
}

.new-casino .casino-odds-box .casino-odds-box-odd {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.casino-odds-book {
  text-align: center;
  font-size: 14px;
  color: #333;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
}

.new-casino .range-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.new-casino .icon-range {
  position: absolute;
  top: 100%;
  background-color: #333;
  padding: 4px;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 12px;
  z-index: 10;
  right: 0;
  transition: 0.1s;
  text-transform: capitalize;
  color: #fff;
}

.new-casino .casino-yn {
  display: flex;
  width: 100%;
}

.new-casino .casino-ynd {
  display: flex;
  width: 100%;
}

.new-casino .casino-ynd>div {
  margin-right: 1%;
  width: 33% !important;
}

.new-casino .casino-yn>div {
  margin-right: 1%;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.new-casino .casino-odds-box-container-extra {
  width: 100%;
}

.btn-theme {
  color: var(--primary-color) !important;
  background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg)) !important;
  width: 100% !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2) !important;
  border: 0 !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  position: relative;
}

.m-t-5 {
  margin-top: 5px;
}

.aaa-content .card-image img {
  width: 40px;
}

.m-r-5 {
  margin-right: 5px;
}

.aaa-content {
  background-color: #eee;
  padding: 15px;
}

.card-image {
  display: inline-block;
}

.card-number {
  font-family: 'CasinoNumFont';
}

.card32eu-container .card-total-block tr td {
  padding-top: 0px;
  padding-bottom: 0px;
}

.bookmaker-market .suspended::after {
  width: 60%;
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.mt30 {
  margin-top: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.baccarat .bet-odds {
  font-size: 13px;
}

.baccarat .bet-odds {
  background-color: var(--theme2-bg);
  font-size: 15px;
  color: #fff;
  width: 100%;
  padding: 6px;
  text-align: center;
  cursor: pointer;
}

.p15 {
  padding: 15px;
}

.new-casino .video-overlay {
  top: 50%;
  transform: translateY(-50%);
}

.new-casino .redqueen .video-overlay img {
  width: 35px;
}

.casino-video-title {
  left: -2px;
  top: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.video-overlaybox {
  position: absolute;
  top: 0%;
}

.table {
  width: 100%;
  margin-bottom: 0px;
  line-height: normal;
}

.table th,
.table td {
  padding: 0.3rem 0.75rem;
  vertical-align: top;
}

.table thead th {
  vertical-align: middle;
  border-bottom: 2px solid var(--white);
}

.table tbody+tbody {
  border-top: 2px solid var(--white);
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid var(--white);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #f5f5f5;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody+tbody {
  border: 0;
}

.table-primary,
.table-primary>th,
.table-primary>td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody+tbody {
  border-color: #7abaff;
}

.table-success,
.table-success>th,
.table-success>td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody+tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
  background-color: #b1dfbb;
}

.table-info,
.table-info>th,
.table-info>td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody+tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
  background-color: #abdde5;
}

.table-warning,
.table-warning>th,
.table-warning>td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody+tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger>th,
.table-danger>td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody+tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
  background-color: #f1b0b7;
}

.table-light,
.table-light>th,
.table-light>td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody+tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
  background-color: #ececf6;
}

.table-dark,
.table-dark>th,
.table-dark>td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody+tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
  background-color: #b9bbbe;
}

.table-active,
.table-active>th,
.table-active>td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #bbbbbb;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm>.table-bordered {
    border: 0;
  }
}

.box-6 {
  width: 60%;
  min-width: 60%;
  max-width: 60%;
}

.box-6 {
  width: 60%;
  min-width: 60%;
  max-width: 60%;
}

.casino-32A .coupon-table button {
  height: auto;
  min-height: 40px;
  padding: 4px 0 1px;
  background: none;
  color: #273a47;
  border: 0;
}

.casino-32A .coupon-table button span {
  display: block;
}

.ball-runs.cbanker {
  background-color: #ae2130;
}

.ball-runs.cplayer {
  background-color: #086cb8;
}

.ball-runs.ctie {
  background-color: #279532;
}

.imgspace {
  margin-bottom: 5px;
  margin-top: 5px;
}

/* .d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
} */

.videoCards img {
  width: 35px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

.col-20 {
  width: 19.5%;
  margin-right: 1px;
}

.p-10 {
  padding: 10px;
}

.hidemob {
  display: block;
}

.col-25 {
  width: 25%;
}

.mr-20 {
  margin-right: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.onedaypoker .imgspace {
  display: flex;
}

.onedaypoker .videoCards img {
  width: 30px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

.onedaypoker20 .imgspace {
  display: flex;
}

.onedaypoker20 .videoCards img {
  width: 30px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

.twentypoker.suspended::after {
  width: 100%;
}

.onedaypoker.suspended::after {
  width: 100%;
}

.ddb .row5 {
  margin-left: 0px;
  margin-right: 0px;
}

.baccarat .row5 {
  margin-left: 0px;
  margin-right: 0px;
}

.AAA .row5 {
  margin-left: 0px;
  margin-right: 0px;
}

.AAA .coupon-table thead th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  font-weight: 700;
}

.AAA .coupon-table tr td:first-child {
  padding-left: 15px;
  vertical-align: middle;
  padding-right: 15px;
  font-weight: 500;
}

.AAA .coupon-table button {
  height: auto;
  min-height: 40px;
  padding: 4px 0 1px;
  background: none;
  color: #273a47;
  border: 0;
}

.btabl-casino .suspended:after {
  width: 40% !important;
  height: 45px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 27%;
  right: 10px;
}

.mtc-5 {
  margin-top: 5px;
}

.col12 {
  width: 12%;
  margin: 0.2%;
}

.col11 {
  width: 10%;
  margin: 0.3%;
}

.mr--3 {
  margin-right: 2px;
}

.ml--3 {
  margin-left: -3px;
}

.ml-6 {
  margin-left: 6px;
}

.mr-6 {
  margin-right: 3px;
}

.bg-theme {
  background: var(--theme1-bg);
}

.bg-theme2 {
  background: var(--theme2-bg);
}

.bg-theme .statistics-title {
  color: #fff;
}

.mt--50 {
  margin-top: -15px;
}

.mt--30 {
  margin-top: -10px;
}

.mr--1 {
  margin-right: -1px;
}

.tx-red {
  color: red;
}

.row.row6 {
  margin: 0px;
}

.video-overlay-new {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.playeratexta {
  margin-top: 3px;
  margin-bottom: 3px;
}

.playeratextb {}

.tx-yello {
  color: yellow;
}

.tx-green {
  color: green;
}

/* .d-block {
  display: block;
} */

.coupon-table button.back {
  height: 45px;
}

.coupon-table button.lay {
  height: 45px;
}

.matchlist .coupon-table button.back {
  height: 25px;
}

.matchlist .coupon-table button.lay {
  height: 25px;
}

#dragontiger1Day .suspended::after {
  width: 60%;
}

#dragontiger1Day tr.suspended::after {
  height: 45px;
}

#dragontiger1Day button.suspended::after {
  height: 29px;
}

.suspendwidth .suspended::after {
  width: 100% !important;
}

.total-points {
  display: flex;
  margin-top: 10px;
}

.total-points>div {
  padding: 5px;
  margin-right: 5px;
  /* background-color: #9f9f9f; */
  border: 1px solid #fdcf13;
  color: #fff;
}

.meter-content img {
  width: 30px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.meter-content .col-lg-6 {
  padding-left: 0px;
  padding-right: 10px;
}

.float-left {
  float: left;
}

.fw600 {
  font-weight: 900 !important;
  font-size: 18px !important;
}

.ml-1 {
  margin-left: 10px !important;
}

.teenpattixyz table tr td {
  border-color: #222;
  vertical-align: middle;
  border-bottom: 1px solid #222 !important;
}

.teenpattixyz .brate {
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
}

.tx-left {
  text-align: left;
}

.superover .suspended::after {
  width: 60%;
}

.fivewicket .suspended::after {
  width: 60%;
}

.fancy-tripple .suspended::after {
  width: 40%;
}

.fancy-tripple-box .suspended::after {
  width: 46%;
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.race2020 .suspended::after {
  width: 100%;
}

.queen .suspended::after {
  width: 100%;
}

.dt20b .suspended::after {
  width: 100%;
}

.cmeter2020 .suspended::after {
  width: 100%;
}

.baccarat .suspended::after {
  width: 100%;
}

.poker6player .suspended::after {
  width: 100%;
}

.ddb .suspended::after {
  width: 100%;
}

.superover .info-block i {
  color: #fff;
}

.dtl20 .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--theme2-bg);
  border-color: #fff;
  color: var(--secondary-color);
  border-top: 2px solid #fff;
  border-bottom: none;
}

.dtl20 .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  border-bottom: none;
  width: 100%;
}

.dtl20 .nav-tabs .nav-item {
  display: inline-flex;
  width: 33%;
  text-align: center;
}

.card-dtl-mobile {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.card-dtl-mobile .d-flex div {
  width: 33%;
  text-align: center;
}

.card-dtl-mobile img {
  width: 40px;
}

.card-dtl-mobile .d-flex {
  justify-content: center;
  align-items: center;
}

.tx-white {
  color: #fff;
}

.wd44 {
  width: 44px;
}

.horizontal-scorller {
  width: 100%;
  overflow-x: scroll;
}

.horizontal-scorller::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.horizontal-scorller #home-events a {
  white-space: nowrap;
}

.cc-20 .score-img {
  width: 70%;
}

.selected-card {
  border: 2px solid green !important;
}

.csmobileround {
  position: absolute;
  top: 10;
  color: #fff;
  right: 10;
}

.csmobileround span {
  display: block;
  text-align: right;
  font-size: 14px;
}

.prelative {
  position: relative;
}

.float-right {
  float: right;
}

.pl10 {
  padding-left: 10px;
}

.mt-50 {
  margin-top: 50px;
}

#sidebar-right {}

.t10-iframe iframe {
  border: 0;
  width: 100%;
  height: 450px;
}

.frontend {
  overflow: hidden;
  background-color: #080808;
}

.nav-logo-light {
   height:55px; 
  /*height: 28px;*/
}

.new-shuffle-nav-item:hover::before,
.new-shuffle-nav-item.active::before {
  height: 100%;
  opacity: 1;
}

.new-shuffle-nav-item:hover span,
.new-shuffle-nav-item.active span {
  color: var(--primary-color);
}

.nav-item:hover .navbutton {
  background-color: #7817ff;
  color: #fff;
  border: 1px solid #7817ff;

}

.nav-item:hover .navspan {
  color: #7817ff;
}

.new-shuffle-nav-item {
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  /* background-color: red; */
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  /* margin-bottom: 8px; */
  /* border-radius: 0 12px 12px 0; */
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.new-shuffle-nav-item:hover {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.1); */
}

.new-shuffle-nav-item.active {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.15); */
}

.new-shuffle-nav-item i {
  margin-right: 12px;
  font-size: 1rem;
}

.new-shuffle-nav-item span {
  font-weight: medium;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 21px;
  /* color: rgb(136, 108, 225); */
  color: rgb(255, 255, 255);
}

.new-shuffle-nav-item span :active {
  color: rgb(136, 108, 225);
  ;
}

.new-shuffle-nav-item i {
  margin-right: 12px;
  font-size: 1rem;
}

.new-shuffle-nav-item span {
  font-weight: medium;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 21px;
  /* color: rgb(136, 108, 225); */
  color: rgb(255, 255, 255);
}

.new-shuffle-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 0 8px 8px 0;
  /* transition: all 0.3s ease; */
  opacity: 0;
}

.new-shuffle-nav-item:hover::before,
.new-shuffle-nav-item.active::before {
  height: 100%;
  opacity: 1;
}

.nav-item:hover .navbutton {
  background-color: #7817ff;
  color: #fff;
  border: 1px solid #7817ff;

}

.navbutton.active {
  background-color: #212529;
  /* optional */
  color: #7817ff;
  border: 1px solid #7817ff;
}

.navbutton {
  background-color: #212529;
  /* default dark */
  transition: background-color 0.3s ease;
}

.navbutton.active+.mt-2 .navspan {
  color: #7817ff;
}

.MuiAutocomplete-root .MuiFilledInput-root.MuiInputBase-hiddenLabel.MuiInputBase-sizeSmall .MuiAutocomplete-input {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  height: 35px;
  display: none;
}

.MuiAutocomplete-root .MuiFilledInput-root {
  padding-top: 0px !important;
}

.MuiAutocomplete-root {
  width: 0px;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 10px;
  display: none;
}

.MuiAutocomplete-root .MuiFilledInput-root .MuiAutocomplete-endAdornment {
  right: 9px;
  display: none;
}

.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-root .MuiFilledInput-root,
.MuiAutocomplete-hasClearIcon.MuiAutocomplete-root .MuiFilledInput-root {
  padding-right: 0px !important;
}

.MuiInputBase-root:after {
  position: relative !important;
  content: '' !important;
}

.MuiInputBase-root:before {
  position: relative !important;
  content: '' !important;
}

.MuiFormLabel-root {
  display: none !important;
}

.MuiAutocomplete-root .MuiFilledInput-root.MuiInputBase-sizeSmall .MuiFilledInput-input {
  padding: 0px 5px !important;
  border-radius: 1px;
}

.lucky7B .suspended:after {
  width: 100%;
}

.dt20 .suspended::after {
  width: 100%;
}

.teenpattixyz .suspended::after {
  width: 100%;
}

.giveMeEllipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 20px;
  max-height: 20px;
  width: 73%;
}

.clsforellipse {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bg-red {
  background: red !important;
  color: #fff !important;
}

.suspended:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white-color);
  text-transform: uppercase;
  font-family: 'Font Awesome 5 Free';
  content: attr(data-title);
  font-weight: 900;
  font-size: 18px;
  top: 0;
  color: red;
  width: 60%;
  /* Default width to match odds boxes (6 boxes taking 60% of row) */
}

.search-input-show.show input {
  transition: width 0.4s linear;
}

/* .search:hover .search-input-show {
  width: 300px !important;
  transition: width 0.4s linear;
} */
.MuiAutocomplete-root {
  width: 40px !important;
  transition: width 0.4s linear;
}

.MuiAutocomplete-root.show {
  background: var(--primary-bg);
  width: 250px !important;
  transition: width 0.4s linear;
  display: block;
}

.MuiInputBase-root {
  background-color: unset !important;
}

.Tp1Day th {
  font-size: 16px !important;
  padding: 3px !important;
  color: #000 !important;
}

.Tp1Day thead {
  border-bottom: 0px solid #eee;
}

.card32btbody.suspended::after {
  width: 100%;
  height: 100%;
}

.sus60perce.suspended::after {
  width: 60%;
  height: 45px;
}

.m-l-1 {
  margin-left: 4px;
}

#dragontiger1Day button.suspended::after {
  width: 100%;
}

.opentp .suspendwidth .suspended::after {
  width: 60% !important;
}

.cc-banner-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 60%;
  height: 160px;
  display: flex;
  justify-content: center;
  left: 20%;
  top: 15%;
  color: #fff;
}

.cc-banner-container-inner {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 98%;
  height: 150px;
  display: flex;
  justify-content: center;
  left: 1%;
  top: 3%;
  color: #fff;
  padding: 20px 5px;
  border: 1px solid #fff;
}

.cc-banner-container h4 {
  /* font-family: Digital;*/
  font-family: helvetica, 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.cc-banner-container span {
  font-family: Digital;
  font-weight: bold;
  font-size: 26px;
  line-height: 26px;
}

.cc-banner-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 135px;
  width: 135px;
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #103d9a;
  padding: 5px;
  font-size: 20px;
  font-weight: bold;
}

.cc-banner-title>div {
  line-height: 20px;
}

.cc-banner-ball {
  position: absolute;
  top: 195px;
  width: 100%;
  text-align: center;
}

.cc-banner-ball img {
  width: 40px;
  margin-right: 10px;
}

.cc-20 .cc-banner-img {
  height: 400px;
  opacity: 0.7;
}

.cc-20 .placebet-run {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

.bounce-enter-active {
  animation: bounce-in 0.5s;
}

.bounce-leave-active {
  animation: bounce-in 0.5s reverse;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.cricket20books {
  position: absolute;
  right: 5px;
  top: 60px;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
}

.cricket20books>div {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.superover .suspended::after {
  content: attr(data-title);
  color: red;
}

.Andar {
  background: lightsalmon;
}

.Bahar {
  background: lightgreen;
}

.Andarbahar2 .bltitle {
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
}

.Andarbahar2 .blbox {
  padding: 8px 0;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.Andarbahar2 .bltitle img {
  height: 35px;
}

.bg-green {
  background: green;
}

.runposition {
  position: absolute;
  top: 7px;
  right: 14px;
  font-size: 14px;
}

.btn-primary {
  color: #fff !important;
  background-color: #007bff !important;
  border-color: #007bff !important;
}

.custom-trio {
  width: auto !important;
  padding: 4px 25px !important;
  font-size: 18px !important;
}

/* square buttons */
.rec.rec-arrow {
  border-radius: 0;
  background-color: inherit !important;
  color: #fff;
  box-shadow: none;
}

/* round buttons on hover */
.rec.rec-arrow:hover {
  border-radius: 0;
  background-color: inherit !important;
  color: #fff;
  box-shadow: none;
}

/* hide disabled buttons */
.rec.rec-arrow:disabled {
  visibility: hidden;
}

/* disable default outline on focused items */
/* add custom outline on focused items */
.rec-carousel-item:focus {
  outline: none;
  border: none;
}

.w-90P {
  max-width: 90%;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
  /* border: 1px solid #eee; */
}

.setting-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.setting-box .badge {
  font-size: 16px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 5px 10px;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.security-auth .form-inline {
  justify-content: center;
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

.marqueeN {
  width: 100%;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
}

.marqueeN p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(-100%);
  }
}

.rec-carousel-wrapper {
  min-width: 300px;
}

.giveMeEllipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.race20win>div {
  width: 100% !important;
}

.suspense-loading {
  background: var(--theme1-bg);
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.footer.footer-login {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  /* background-color: var(--theme1-bg);/ */
  background-color: #761414;
  color: var(--text-primary);
  padding: 10px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  flex: 1;
}

.footer-links a {
  color: #fff
}

.support-detail {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  flex: 1;

}

.support-detail h2 {
  color: #fff;

  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;

}

.social-icons-box {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.mby-5 {
  margin-bottom: 5px;
}

.footer {
background-color: #7817ff;
  color: #fff;
  padding: 10px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.social-icons-box {
  display: flex;
  flex-wrap: wrap;
  /* position: absolute;
    right: 10px; */
  flex: 1;
  justify-content: flex-end;
}

.social-icon {
  background-color: var(--text-primary);
  height: 40px;
  width: 40px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon:not(:last-child) {
  margin-right: 5px;
}

.social-icon img {
  height: 30px;
}

.footer-links {
  flex: 1;
}


.support-detail {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  flex: 1;
}

.footer-bottom {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.footer-bottom img {
  max-height: 30px;
  max-width: 100px;
  margin-right: 10px;
}

.secure-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

.footer-bottom .secure-logo img {
  max-height: 50px;
}

.footer-text {
  text-align: center;
}

.me-1 {
  margin-right: .25rem !important;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.casino-list {
  /* display: flex; */
  /* flex-wrap: wrap; */
}

.casino-list-item {
  width: calc(10% - 10px);
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.casino-list-item.rect {
  width: calc(16.66% - 10px);
}

.casino-list-item .casino-list-item-banner {
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
}

.casino-list-item .casino-list-name {
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  color: var(--primary-bg);
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  font-size: 11px;
}

.casino-list-item.rect .casino-list-item-banner {
  padding-top: 53.33%;
}

.margin-modal {
  margin: 0.75rem auto
}

.btn-deposit {
  background: #22B05D;
  color: #fff
}

.btn-withdraw {
  background: #BA0001;
  color: #fff
}

.nav.casino-sub-tab {
  overflow-x: hidden;
  overflow-y: hidden;
  flex-wrap: wrap;
  align-content: flex-start;
  background-color: var(--theme1-bg);
  height: 100%;
}

.nav.casino-sub-tab .nav-item {
  width: 100%;
}

.casino-sub-tab .nav-link {
  height: 34px;
  background-color: transparent;
  color: #fff;
}

.nav-pills .nav-link {
  background-color: var(--bg-sidebar);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-right: 1px solid var(--bg-secondary);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.casino-sub-tab .nav-link.active {
  background-color: var(--theme2-bg);
  color: var(--primary-bg);
}

.cas-in-list .casino-list-item {
  width: calc(16.66% - 10px);
}

.casino-sub-tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
  padding: 0 5px;
  justify-content: space-between;
  background-color: var(--theme1-bg);
}

.casino-sub-tab-list ul {
  flex-wrap: nowrap !important;
  overflow: scroll !important;
}

.casino-sub-tab-list ul::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.casino-sub-tab-list ul li {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: auto !important;
}

.slot-iframe {
  position: fixed;
  left: 0;
  /* left:260 */
  top: 100%;
  /* width: calc(100% - 263px); */
  width:100%;
  z-index: 10;
}

.slot-iframe iframe {
  width: 100%;
  height: calc(100% - 47px);
}

.slot-iframe.show {
  top: 0px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  z-index: 20000;
  height: 101%;
}

.slot-iframe .slot-header,
.fantasy-iframe .slot-header {
  background: var(--theme2-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  color: var(--primary-bg);
}

.close-slot-frame {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  font-weight: bold;
  text-decoration: underline;
  background-color: transparent;
}

.bet-button-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  gap: 5px
}


.balance-text-responsive {
  color: #000;
  /* Default black for desktop */
}

@media (max-width: 768px) {
  .balance-text-responsive {
    color: #fff;
    /* White for mobile */
  }
}

/* Apply to whole app */
* {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.6);
  /* gray-blue like shadcn */
  border-radius: 9999px;
  /* fully rounded */
  border: 3px solid transparent;
  /* creates padding around thumb */
  background-clip: padding-box;
  transition: background-color 150ms ease, transform 150ms ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(148, 163, 184, 0.85);
  transform: scale(1.02);
}

*::-webkit-scrollbar-thumb:active {
  transform: scale(1.06);
}

/* Optional: hide scrollbars on touch devices, still allow scrolling */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    display: none;
  }
}

.bet-calculate-success {
  color: #39ff14;
}

.bet-calculate-danger {
  color: "#FF0000" !important;
}

.wnwrap .red {
  color: #fff;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: fit-content;
  background-color: #d93025;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

.search-cont-casino {
  /* border-radius: 6px; */
  /* background: #fff; */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.casino-input-wrapper {
  /* border-radius: 6px; */
  overflow-x: auto;
  scrollbar-width: thin;

}


.active-nav {
  color: #fff !important;
  /* background-color: #883997 !important; */
  /* background: var(--theme1-bg) !important; */
  border-bottom: 2px solid var(--theme1-bg);
  /* Bootstrap green */
  /* border-radius: 4px; */
}

.nav-item-account:hover {
  /* background: var(--theme1-bg) */
  border-bottom: 2px solid -var(--theme1-bg) !important;
  color: white
}

.nav-item-account {
  /* border-bottom: 1px solid var(--theme1-bg) !important; */

}

/* Change span text color on hover and active for nav item */
.new-shuffle-nav-item:hover span,
.new-shuffle-nav-item.active span {
  color: var(--primary-color);
}

/* PreDashboard.css - Sports Betting Dashboard */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Aeonik, sans-serif;
}

body,
.dashboard-container,
.main-content,
.category-group,
.odds-box-hover,
.odds-span-hover {
  font-family: Aeonik, sans-serif;
}

.dashboard-container {
  /* min-height: 100vh; */
  background: #f5f6fa;
  font-family: "Arial", sans-serif;
  contain: layout style;
  overflow-x: hidden;
}

/* Fixed Header Styles - matching the image */
.dashboard-header {
  background: white;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  contain: layout style;
  will-change: auto;
}

.fixed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 2rem;
  background: #fff;

  max-width: 1650px;
  margin: 0 auto;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: start;
  /* background-color: red; */
  position: relative;
}

.logo-image {
  height: 45px;

  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: filter 0.2s ease;
  margin-left: 2px;
}

.logo-image:hover {
  filter: brightness(1.1);
}

.header-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: end;
  max-width: 600px;
  margin: 0 -3rem;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 350px;
  height: 40px;
}

.search-input {
  width: 350px;
  height: 40px;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  font-size: 0.875rem;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  resize: none;
  min-width: 350px;
  max-width: 350px;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style;
}

.search-input:focus {
  border-color: #C10930;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(193, 9, 48, 0.1);
  outline: none;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-icon {
  position: absolute;
  right: 0.75rem;
  color: #3b82f6;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  color: #9ba5b4;
}

.rules-btn {
  padding: 0.5rem 1.5rem;
  background: #C10930;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  white-space: nowrap;
  height: 40px;
  min-width: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 0 #6D081D;
  border-bottom: 3px solid #6D081D;
  flex-shrink: 0;
}

.rules-btn:hover {
  background: #6D081D;
  transform: translateY(-1px);
  border-bottom-color: #C10930;
}

.header-right {
  /* display: flex; */
  /* gap: 1rem; */
  /* align-items: center; */
  /* flex: 0 0 auto; */
  /* margin-left: auto; */
}

/* Button Styles - matching the image */
.signup-btn {
  /* padding: 1rem 2rem;
  background: #374151;
  color: #fff;
  border: 1px solid #C10930;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  white-space: nowrap;
  min-width: 80px;
  height: 40px;
  flex-shrink: 0; */
}

.signup-btn:hover {
  background: #4b5563;
  border-color: #6D081D;
}

.login-btn {
  /* padding: 1rem 2rem;
  background: #374151;
  color: #fff;
  border: 1px solid #C10930;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  white-space: nowrap;
  min-width: 80px;
  height: 40px;
  flex-shrink: 0; */
}

.login-btn:hover {
  background: #4b5563;
  border-color: #6D081D;
}



/* WhatsApp Support Image - Bottom Right Corner */
.whatsapp-support-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-support-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-support-link:hover {
  transform: scale(1.1);
}

.whatsapp-support-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: blink 2s infinite;
}

/* Blinking animation */
@keyframes blink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .whatsapp-support-container {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-support-image {
    width: 50px;
    height: 50px;
  }
}

/* Main Navigation Tabs */
.main-nav-pre {
  background: #343435;
  /* padding: 0px 2rem; */
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  width: 100%;
  position: relative;
  z-index: 999;
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-width: fit-content;
  border-radius: 4px;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
  /* border: 1px solid #886cff; */
  color: #fff;
}

.navbutton.active {
  border: #3b82f6;
}

.nav-icon {
  font-size: 1rem;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-img {
  width: 2.5rem;
  height: 2rem;
  text-transform: lowercase;
  object-fit: contain;
}

.nav-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: center;
}

/* Dashboard Content Layout */
.dashboard-content {
  display: flex;
  /* min-height: 100vh */
}

/* Sidebar Styles */
.sidebar {
  width: 220px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
}

.sidebar-header {
  padding: 0 1.5rem 1rem;
  /* border-bottom removed to eliminate white line */
  margin-bottom: 1rem;
}

.sidebar-header h3 {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  gap: 0.5rem;
}

.sidebar-item:hover {
  background: #f9fafb;
}

.sidebar-item.active {
  background: #fef2f2;
  border-left-color: #dc2626;
  color: #dc2626;
}

.sidebar-icon-img {
  width: 2.5rem;
  height: 1.25rem;
  object-fit: contain;
}

.sidebar-text {
  flex: 1;
  font-size: 0.7rem;
  font-weight: 500;
}

.sidebar-arrow {
  font-size: 0.6rem;
  color: #6b7280;
  transition: transform 0.2s;
}

.sidebar-arrow.expanded {
  transform: rotate(180deg);
}

/* Sidebar Submenu */
.sidebar-submenu {
  background: #f8fafc;
}

.sidebar-subitem {
  padding: 0.5rem 1rem 0.5rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  border-left: 2px solid transparent;
}

.sidebar-subitem:hover {
  background: #f1f5f9;
  color: #dc2626;
}

.subitem-text {
  font-size: 0.7rem;
  font-weight: 400;
}

.new-odds {
  font-weight: 600;
  color: #dc2626;
  /* font-size: 12px; */
}

.subitem-text:hover {
  font-size: 0.7rem;
  color: #dc2626;
  font-weight: 400;
}

/* Main Content Styles */
.main-content {
  /* max-height: 100vh; */
  /* overflow-y: auto; */
  flex: 1;
  /* padding: 0.25rem; */
  background: #fff;
}

.nav-small-item {
  /* background-color: #dc3545; */
  /* same as bg-danger */
  padding-top: 0.4rem;
  font-size: 11px;
  /* py-2 → padding-y */
  padding-bottom: 0.4rem;
  line-height: 15px;
  color: white;
  display: flex;
  /* d-flex */
  flex-direction: column;
  /* flex-column */
  justify-content: center;
  /* justify-content-center */
  align-items: center;
  /* align-items-center */
  flex: 1;

}

/* Fixed bottom nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  /* above the drawer */
  display: flex;
}

/* Drawer (bottom sheet) */
#menuDrawer {
  position: fixed;
  /* make it independent of viewport */
  bottom: 50px;
  /* height of your nav-items */
  left: 0;
  right: 0;
  top: 0;
  /* slide to top */
  z-index: 1050;
  /* behind nav-items */
  transform: translateY(100%);
  /* start hidden */
  transition: transform 0.3s ease-in-out;
  background-color: white;
  /* drawer background */
  overflow-y: auto;
}

/* When drawer is open */
#menuDrawer.show {
  transform: translateY(0);
}

.nav-small-item i {
  font-size: calc(1.375rem + -0.5vw);
}

@media (min-width: 768px) {
  .main-content {
    padding: 0rem;
  }

}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  /* stays on top */
}

/* Drawer slides from bottom to top */
.mobile-drawer {
  position: fixed;
  display: none;
  bottom: 60px;
  /* height of bottom nav */
  left: 0;
  width: 100%;
  height: calc(100vh - 135px);
  /* stops above bottom nav */
  background-color: #111317;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* content starts at top of drawer */
  transform: translateY(0%);
  /* start hidden below */
  transition: transform 0.6s ease-in-out;
  overflow-y: auto;
}

/* When open, slide up */
.mobile-drawer.open {
  transform: translateY(100%);
  display: none;
  /* slides into view */
}

/* Drawer content */
.drawer-content {
  width: 100%;
  /* max-width: 400px; */
  /* background-color: white; */
  border-radius: 12px 12px 0 0;
  padding: 1rem;
}

/* Announcement Bar */
.announcement-bar {
  margin-bottom: 0.25rem;
  padding: 0.5rem 0.25rem;
  background: #6D081D;
  color: white;

  font-size: 1rem;
}

/* Content Header */
.content-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .content-header {
    grid-template-columns: 1fr 1fr;
  }
}

/* Sport Banner Section */
.sport-banner-section {
  width: 100%;
}

@media (min-width: 768px) {
  .sport-banner-section {
    width: 100%;
  }
}

.sport-banner-wrapper {
  width: fit-content;
}

.sport-banner {
  /* background: #4b4647; */
  color: white;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); */
}

@media (min-width: 768px) {
  .sport-banner {
    padding-right: 10rem;
  }
}

.sport-banner-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.live-box {
  color: #fff;
  height: 1.25rem;
  /* padding:2px; */
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #149200;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  border-radius: 4px;

}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  width: 100%;
  /* justify-content: center; */
  /* width: 2rem;
  height: 2rem; */
  object-fit: contain;
}

/* Keep the banner icon inside a fixed-size span to avoid expanding the header */
.sport-banner-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  /* fixed size */
  height: 34px;
  /* fixed size */
  overflow: hidden;
}

.odds-box-hover {
  /* d-flex justify-content-start align-items-center w-100 */
  padding: 0.5rem;
  /* p-2 → 0.5rem padding */
  border-radius: 0.25rem;
  /* rounded → 0.25rem corners */
  display: flex;
  /* d-flex */
  flex-direction: column;
  /* flex-column */
  align-items: flex-start;
  /* align-items-start */
  width: 100%;
  background-color: black;
}

.odds-box-hover:hover {
  background-color: #886cff;
  color: white;

}

.odds-span-hover {
  font-size: 14px;
  color: #886cff;
  font-weight: 500;
}

.odds-span-hover:hover {
  color: white;
}

.sport-banner-icon-wrap .sport-banner-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Filter Buttons Container */
.filter-buttons-container {
  padding-left: 7rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .filter-buttons-container {
    padding-left: 7rem;
  }
}

.filter-buttons {
  gap: 0.25rem;
  display: flex;
  align-items: center;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 0.3rem;
}

.filter-btn {
  padding: 0.3rem 1rem;
  background: #fff;
  color: #dc2626;
  border: 1px solid #dc2626;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.75rem;
}

.filter-btn:hover {
  background: #dc2626;
  color: #fff;
}

/* Odds Header */
.odds-header {
  display: none;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .odds-header {
    display: flex;
  }
}

.odds-header-content {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  align-items: center;
}

.odds-header-item {
  flex: 1;
  font-size: 0.75rem;
  text-align: center;
}

/* Matches Container */
.matches-container {
  background: #000;
  border: 1px solid #000;
  border-radius: 6px;
  overflow: hidden;
}

/* Table Header */
.table-header {
  /* display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.5fr 4fr;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  color: #374151; */
}

.odds-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Matches List */
.matches-list {
  /* max-height: 600px; */
  /* overflow-y: auto; */
}

/* Match Row */
.match-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  /* border-bottom: 0.5px solid #e5e7eb; */
}

@media (min-width: 768px) {
  .match-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Match Info Section */
.match-info-section {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  border-bottom: 1px solid black;
  background-color: black;
}

@media (min-width: 768px) {
  .match-info-section {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 768px) {
  .match-info-section {
    grid-template-columns: repeat(5, 1fr);
  }

  .main-content {
    padding: 0rem;
  }

  .category-group {
    /* padding: 0.5rem; */
  }

  .match-info {
    display: flex;
    align-items: center;
    height: 100%;
    grid-column: span 2;
  }
}

/* Match Info */
.match-info {
  display: flex;
  align-items: center;
  height: 100%;
  grid-column: span 2;
}

@media (min-width: 768px) {
  .match-info {
    grid-column: span 4;
  }
}

.match-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.match-link:hover {
  text-decoration: none;
  color: inherit;
}

.match-details {
  padding: 0 0.5rem;
  gap: 0.25rem;
}

.team-names {
  max-width: 100%;
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  color: black;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
}

.league-info {
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  color: #9ca3af;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  font-weight: 300;
}

/* Match Status */
.match-status {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
}

@media (min-width: 768px) {
  .match-status {
    grid-column: span 1;
  }
}

.live-indicator {
  font-weight: 600;
  font-size: 0.75rem;
  font-family: "Titillium Web", sans-serif;
  color: #10b981;
  border: 1px solid #10b981;
  display: inline-block;
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.live-indicator::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #10b981;
  width: 0;
  transition: all 0.5s;
}

.live-indicator:hover::after {
  width: 100%;
}

.match-time-display {
  display: flex;
  flex-direction: column;
  background: #f3f4f6;
  font-size: 0.625rem;
  align-items: center;
  padding: 0.5rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .match-time-display {
    font-size: 0.75rem;
  }
}

.date {
  color: #ef4444;
  font-family: "Titillium Web", sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .date {
    font-size: 0.75rem;
  }
}

.time {
  color: #ef4444;
  font-family: "Titillium Web", sans-serif;
  font-size: 0.5625rem;
}

@media (min-width: 768px) {
  .time {
    font-size: 0.75rem;
  }
}

/* Match Time */
.match-time {
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-column: span 1;
}

@media (min-width: 768px) {
  .match-time {
    grid-column: span 1;
  }
}

.empty-time {
  font-weight: 600;
}

.live-time-display {
  display: flex;
  flex-direction: column;
  background: #e5e7eb;
  font-size: 0.75rem;
  align-items: center;
  padding: 0.25rem;
  line-height: 1.25;
}

.live-date {
  font-size: 0.5625rem;
  color: #ef4444;
}

.live-time {
  font-size: 0.5625rem;
  color: #ef4444;
}

/* Match Icons */
.match-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding: 0 0.5rem; */
  grid-column: span 1;
}

@media (min-width: 768px) {
  .match-icons {
    grid-column: span 1;
  }
}


.pre-game-icon {
  width: 20px;
  text-align: center;
  margin-top: 2px;
  display: inline-block;
}

/* Match Odds Section */
.match-odds-section {
  grid-column: span 1;
}

/* Odds Grid */
.odds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  height: 100%;
}

/* Odds Cell */
.odds-cell {
  grid-column: span 1;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 12px;
}

@media (min-width: 768px) {
  .odds-cell {
    padding: 0.25rem 0;
  }
}

.odds-blue {
  background: #66d1ff;
}

.odds-pink {
  background: #ffb4c5;
}

/* Bet Button Price */
.bet-button-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.odds-main {
  font-size: 0.75rem;
  font-weight: 600;
}

.odds-sub {
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sidebar {
    width: 240px;
  }

  .search-input {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 0;
  }

  .filter-btn {
    padding: 0.1rem 0.8rem;
    background: #fff;
    color: #dc2626;
    border: 1px solid #dc2626;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .header-left {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .dashboard-content {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    max-height: 200px;
  }

  /* .table-header,
  .match-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  } */

  .match-odds {
    grid-template-columns: repeat(6, 1fr);
  }

  .odds-columns {
    grid-template-columns: repeat(6, 1fr);
  }

  .match-row {
    padding: 0.35rem 0.5rem;
    gap: 0.25rem;
  }

  .main-nav-pre {
    padding: 0.5rem 1rem;
  }

  /* Mobile suspended overlay widths - match odds boxes width */
  /* On mobile, country-name takes 60% (box-6), odds boxes take 40% */
 
  
}

.main-nav-pre {
  display: flex;
  gap: 1rem;
  /* spacing between items */
  overflow-x: auto;
  /* enable horizontal scroll */
  white-space: nowrap;
  /* prevent wrapping */
  padding: 0.5rem;
  background-color: black;
  /* scrollbar-width: none;     Firefox */
}

.main-nav-pre::-webkit-scrollbar {
  /* display: none;             Chrome, Safari, Edge */
  background-color: rgb(32, 32, 32);
  border: none;
}

/* Parent hover */
/* Hover on the container changes both button and text */
.nav-item:hover .navbutton {
  background-color: #7817ff;
  color: white;
  border: 1px solid #7817ff;

}

.nav-item:hover .navspan {
  color: #fff;
}

/* Active state */
.navbutton.active {
  background-color: #212529;
  /* optional */
  color: #886cff;
  border: 1px solid #886cff;
}

.navbutton {
  background-color: #212529;
  /* default dark */
  transition: background-color 0.3s ease;
}

.navspan {
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.navbutton.active+.mt-2 .navspan {
  color: #886cff;
}

/* Responsive styles for fixed header */
@media (max-width: 768px) {
  .dashboard-container {
    min-height: 100vh;
    background: #333;
    font-family: "Arial", sans-serif;
    contain: layout style;
    overflow-x: hidden;
  }

  .fixed-header {
    flex-direction: column;
    background-color: #333;
    gap: 1rem;
    padding: 1rem;
    min-height: auto;
    /* background:red; */
  }

  .header-left {
    justify-content: start;
  }

  .header-center {
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
  }

  .search-input {
    width: 100%;
    max-width: 300px;
  }

  .header-right {
    justify-content: center;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-sub {
    font-size: 0.8rem;
  }

  .signup-btn,
  .login-btn {
    /* min-width: 70px;
    height: 35px;
    font-size: 0.8rem;
    padding: 0.4rem 1rem; */
  }

  .rules-btn {
    height: 35px;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/* Rules Modal Styles */
.rules-modal-btn {
  background: #C10930;
  color: white;
  padding: 0.4rem 1.1rem;
  border: none;
  border-radius: 4px;
  border-bottom: 4px solid #6D081D;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.875rem;
}

.rules-modal-btn:hover {
  background: #6D081D;
  border-bottom-color: #C10930;
}

.rules-modal-content {
  margin: 0;
  padding: 0;
  border-radius: 8px;
  width: 100%;
  background: white;
  max-width: 600px;
  min-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  contain: layout style;
  transform: translateZ(0);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {

  .rules-modal-content {
    max-width: 95vw;
    min-width: 95vw;
    margin: 0 1rem;
  }

  .modal-overlay {
    padding-top: 1rem;
  }
}

.rules-modal-header {
  background: #343435;
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  position: relative;
}

.rules-modal-title {
  color: white;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.rules-modal-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.rules-modal-close-btn:hover {
  color: #f0f0f0;
  transform: scale(1.1);
}

.rules-modal-body {
  padding: 1rem;
  background: white;
}

/* Ensure proper spacing between accordion items */
.accordion-container .MuiAccordion-root {
  margin-bottom: 0.5rem;
}

.accordion-container .MuiAccordion-root:last-child {
  margin-bottom: 0;
}

/* Accordion Styles */
.accordion-container {
  padding: 0;
  padding-bottom: 0;
  padding-top: 0;
}

.accordion-title {
  padding: 0.75rem 1rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

/* Custom styling for the expand icon */
.accordion-container .MuiAccordionSummary-expandIconWrapper {
  color: white;
  transition: transform 0.2s ease;
}

.accordion-container .MuiAccordionSummary-expandIconWrapper.Mui-expanded {
  transform: rotate(180deg);
}

.accordion-content-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

.accordion-content-item:last-child {
  border-bottom: none;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2rem;
  z-index: 1000;
}

.modal-open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.4);
}

.modal-closed {
  visibility: hidden;
  background: transparent;
}

.modal-container {
  background: transparent;
  border-radius: 8px;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-content-open {
  transform: scale(1);
  opacity: 1;
}

.modal-content-closed {
  transform: scale(1.25);
  opacity: 0;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-close-btn:hover {
  color: #333;
}

/* Login Modal Styles */
.login-modal-content {
  display: flex;
  flex-direction: column;
  background: #212529;
  justify-content: center;
  margin-top: 0.75rem;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 768px) {
  .login-modal-content {
    flex-direction: row;
  }
}

.login-form-section {
  width: 100%;
  display: flex;
  flex: 1;
}

@media (min-width: 768px) {
  .login-form-section {
    flex: 1;
  }
}

.login-image-section {
  display: none;
  flex: 1;
}

@media (min-width: 768px) {
  .login-image-section {
    display: flex;
    flex: 1;
  }
}

.login-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simple Header Styles */
.simple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  min-height: 80px;
}

/* Original desktop styles */
.dashboard-header {
  width: 100%;
  background-color: #fff;
  color: white;
  padding: 10px 0;
}

.fixed-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #fff;
}

.header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-mobile {
  display: none;
  background-color: #333;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-center {
  flex-grow: 1;
  max-width: 600px;
  margin: 0 20px;
}

.search-container {
  position: relative;
  flex-grow: 1;
  margin-right: 10px;
}

.search-input {
  width: 100%;
  padding: 8px 30px 8px 10px;
  border-radius: 4px;
  border: none;
  background-color: #fff;
  border: 1px solid #ccc;
  color: white;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.signup-btn,
.login-btn,
.rules-btn {
  padding: 9px 12px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.signup-btn {
  background-color: #2a2e38;
  /* border: 1px solid #6D081D; */
  color: white;
}

.login-btn {
  background-color: var(--primary-color);
  /* border: 1px solid #6D081D; */
  color: white;
}

.rules-btn {
  background-color: #C10930;
  color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0;
  }

  .header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0 5px;
  }

  .header-auth-buttons {
    display: flex;
    gap: 10px;
  }

  .search-container {
    flex-grow: 1;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .new-shuff-sidebar {
    display: none
  }

  .dashboard-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #333;
    /* Consistent dark background */
    color: white;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .fixed-header {
    position: relative;
    padding: 0;
    background: transparent;
  }

  .header-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #333;
  }

  .header-top-row,
  .header-bottom-row {
    padding: 8px 15px;
    background: #333;
  }

  .header-top-row {
    border-bottom: 1px solid #444;
  }

  /* Ensure logo stays left-aligned */
  .logo-container {
    justify-content: flex-start !important;
    margin-right: auto;
  }

  /* Make buttons more visible */
  .signup-btn,
  .login-btn {
    /* background: #C10930; */
    border: none;
    color: white;
  }

  /* Fix search input styling */
  .search-input {
    background: #444;
    color: white;
    border: 1px solid #555;
  }

  .search-icon {
    color: #aaa;
  }
}

.new-shuff-sidebar-pre {
  width: 15rem;
  min-height: 100vh;
  background: #111317;
  /* padding: 1rem; */
  transition: width 0.3s;
  border: #2a2e38;
  padding-bottom: 50px;
}

.new-shuff-border {
  border: 0.2px solid #2a2e38;
}

.new-shuff-collapsed {
  width: 60px;
}

.new-shuff-nav-link {
  color: #aaa;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  transition: background 0.2s;
}

.new-shuff-nav-link:hover,
.new-shuff-nav-link.active {
  background: #222;
  color: #fff;
}

.new-shuff-collapsed .new-shuff-nav-link span {
  display: none;
}

.new-shuffle-nav-item {
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  /* background-color: red; */
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  /* margin-bottom: 8px; */
  /* border-radius: 0 12px 12px 0; */
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.new-shuffle-nav-item:hover {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.1); */
}

.new-shuffle-nav-item.active {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.15); */
}

.new-shuffle-nav-item i {
  margin-right: 12px;
  font-size: 1rem;
}

.new-shuffle-nav-item span {
  font-weight: medium;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 21px;
  /* color: rgb(136, 108, 225); */
  color: rgb(255, 255, 255);
}

.new-shuffle-nav-item span :active {
  color: rgb(136, 108, 225);
  ;
}

.new-shuff-span-sidebar {

  font-weight: 500;
  font-size: 16px;
  font-family: Aeonik, sans-serif;
}

/* Inner border effect using pseudo-elements */
.new-shuffle-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 0 8px 8px 0;
  /* transition: all 0.3s ease; */
  opacity: 0;
}

.new-shuffle-nav-item:hover::before,
.new-shuffle-nav-item.active::before {
  height: 100%;
  opacity: 1;
}

.scroll-sidebar-content {}

.scroll-sidebar-content::-webkit-scrollbar {
  display: none;
}

.odds-box-hover .odds-span-hover {
  color: #886cff;
  /* transition: color 0.2s; */
}

.odds-box-hover:hover .odds-span-hover {
  color: white;
}

.odds-box-hover:hover span.odds-span-hover {
  color: #fff !important;
}

.casino-main-div {
  background-color: black;
}

.toggle-tab-casino {
  background-color: #202329;
  display: flex;
  gap: 8px;
  flex: 1 1 0;
}

.search-cont-casino {
  flex: 1 1 0;
}

.home-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  flex: 1;
}

.home-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
  font-weight: 600;
}

.home-text {
  font-size: 15px;
  opacity: 0;
  font-weight: 700;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.home-btn:hover {
  background-color: #886cff !important;
}

.home-btn.active {
  background-color: #495057 !important;
}

.home-btn:hover .home-text,
.home-btn.active .home-text {
  opacity: 1;
  visibility: visible;
}

.casino-input-wrapper {
  position: relative;
  width: 100%;
}

.search-icon-casino-input {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 16px;
  pointer-events: none;
}

.casino-input {
  width: 100%;
  padding: 6px 10px 6px 36px;
  border-radius: 0.5rem;
  border: 1px solid #202329;
  font-size: 14px;
  background-color: #202329;
  color: #a8a8a9;
  outline: none;
}

.casino-input::placeholder {
  color: #9ca3af;
}

.toggle-tab-casino,
.search-cont-casino {
  flex: 1 1 0;
}

/* Apply to whole app */
* {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(42, 43, 44, 0.6);
  /* gray-blue like shadcn */
  border-radius: 9999px;
  /* fully rounded */
  border: 3px solid transparent;
  /* creates padding around thumb */
  background-clip: padding-box;
  transition: background-color 150ms ease, transform 150ms ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(148, 163, 184, 0.85);
  transform: scale(1.02);
}

*::-webkit-scrollbar-thumb:active {
  transform: scale(1.06);
}

/* Optional: hide scrollbars on touch devices, still allow scrolling */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    display: none;
  }
}

* {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: black;
}

*::-webkit-scrollbar-corner {
  background: black;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.6);
  /* gray-blue like shadcn */
  border-radius: 9999px;
  /* fully rounded */
  border: 3px solid #111317;
  /* creates padding around thumb */
  background-clip: padding-box;
  transition: background-color 150ms ease, transform 150ms ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(148, 163, 184, 0.85);
  transform: scale(1.02);
}

*::-webkit-scrollbar-thumb:active {
  transform: scale(1.06);
}

/* Optional: hide scrollbars on touch devices, still allow scrolling */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    display: none;
  }
}

.new-shuff-border-top-left {
  border: 0.2px solid #2a2e38;
  border-right: none;
}

/* Moving News Bar Styles */
.moving-news-bar {
  width: 100%;
  background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 2px solid #7817ff;
  border-bottom: 2px solid #7817ff;
  box-shadow: 
    0 4px 12px rgba(120, 23, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.moving-news-bar-content {
  display: flex;
  align-items: center;
  height: 38px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, 
    rgba(120, 23, 255, 0.1) 0%, 
    rgba(120, 23, 255, 0.05) 50%, 
    rgba(120, 23, 255, 0.1) 100%);
}

.moving-news-bar-text {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}

.moving-news-bar-text:hover {
  animation-play-state: paused;
}

.news-item {
  display: inline-block;
  padding: 0 25px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 38px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.news-separator {
  color: #7817ff;
  margin: 0 12px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(120, 23, 255, 0.6);
  opacity: 0.8;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Premium glow effect on hover */
.moving-news-bar:hover {
  border-top-color: #9d4edd;
  border-bottom-color: #9d4edd;
  box-shadow: 
    0 6px 20px rgba(120, 23, 255, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .moving-news-bar-content {
    height: 35px;
  }
  
  .news-item {
    font-size: 12.5px;
    padding: 0 18px;
    line-height: 35px;
    font-weight: 600;
  }
  
  .moving-news-bar-text {
    animation-duration: 25s;
  }
  
  .moving-news-bar {
    border-top-width: 1.5px;
    border-bottom-width: 1.5px;
  }
}
.table.coupon-table th {
  border-color: #866bff !important;
  /* force black border */
}

/* Bet row colors with high specificity */
.table.coupon-table tbody tr.back,
.coupon-table.mybet tbody tr.back,
table.coupon-table tr.back {
  background-color: #72bbef !important;
}

.table.coupon-table tbody tr.lay,
.coupon-table.mybet tbody tr.lay,
table.coupon-table tr.lay {
  background-color: #faa9ba !important;
}

.table.coupon-table tbody tr.back td,
.coupon-table.mybet tbody tr.back td,
.table.coupon-table tbody tr.lay td,
.coupon-table.mybet tbody tr.lay td {
  background-color: inherit !important;
}

.casino-container-box .suspended::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white-color);
  text-transform: uppercase;
  font-family: 'Font Awesome 5 Free';
  content: '\f023';
  font-weight: 900;
  font-size: 18px;
  top: 0;
  color: #fff;
}

.place-bet .coupon-table tr th {
  padding: 4px;
}

.my-bet .card-body {
  padding: 0;
  border: #866bff
}

.fancy-marker-title h4 {
  padding: 10px;
  background-color: var(--theme2-bg85);
  color: var(--secondary-color);
  font-size: 14px;
}

.featured-box-detail .table-bordered th {
  border-bottom: 0;
}

.my-bet tbody tr td {
  padding: 4px 8px;
}

.ui-helper-hidden-accessible {
  display: none;
}

.place-bet .form-group {
  margin-bottom: 0;
}

/*Custom Scrollbar*/

.mCSB_inside>.mCSB_container {
  margin-right: 15px !important;
}

.bet-buttons {
  width: 70px !important;
  max-width: 70px !important;
}

.video-tv iframe {
  width: 100%;
  height: 100%;
  border: 2px solid var(--grey-bg);
}

.my-bet .fa-times {
  margin-right: 10px;
}

#run-position {
  max-height: 600px !important;
  height: auto !important;
}

.account-statement-report-link {
  cursor: pointer;
}

@-webkit-keyframes blinking {
  0% {
    background-color: #ffc01a;
  }

  49% {
    background-color: #ffc01a;
  }

  50% {
    background-color: #ffc01a;
  }

  99% {
    background-color: #ffc01a;
  }

  100% {
    background-color: #ffc01a;
  }
}

@-moz-keyframes blinking {
  0% {
    background-color: #ffc01a;
  }

  49% {
    background-color: #ffc01a;
  }

  50% {
    background-color: #ffc01a;
  }

  99% {
    background-color: #ffc01a;
  }

  100% {
    background-color: #ffc01a;
  }
}

@keyframes blinking {
  0% {
    background-color: #ffc01a;
  }

  49% {
    background-color: #ffc01a;
  }

  50% {
    background-color: #ffc01a;
  }

  99% {
    background-color: #ffc01a;
  }

  100% {
    background-color: #ffc01a;
  }
}

.blink {
  -webkit-animation: blinking 700ms;
  -moz-animation: blinking 700ms;
  animation: blinking 700ms;
}

#account-statement_wrapper .form-control {
  width: auto;
  display: inline-block;
}

#account-statement_wrapper #account-statement_filter {
  text-align: right;
}

.error-page footer {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.error-page {
  background-color: #eee;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-content {
  color: #ff0000;
}

.btn-bth {
  background-color: #222;
  color: #fff;
  border-radius: 8px;
}

.disabled {
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
  pointer-events: none;
}

.coupon-table button.custom-btn-spinner {
  height: 12px;
  line-height: 12px;
  min-width: 20px;
  width: 20px;
  vertical-align: top;
  border-radius: 0;
}

.coupon-table button.custom-btn-spinner i {
  font-size: 10px;
}

.amountint {
  width: 35px;
  padding-left: 5px;
  float: left;
  height: 24px;
}

.bet-stake input {
  width: 60px;
  font-size: 12px;
  height: 24px;
}

.bet-for {
  width: 50%;
}

/* 
.bet-odds {
  width: 25%;
} */

.bet-stakes {
  width: 15%;
}

.bet-profit {
  width: 10%;
}

/*.game-name,
.game-date,
.game-odds,
.game-teams {
    display: inline-block;
    width: 48%;
    margin-bottom: 5px;
}*/

.search-game-name,
.game-date {
  float: left;
  width: 50%;
  margin-bottom: 5px;
}

.game-teams {
  width: 100%;
  float: left;
}

.search-game-ul {
  background: var(--primary-bg);
  color: rgb(0, 0, 0);
  padding: 10px;
  width: 500px;
  max-height: 450px;
  overflow: auto;
  box-shadow: 1px 0px 10px var(--secondary-bg);
  position: absolute;
  top: 100%;
}

.search-game-ul li {
  border-bottom: 1px solid var(--grey-bg);
  padding: 5px 0;
  margin-bottom: 5px;
  float: left;
  width: 100%;
}

.search-game-ul li:last-child {
  border-bottom: 0;
}

.search-game-ul li a {
  color: var(--site-color);
}

.search-game-ul li a:hover {
  text-decoration: none;
}

.login {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}

.bet-message td {
  padding: 0 !important;
}

.nav-tabs .nav-link {
  border-radius: 0;
  color: var(--site-color);
  background-color: var(--grey-bg);
  border-right: 1px solid var(--theme2-bg) !important;
  border: 0;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: 0;
  border-right-color: 1px solid var(--theme2-bg);
}

.report-main-content form>span {
  display: inline-block;
  padding-top: 10px;
  vertical-align: top;
}

.report-main-content form>.d-inline-block {
  vertical-align: top;
}

.nopading {
  padding: 0 !important;
}

.div-figure {
  width: 31.33% !important;
  overflow: hidden;
  margin-right: 1% !important;
  margin-left: 1% !important;
  padding: 0;
  max-width: 31.33%;
  float: left;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #000;
}

.div-figure img {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.div-figure img:hover {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

#gamePlay .modal-lg {
  width: 100%;
  max-width: 100%;
}

#gamePlay .modal-header {
  padding-bottom: 5px;
  padding-top: 5px;
}

/*Design for Rules*/

.rules-container .sidebar {
  padding: 0;
}

.rules-container ul li {
  padding: 12px 5px;
  border-bottom: 2px solid var(--grey-bg);
}

.rules-container .card {
  border: 0;
  border-radius: 0;
}

.rules-container .card-header {
  border-radius: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .wrapper {
    width: 1100px;
    overflow-x: auto;
    overflow-y: hidden;
  }


}

/*Scorecard*/

.scorecard {
  width: 50%;
  padding: 5px;
  position: relative;
  color: var(--white-color);
}

/* Cricket scorecard with background */
.scorecard-cricket {
  width: 50%;
  padding: 5px;
  background-image: url('../imgs/scorecard-bg.png');
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white-color);
}

/* Iframe scorecard without background - clean for iframe content */
.scorecard-iframe {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  background: none;
  border: none;
  overflow: hidden;
}

.scorecard-iframe iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

.scorecard-cricket:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.55);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ball-runs {
  background: var(--theme1-bg);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
}

.ball-runs.four {
  background: #087f23;
}

.ball-runs.six {
  background: #883997;
}

.ball-runs.wicket {
  background: var(--red-color);
}

/*HV Design*/

.hv-container .nav-tabs .nav-link.active {
  border-bottom: 0 !important;
  color: var(--secondary-color);
}

.hv-container .nav-tabs .nav-link {
  background-color: var(--grey-bg);
  border-radius: 0;
  color: var(--site-color);
  font-size: 1rem;
  border-right: 1px solid var(--grey-bg);
  font-weight: bold;
  text-align: center;
}

/*.hv-container .nav-tabs .nav-link:hover
{
    border: 1px solid transparent;
}*/

.hv-container .nav-tabs {
  display: flex;
}

.card-number {
  font-size: 3rem;
  height: 40px;
  line-height: 40px;
}

.hv-container table td {
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

.hv-container .line-odd-even {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: bold;
}

.hv-container .card-odds {
  font-size: 14px;
}

.hv-container table td,
.hv-container table th {
  border-left: 1px solid var(--primary-bg) !important;
  border-right: 1px solid var(--primary-bg) !important;
  border-top: 1px solid var(--primary-bg) !important;
  border-bottom: 1px solid var(--primary-bg) !important;
}

.hv-container .nav-tabs .nav-item {
  min-width: 80px;
  width: auto;
}

.hv-container .btn-submit {
  min-width: 100px;
  background: var(--theme2-bg);
  border-color: var(--theme2-bg);
}

.hv-container .table-ifno i {
  font-size: 22px;
  color: var(--theme2-bg);
  cursor: pointer;
}

.hv-container .table-ifno .hightlight {
  animation: blinkinghighlight 1s infinite;
}

@keyframes blinkinghighlight {
  0% {
    color: var(--site-color);
  }

  49% {
    color: var(--red-color);
  }

  50% {
    color: var(--yellow-color);
  }

  99% {
    color: transparent;
  }

  100% {
    color: var(--site-color);
  }
}

.rulenum {
  margin-right: 5px;
  background: var(--grey-bg);
}

.hv-container .bet-action {
  cursor: pointer;
}

.hv-container .bet-action.selected {
  background: var(--green-color);
  color: var(--white-color);
}

.hv-container #result-desc {
  font-size: 40px;
  padding: 25px;
}

.home-banner {
  text-align: center;
  position: relative;
  display: block;
  max-height: 80vh;
  background-origin: civer;
  background-position: center;
  height: 80vh;
  width: 100%;
  background-size: contain;
  background: cover;
  background-color: var(--primary-bg);
  background-repeat: no-repeat;
}

.btn-black {
  background-color: #222;
  border-color: #222;
  color: var(--white-color);
}

.btn-black:hover {
  color: var(--white-color);
  background-color: var(--secondary-bg);
  border-color: var(--secondary-bg);
}

.btn-black:not(:disabled):not(.disabled).active,
.btn-black:not(:disabled):not(.disabled):active {
  color: var(--primary-color);
  background-color: var(--secondary-bg);
  border-color: var(--secondary-bg);
}

.home-products-container-title {
  padding: 6px !important;
  font-size: 16px;
}

.clock2digit {
  max-width: 300px;
  bottom: -25px;
  position: absolute !important;
  right: -37px;
  width: auto !important;
  transform: scale(0.6);
  top: auto;
}

.clock3digit {
  max-width: 300px;
  bottom: -25px;
  position: absolute !important;
  right: -50px;
  width: auto !important;
  transform: scale(0.6);
}

.clickhere {
  font-size: 20px;
  width: 300px;
  position: relative;
  -webkit-animation: mymove 5s infinite;
  /* Safari 4.0 - 8.0 */
  animation: mymove 5s infinite;
}

.clickhere.blinking {
  animation: blinkingTextClickHere 0.8s infinite;
}

/*.clickhere.blinking:hover span{
    animation:blinkingHoverText 0.8s infinite;
}*/

@-webkit-keyframes mymove {
  0% {
    left: 0;
  }

  25% {
    left: 25%;
  }

  50% {
    left: 100%;
  }

  75% {
    left: 25%;
  }

  100% {
    left: 0;
  }
}

@keyframes blinkingTextClickHere {
  0% {
    color: red;
    left: 0;
  }

  20% {
    color: red;
  }

  40% {
    color: red;
    left: 20px;
  }

  60% {
    color: var(--site-color);
  }

  80% {
    color: var(--site-color);
  }

  100% {
    color: var(--site-color);
    left: 40px;
  }
}

/*Hands and patterns*/

.bet-note {
  text-align: center;
  padding: 10px;
}

.bet-note span {
  font-weight: bold;
  font-style: italic;
  font-size: 1.2rem;
  vertical-align: middle;
}

.won-player {
  border: 2px solid var(--green-color);
  padding: 0 8px;
}

.hands-pattern-container .won-player-container img {
  width: 20px;
}

.patterns-container {
  background-color: rgba(0, 0, 0, 0.5);
  height: 170px;
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.patterns-container p {
  padding: 2px 5px;
  color: var(--white-color);
  text-transform: uppercase;
  cursor: pointer;
}

.patterns-container p:hover {
  background-color: var(--primary-bg);
  color: var(--site-color);
}

.patterns-container p:last-child {
  border-bottom: 0;
}

.video-container {
  position: relative;
  background: var(--secondary-bg);
  min-height: 400px;
}

.hands-pattern-container td {
  text-align: center;
  border: 0;
  padding: 4px;
}

/*.hands-pattern-container td button {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: 0;
    padding: 12px 8px;
}*/

.hands-pattern-container .nav-tabs .nav-link {
  border-radius: 0;
  font-size: 1rem;
  color: var(--site-color);
}

.hands-pattern-container .nav-tabs {
  display: flex;
}

.hands-pattern-container .mCSB_scrollTools {
  width: 6px !important;
}

.hands-pattern-container .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #666 !important;
}

.hands-pattern-container .mCSB_inside>.mCSB_container {
  margin-right: 6px !important;
}

.card-red {
  color: var(--red-color) !important;
}

.card-black {
  color: var(--site-color) !important;
}

.hands-pattern-container .point {
  float: right;
  text-align: right;
  margin-top: 1px;
  font-weight: bold;
  font-size: 16px;
}

.hands-pattern-container .patern-name {
  float: left;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
}

.hands-pattern-container .nav-tabs .nav-link {
  background-color: var(--grey-bg);
  border-radius: 0;
  color: var(--site-color);
  font-size: 1rem;
  border-right: 1px solid var(--primary-bg);
  font-weight: 700;
  text-align: center;
}

.ubook b {
  font-weight: normal;
  font-size: 12px;
}

.hands-pattern-container .ubook {
  font-weight: bold;
  float: left;
  margin-top: 5px;
  margin-left: 5px;
}

.hands-pattern-container .min-max {
  font-size: 11px;
  float: right;
}

.hands-pattern-container .hands tr td {
  width: 50%;
}

.hands-pattern-container .patterns tr td {
  width: 33.33%;
}

.theme1bg {
  background-color: var(--theme1-bg);
}

.theme2bg {
  background-color: var(--theme2-bg);
}

.theme1color {
  color: var(--primary-color);
}

.theme2color {
  color: var(--secondary-color);
}

/*.hands-pattern-container td button {
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg));
}*/

.poker9-result .resultd {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}

/* Lucky CSS Starts here */

/*.low-high-btn {
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg));
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: 0;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 20px;
}*/

.card-seven img {
  width: 40px;
  cursor: pointer;
}

.lucky-seven-content {
  background-color: var(--light-bg);
  padding: 10px;
}

.luckyseven-img img {
  width: 50px;
}

.card-image {
  display: inline-block;
}

/*Custom CSS*/

.coupon-navigation-filter.active {
  border-color: var(--primary-bg);
  background-color: var(--primary-bg);
}

.coupon-navigation-filter.inplay {
  color: var(--white-color);
  border-color: #20a052;
  background-color: #20a052;
}

.login .main {}

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

.download-apk a:hover {
  color: var(--primary-color);
}

.featured-box-login h4 {
  color: var(--theme1-bg);
}

.table input {
  border: 1px solid var(--grey-bg);
}

.nav-link-all {
  padding: 0.3rem 1rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--theme2-bg);
  border-color: transparent;
  color: var(--secondary-color);
}

.lay,
.lay-color {
  background-color: #f6bfcf !important;
}

.back,
.back-color {
  background-color: #6fd2f6 !important;
}

.layx {
  background-color: #f9c9d4 !important;
}

.backx {
  background-color: #c7eeff !important;
}

.game-heading .card-header-title {
  font-size: 11px;
  text-transform: uppercase;
}

.place-bet thead tr,
.my-bet thead tr {
  background-color: var(--grey-bg);
}

.place-bet .table input {
  background-color: var(--primary-bg);
}

.table tr.bet-info {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
}

.table tr.bet-message {
  background-color: var(--primary-bg);
}

.g-recaptcha {
  transform: scale(0.77);
  transform-origin: 0 0;
}

.modal-book {
  color: #303030;
  font-weight: normal;
}

tr.back {
  background-color: #6fd2f6 !important;
}

tr.lay {
  background-color: #faa9ba !important;
}

.activity-modal {
  border: 10px solid var(--theme1-bg);
  border-radius: 8px;
}

.value-buttons button {
  margin-right: 3px;
}

@media (min-width: 1025px) {
  div.table-responsive {
    overflow-x: hidden !important;
  }
}

@media(min-width:768px) {
  .grid-responsive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sidebar-loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(204, 204, 204, 0.5);
  z-index: 10;
}

.sidebar-loading img {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -27px 0px 0px -27px;
  width: 32px;
}

.tv-container {
  margin-top: 0;
  margin-bottom: 4px;
}

.video-iframe {
  border: 0;
  background: #222;
  height: 260px;
  width: 100%;
}

.animation-iframe {
  height: 235px;
  width: 100%;
  /* background-image: url(../../animation_banner.png),
    linear-gradient(var(--theme1-bg), var(--theme2-bg)); */
  background-repeat: no-repeat;
  background-position: center;
  border: 3px solid;
}

.blinking span {
  animation: blinkingText 0.8s infinite;
}

.blinking:hover span {
  animation: blinkingHoverText 0.8s infinite;
}

@keyframes blinkingText {
  0% {
    color: var(--red-color);
  }

  20% {
    color: var(--red-color);
  }

  40% {
    color: var(--yellow-color);
  }

  60% {
    color: var(--yellow-color);
  }

  80% {
    color: var(--white-color);
  }

  100% {
    color: var(--white-color);
  }
}

@keyframes blinkingHoverText {
  0% {
    color: var(--red-color);
  }

  20% {
    color: var(--red-color);
  }

  40% {
    color: var(--yellow-color);
  }

  60% {
    color: var(--yellow-color);
  }

  80% {
    color: var(--white-color);
  }

  100% {
    color: var(--white-color);
  }
}

@keyframes blinkingHoverWhite {
  0% {
    color: var(--red-color);
  }

  20% {
    color: var(--red-color);
  }

  40% {
    color: var(--yellow-color);
  }

  60% {
    color: var(--yellow-color);
  }

  80% {
    color: var(--white-color);
  }

  100% {
    color: var(--white-color);
  }
}

.ball-runs.wicket {
  background: var(--red-color);
}

.ball-runs {
  background: var(--theme1-bg);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--primary-color);
  font-weight: bold;
}

.ball-runs.playera {
  background: #355e3b;
  color: #ff4500;
}

.ball-runs.playerb {
  background: #355e3b;
  color: #ffff33;
}

.ball-runs.playerc {
  background: #355e3b;
  color: #08c;
}

.ball-runs.playertie {
  background: var(--theme2-bg);
  color: var(--secondary-color);
}

.teenpatti-rules {
  cursor: pointer;
}

.teenpatti .modal-dialog {
  width: 370px;
}

#rules-container {
  min-height: 400px;
}

.video-overlay {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  height: auto;
  left: 0;
  content: '';
  top: 0;
  padding: 5px;
}

.video-overlay.right {
  right: 0;
  left: auto;
  text-align: right;
}

.video-overlay h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.video-overlay .card-inner {
  margin-bottom: 5px;
}

.video-overlay img {
  width: 35px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

#result-desc {
  background: rgba(0, 0, 0, 0.4);
  color: var(--white-color);
  text-align: right;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.greenbx {
  color: var(--green-color);
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.yellowbx {
  color: var(--yellow-color);
  font-weight: bold;
  text-transform: uppercase;
}

.redbx {
  color: var(--red-color);
  font-weight: bold;
  text-transform: uppercase;
}

.winner-label {
  /*font-size: 22px;
    color: var(--primary-color);
    padding: 10px;*/
  margin-top: 5px;
}

.round-id {
  font-size: 18px;
}

.player-number {
  border-right: 1px solid var(--theme1-bg);
  flex: 1;
}

.player-number:last-child {
  border-right: 0;
}

.player-container {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-direction: row;
  flex-direction: row;
}

.board-result {
  border-top: 1px solid var(--theme1-bg);
  padding-top: 10px;
  padding-bottom: 10px;
}

.second-row {
  border-top: 1px solid var(--theme1-bg);
}

.player-container {
  /*border-bottom: 1px solid var(--theme1-bg);*/
  padding-bottom: 10px;
}

.last-result {
  cursor: pointer;
  margin-left: 2px;
}

.last-result-slider .owl-prev {
  position: absolute;
  top: 0;
  left: -20px;
}

.last-result-slider .owl-next {
  position: absolute;
  top: 0;
  right: -20px;
}

.last-result-slider .owl-next span,
.last-result-slider .owl-prev span {
  color: #333;
  font-size: 45px;
  line-height: 1;
}

/* Andar Bahar Module */

.andarbahar-module .andar-bahar.table td {
  border: 1px solid #333;
}

.andarbahar-module .andar-bahar.table tr.bet-info {
  background-color: var(--primary-bg);
}

.andarbahar-module .andar-bahar.table .p-title {
  font-size: 16px;
  text-transform: uppercase;
}

.andarbahar-module .andar-bahar-image {
  width: 45px;
  cursor: pointer;
}

.andarbahar-module .ab-slider {
  margin: 0 15px;
  width: 120px;
}

.andarbahar-module #andar-box,
.andarbahar-module #bahar-box {
  vertical-align: top;
  height: 80px;
}

.andarbahar-module #andar-box .game-section,
.andarbahar-module #bahar-box .game-section {
  position: relative;
}

.andarbahar-module #andar-box .game-section .odds,
.andarbahar-module #bahar-box .game-section .odds {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}

.andarbahar-module .owl-next {
  position: absolute;
  top: 0;
  left: -20px;
}

.andarbahar-module .owl-prev {
  position: absolute;
  top: 0;
  right: -20px;
}

.andarbahar-module .owl-next span,
.andarbahar-module .owl-prev span {
  color: var(--white-color);
  font-size: 33px;
}

/*.nav-rules,
.download-apklink {
    margin-top: 5px;
    margin-right: 10px;
}*/

.download-apklink a:hover {
  text-decoration: none;
}

.download-apklink .blinking:hover span {
  animation: blinkingHoverWhite 0.8s infinite;
}

.election-menu {
  animation: blinkingElection 1s infinite;
}

@keyframes blinkingElection {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.div-tooltip {
  display: none;
  position: absolute;
  background-color: transparent;
  padding: 10px;
  color: #222;
  z-index: 1000;
  font-size: 22px;
  text-shadow: 1px 1px 5px var(--grey-bg);
}

.blinking .lineanimation {
  height: 1px;
  width: 20px;
  background-color: red;
  animation: pulse 4s ease infinite alternate, nudge 0.5s linear infinite alternate;
  border-radius: 100%;
  position: absolute;
}

@keyframes pulse {

  0%,
  100% {
    background-color: var(--red-color);
  }

  50% {
    background-color: var(--primary-bg);
  }
}

@keyframes nudge {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(25px, 0);
  }

  100% {
    transform: translate(50px, 0);
  }
}

.card-number {
  font-family: 'CasinoNumFont';
}

.teenpattixyz .main-table.table {
  vertical-align: middle;
}

.teenpattixyz .main-table.table,
.teenpattixyz .main-table.table td,
.teenpattixyz .main-table.table th,
.teenpattixyz .main-table.table tr {
  border-color: #222;
  vertical-align: middle;
  border-bottom: 1px solid #222 !important;
}

.teenpattixyz .main-table.table tr.bet-info {
  background-color: var(--primary-bg);
}

.teenpattixyz .main-table.table .p-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 4px;
}

.teenpattixyz .game-section .card-image {
  border: 3px solid #eee;
  display: inline-block;
  width: 45px;
  cursor: pointer;
  margin-bottom: 5px;
  margin-top: 5px;
  cursor: pointer;
}

.teenpattixyz .game-section .card-image.selected {
  border: 3px solid green;
}

.teenpattixyz .main-table.table .brate {
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
}

#modalrules .modal-body,
#gameRulesModal .modal-body {
  height: 80vh;
  overflow: auto;
}

.sidebar-title {
  background-color: var(--theme1-bg);
}



















.back1 {
  background-color: #67ccf5 !important;
}

.back2 {
  background-color: #60c9f5 !important;
}

.lay1 {
  background-color: #ffc6d3 !important;
}

.lay2 {
  background-color: #f9cfdc !important;
}

.d-t-box {
  background-color: var(--light-bg);
  padding: 10px;
}

/*.dt-button {
    color: var(--primary-color);
    background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg));
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border: 0;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 20px;
}*/

.pair-block {
  border-left: 5px solid var(--theme2-bg);
}

.card-dt .card-image img {
  width: 45px;
  cursor: pointer;
}

.modal-backdrop {
  opacity: 0.5;
}

/* Home page casino icons */

.casinoicons {
  position: relative;
  box-shadow: 0 25px 8px -8px;
  border-radius: 4px;
  margin-bottom: 25px;
  cursor: pointer;
}

.stake-btn {
  background-color: #000;

}

.custom-border-place-bet {
  border: 1px solid rebeccapurple;
}

.stake-btn:focus,
.stake-btn:active {
  box-shadow: 0 0 0 0.25rem rgba(134, 107, 255, 0.5) !important;
  outline: none !important;

}


.casinoicons img {
  width: 100%;
  height: auto;
}

.casino-name {
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  color: var(--primary-color);
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: -15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  font-size: 11px;
}

.casino .card-title {
  width: 100%;
}

.new-launch-casino {
  /* -webkit-animation: NAME-YOUR-ANIMATION 1s infinite; */
  /* Safari 4+ */
  /* -moz-animation: NAME-YOUR-ANIMATION 1s infinite; */
  /* Fx 5+ */
  /* -o-animation: NAME-YOUR-ANIMATION 1s infinite; */
  /* Opera 12+ */
  /* animation: NAME-YOUR-ANIMATION 1s infinite;
    position: absolute;
    right: -15px;
    top: -25px;
    padding: 10px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 100; */
  position: absolute;
  left: -39px;
  top: -40px;
  padding: 10px;
  border-radius: 50%;
  height: auto;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

  0%,
  49% {
    background-color: rgba(215, 43, 43, 0.8);
  }

  50%,
  100% {
    background-color: rgba(0, 15, 255, 0.8);
  }
}

.info-icon {
  color: var(--site-color);
  font-size: 16px;
}

.info-block {
  position: relative;
}

.info-block .min-max-info {
  background: rgb(102, 102, 102) none repeat scroll 0% 0%;
  padding: 6px 14px;
  position: absolute;
  color: rgb(255, 255, 255);
  right: 0px;
  z-index: 1000;
}

.casino-content-table {
  background-color: var(--light-bg);
  padding: 15px;
}

.w-1 {
  width: 10% !important;
  min-width: 10% !important;
}

.w-2 {
  width: 20% !important;
  min-width: 20% !important;
}

.w-3 {
  width: 30% !important;
  min-width: 30% !important;
}

.w-4 {
  width: 40% !important;
  min-width: 40% !important;
}

.w-5 {
  width: 50% !important;
  min-width: 50% !important;
}

.w-6 {
  width: 60% !important;
  min-width: 60% !important;
}

.w-7 {
  width: 70% !important;
  min-width: 70% !important;
}

.w-8 {
  width: 80% !important;
  min-width: 80% !important;
}

.w-9 {
  width: 90% !important;
  min-width: 90% !important;
}

.w-10 {
  width: 100% !important;
  min-width: 100% !important;
}

/* Card 32 EU Starts here */

.card32eu-container .card-total-block tr td {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.card32eu-container .card-number {
  font-size: 3.5rem;
}

.card32eu-container .info-block .min-max-info {
  left: 0;
  right: unset;
}

.card32eu-container .card32worli .info-block .min-max-info {
  left: unset;
  right: 0;
}

.card32eu-container .bet-action,
.card32eu-container button.back,
.card32eu-container button.lay {
  cursor: pointer;
}

marquee.casino-remark {
  color: #17a2b8;
  width: 100%;
  position: relative;
}

/* dt6 */

.dt6-container .info-block .min-max-info {
  right: unset;
  left: 0;
  white-space: nowrap;
  font-size: 12px;
}

.dt6-container .casino-content-table .info-block .min-max-info {
  right: 0;
  left: unset;
  white-space: nowrap;
  font-size: 12px;
}

.aaa-button {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.aaa-button button {
  padding: 8px;
  border: 0;
  outline: none;
  width: 50%;
  float: left;
  cursor: pointer;
}

.aaa-content {
  background-color: #eee;
  padding: 15px;
}

.aaa-content .card-image img {
  width: 40px;
}

/*Horse Racing*/

.horse-racing .table th,
.horse-racing .table td {
  padding-left: 5px;
  padding-right: 5px;
}

.horse-racing .cloth-icon {
  width: 30px;
}

/*Game Detail*/

.table-header,
.table-row {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  border-bottom: 1px solid black;
  background-color: #202329 !important;
}

.table-row {
  /* background-color: White; */
  /* background-color: #202329 !important; */
}

.fancy-market .table-row {
  border-bottom: 0;
}

.fancy-market .fancy-tripple {
  border-bottom: 1px solid #000;
}

.fancy-market .fancy-tripple.suspended::after {
  width: 46%;
  /* Desktop: Covers 2 odds boxes (13% each) + min-max box (20%) = 46% */
}

.fancy-market .fancy-tripple .table-row>div:not(:first-child) {
  border-bottom: 1px solid black;
}

.fancy-market .fancy-tripple .table-row:last-child>div {
  border-bottom: 0;
}

.table-header>div,
.table-row>div {
  padding: 5px 0;
  /* border: 1px solid #fff; */
  border-right: 0;
  border-bottom: 0;
  border-top: 0;
}

.table-header>div {
  border-bottom: 0;
}

.table-header>div:first-child,
.table-row>div:first-child {
  padding-left: 5px;
  padding-right: 5px;
}

.table-header>div:last-child,
.table-row>div:last-child {
  /* border-right: 1px solid #fff; */
  padding-right: 5px;
}

.table-row>div a {
  color: var(--site-color);
}

.table-row>div.back,
.table-row>div.back1,
.table-row>div.back2,
.table-row>div.lay,
.table-row>div.lay1,
.table-row>div.lay2 {
  cursor: pointer;
  border-right: 1px solid #111317
}

.table-row>div button {
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
}

.table-row>div .odd~span {
  font-size: 10px;
}

.table-row>div .odd {
  font-size: 13px;
  /*font-weight: bold;*/
  margin-bottom: 1px;
}

.team-name {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fancy-min-max,
.table-remark {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-right: 5px;
  background-color: #212529 !important;
  padding-top: 2px;
  padding-bottom: 2px;
  font-size: 12px;
}

.market-title {
  background-color: #4a5a69;
  padding: 6px 8px;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: bold;
}

.remark {
  color: #8b0000;
  font-weight: bold;
}

.fancy-market .box-6 {
  width: 54%;
  min-width: 54%;
  max-width: 54%;
}

.fancy-market .box-1 {
  width: 13%;
  min-width: 13%;
  max-width: 13%;
}

.team-name,
.country-name {
  font-size: 14px;
  color: white
}

.min-max {
  font-size: 12px;
}

.game-name {
  width: 80%;
  float: left;
}

.game-icons {
  float: left;
  width: 20%;
  text-align: right;
  padding-right: 15px;
}

.game-icon {
  width: 25px;
  text-align: center;
  margin-top: 2px;
  display: inline-block;
}

.game-icon .active {
  display: inline-block !important;
  float: none !important;
  vertical-align: middle !important;
  margin-right: 0 !important;
}

.coupon-table td:first-child .active {
  background-color: #28a745;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}

.icon-tv {
  font-size: 0.6875rem;
}

.bookmaker-icon,
.fancy-icon {
  height: 20px;
}

.ic-card {
  height: 18px;
}

.report-container .btn-primary {
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 32px;
}

.report-container .form-control {
  height: 32px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 32px;
}

.b-toast-success .toast .toast-header,
.b-toast-danger .toast .toast-header {
  padding: 10px;
}

.toast .toast-header .close {
  line-height: unset;
}

.b-toast-success .toast .toast-header,
.b-toast-danger .toast .toast-header {
  padding: 14px 20px;
  font-size: 16px;
  box-shadow: 0 0 10px;
}

.b-toaster.b-toaster-top-right .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot {
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: unset !important;
  max-width: unset !important;
  width: auto !important;
}

.b-toast {
  max-width: unset !important;
}

.flip-clock-wrapper ul li a div div.inn {
  background-color: #2e2e2e !important;
  color: #fff !important;
}

.dataTables_filter {
  text-align: right;
}

.dataTables_length select,
.dataTables_filter input {
  display: inline-block;
  width: auto;
}

#rulesList .modal-body {
  padding: 0;
}

#rulesList .modal-dialog {
  max-width: 420px;
}

.player-image-container img {
  width: 50px;
}

.player-number h4 {
  font-size: 16px;
  font-weight: bold;
}

.result-view-all {
  font-size: 14px;
  float: right;
  color: var(--secondary-color);
}

.result-view-all:hover,
.result-view-all:focus {
  color: var(--secondary-color);
}

.result-image img,
.player-type img,
.sixplayer-image img,
.andar-bahar-image {
  width: 50px;
}

.winner-label {
  background-color: var(--green-bg);
  padding: 4px 10px;
  display: inline-block;
  color: var(--white-color);
  min-width: 85px;
}

.tie-label {
  background-color: var(--yellow-bg);
  padding: 4px 10px;
  display: inline-block;
  color: var(--site-color);
  min-width: 85px;
}

.sixplayer-image {
  text-align: center;
}

.teen9-container .table tr,
.teenpatti-1day .table tr {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
}

.teen9-container .table td,
.teen9-container .table th,
.teenpatti-1day .table td,
.teenpatti-1day .table th {
  padding: 5px;
  vertical-align: middle;
  border-bottom: 0;
  border-color: #fff;
}

.teen9-container .bet-action,
.teenpatti-1day .bet-action {
  cursor: pointer;
}

.casino-container .table tr {
  background-color: rgba(0, 0, 0, 0.05);
  display: table;
  width: 100%;
}

#rulesList .modal-dialog.modal-sm {
  max-width: 420px !important;
}

.board-result-inner {
  background: var(--grey-bg);
  padding: 10px;
  color: var(--site-color);
}

.andarbahar-module .video-overlay {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  position: absolute;
  content: '';
  z-index: 10;
  padding: 6px;
}

.andarbahar-module .video-overlay h3 {
  font-size: 9px;
  line-height: 9px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
  width: 200px;
}

.andarbahar-module .video-overlay .card-inner {
  margin-bottom: 3px;
}

.andarbahar-module .video-overlay img {
  border-radius: 4px;
  width: 30px !important;
  height: auto;
  margin-right: 3px;
}

.andarbahar-module .video-overlay .ab-rtlslider {
  margin: 0 15px;
  width: 200px;
}

.andarbahar-module .video-overlay .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.andarbahar-module .video-overlay .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.andarbahar-module .video-overlay .ab-rtlslider .owl-next span,
.andarbahar-module .video-overlay .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
}

.andarbahar-module .andarbg {
  background: lightsalmon;
}

.andarbahar-module .baharbg {
  background: lightgreen;
}

.andarbahar-module #andar-box,
.andarbahar-module #bahar-box {
  vertical-align: top;
  height: 90px;
}

.andarbahar-module .andarbg td:first-child,
.andarbahar-module .baharbg td:first-child {
  vertical-align: middle;
}

.andarbahar-module .andar-bahar.table td {
  border: 1px solid #333;
}

.andarbahar-module #andar-box .game-section,
.andarbahar-module #bahar-box .game-section {
  position: relative;
}

.andarbahar-module .andar-bahar-image {
  width: 45px;
  cursor: pointer;
}

.andarbahar-module #andar-box .game-section .odds,
.andarbahar-module #bahar-box .game-section .odds {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
}

.modal-dialog footer {
  background-color: #fff;
}

.modal-dialog.modal-full {
  width: 90%;
  max-width: 90%;
}

.report-main-content a {
  cursor: pointer;
  text-decoration: underline;
}

.text-link {
  color: #007bff;
}

.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}

.text-link-dark {
  color: #222;
}

.text-link-dark:hover,
.text-link-dark:focus {
  text-decoration: underline;
}

.game-rules-icon,
.game-rules-icon:hover,
.game-rules-icon:focus {
  color: #fff;
}

.custom-control-label::after {
  top: 0;
}

.custom-control-label::before {
  top: 0;
}

.binary-chart {
  position: relative;
}

.binary-chart .chart-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  color: #f00;
  font-size: 20px;
  cursor: pointer;
}

.fa-chart-line {
  cursor: pointer;
}

.account-statement-tbl tbody tr {
  cursor: pointer;
}

.search-game-ul {
  display: block;
}

.casino-numfont {
  font-family: 'CasinoNumFont';
  font-size: 270px;
  line-height: 0.8;
  color: #6a0015;
}

.center-cropped {
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 105px;
}

.left_half li.show {
  display: block !important;
}

.left_half li.hide {
  display: none !important;
}

.left_half {
  margin: 0;
}

.ocada-sidebar {
  border-radius: 4px;
  box-shadow: 1px 1px 10px rgba(0, 136, 204, 0.4);
}

.ocada-sidebar a:hover {
  text-decoration: none;
}

.ocada-sidebar li {
  padding: 10px 25px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #555;
  background-color: var(--theme2-bg85);
  color: var(--secondary-color);
}

/*.ocada-sidebar li:before
{
background-color: #fff;
position: absolute;
content: "";
height: 8px;
width: 8px;
border-radius: 50%;
left: 5px;
top: 12px;
}*/

.ocada-sidebar li:hover,
.ocada-sidebar li.active {
  background-color: var(--theme2-bg);
}

.casino-numbers img {
  width: 180px;
}

.casino-bet.place-bet .card-body {
  display: block;
}

.casino-stake {
  height: 30px;
  border: 2px solid #ddd;
  padding: 0 10px;
  font-size: 14px;
  width: 100%;
}

/*.criccasino-select,.criccasino-select:focus
{
background-color: #fff;
color: #ddd;
border: 0;
outline: 0;
box-shadow:none;
}*/

.criccasino-bet-header {
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
}

.criccasino-left-sidebar {
  max-width: 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  padding-right: 0;
}

.criccasino-main-content {
  max-width: 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
}

.btn_up,
.btn_down,
.btn_up:hover,
.btn_down:hover,
.btn_up:focus,
.btn_down:focus {
  width: 100px;
  background-color: var(--theme2-bg85);
  color: var(--secondary-color) !important;
  border: 1px solid var(--theme2-bg85);
}

.criccasino-main-content .game-heading {
  padding: 8px;
  background-color: var(--theme2-bg85);
}

.bet-stake input {
  width: 70px;
}

#casino-bet-tbl th {
  width: 33%;
}

.rules-warning {
  float: right;
  /* color: red; */
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
}

.winner-icon i {
  font-size: 26px;
  box-shadow: 0 0 0 var(--secondary-bg);
  -webkit-animation: winnerbox 2s infinite;
  animation: winnerbox 1.5s infinite;
  border-radius: 50%;
  color: #169733;
}

@-webkit-keyframes winnerbox {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(29, 127, 30, 0.6);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(29, 127, 30, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(29, 127, 30, 0);
  }
}

.mx-input {
  height: calc(2.25rem + 2px) !important;
}

.andar-bg {
  background: lightsalmon;
}

.bahar-bg {
  background: lightgreen;
}

.coupon-card td.back,
.coupon-card td.lay {
  cursor: pointer;
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(256, 256, 256, 0.5);
  z-index: 1000;
}

.worli-loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(256, 256, 256, 0.5);
  z-index: 1000;
}

.stop-site {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000;
}

.stop-site>div {
  background-color: #ff0000;
  padding: 30px;
  border-radius: 10px;
  font-size: 30px;
  border: 5px solid #fff;
  line-height: 1;
}

.table-card-container .table tr {
  background-color: transparent;
}

.table-card-container .table tr th {
  border: 0;
}

.table-card img {
  width: 30px;
}

.card-type-icon img {
  width: 25px;
}

.casinoicons {
  position: relative;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

  0%,
  49% {
    background-color: rgba(215, 43, 43, 0.8);
  }

  50%,
  100% {
    background-color: rgba(0, 15, 255, 0.8);
  }
}

/*Diamond Casino*/

.diamond-casino-container .header {
  background-color: var(--theme1-bg);
  color: var(--primary-color);
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.diamond-casino-container .header .logo {
  display: flex;
}

.diamond-casino-container .header .login-container {
  display: flex;
  align-items: center;
}

.diamond-casino-container .header .logo img {
  height: 80px;
  margin-left: 20px;
}

.diamond-casino-container .login-container .input-group {
  width: 180px;
  margin-right: 10px;
  border-radius: 4px;
}

.diamond-casino-container .login-container .input-group.required {
  border: 1px solid #fee002;
}

.diamond-casino-container .login-container .input-group-append {
  display: -ms-flexbox;
  display: flex;
  height: 32px;
}

.diamond-casino-container .login-container .input-group-text {
  background-color: var(--theme1-bg);
  color: #da9e9e;
  border: 0;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-casino-container .login-container .form-control,
.diamond-casino-container .login-container .form-control:hover,
.diamond-casino-container .login-container .form-control:focus {
  border: 0;
  background-color: var(--theme1-bg90);
  color: #da9e9e;
  height: 32px;
  font-size: 13px;
  box-shadow: none;
  outline: 0;
}

.diamond-casino-container .btn-primary {
  background-color: #222;
  border-color: #222;
  color: #fff;
  transition: all 0.8s ease;
}

.diamond-casino-container .btn-primary:hover {
  background-color: #444;
  border-color: #444;
}

.diamond-casino-container .btn-secondary {
  background-color: #fee002;
  border-color: #fee002;
  color: #000;
  transition: all 0.8s ease;
}

.diamond-casino-container .btn-secondary:hover {
  background-color: #fee002;
  border-color: #fee002;
}

.diamond-casino-container .casino-title {
  background: var(--theme1-bg);
  color: #fee002;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
}

.diamond-casino-container .casino-title .arrows {
  position: relative;
  width: 15px;
  height: 15px;
}

.diamond-casino-container .casino-title .arrows-left {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 40px;
}

.diamond-casino-container .casino-title .arrows-right {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  right: -40px;
}

.diamond-casino-container .casino-title .arrows::before,
.diamond-casino-container .casino-title .arrows span::before {
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-size: 14px;
  font-weight: 900;
  position: absolute;
  width: 15px;
  height: 15px;
  -webkit-animation: arrows 1.5s linear infinite;
  animation: arrows 1.5s linear infinite;
  right: -4px;
  font-size: 1em;
}

.diamond-casino-container .casino-title .arrows span::before {
  -webkit-animation: arrows 1.5s linear infinite -0.25s;
  animation: arrows 1.5s linear infinite -0.25s;
}

.diamond-casino-container .casino-title .arrows span::after {
  -webkit-animation: arrows 1.5s linear infinite -0.5s;
  animation: arrows 1.5s linear infinite -0.5s;
}

@-webkit-keyframes arrows {
  0% {
    opacity: 0;
    -webkit-transform: translate(-5px, -50px);
    transform: translate(-5px, -50px);
  }

  10%,
  90% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(-5px, 0px);
    transform: translate(-5px, 0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-5px, 50px);
    transform: translate(-5px, 50px);
  }
}

@keyframes arrows {
  0% {
    opacity: 0;
    -webkit-transform: translate(-5px, -50px);
    transform: translate(-5px, -50px);
  }

  10%,
  90% {
    opacity: 0;
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(-5px, 0px);
    transform: translate(-5px, 0px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translate(-5px, 50px);
    transform: translate(-5px, 50px);
  }
}

.diamond-casino-container .casino-box {
  position: relative;
}

.diamond-casino-container .casino-box {
  position: relative;
  cursor: pointer;
  transition: all 1s ease;
  margin-bottom: 30px;
  border: 5px solid #fee002;
  box-shadow: 0 0 10px;
}

.diamond-casino-container .casino-box:hover {
  transform: scale(0.95, 0.95);
  z-index: 1000;
}

.diamond-casino-container .casino-icons .casino-login {
  display: flex;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 6px 0;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 16px;
  font-weight: bold;
  flex-direction: column;
}

.diamond-casino-container .casino-icons:hover .casino-login {
  opacity: 1;
}

.diamond-casino-container .casino-icons img {
  width: 100%;
}

.diamond-casino-container .btn-login {
  border-radius: 3px;
  margin-right: 7px;
  text-transform: uppercase;
  width: auto;
}

.diamond-casino-container .casino-name {
  background-color: var(--theme1-bg);
  color: #fee002;
  padding: 10px 0;
  text-align: center;
  position: absolute;
  width: 90%;
  bottom: -20px;
  border-radius: 4px;
  left: 5%;
  font-size: 20px;
  text-transform: uppercase;
  font-family: Casino Flat;
}

.diamond-casino-container .form-control::-webkit-input-placeholder,
.diamond-casino-container input::-webkit-input-placeholder {
  color: #da9e9e;
}

.diamond-casino-container.form-control:-ms-input-placeholder,
.diamond-casino-container input::-ms-input-placeholder {
  color: #da9e9e;
}

.diamond-casino-container .form-control::placeholder,
.diamond-casino-container input::placeholder {
  color: #da9e9e;
}

.diamond-casino-modal .form-control,
.diamond-casino-modal .form-control:hover,
.diamond-casino-modal .form-control:focus {
  border: 0;
  background-color: #772525;
  color: #da9e9e;
  height: 32px;
  font-size: 13px;
  box-shadow: none;
  outline: 0;
}

.diamond-casino-modal .input-group-text {
  background-color: #691e1e;
  color: #da9e9e;
  border: 0;
  min-width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-casino-modal .btn-primary {
  background-color: #222;
  border-color: #222;
  color: #fff;
  transition: all 0.8s ease;
}

.diamond-casino-modal .btn-primary:hover {
  background-color: #444;
  border-color: #444;
}

.diamond-casino-modal .btn-secondary {
  background-color: #fee002;
  border-color: #fee002;
  color: #000;
  transition: all 0.8s ease;
}

.diamond-casino-modal .btn-secondary:hover {
  background-color: var(--theme2-bg);
  border-color: var(--theme2-bg);
}

.diamond-casino-modal .input-group {
  border-radius: 4px;
}

.diamond-casino-modal .input-group.required {
  border: 1px solid #fee002;
}

#casino-login .modal-content {
  background-color: var(--theme1-bg);
}

.newlacunch-menu a {
  transition: 0.3s ease-in;
  -webkit-animation: newlaunch 1s;
  -moz-animation: newlaunch 1s;
  animation: newlaunch 1s;
  animation-iteration-count: infinite;
}

.newlacunch-menu {
  transition: 0.3s ease-in;
  -webkit-animation: newlaunch 1s;
  -moz-animation: newlaunch 1s;
  animation: newlaunch 1s;
  animation-iteration-count: infinite;
}

@keyframes newlaunch {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #ff0000;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }
}

@-moz-keyframes newlaunch {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #ff0000;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }
}

@-webkit-keyframes newlaunch {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }

  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    color: #ff0000;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    color: #ffff00;
  }
}

.fancy-tab {
  min-height: 300px;
  position: relative;
}

.fancy-message {
  background-color: #ccc;
  color: #000;
  padding: 6px;
  text-align: center;
}

.game-page .nav-tabs {
  display: inline-block;
  box-shadow: 0 8px 8px -7px;
}

.game-page .nav-tabs .nav-link {
  background-color: var(--theme2-bg);
  color: var(--secondary-color);
}

.game-page .nav-tabs .nav-link.active {
  background-color: var(--theme1-bg);
  color: var(--secondary-color);
}

.meter-content img {
  width: 35px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.meter-lh-card-container {
  background-color: #ccc;
  padding: 5px 0;
  text-align: center;
}

.meter-lh-card-container h5 {
  vertical-align: middle;
}

.meter-lh-card img {
  width: 30px;
  margin-right: 5px;
}

.cmeter-container .info-icon {
  color: #fff;
}

.cmeter-container .cmeter-title {
  height: 50px;
}

.cmeter .result-image img {
  width: 35px;
}

.cc-banner-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 60%;
  height: 160px;
  display: flex;
  justify-content: center;
  left: 20%;
  top: 15%;
  color: #fff;
}

.cc-banner-container-inner {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 98%;
  height: 150px;
  display: flex;
  justify-content: center;
  left: 1%;
  top: 3%;
  color: #fff;
  padding: 20px 5px;
  border: 1px solid #fff;
}

.cc-banner-container h4 {
  /* font-family: Digital;*/
  font-family: helvetica, 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.cc-banner-container span {
  font-family: Digital;
  font-weight: bold;
  font-size: 26px;
  line-height: 26px;
}

.cc-banner-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 135px;
  width: 135px;
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #103d9a;
  padding: 5px;
  font-size: 20px;
  font-weight: bold;
}

.cc-banner-title>div {
  line-height: 20px;
}

.cc-banner-ball {
  position: absolute;
  top: 195px;
  width: 100%;
  text-align: center;
}

.cc-banner-ball img {
  width: 40px;
  margin-right: 10px;
}

.score-box {
  position: relative;
  height: 70px;
  margin-bottom: 40px;
  padding: 0 !important;
  border-radius: 0 !important;
}

.backbox {
  position: absolute;
  top: 0;
  left: 70%;
  width: 15%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

.laybox {
  position: absolute;
  top: 0;
  left: 85%;
  width: 15%;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

.cc-20 .score-img {
  width: 70%;
}

.ball-image {
  width: 50px;
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 10px;
}

.team-score {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  display: flex;
  align-items: center;
  height: 50px;
  left: 20%;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cc-20 .min-max {
  position: absolute;
  top: 53px;
  right: 5px;
}

.cc-20 .book {
  position: absolute;
  top: 5px;
  left: 5px;
}

.cc-20 .video-tv-popup {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.cc-20 .cc-banner-img {
  height: 400px;
  opacity: 0.7;
}

.cc-20 .suspended:after {
  width: 30%;
  height: 50px;
  top: 0;
  right: 0;
  border-radius: 0;
}

.cc-20 .last-result .balls {
  width: 40px;
}

.cc-20 .placebet-run {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

.bounce-enter-active {
  animation: bounce-in 0.5s;
}

.bounce-leave-active {
  animation: bounce-in 0.5s reverse;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.newlaunch-sidemenu span {
  transition: 0.3s ease-in;
  -webkit-animation: newlaunch 1s;
  -moz-animation: newlaunch 1s;
  animation: newlaunch 1s;
  animation-iteration-count: infinite;
}

/*.baccarat .bet-container
{
    display: flex;
}
.baccarat .player-pair
{
    background-color: #086cb8;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    width: 16%;
    margin-right: 1%;
    text-align: left;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.baccarat .banker-pair
{
    background-color: #ae2130;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    width: 16%;
    margin-left: 1%;
    text-align: left;
    font-size: 14px;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.baccarat .player-card img
{
    height: 20px;
    margin-right: 2px;
}
.baccarat .player-card .rotate
{
    transform: rotate(270deg);
}
.baccarat .player
{
    background-color: #086cb8;
    width: 22%;
    color: #fff;
    padding: 10px;
}
.tie
{
    background-color: #279532;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 22%;
    color: #fff;
    flex-direction: column;
}
.baccarat .banker
{
    background-color: #ae2130;
    width: 22%;
    color: #fff;
    padding: 10px;
}
.baccarat-container
{
    background-color: #eee;
    padding: 15px;
}
.baccarat-container .bet-odds
{
    background-color: var(--theme2-bg);
    font-size: 12px;
    color: #fff;
    width: 100%;
    padding: 6px;
    text-align: center;
    cursor: pointer;
}
.baccarat .baccarat-table tr
{
    background-color: transparent;
}
.baccarat .baccarat-table td
{
    padding: 2px;
    border: 0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    font-size: 12px;
    width: 65%;
}
.baccarat .baccarat-table td:last-child
{
    border-right: 0;
    width: 5%;
}
.baccarat .book
{   
    text-align: center;
    margin-top: 5px;
}*/

.baccarat .bet-container {
  display: flex;
}

.baccarat .player-pair {
  width: 16%;
  margin-right: 1%;
  cursor: pointer;
}

.baccarat .player-pair .suspended:after {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.baccarat .player-pair>div:first-child {
  background-color: #086cb8;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.baccarat .player-pair>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .banker-pair {
  width: 16%;
  margin-left: 1%;
  cursor: pointer;
}

.baccarat .banker-pair .suspended:after {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.baccarat .banker-pair>div:first-child {
  background-color: #ae2130;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.baccarat .banker-pair>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .player-card img {
  height: 20px;
  margin-top: 5px;
}

/*.baccarat .player-card img:first-child
{
    transform: rotate(270deg);
}*/

.baccarat .player {
  width: 22%;
}

.baccarat .player>div:first-child {
  background-color: #086cb8;
  color: #fff;
  padding: 10px;
  height: 70px;
  cursor: pointer;
}

.baccarat .player>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .tie {
  width: 22%;
  cursor: pointer;
}

.baccarat .tie>div:first-child {
  background-color: #279532;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-direction: column;
  height: 70px;
}

.baccarat .tie>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat .banker {
  width: 22%;
  cursor: pointer;
}

.baccarat .banker>div:first-child {
  background-color: #ae2130;
  color: #fff;
  padding: 10px;
  height: 70px;
}

.baccarat .banker>div:nth-child(2n) {
  text-align: center;
  margin-top: 5px;
}

.baccarat-container {
  background-color: #eee;
  padding: 15px;
}

.baccarat-container .bet-odds {
  background-color: var(--theme2-bg);
  font-size: 12px;
  color: #fff;
  width: 100%;
  padding: 6px;
  text-align: center;
  cursor: pointer;
}

.baccarat-container .table tr {
  background-color: transparent;
}

.baccarat-container .table td {
  padding: 2px;
  border: 0;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  font-size: 12px;
  width: 65%;
}

.baccarat-container .table td:last-child {
  border-right: 0;
  width: 5%;
}

.baccarat .book {
  text-align: center;
  margin-top: 5px;
}

.baccarat .player-card .rotate {
  transform: rotate(270deg);
}

.baccarat .ball-runs.cplayer {
  background-color: #086cb8;
}

.baccarat .ball-runs.cbanker {
  background-color: #ae2130;
}

.baccarat .ball-runs.ctie {
  background-color: #279532;
}

img.lrotate {
  transform: rotate(270deg);
}

img.rrotate {
  transform: rotate(90deg);
}

.ab-2-container {
  width: 100%;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  background-color: #ddd;
  color: #000;
  font-size: 14px;
}

.bet-a {
  display: flex;
  justify-content: center;
  width: 48%;
  margin-left: 2%;
  margin-bottom: 0;
  /*perspective: 45rem;*/
}

.a-title {
  width: 10%;
  text-align: center;
  padding: 5px 0;
  padding-top: 15px;
  /*transform: rotateX(45deg);*/
  font-size: 20px;
}

.sa {
  width: 20%;
  margin-left: 2%;
}

.sa>div:first-child {
  text-align: center;
  padding: 5px 0;
  border: 3px solid yellow;
  border-radius: 8px;
  /*transform: rotateX(45deg);*/
}

.first-bet,
.second-bet {
  width: 25%;
  margin: 0 2%;
}

.first-bet>div:first-child,
.second-bet>div:first-child {
  text-align: center;
  padding: 5px 0;
  border: 3px solid yellow;
  border-radius: 8px;
  /*transform: rotateX(45deg);*/
  background-color: #086cb8;
  color: #fff;
}

.second-bet {
  margin-right: 0;
}

.ab-2-container .book {
  text-align: center;
  margin-top: 5px;
}

.ab-2 .blbox {
  padding: 8px 0;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.ab-2-box {
  background: #ddd;
  color: #000;
  padding: 5px;
}

.ab-2 .bltitle {
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
}

.ab-2 .bltitle img {
  height: 35px;
}

.ab-2 .info-icon {
  color: #000;
}

.ab-2 .card-image img {
  width: 40px;
}

.ab-2 .video-overlay img {
  border-radius: 4px;
  width: 30px !important;
  height: auto;
  margin-right: 3px;
}

.ab-2 .video-overlay .ab-rtlslider {
  margin: 0 15px;
  width: 200px;
}

.ab-2 .video-overlay .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.ab-2 .video-overlay .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.ab-2 .video-overlay .ab-rtlslider .owl-next span,
.ab-2 .video-overlay .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
  color: #fff;
}

.abj-result img {
  border-radius: 4px;
  width: 35px !important;
  height: auto;
  margin-right: 3px;
}

/* .abj-result .ab-rtlslider {
    margin: 0 15px;
    width: 200px
} */

.abj-result .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.abj-result .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.abj-result .ab-rtlslider .owl-next span,
.abj-result .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
  color: #000;
}

.ab-result img {
  border-radius: 4px;
  width: 40px !important;
  height: auto;
  margin-right: 3px;
}

.ab-result .ab-rtlslider .owl-next {
  position: absolute;
  top: 0;
  left: -15px;
}

.ab-result .ab-rtlslider .owl-prev {
  position: absolute;
  top: 0;
  right: -15px;
}

.ab-result .ab-rtlslider .owl-next span,
.ab-result .ab-rtlslider .owl-prev span {
  font-size: 26px;
  line-height: 1;
  color: #000;
}

.live-casino .casino-icon {
  position: relative;
}

.live-casino .casino-icon img {
  width: 100%;
  height: 200px;
}

.live-casino .casino-icon .casino-name {
  bottom: 0;
}

.live-casino .casinoicons {
  position: relative;
  box-shadow: 0 25px 8px -8px;
  margin-bottom: 25px;
  margin-right: 25px;
  transition: all 1s ease;
}

.live-casino .casinoicons:hover {
  transform: scale(0.95, 0.95);
}

.live-casino .casinoicons img {
  width: 130px;
  height: auto;
}

.live-casino .casino-name {
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  color: var(--primary-color);
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: -15px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
}

.live-casino .new-launch-casino {
  -webkit-animation: NAME-YOUR-ANIMATION 1s infinite;
  /* Safari 4+ */
  -moz-animation: NAME-YOUR-ANIMATION 1s infinite;
  /* Fx 5+ */
  -o-animation: NAME-YOUR-ANIMATION 1s infinite;
  /* Opera 12+ */
  animation: NAME-YOUR-ANIMATION 1s infinite;
  position: absolute;
  right: -15px;
  top: -25px;
  padding: 10px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 100;
}

@-webkit-keyframes NAME-YOUR-ANIMATION {

  0%,
  49% {
    background-color: rgba(215, 43, 43, 0.8);
  }

  50%,
  100% {
    background-color: rgba(0, 15, 255, 0.8);
  }
}

.cc-rules .card {
  border: 1px solid #999;
  box-shadow: 0 8px 6px -6px #000;
  color: #000;
  border-radius: 0;
  margin-bottom: 5px;
  font-size: 14px !important;
}

.cc-rules .card .card-body {
  padding: 8px !important;
}

.cc-rules .card .card-header {
  background-color: transparent;
  padding: 8px;
  color: #000;
}

.cc-rules .card .card-header .card-title {
  color: #000;
  font-size: 16px;
  text-align: center;
}

.cc-rules img {
  height: 30px;
}

.cc-rules .count,
.cc-rules .value {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cc-rules .blink-card {
  animation: blinkcard 1.2s infinite;
}

.cc-rules .card .card-footer {
  padding: 8px;
  background: transparent;
}

@keyframes blinkcard {
  0% {
    background-color: yellow;
  }

  49% {
    background-color: yellow;
  }

  50% {
    background-color: red;
  }

  99% {
    background-color: red;
  }

  100% {
    background-color: yellow;
  }
}

.mymarket {
  text-decoration: underline;
}

.t-underline {
  text-decoration: underline;
}

.cricket-bg-container {
  position: relative;
  font-family: Cricket;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 600px;
  height: 400px;
  margin: 0 auto;
}

/* .cricket-bg-container.cricketv {
  background-image: url('../img/cricketv-bg.jpg');
}

.cricket-bg-container.cricketv2 {
  background-image: url('../img/cricketv2-bg.jpg');
} */

.cricket-bg-container .nation1 {
  position: absolute;
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  top: 13%;
  left: 2%;
  line-height: 1;
  word-break: break-all;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
}

.cricket-bg-container .battle-date {
  position: absolute;
  right: 2%;
  top: 13%;
  color: #000;
  font-size: 1rem;
  word-break: break-all;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
}

.cricket-bg-container .battle-date p {
  line-height: 18px;
}

/*.cricket-bg-container
{
    position: relative;
    font-family: Cricket;
    background-image: url("../img/cricket-bg.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 600px;
    height: 400px;
    margin: 0 auto;
    text-align: center;
}
.cricket-bg-container .nation1
{
    position: absolute;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    bottom: 13%;
    left: 1%;
    max-width: 100px;
    line-height: 1;
    word-break: break-all;
}
.cricket-bg-container .nation2
{
    position: absolute;
    font-size: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    bottom: 13%;
    left: 32%;
    max-width: 100px;
    line-height: 1;
    word-break: break-all;
}
.cricket-bg-container .battle-date
{
    position: absolute;
    left: 13%;
    bottom: 0;
    color: #333;
    font-size: 0.8rem;
}
.cricket-bg-container .battle-date p
{
    line-height: 18px;
}*/

/*.cricketv2-banner
{
    position: relative;
    font-family: Cricket;
    background-image: url("../img/cricketv2-banner.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 600px;
    height: 400px;
    margin: 0 auto;
    text-align: center;
}*/

/*Modal Point Tbale*/

.modal-point-table .modal-content {
  /* background-image: url('../img/point-table-bg.jpg'); */
  background-size: cover;
  padding-top: 160px;
  color: #fff;
}

.modal-point-table.cricketv2 .modal-content {
  /* background-image: url('../img/point-table-bg2.jpg'); */
}

.modal-point-table .modal-content .point-team-name img {
  height: 20px;
  margin-right: 5px;
}

.modal-point-table header {
  padding: 0;
  background: transparent;
  /* color: var(--primary-color); */
  /* border-radius: 0; */
  border: 0;
  height: 0;
}

.point-table-link,
.point-table-link:hover {
  color: #fff;
  text-decoration: underline;
  font-style: italic;
}

.schedule-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 24px 0;
  margin-bottom: 10px;
}

.schedule-team {
  background-image: linear-gradient(rgb(111, 111, 111), rgb(15, 15, 15));
  position: relative;
  padding-left: 10px;
  color: #fff;
  height: 28px;
  line-height: 28px;
  min-width: 45%;
}

.schedule-team.team1 {
  float: left;
}

.schedule-team.team2 {
  float: right;
  text-align: right;
  padding-right: 10px;
}

.schedule-team.team1:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 28px;
  border-top: 14px solid transparent;
  border-left: 22px solid #363636;
  border-bottom: 14px solid transparent;
  right: -22px;
}

.schedule-team.team2:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 28px;
  border-top: 14px solid transparent;
  border-right: 22px solid #363636;
  border-bottom: 14px solid transparent;
  left: -22px;
}

.schedule-date {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #243084;
  padding: 0 6px;
  height: 24px;
  line-height: 24px;
  min-width: 160px;
  text-align: center;
}

.schedule-date:after {
  position: absolute;
  content: '';
  border-bottom-width: 24px;
  border-bottom-style: solid;
  border-right-width: 24px;
  border-right-style: solid;
  bottom: 0;
  right: -24px;
  height: 24px;
  width: 24px;
  border-color: #243084;
  border-right-color: transparent;
}

.schedule-date:before {
  position: absolute;
  content: '';
  border-bottom-width: 24px;
  border-bottom-style: solid;
  border-left-width: 24px;
  border-left-style: solid;
  bottom: 0;
  left: -24px;
  height: 24px;
  width: 24px;
  border-color: #243084;
  border-left-color: transparent;
}

.schedule-remark {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #cb0045;
  padding: 0 6px;
  height: 24px;
  line-height: 24px;
  min-width: 160px;
  text-align: center;
}

.schedule-remark:after {
  position: absolute;
  content: '';
  border-top-width: 24px;
  border-top-style: solid;
  border-right-width: 24px;
  border-right-style: solid;
  top: 0;
  right: -24px;
  height: 24px;
  width: 24px;
  border-color: #cb0045;
  border-right-color: transparent;
}

.schedule-remark:before {
  position: absolute;
  content: '';
  border-top-width: 24px;
  border-top-style: solid;
  border-left-width: 24px;
  border-left-style: solid;
  top: 0;
  left: -24px;
  height: 24px;
  width: 24px;
  border-color: #cb0045;
  border-left-color: transparent;
}

.modal-point-table .close-modal {
  position: absolute;
  right: -8px;
  top: -8px;
  font-size: 30px;
  cursor: pointer;
}

.modal-point-table .body-inner {
  max-height: calc(96vh - 150px);
  padding: 0 15px;
}

.modal-point-table .modal-body {
  padding: 1rem 0;
}

.cricket-match-result tr th:first-child {
  min-width: 100px;
  word-break: break-all;
}

.mail-link:hover {
  color: #333 !important;
}

.mail-link.white,
.mail-link.white:hover {
  color: #fff !important;
}

.font-hindi {
  font-family: 'Hind', sans-serif;
}

.scorecard-2 {
  background-image: none;
  background-color: #eee;
  color: #000;
  padding: 5px;
}

.scorecard-2 .scorecard-message {
  background-color: var(--theme2-bg);
  color: #fff;
  padding: 8px;
  margin-top: 5px;
  position: relative;
}

.scorecard-2 .scorecard-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: var(--theme2-bg);
  padding: 8px;
  color: #fff;
  cursor: pointer;
}

.scorecard-2 .more-score-detail {
  background-color: #eee;
  padding: 0;
  /*display: flex;*/
  flex-wrap: wrap;
  justify-content: space-between;
  color: #444;
  font-size: 14px;
  line-height: 1;
}

.scorecard-2 .more-score-detail .nav-tabs {
  width: 100%;
}

.scorecard-2 .more-score-detail .nav-tabs .nav-link {
  min-width: 100px;
  text-align: center;
}

.scorecard-2 .more-score-detail-left {
  width: 65%;
}

.scorecard-2 .more-score-detail-title {
  background-color: #d2d2d2;
  padding: 6px;
  font-weight: bold;
  color: #222;
}

.scorecard-2 .more-score-detail-desc {
  padding: 6px 6px 0;
}

.scorecard-2 .more-score-detail-right {
  width: 34%;
}

.scorecard-2 .more-score-link {
  position: absolute;
  right: 8px;
  bottom: 7px;
  cursor: pointer;
  text-decoration: underline;
}

.scorecard-2 .bowling-desc {
  border-bottom: 1px solid #ddd;
}

.scorecard-2 .more-score-detail-center {
  width: 1px;
  background-color: #ddd;
}

.game-heading {
  position: relative;
}

.game-heading-score {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: #222;
  padding: 10px;
}

.scorecard-2 .more-score-detail-desc [class*='col-'] {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.scorecard-2 .bb-icon {
  max-height: 20px;
  max-width: 20px;
  margin-right: 5px;
}

.scorecard-2 .nav-tabs .nav-link.disabled {
  background-color: #ddd;
  color: #8c8c8c;
  border-color: #ddd;
}

@media only screen and (min-width: 1280px) and (max-width: 1599px) {
  .scorecard-2 .more-score-detail {
    font-size: 11px;
    padding: 5px;
  }
}

.text-bold {
  font-weight: bold;
}

/* Security auth login */

.loginInner1.authentication {
  width: 650px;
}

.loginInner1.authentication .featured-box-login {
  padding: 60px;
}

/* Security auth settings */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #2196f3;
}

input:focus+.slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.setting-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.setting-box .badge {
  font-size: 16px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 5px 10px;
}

.setting-box span {
  font-size: 24px;
}

.otp-input {
  width: 70px;
  height: 70px;
  padding: 5px;
  margin: 0 10px;
  font-size: 30px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid red !important;
}

.otp-input:focus {
  border: 3px solid var(--theme1-bg);
  outline: none;
  box-shadow: none;
  /*color: var(--theme1-bg);*/
}

.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-download {
  background-color: #59a845;
  border: 2px solid #59a845;
  color: #fff;
  box-shadow: 2px 4px 4px #00000047;
  text-decoration: none !important;
}

.btn-download .fa-android {
  font-size: 45px;
}

.btn-download h4 {
  line-height: 1;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.btn-download .dtext {
  font-size: 18px;
  line-height: 15px;
  text-decoration: none;
}

.btn-download:hover {
  text-decoration: none;
  background-color: #fff;
  border: 2px solid #59a845;
  color: #59a845;
}

.base-timer {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
}

.base-timer__svg {
  transform: scaleX(-1);
}

.base-timer__circle {
  fill: none;
  stroke: none;
}

.base-timer__path-elapsed {
  stroke-width: 2px;
  stroke: grey;
}

.base-timer__path-remaining {
  stroke-width: 10px;
  stroke-linecap: round;
  transform: rotate(90deg);
  transform-origin: center;
  transition: 1s linear all;
  fill-rule: nonzero;
  stroke: currentColor;
}

.base-timer__label.green,
.base-timer__path-remaining.green {
  color: rgb(65, 184, 131);
}

.base-timer__label.orange,
.base-timer__path-remaining.orange {
  color: orange;
}

.base-timer__label.red,
.base-timer__path-remaining.red {
  color: red;
}

.base-timer__label {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: var(--text-yellow);
}

.security-auth .verify-code {
  border: 1px solid #f2f2f2;
  width: auto;
  font-size: 45px;
  line-height: 1;
  color: #585858;
  background: #e4e4e4;
  padding: 10px;
}

.security-auth a.btn {
  text-decoration: none;
}

.security-auth .form-inline {
  justify-content: center;
}

.security-auth .small-box {
  background: #f9f9f9;
  padding: 15px;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
}

.security-auth .small-box p {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
}

/* RACE START */

/*Latest Casino*/

.new-casino .back-border {
  border: 2px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 2px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: calc(25% - 8px);
  margin-right: 8px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 48px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-odds-box span {
  display: block;
  font-size: 12px;
  width: 100%;
}

.new-casino .casino-odds-box .casino-odds-box-odd {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.casino-odds-book {
  text-align: center;
  font-size: 14px;
  color: #333;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
}

.casino-odds-book .float-right {
  float: none !important;
}

.new-casino .range-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.new-casino .icon-range {
  position: absolute;
  top: 100%;
  background-color: #333;
  padding: 4px;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 12px;
  z-index: 10;
  right: 0;
  transition: 0.1s;
  text-transform: capitalize;
  color: #fff;
}

.new-casino .video-overlay {
  top: 50%;
  transform: translateY(-50%);
}

.new-casino .redqueen .video-overlay img {
  width: 35px;
}

/*Race*/

/*Latest Casino*/

.new-casino .back-border {
  border: 2px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 2px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  position: absolute;
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: calc(25% - 8px);
  margin-right: 8px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 48px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-odds-box span {
  display: block;
  font-size: 12px;
  width: 100%;
}

.new-casino .casino-odds-box .casino-odds-box-odd {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.casino-odds-book {
  text-align: center;
  font-size: 14px;
  color: #333;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
}

.new-casino .range-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.new-casino .icon-range {
  position: absolute;
  top: 100%;
  background-color: #333;
  padding: 4px;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 12px;
  z-index: 10;
  right: 0;
  transition: 0.1s;
  text-transform: capitalize;
  color: #fff;
}

.new-casino .video-overlay {
  top: 50%;
  transform: translateY(-50%);
}

.new-casino .redqueen .video-overlay img {
  width: 35px;
}

/*Race*/

.new-casino.race {}

.new-casino.race .card-content {
  background-color: #eee;
  padding: 10px;
}

.new-casino.race .casino-odds-box-container-extra {
  width: 100%;
}

.new-casino .video-winner-text {
  color: #fff;
  position: absolute;
  right: 5px;
  top: 5px;
  /*transform: rotate(90deg);*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: calc(100% - 15px);
  font-size: 30px;
  /*letter-spacing: 22px;*/
  width: 25px;
  border: 1px solid yellow;
  padding: 18px;
  z-index: -1;
}

.new-casino.race .video-overlay {
  /*padding-right: 50px;*/
  width: 290.5px;
}

.new-casino.race .casino-video-title {
  /*color: #fff;*/
}

.new-casino.race .total-points {
  display: flex;
  margin-top: 10px;
}

.new-casino.race .total-points>div {
  padding: 5px;
  margin-right: 5px;
  /*background-color: #9f9f9f;*/
  border: 1px solid #fdcf13;
  color: #fff;
}

.new-casino.race .total-points>div:last-child {
  margin-right: 0;
}

/*.new-casino.race .casino-odds-box.casino-yn
        {
            height: 20px;
        }*/

.new-casino .casino-yn {
  display: flex;
  width: 100%;
  justify-content: center;
}

.new-casino .casino-yn>div {
  margin-right: 1%;
}

.new-casino .casino-yn>div:last-child {
  margin-right: 0;
}

.new-casino .casino-yn .casino-odds-box-bhav {
  flex-direction: row;
}

.new-casino .casino-yn+.casino-odds-book {
  width: 66.66%;
  margin-left: auto;
}

.race-modal img {
  width: 50px;
  margin-left: 2px;
  margin-right: 2px;
}

.race-modal .video-winner-text {
  color: #000;
  position: absolute;
  right: -3px;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: calc(100% - 5px);
  font-size: 30px;
  width: 55px;
  border: 1px solid yellow;
  padding: 20px;
  z-index: -1;
  background-color: #efeded;
}

.race-modal .winner-icon {
  right: -110px;
  top: 0;
  bottom: unset;
}

.race-modal .result-image.k-image {
  position: absolute;
  right: -60px;
}

.race-modal .race-result-box {
  width: 386px;
  position: relative;
  z-index: 10;
}

.last-result.playersuit {
  background-color: #d5d5d5;
  border: 1px solid #626262;
  line-height: 27px;
}

.last-result.playersuit img {
  height: 26px;
}

.new-casino.race .card-icons {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  text-align: center;
  line-height: 34px;
  background-color: #f2f2f291;
  display: inline-block;
}

.new-casino.race .card-icons img {
  width: 26px;
}

.new-casino.race .video-overlay>div,
.race-result-box>div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-video-rules-icon {
  border: 1px solid #999;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  right: 5px;
  top: 5px;
  z-index: 100;
  color: #fff;
  display: flex;
  height: 40px;
  width: 40px;
  font-size: 24px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.new-casino .casino-video-rules-icon:hover,
.new-casino .casino-video-rules-icon:focus {
  background-color: rgba(115, 115, 115, 0.5);
  outline: 0;
}

/* RACE ED */

#rules-modal .modal-body,
#rulesList .modal-body {
  text-align: center;
  padding: 0;
  background: #333;
}

#rules-modal .modal-body img,
#rulesList .modal-body img {
  max-height: calc(100vh - 120px);
}

.slide-fade-enter-active,
.slide-fade-leave-active {
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.slide-fade-enter,
.slide-fade-leave-to {
  opacity: 0;
  transform: rotateY(90deg);
}

/*Horse Detail*/

.horse-detail .country-name label {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  font-size: var(--font-body);
}

.horse-detail .country-name label img {
  height: 25px;
  margin-right: 5px;
  border: 1px solid #c6c6c6;
  border-radius: 2px;
}

.horse-detail .country-name label>div:last-child {
  width: calc(100% - 50px);
}

.horse-detail .country-name label div:last-child>span:first-child {
  font-weight: bold;
  float: left;
  width: 100%;
  margin-bottom: 5px;
}

.horse-detail .country-name label .jockey-detail {
  font-size: 14px;
  margin-top: 5px;
}

.horse-time-detail {
  display: flex;
  flex-wrap: wrap;
  padding: 5px 5px 0 5px;
}

.horse-time-detail a {
  display: flex;
}

.horse-time-detail span {
  background: var(--theme2-bg);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.horse-time-detail span.active {
  position: relative;
}

.horse-time-detail span.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-right: 10px solid transparent;
  border-top: 10px solid green;
}

.horse-detail .suspended:after {
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  width: 60%;
}

.horse-detail .horse-attr {
  background: #ebe7e7;
  border: 1px solid #ccc;
  padding: 2px;
  font-size: 14px;
  margin-left: 2px;
  border-radius: 4px;
  color: #333;
}

.padding-top {
  padding-top: 50px;
}

.padding-bottom {
  padding-bottom: 50px;
}

.section-title {
  padding: 15px 0px;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}

.table-responsive-new {
  overflow-x: scroll !important;
  max-height: 300px;
  overflow-y: scroll;
  background-color: #111317;
}

.table-responsive-new th {
  white-space: nowrap;
}

.tab_video {
  border: none;
  width: 100%;
  height: 155px;
  margin-top: -8px;
}

.red {
  color: #fff;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  background-color: #d93025;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

.green {
  color: #fff;
  height: 1.25rem;
  background-color: #149200;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

.marquee-container {
  height: 25px;
}

.flex05 {
  flex: 0.5;
}

.justify-content-end {
  justify-content: end;
}

.tx-12 {
  font-size: 12px !important;
}

.tx-14 {
  font-size: 14px;
}

.tx-13 {
  font-size: 13px;
}

.pr0 {
  padding-right: 0px;
}

.pl0 {
  padding-right: 0px;
}

.profile-right-side {
  align-items: center;
}

.marqueeheader {
  width: 100%;
  display: flex;
  align-items: center;
}

footer p {
  display: flex;
  align-items: center;
  justify-content: center;
}



.p0 {
  padding: 0px !important;
}

.mbc-5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

.wnwrap {
  white-space: nowrap;
}

#customers1 th {
  background: var(--theme1-bg);
  color: var(--primary-bg);
}

.btn-primary {
  color: #fff;
  background-color: var(--theme1-bg);
  border-color: var(--theme1-bg);
}

.card-header h4 {
  text-transform: uppercase;
  font-size: 20px;
}

.card-header {
  padding: 5px 10px;
  background-color: #111317;
}




/* #111317 */

.place-bet .card-header {
  background: #111317 !important;
  color: #fff !important;
}

.place-bet .card-header .card-title,
.place-bet .card-header span {
  color: #fff !important;
}

/* Live Match stream header (in right sidebar) */
#sidebar-right .card .card-header {
  background: #111317 !important;
  color: #fff !important;
}

#sidebar-right .card .card-header .card-title,
#sidebar-right .card .card-header span,
#sidebar-right .card .card-header i {
  color: #fff !important;
}

/* My Bet header */
.my-bet .card-header {
  background: #111317 !important;
  color: #fff !important;
}

.my-bet .card-header .card-title,
.my-bet .card-header a {
  color: #fff !important;
}

.coupon-table.scorall.mybet {
  background-color: #111317;
  /* light blue */
}

/* Override any table row background for bet colors */
.coupon-table.scorall.mybet tbody tr.back,
.coupon-table.scorall tbody tr.back {
  background-color: #72bbef !important;
}

.coupon-table.scorall.mybet tbody tr.lay,
.coupon-table.scorall tbody tr.lay {
  background-color: #faa9ba !important;
}

.coupon-table.scorall.mybet tbody tr.back td,
.coupon-table.scorall.mybet tbody tr.lay td,
.coupon-table.scorall tbody tr.back td,
.coupon-table.scorall tbody tr.lay td {
  background-color: inherit !important;
}










.mrc-5 {
  margin-right: 5px;
}

.p10 {
  padding: 10px !important;
}

.btn-primary {
  width: 100%;
}

.mobile-loader {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 0.5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.header-b-menu {
  height: 36px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  height: 36px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme2-bg);
}

.header-b-menu a {
  color: #fff;
  font-weight: bold;
  animation: blinker 1s linear infinite;
  text-decoration: none;
}

.btn-link {
  font-weight: 400;
  color: #fff;
  background-color: transparent;
}

.fancy-group {
  display: flex;
}

.fancy-group li {
  width: 95px;
}

.fancy-group li a {
  text-align: center;
  border: 1px solid #fff !important;
}

.fancy-group li a.active {
  background-color: var(--theme1-bg) !important;
  border-color: #fff;
  color: var(--secondary-color);
  border-bottom: 2px solid #fff;
}

.bg-gray {
  background-color: #eee;
}

.book-btn {
  background: #ccc;
  padding: 3px;
}

.fw-600 {
  font-weight: 600;
}

.p5 {
  padding-bottom: 5px !important;
}

.favourite li {
  flex: 1;
  max-width: 100%;
  min-width: calc(20% - 10px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  background: var(--theme2-bg);
  margin-right: 5px;
  border-radius: 0;
  color: var(--primary-bg);
}

.favourite li a {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  align-items: center;
  color: var(--primary-bg);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.favourite li a span {
  margin-left: 5px;
  white-space: nowrap;
  height: auto;
  max-width: calc(100% - 27px);
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  animation: new-launch 1s linear infinite;
}

.favourite {
  padding: 0px 0px 5px 0px;
  overflow-x: auto;
  display: flex;
  align-items: center;
}

.favourite ul {
  display: flex;
  width: 100%;
}

.favourite ul li {
  display: flex;
  margin-right: 5px;
  white-space: nowrap;
}

.favourite ul li a {
  text-decoration: none;
}

.ReactModal__Overlay {
  z-index: 3;
}

.new-logo-mobile-img {
  width: 6rem;
  display: none;
}

@media (max-width: 768px) {
  .ReactModal__Content {
    margin-top: 20%;
  }

  .card-cutting-layout {
    margin-bottom: 40px;
  }

  .whatsapp-link-small {
    margin-bottom: 65px;
  }

  .nav-search-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
    /* Adjust as needed */
  }

  .new-logo-mobile-img {
    width: 6rem;
    display: flex;
  }

  .nav-search-rules {
    display: none;
  }

  .slot-iframe.show {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    /* height: 96vh; */
    transition: none;
  }

  .home-page .casino-list-item {
    width: calc(25% - 10px);
  }

  .btn-deposit {
    padding: 5px;
    margin-bottom: 5px;
    margin-right: 0px;
    font-size: 13px;
    width: 77px;
  }

  .btn-withdraw {
    padding: 5px;
    margin-bottom: 0px;
    margin-right: 0px;
    font-size: 13px;
    width: 77px;
  }

  .slot-iframe .slot-header {
    padding: 5px;
  }

  .close-slot-frame {
    font-size: 18px;
  }

  .slot-iframe iframe {
    height: calc(100% - 31px);
  }

  .fantasy-iframe.show {
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: none;
  }

  .fantasy-iframe .slot-header {
    padding: 5px;
  }

  .fantasy-iframe iframe {
    height: calc(100% - 31px);
  }

  .slot-header .title h4 {
    font-size: 20px;
  }
}

.modal-content {
  background-color: var(--primary-bg);
  border: 0;
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.5);
  z-index: 5;
  margin-top: 5%;
}

.search-input:focus {
  width: auto;
}

.MuiInputLabel-root.Mui-focused {
  color: #000 !important;
}

.MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  color: #000 !important;
}

.MuiAutocomplete-root .MuiFilledInput-root {
  padding-left: 0px !important;
}

.wd-100 {
  width: 100%;
}

.new-casino .back-border {
  border: 3px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 3px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: 100%;
  margin-right: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.casino-32A .suspended::after {
  width: 40%;
  height: 45px;
}

.casino-32A .suspended.heightsuspend::after {
  height: 69px;
}

.dragon-tiger-1day .dt-odds .suspended::after {
  width: 60%;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 60px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.teenpatti-20 .suspended::after {
  width: 50%;
  height: 43px;
}

.onedaypoker .suspended::after {
  width: 40%;
}

.new-casino .back-border {
  border: 3px solid #72bbef;
}

.new-casino .back-border:hover {
  border: 3px solid #72bbef;
}

.new-casino .lay-border {
  border: 3px solid #f994ba;
}

.new-casino .lay-border:hover {
  border: 3px solid #f994ba;
}

.new-casino .casino-video {
  position: relative;
  background-color: transparent;
}

.new-casino .casino-video-title {
  left: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.new-casino .casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.new-casino .casino-video .video-box-container {
  max-width: 100%;
}

.new-casino .casino-video .video-box {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-bottom: 56.25%;
}

.new-casino .casino-video .video-box>img,
.new-casino .casino-video .video-box>iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  border: 0;
}

.new-casino .casino-odds-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.new-casino .casino-odds-box-container {
  width: 100%;
  margin-right: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.casino-32A .suspended::after {
  width: 40%;
}

.dragon-tiger-1day .dt-odds .suspended::after {
  width: 60%;
}

.new-casino .casino-odds-box {
  padding: 4px;
  text-align: center;
  margin-top: 5px;
  cursor: pointer;
  height: 60px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.new-casino .casino-odds-box>div {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.teenpatti-20 .suspended::after {
  width: 50%;
  height: 43px;
}

.onedaypoker .suspended::after {
  width: 40%;
}

.box-2 {
  width: 20%;
  min-width: 20%;
  max-width: 20%;
}

.box-25 {
  width: 25%;
  min-width: 25%;
  max-width: 25%;
}

.box-15 {
  width: 15%;
  min-width: 15%;
  max-width: 15%;
}

.box-35 {
  width: 35%;
  min-width: 35%;
  max-width: 35%;
}

.box-5 {
  width: 50%;
  min-width: 50%;
  max-width: 50%;
}

.box-3 {
  width: 30%;
  min-width: 30%;
  max-width: 30%;
}

.box-4 {
  width: 40% !important;
  min-width: 40%;
  max-width: 40%;
}

.notice-casino-odds {
  border: 1px solid #ccc;
  padding: 5px;
  display: flex;
  color: #8b0000;
  font-weight: bold;
  margin-bottom: 10px;
}

.imgspace {
  margin-bottom: 5px;
  margin-top: 5px;
}

.new-casino .casino-odds-box span {
  display: block;
  font-size: 12px;
  width: 100%;
  line-height: 20px;
}

.new-casino .casino-odds-box .casino-odds-box-odd {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.casino-odds-book {
  text-align: center;
  font-size: 14px;
  color: #333;
  width: 100%;
  font-weight: bold;
  margin-top: 5px;
}

.new-casino .range-icon {
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.new-casino .icon-range {
  position: absolute;
  top: 100%;
  background-color: #333;
  padding: 4px;
  max-width: 100%;
  word-wrap: break-word;
  font-size: 12px;
  z-index: 10;
  right: 0;
  transition: 0.1s;
  text-transform: capitalize;
  color: #fff;
}

.new-casino .casino-yn {
  display: flex;
  width: 100%;
}

.new-casino .casino-ynd {
  display: flex;
  width: 100%;
}

.new-casino .casino-ynd>div {
  margin-right: 1%;
  width: 33% !important;
}

.new-casino .casino-yn>div {
  margin-right: 1%;
}

.new-casino .casino-odds-box-bhav {
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #333;
  width: 100%;
}

.new-casino .casino-odds-box-container-extra {
  width: 100%;
}

.btn-theme {
  color: var(--primary-color) !important;
  background-image: linear-gradient(to right, var(--theme1-bg), var(--theme2-bg)) !important;
  width: 100% !important;
  border-radius: 4px !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2) !important;
  border: 0 !important;
  padding: 8px 10px !important;
  cursor: pointer !important;
  font-size: 16px !important;
  position: relative;
}

.m-t-5 {
  margin-top: 5px;
}

.aaa-content .card-image img {
  width: 40px;
}

.m-r-5 {
  margin-right: 5px;
}

.aaa-content {
  background-color: #eee;
  padding: 15px;
}

.card-image {
  display: inline-block;
}

.card-number {
  font-family: 'CasinoNumFont';
}

.card32eu-container .card-total-block tr td {
  padding-top: 0px;
  padding-bottom: 0px;
}

.bookmaker-market .suspended::after {
  width: 60%;
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.mt30 {
  margin-top: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.baccarat .bet-odds {
  font-size: 13px;
}

.baccarat .bet-odds {
  background-color: var(--theme2-bg);
  font-size: 15px;
  color: #fff;
  width: 100%;
  padding: 6px;
  text-align: center;
  cursor: pointer;
}

.p15 {
  padding: 15px;
}

.new-casino .video-overlay {
  top: 50%;
  transform: translateY(-50%);
}

.new-casino .redqueen .video-overlay img {
  width: 35px;
}

.casino-video-title {
  left: -2px;
  top: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  z-index: 10;
  text-align: center;
  min-width: 220px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.casino-video-title .casino-name {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  color: #fdcf13;
  line-height: 22px;
  padding: 0;
  background: transparent;
  position: unset;
  width: auto;
}

.casino-video-rid {
  font-weight: bold;
  color: #ddd;
  margin-top: 3px;
}

.video-overlaybox {
  position: absolute;
  top: 0%;
}

.table {
  width: 100%;
  margin-bottom: 0px;
  line-height: normal;
}

.table th,
.table td {
  padding: 0.3rem 0.75rem;
  vertical-align: top;
}

.table thead th {
  vertical-align: middle;
  border-bottom: 2px solid var(--white);
}

.table tbody+tbody {
  border-top: 2px solid var(--white);
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid var(--white);
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #f5f5f5;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody+tbody {
  border: 0;
}

.table-primary,
.table-primary>th,
.table-primary>td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody+tbody {
  border-color: #7abaff;
}

.table-success,
.table-success>th,
.table-success>td {
  background-color: #c3e6cb;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody+tbody {
  border-color: #8fd19e;
}

.table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
  background-color: #b1dfbb;
}

.table-info,
.table-info>th,
.table-info>td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody+tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
  background-color: #abdde5;
}

.table-warning,
.table-warning>th,
.table-warning>td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody+tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger>th,
.table-danger>td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody+tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
  background-color: #f1b0b7;
}

.table-light,
.table-light>th,
.table-light>td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody+tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
  background-color: #ececf6;
}

.table-dark,
.table-dark>th,
.table-dark>td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody+tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
  background-color: #b9bbbe;
}

.table-active,
.table-active>th,
.table-active>td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #bbbbbb;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table-responsive-sm>.table-bordered {
    border: 0;
  }
}

.box-6 {
  width: 60%;
  min-width: 60%;
  max-width: 60%;
}

.box-6 {
  width: 60%;
  min-width: 60%;
  max-width: 60%;
}

.casino-32A .coupon-table button {
  height: auto;
  min-height: 40px;
  padding: 4px 0 1px;
  background: none;
  color: #273a47;
  border: 0;
}

.casino-32A .coupon-table button span {
  display: block;
}

.ball-runs.cbanker {
  background-color: #ae2130;
}

.ball-runs.cplayer {
  background-color: #086cb8;
}

.ball-runs.ctie {
  background-color: #279532;
}

.imgspace {
  margin-bottom: 5px;
  margin-top: 5px;
}

/* .d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
} */

.videoCards img {
  width: 35px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

.col-20 {
  width: 19.5%;
  margin-right: 1px;
}

.p-10 {
  padding: 10px;
}

.hidemob {
  display: block;
}

.col-25 {
  width: 25%;
}

.mr-20 {
  margin-right: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.onedaypoker .imgspace {
  display: flex;
}

.onedaypoker .videoCards img {
  width: 30px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

.onedaypoker20 .imgspace {
  display: flex;
}

.onedaypoker20 .videoCards img {
  width: 30px;
  height: auto;
  margin-right: 2px;
  margin-left: 2px;
}

.twentypoker.suspended::after {
  width: 100%;
}

.onedaypoker.suspended::after {
  width: 100%;
}

.ddb .row5 {
  margin-left: 0px;
  margin-right: 0px;
}

.baccarat .row5 {
  margin-left: 0px;
  margin-right: 0px;
}

.AAA .row5 {
  margin-left: 0px;
  margin-right: 0px;
}

.AAA .coupon-table thead th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  font-weight: 700;
}

.AAA .coupon-table tr td:first-child {
  padding-left: 15px;
  vertical-align: middle;
  padding-right: 15px;
  font-weight: 500;
}

.AAA .coupon-table button {
  height: auto;
  min-height: 40px;
  padding: 4px 0 1px;
  background: none;
  color: #273a47;
  border: 0;
}

.btabl-casino .suspended:after {
  width: 40% !important;
  height: 45px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 27%;
  right: 10px;
}

.mtc-5 {
  margin-top: 5px;
}

.col12 {
  width: 12%;
  margin: 0.2%;
}

.col11 {
  width: 10%;
  margin: 0.3%;
}

.mr--3 {
  margin-right: 2px;
}

.ml--3 {
  margin-left: -3px;
}

.ml-6 {
  margin-left: 6px;
}

.mr-6 {
  margin-right: 3px;
}

.bg-theme {
  background: var(--theme1-bg);
}

.bg-theme2 {
  background: var(--theme2-bg);
}

.bg-theme .statistics-title {
  color: #fff;
}

.mt--50 {
  margin-top: -15px;
}

.mt--30 {
  margin-top: -10px;
}

.mr--1 {
  margin-right: -1px;
}

.tx-red {
  color: red;
}

.row.row6 {
  margin: 0px;
}

.video-overlay-new {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.playeratexta {
  margin-top: 3px;
  margin-bottom: 3px;
}

.playeratextb {}

.tx-yello {
  color: yellow;
}

.tx-green {
  color: green;
}

/* .d-block {
  display: block;
} */

.coupon-table button.back {
  height: 45px;
}

.coupon-table button.lay {
  height: 45px;
}

.matchlist .coupon-table button.back {
  height: 25px;
}

.matchlist .coupon-table button.lay {
  height: 25px;
}

#dragontiger1Day .suspended::after {
  width: 60%;
}

#dragontiger1Day tr.suspended::after {
  height: 45px;
}

#dragontiger1Day button.suspended::after {
  height: 29px;
}

.suspendwidth .suspended::after {
  width: 100% !important;
}

.total-points {
  display: flex;
  margin-top: 10px;
}

.total-points>div {
  padding: 5px;
  margin-right: 5px;
  /* background-color: #9f9f9f; */
  border: 1px solid #fdcf13;
  color: #fff;
}

.meter-content img {
  width: 30px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.meter-content .col-lg-6 {
  padding-left: 0px;
  padding-right: 10px;
}

.float-left {
  float: left;
}

.fw600 {
  font-weight: 900 !important;
  font-size: 18px !important;
}

.ml-1 {
  margin-left: 10px !important;
}

.teenpattixyz table tr td {
  border-color: #222;
  vertical-align: middle;
  border-bottom: 1px solid #222 !important;
}

.teenpattixyz .brate {
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
}

.tx-left {
  text-align: left;
}

.superover .suspended::after {
  width: 60%;
}

.fivewicket .suspended::after {
  width: 60%;
}

.fancy-tripple .suspended::after {
  width: 40%;
}

.fancy-tripple-box .suspended::after {
  width: 46%;
  content: attr(data-title);
  font-size: 16px;
  color: #ff0000;
  font-family: Arial, Verdana, Helvetica, sans-serif;
}

.race2020 .suspended::after {
  width: 100%;
}

.queen .suspended::after {
  width: 100%;
}

.dt20b .suspended::after {
  width: 100%;
}

.cmeter2020 .suspended::after {
  width: 100%;
}

.baccarat .suspended::after {
  width: 100%;
}

.poker6player .suspended::after {
  width: 100%;
}

.ddb .suspended::after {
  width: 100%;
}

.superover .info-block i {
  color: #fff;
}

.dtl20 .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--theme2-bg);
  border-color: #fff;
  color: var(--secondary-color);
  border-top: 2px solid #fff;
  border-bottom: none;
}

.dtl20 .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  border-bottom: none;
  width: 100%;
}

.dtl20 .nav-tabs .nav-item {
  display: inline-flex;
  width: 33%;
  text-align: center;
}

.card-dtl-mobile {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
}

.card-dtl-mobile .d-flex div {
  width: 33%;
  text-align: center;
}

.card-dtl-mobile img {
  width: 40px;
}

.card-dtl-mobile .d-flex {
  justify-content: center;
  align-items: center;
}

.tx-white {
  color: #fff;
}

.wd44 {
  width: 44px;
}

.horizontal-scorller {
  width: 100%;
  overflow-x: scroll;
}

.horizontal-scorller::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.horizontal-scorller #home-events a {
  white-space: nowrap;
}

.cc-20 .score-img {
  width: 70%;
}

.selected-card {
  border: 2px solid green !important;
}

.csmobileround {
  position: absolute;
  top: 10;
  color: #fff;
  right: 10;
}

.csmobileround span {
  display: block;
  text-align: right;
  font-size: 14px;
}

.prelative {
  position: relative;
}

.float-right {
  float: right;
}

.pl10 {
  padding-left: 10px;
}

.mt-50 {
  margin-top: 50px;
}

#sidebar-right {}

.t10-iframe iframe {
  border: 0;
  width: 100%;
  height: 450px;
}

.frontend {
  overflow: hidden;
  background-color: #080808;
}

.nav-logo-light {
   height:55px; 
  /*height: 28px;*/
}

.new-shuffle-nav-item:hover::before,
.new-shuffle-nav-item.active::before {
  height: 100%;
  opacity: 1;
}

.new-shuffle-nav-item:hover span,
.new-shuffle-nav-item.active span {
  color: var(--primary-color);
}

.nav-item:hover .navbutton {
  background-color: #7817ff;
  color: #fff;
  border: 1px solid #7817ff;

}

.nav-item:hover .navspan {
  color: #7817ff;
}

.new-shuffle-nav-item {
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  /* background-color: red; */
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  /* margin-bottom: 8px; */
  /* border-radius: 0 12px 12px 0; */
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.new-shuffle-nav-item:hover {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.1); */
}

.new-shuffle-nav-item.active {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.15); */
}

.new-shuffle-nav-item i {
  margin-right: 12px;
  font-size: 1rem;
}

.new-shuffle-nav-item span {
  font-weight: medium;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 21px;
  /* color: rgb(136, 108, 225); */
  color: rgb(255, 255, 255);
}

.new-shuffle-nav-item span :active {
  color: rgb(136, 108, 225);
  ;
}

.new-shuffle-nav-item i {
  margin-right: 12px;
  font-size: 1rem;
}

.new-shuffle-nav-item span {
  font-weight: medium;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 21px;
  /* color: rgb(136, 108, 225); */
  color: rgb(255, 255, 255);
}

.new-shuffle-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 0 8px 8px 0;
  /* transition: all 0.3s ease; */
  opacity: 0;
}

.new-shuffle-nav-item:hover::before,
.new-shuffle-nav-item.active::before {
  height: 100%;
  opacity: 1;
}

.nav-item:hover .navbutton {
  background-color: #7817ff;
  color: #fff;
  border: 1px solid #7817ff;

}

.navbutton.active {
  background-color: #212529;
  /* optional */
  color: #7817ff;
  border: 1px solid #7817ff;
}

.navbutton {
  background-color: #212529;
  /* default dark */
  transition: background-color 0.3s ease;
}

.navbutton.active+.mt-2 .navspan {
  color: #7817ff;
}

.MuiAutocomplete-root .MuiFilledInput-root.MuiInputBase-hiddenLabel.MuiInputBase-sizeSmall .MuiAutocomplete-input {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  height: 35px;
  display: none;
}

.MuiAutocomplete-root .MuiFilledInput-root {
  padding-top: 0px !important;
}

.MuiAutocomplete-root {
  width: 0px;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 10px;
  display: none;
}

.MuiAutocomplete-root .MuiFilledInput-root .MuiAutocomplete-endAdornment {
  right: 9px;
  display: none;
}

.MuiAutocomplete-hasPopupIcon.MuiAutocomplete-root .MuiFilledInput-root,
.MuiAutocomplete-hasClearIcon.MuiAutocomplete-root .MuiFilledInput-root {
  padding-right: 0px !important;
}

.MuiInputBase-root:after {
  position: relative !important;
  content: '' !important;
}

.MuiInputBase-root:before {
  position: relative !important;
  content: '' !important;
}

.MuiFormLabel-root {
  display: none !important;
}

.MuiAutocomplete-root .MuiFilledInput-root.MuiInputBase-sizeSmall .MuiFilledInput-input {
  padding: 0px 5px !important;
  border-radius: 1px;
}

.lucky7B .suspended:after {
  width: 100%;
}

.dt20 .suspended::after {
  width: 100%;
}

.teenpattixyz .suspended::after {
  width: 100%;
}

.giveMeEllipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 20px;
  max-height: 20px;
  width: 73%;
}

.clsforellipse {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bg-red {
  background: red !important;
  color: #fff !important;
}

.suspended:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--white-color);
  text-transform: uppercase;
  font-family: 'Font Awesome 5 Free';
  content: attr(data-title);
  font-weight: 900;
  font-size: 18px;
  top: 0;
  color: red;
  width: 60%;
  /* Default width to match odds boxes (6 boxes taking 60% of row) */
}

.search-input-show.show input {
  transition: width 0.4s linear;
}

/* .search:hover .search-input-show {
  width: 300px !important;
  transition: width 0.4s linear;
} */
.MuiAutocomplete-root {
  width: 40px !important;
  transition: width 0.4s linear;
}

.MuiAutocomplete-root.show {
  background: var(--primary-bg);
  width: 250px !important;
  transition: width 0.4s linear;
  display: block;
}

.MuiInputBase-root {
  background-color: unset !important;
}

.Tp1Day th {
  font-size: 16px !important;
  padding: 3px !important;
  color: #000 !important;
}

.Tp1Day thead {
  border-bottom: 0px solid #eee;
}

.card32btbody.suspended::after {
  width: 100%;
  height: 100%;
}

.sus60perce.suspended::after {
  width: 60%;
  height: 45px;
}

.m-l-1 {
  margin-left: 4px;
}

#dragontiger1Day button.suspended::after {
  width: 100%;
}

.opentp .suspendwidth .suspended::after {
  width: 60% !important;
}

.cc-banner-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 60%;
  height: 160px;
  display: flex;
  justify-content: center;
  left: 20%;
  top: 15%;
  color: #fff;
}

.cc-banner-container-inner {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  width: 98%;
  height: 150px;
  display: flex;
  justify-content: center;
  left: 1%;
  top: 3%;
  color: #fff;
  padding: 20px 5px;
  border: 1px solid #fff;
}

.cc-banner-container h4 {
  /* font-family: Digital;*/
  font-family: helvetica, 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
}

.cc-banner-container span {
  font-family: Digital;
  font-weight: bold;
  font-size: 26px;
  line-height: 26px;
}

.cc-banner-title {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 135px;
  width: 135px;
  border-radius: 50%;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #103d9a;
  padding: 5px;
  font-size: 20px;
  font-weight: bold;
}

.cc-banner-title>div {
  line-height: 20px;
}

.cc-banner-ball {
  position: absolute;
  top: 195px;
  width: 100%;
  text-align: center;
}

.cc-banner-ball img {
  width: 40px;
  margin-right: 10px;
}

.cc-20 .cc-banner-img {
  height: 400px;
  opacity: 0.7;
}

.cc-20 .placebet-run {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

.bounce-enter-active {
  animation: bounce-in 0.5s;
}

.bounce-leave-active {
  animation: bounce-in 0.5s reverse;
}

@keyframes bounce-in {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.cricket20books {
  position: absolute;
  right: 5px;
  top: 60px;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
}

.cricket20books>div {
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.superover .suspended::after {
  content: attr(data-title);
  color: red;
}

.Andar {
  background: lightsalmon;
}

.Bahar {
  background: lightgreen;
}

.Andarbahar2 .bltitle {
  font-size: 20px;
  height: 35px;
  line-height: 35px;
  text-transform: uppercase;
}

.Andarbahar2 .blbox {
  padding: 8px 0;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.Andarbahar2 .bltitle img {
  height: 35px;
}

.bg-green {
  background: green;
}

.runposition {
  position: absolute;
  top: 7px;
  right: 14px;
  font-size: 14px;
}

.btn-primary {
  color: #fff !important;
  background-color: #007bff !important;
  border-color: #007bff !important;
}

.custom-trio {
  width: auto !important;
  padding: 4px 25px !important;
  font-size: 18px !important;
}

/* square buttons */
.rec.rec-arrow {
  border-radius: 0;
  background-color: inherit !important;
  color: #fff;
  box-shadow: none;
}

/* round buttons on hover */
.rec.rec-arrow:hover {
  border-radius: 0;
  background-color: inherit !important;
  color: #fff;
  box-shadow: none;
}

/* hide disabled buttons */
.rec.rec-arrow:disabled {
  visibility: hidden;
}

/* disable default outline on focused items */
/* add custom outline on focused items */
.rec-carousel-item:focus {
  outline: none;
  border: none;
}

.w-90P {
  max-width: 90%;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
  /* border: 1px solid #eee; */
}

.setting-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.setting-box .badge {
  font-size: 16px;
  border-radius: 0;
  text-transform: uppercase;
  padding: 5px 10px;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}

.security-auth .form-inline {
  justify-content: center;
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}

.marqueeN {
  width: 100%;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
}

.marqueeN p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }

  to {
    transform: translate(-100%);
  }
}

.rec-carousel-wrapper {
  min-width: 300px;
}

.giveMeEllipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.race20win>div {
  width: 100% !important;
}

.suspense-loading {
  background: var(--theme1-bg);
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.footer.footer-login {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  /* background-color: var(--theme1-bg);/ */
  background-color: #761414;
  color: var(--text-primary);
  padding: 10px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  flex: 1;
}

.footer-links a {
  color: #fff
}

.support-detail {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  flex: 1;

}

.support-detail h2 {
  color: #fff;

  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;

}

.social-icons-box {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.mby-5 {
  margin-bottom: 5px;
}

.footer {
  background-color: #7817ff;
  color: #fff;
  padding: 10px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.social-icons-box {
  display: flex;
  flex-wrap: wrap;
  /* position: absolute;
    right: 10px; */
  flex: 1;
  justify-content: flex-end;
}

.social-icon {
  background-color: var(--text-primary);
  height: 40px;
  width: 40px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon:not(:last-child) {
  margin-right: 5px;
}

.social-icon img {
  height: 30px;
}

.footer-links {
  flex: 1;
}


.support-detail {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  flex: 1;
}

.footer-bottom {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.footer-bottom img {
  max-height: 30px;
  max-width: 100px;
  margin-right: 10px;
}

.secure-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  line-height: normal;
}

.footer-bottom .secure-logo img {
  max-height: 50px;
}

.footer-text {
  text-align: center;
}

.me-1 {
  margin-right: .25rem !important;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.casino-list {
  /* display: flex; */
  /* flex-wrap: wrap; */
}

.casino-list-item {
  width: calc(10% - 10px);
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.casino-list-item.rect {
  width: calc(16.66% - 10px);
}

.casino-list-item .casino-list-item-banner {
  padding-top: 100%;
  background-size: cover;
  background-position: center center;
}

.casino-list-item .casino-list-name {
  background-image: linear-gradient(var(--theme1-bg), var(--theme2-bg));
  color: var(--primary-bg);
  padding: 5px;
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
  font-size: 11px;
}

.casino-list-item.rect .casino-list-item-banner {
  padding-top: 53.33%;
}

.margin-modal {
  margin: 0.75rem auto
}

.btn-deposit {
  background: #22B05D;
  color: #fff
}

.btn-withdraw {
  background: #BA0001;
  color: #fff
}

.nav.casino-sub-tab {
  overflow-x: hidden;
  overflow-y: hidden;
  flex-wrap: wrap;
  align-content: flex-start;
  background-color: var(--theme1-bg);
  height: 100%;
}

.nav.casino-sub-tab .nav-item {
  width: 100%;
}

.casino-sub-tab .nav-link {
  height: 34px;
  background-color: transparent;
  color: #fff;
}

.nav-pills .nav-link {
  background-color: var(--bg-sidebar);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-right: 1px solid var(--bg-secondary);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.casino-sub-tab .nav-link.active {
  background-color: var(--theme2-bg);
  color: var(--primary-bg);
}

.cas-in-list .casino-list-item {
  width: calc(16.66% - 10px);
}

.casino-sub-tab-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
  padding: 0 5px;
  justify-content: space-between;
  background-color: var(--theme1-bg);
}

.casino-sub-tab-list ul {
  flex-wrap: nowrap !important;
  overflow: scroll !important;
}

.casino-sub-tab-list ul::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.casino-sub-tab-list ul li {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  width: auto !important;
}

.slot-iframe {
  position: fixed;
  left: 0;
  /* left:260 */
  top: 100%;
  /* width: calc(100% - 263px); */
  width:100%;
  z-index: 10;
}

.slot-iframe iframe {
  width: 100%;
  height: calc(100% - 47px);
}

.slot-iframe.show {
  top: 0px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  z-index: 3000;
  height: calc(100vh - 125px);
}

.slot-iframe .slot-header,
.fantasy-iframe .slot-header {
  background: var(--theme2-bg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  color: var(--primary-bg);
}

.close-slot-frame {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  font-weight: bold;
  text-decoration: underline;
  background-color: transparent;
}

.bet-button-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  gap: 5px
}


.balance-text-responsive {
  color: #000;
  /* Default black for desktop */
}

@media (max-width: 768px) {
  .balance-text-responsive {
    color: #fff;
    /* White for mobile */
  }
}

/* Apply to whole app */
* {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.6);
  /* gray-blue like shadcn */
  border-radius: 9999px;
  /* fully rounded */
  border: 3px solid transparent;
  /* creates padding around thumb */
  background-clip: padding-box;
  transition: background-color 150ms ease, transform 150ms ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(148, 163, 184, 0.85);
  transform: scale(1.02);
}

*::-webkit-scrollbar-thumb:active {
  transform: scale(1.06);
}

/* Optional: hide scrollbars on touch devices, still allow scrolling */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    display: none;
  }
}

.bet-calculate-success {
  color: #39ff14;
}

.bet-calculate-danger {
  color: "#FF0000" !important;
}

.wnwrap .red {
  color: #fff;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: fit-content;
  background-color: #d93025;
  border-radius: 4px;
  padding: 0 6px;
  /* small padding for box look */
}

.search-cont-casino {
  /* border-radius: 6px; */
  /* background: #fff; */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.casino-input-wrapper {
  /* border-radius: 6px; */
  overflow-x: auto;
  scrollbar-width: thin;

}


.active-nav {
  color: #fff !important;
  /* background-color: #883997 !important; */
  /* background: var(--theme1-bg) !important; */
  border-bottom: 2px solid var(--theme1-bg);
  /* Bootstrap green */
  /* border-radius: 4px; */
}

.nav-item-account:hover {
  /* background: var(--theme1-bg) */
  border-bottom: 2px solid -var(--theme1-bg) !important;
  color: white
}

.nav-item-account {
  /* border-bottom: 1px solid var(--theme1-bg) !important; */

}

/* Change span text color on hover and active for nav item */
.new-shuffle-nav-item:hover span,
.new-shuffle-nav-item.active span {
  color: var(--primary-color);
}

/* PreDashboard.css - Sports Betting Dashboard */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Aeonik, sans-serif;
}

body,
.dashboard-container,
.main-content,
.category-group,
.odds-box-hover,
.odds-span-hover {
  font-family: Aeonik, sans-serif;
}

.dashboard-container {
  /* min-height: 100vh; */
  background: #f5f6fa;
  font-family: "Arial", sans-serif;
  contain: layout style;
  overflow-x: hidden;
}

/* Fixed Header Styles - matching the image */
.dashboard-header {
  background: white;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  contain: layout style;
  will-change: auto;
}

.fixed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 2rem;
  background: #fff;

  max-width: 1650px;
  margin: 0 auto;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: start;
  /* background-color: red; */
  position: relative;
}

.logo-image {
  height: 45px;

  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: filter 0.2s ease;
  margin-left: 2px;
}

.logo-image:hover {
  filter: brightness(1.1);
}

.header-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: end;
  max-width: 600px;
  margin: 0 -3rem;
}

.search-container {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 350px;
  height: 40px;
}

.search-input {
  width: 350px;
  height: 40px;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  font-size: 0.875rem;
  outline: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  resize: none;
  min-width: 350px;
  max-width: 350px;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout style;
}

.search-input:focus {
  border-color: #C10930;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(193, 9, 48, 0.1);
  outline: none;
}

.search-input::placeholder {
  color: #9ca3af;
}

.search-icon {
  position: absolute;
  right: 0.75rem;
  color: #3b82f6;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body {
  color: #9ba5b4;
}

.rules-btn {
  padding: 0.5rem 1.5rem;
  background: #C10930;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  white-space: nowrap;
  height: 40px;
  min-width: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 0 #6D081D;
  border-bottom: 3px solid #6D081D;
  flex-shrink: 0;
}

.rules-btn:hover {
  background: #6D081D;
  transform: translateY(-1px);
  border-bottom-color: #C10930;
}

.header-right {
  /* display: flex; */
  /* gap: 1rem; */
  /* align-items: center; */
  /* flex: 0 0 auto; */
  /* margin-left: auto; */
}

/* Button Styles - matching the image */
.signup-btn {
  /* padding: 1rem 2rem;
  background: #374151;
  color: #fff;
  border: 1px solid #C10930;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  white-space: nowrap;
  min-width: 80px;
  height: 40px;
  flex-shrink: 0; */
}

.signup-btn:hover {
  background: #4b5563;
  border-color: #6D081D;
}

.login-btn {
  /* padding: 1rem 2rem;
  background: #374151;
  color: #fff;
  border: 1px solid #C10930;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.875rem;
  white-space: nowrap;
  min-width: 80px;
  height: 40px;
  flex-shrink: 0; */
}

.login-btn:hover {
  background: #4b5563;
  border-color: #6D081D;
}



/* WhatsApp Support Image - Bottom Right Corner */
.whatsapp-support-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

.whatsapp-support-link {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-support-link:hover {
  transform: scale(1.1);
}

.whatsapp-support-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: blink 2s infinite;
}

/* Blinking animation */
@keyframes blink {

  0%,
  50% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  75% {
    opacity: 0.7;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .whatsapp-support-container {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-support-image {
    width: 50px;
    height: 50px;
  }
}

/* Main Navigation Tabs */
.main-nav-pre {
  background: #343435;
  /* padding: 0px 2rem; */
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  width: 100%;
  position: relative;
  z-index: 999;
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-width: fit-content;
  border-radius: 4px;
}

.nav-tab:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-tab.active {
  /* border: 1px solid #886cff; */
  color: #fff;
}

.navbutton.active {
  border: #3b82f6;
}

.nav-icon {
  font-size: 1rem;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-img {
  width: 2.5rem;
  height: 2rem;
  text-transform: lowercase;
  object-fit: contain;
}

.nav-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  margin: 0;
  text-align: center;
}

/* Dashboard Content Layout */
.dashboard-content {
  display: flex;
  /* min-height: 100vh */
}

/* Sidebar Styles */
.sidebar {
  width: 220px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  overflow-y: auto;
}

.sidebar-header {
  padding: 0 1.5rem 1rem;
  /* border-bottom removed to eliminate white line */
  margin-bottom: 1rem;
}

.sidebar-header h3 {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  gap: 0.5rem;
}

.sidebar-item:hover {
  background: #f9fafb;
}

.sidebar-item.active {
  background: #fef2f2;
  border-left-color: #dc2626;
  color: #dc2626;
}

.sidebar-icon-img {
  width: 2.5rem;
  height: 1.25rem;
  object-fit: contain;
}

.sidebar-text {
  flex: 1;
  font-size: 0.7rem;
  font-weight: 500;
}

.sidebar-arrow {
  font-size: 0.6rem;
  color: #6b7280;
  transition: transform 0.2s;
}

.sidebar-arrow.expanded {
  transform: rotate(180deg);
}

/* Sidebar Submenu */
.sidebar-submenu {
  background: #f8fafc;
}

.sidebar-subitem {
  padding: 0.5rem 1rem 0.5rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  border-left: 2px solid transparent;
}

.sidebar-subitem:hover {
  background: #f1f5f9;
  color: #dc2626;
}

.subitem-text {
  font-size: 0.7rem;
  font-weight: 400;
}

.new-odds {
  font-weight: 600;
  color: #dc2626;
  /* font-size: 12px; */
}

.subitem-text:hover {
  font-size: 0.7rem;
  color: #dc2626;
  font-weight: 400;
}

/* Main Content Styles */
.main-content {
  /* max-height: 100vh; */
  /* overflow-y: auto; */
  flex: 1;
  /* padding: 0.25rem; */
  background: #fff;
}

.nav-small-item {
  /* background-color: #dc3545; */
  /* same as bg-danger */
  padding-top: 0.4rem;
  font-size: 11px;
  /* py-2 → padding-y */
  padding-bottom: 0.4rem;
  line-height: 15px;
  color: white;
  display: flex;
  /* d-flex */
  flex-direction: column;
  /* flex-column */
  justify-content: center;
  /* justify-content-center */
  align-items: center;
  /* align-items-center */
  flex: 1;

}

/* Fixed bottom nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  /* above the drawer */
  display: flex;
}

/* Drawer (bottom sheet) */
#menuDrawer {
  position: fixed;
  /* make it independent of viewport */
  bottom: 50px;
  /* height of your nav-items */
  left: 0;
  right: 0;
  top: 0;
  /* slide to top */
  z-index: 1050;
  /* behind nav-items */
  transform: translateY(100%);
  /* start hidden */
  transition: transform 0.3s ease-in-out;
  background-color: white;
  /* drawer background */
  overflow-y: auto;
}

/* When drawer is open */
#menuDrawer.show {
  transform: translateY(0);
}

.nav-small-item i {
  font-size: calc(1.375rem + -0.5vw);
}

@media (min-width: 768px) {
  .main-content {
    padding: 0rem;
  }

}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  /* stays on top */
}

/* Drawer slides from bottom to top */
.mobile-drawer {
  position: fixed;
  display: none;
  bottom: 60px;
  /* height of bottom nav */
  left: 0;
  width: 100%;
  height: calc(100vh - 135px);
  /* stops above bottom nav */
  background-color: #111317;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* content starts at top of drawer */
  transform: translateY(0%);
  /* start hidden below */
  transition: transform 0.6s ease-in-out;
  overflow-y: auto;
}

/* When open, slide up */
.mobile-drawer.open {
  transform: translateY(100%);
  display: none;
  /* slides into view */
}

/* Drawer content */
.drawer-content {
  width: 100%;
  /* max-width: 400px; */
  /* background-color: white; */
  border-radius: 12px 12px 0 0;
  padding: 1rem;
}

/* Announcement Bar */
.announcement-bar {
  margin-bottom: 0.25rem;
  padding: 0.5rem 0.25rem;
  background: #6D081D;
  color: white;

  font-size: 1rem;
}

/* Content Header */
.content-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .content-header {
    grid-template-columns: 1fr 1fr;
  }
}

/* Sport Banner Section */
.sport-banner-section {
  width: 100%;
}

@media (min-width: 768px) {
  .sport-banner-section {
    width: 100%;
  }
}

.sport-banner-wrapper {
  width: fit-content;
}

.sport-banner {
  /* background: #4b4647; */
  color: white;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); */
}

@media (min-width: 768px) {
  .sport-banner {
    padding-right: 10rem;
  }
}

.sport-banner-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
}

.live-box {
  color: #fff;
  height: 1.25rem;
  /* padding:2px; */
  display: flex;
  align-items: center;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 700;
  background-color: #149200;
  font-size: 0.75rem;
  line-height: 1.5rem;
  width: min-content;
  border-radius: 4px;

}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.5rem;
  width: 100%;
  /* justify-content: center; */
  /* width: 2rem;
  height: 2rem; */
  object-fit: contain;
}

/* Keep the banner icon inside a fixed-size span to avoid expanding the header */
.sport-banner-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  /* fixed size */
  height: 34px;
  /* fixed size */
  overflow: hidden;
}

.odds-box-hover {
  /* d-flex justify-content-start align-items-center w-100 */
  padding: 0.5rem;
  /* p-2 → 0.5rem padding */
  border-radius: 0.25rem;
  /* rounded → 0.25rem corners */
  display: flex;
  /* d-flex */
  flex-direction: column;
  /* flex-column */
  align-items: flex-start;
  /* align-items-start */
  width: 100%;
  background-color: black;
}

.odds-box-hover:hover {
  background-color: #886cff;
  color: white;

}

.odds-span-hover {
  font-size: 14px;
  color: #886cff;
  font-weight: 500;
}

.odds-span-hover:hover {
  color: white;
}

.sport-banner-icon-wrap .sport-banner-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Filter Buttons Container */
.filter-buttons-container {
  padding-left: 7rem;
  margin-bottom: 0.5rem;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .filter-buttons-container {
    padding-left: 7rem;
  }
}

.filter-buttons {
  gap: 0.25rem;
  display: flex;
  align-items: center;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 0.3rem;
}

.filter-btn {
  padding: 0.3rem 1rem;
  background: #fff;
  color: #dc2626;
  border: 1px solid #dc2626;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.75rem;
}

.filter-btn:hover {
  background: #dc2626;
  color: #fff;
}

/* Odds Header */
.odds-header {
  display: none;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .odds-header {
    display: flex;
  }
}

.odds-header-content {
  display: flex;
  width: 100%;
  gap: 0.5rem;
  align-items: center;
}

.odds-header-item {
  flex: 1;
  font-size: 0.75rem;
  text-align: center;
}

/* Matches Container */
.matches-container {
  background: #000;
  border: 1px solid #000;
  border-radius: 6px;
  overflow: hidden;
}

/* Table Header */
.table-header {
  /* display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.5fr 4fr;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
  color: #374151; */
}

.odds-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Matches List */
.matches-list {
  /* max-height: 600px; */
  /* overflow-y: auto; */
}

/* Match Row */
.match-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  /* border-bottom: 0.5px solid #e5e7eb; */
}

@media (min-width: 768px) {
  .match-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Match Info Section */
.match-info-section {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  border-bottom: 1px solid black;
  background-color: black;
}

@media (min-width: 768px) {
  .match-info-section {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 768px) {
  .match-info-section {
    grid-template-columns: repeat(5, 1fr);
  }

  .main-content {
    padding: 0rem;
  }

  .category-group {
    /* padding: 0.5rem; */
  }

  .match-info {
    display: flex;
    align-items: center;
    height: 100%;
    grid-column: span 2;
  }
}

/* Match Info */
.match-info {
  display: flex;
  align-items: center;
  height: 100%;
  grid-column: span 2;
}

@media (min-width: 768px) {
  .match-info {
    grid-column: span 4;
  }
}

.match-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.match-link:hover {
  text-decoration: none;
  color: inherit;
}

.match-details {
  padding: 0 0.5rem;
  gap: 0.25rem;
}

.team-names {
  max-width: 100%;
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  color: black;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 600;
}

.league-info {
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  color: #9ca3af;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  font-weight: 300;
}

/* Match Status */
.match-status {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1;
}

@media (min-width: 768px) {
  .match-status {
    grid-column: span 1;
  }
}

.live-indicator {
  font-weight: 600;
  font-size: 0.75rem;
  font-family: "Titillium Web", sans-serif;
  color: #10b981;
  border: 1px solid #10b981;
  display: inline-block;
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.live-indicator::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background: #10b981;
  width: 0;
  transition: all 0.5s;
}

.live-indicator:hover::after {
  width: 100%;
}

.match-time-display {
  display: flex;
  flex-direction: column;
  background: #f3f4f6;
  font-size: 0.625rem;
  align-items: center;
  padding: 0.5rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .match-time-display {
    font-size: 0.75rem;
  }
}

.date {
  color: #ef4444;
  font-family: "Titillium Web", sans-serif;
  font-size: 0.5625rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .date {
    font-size: 0.75rem;
  }
}

.time {
  color: #ef4444;
  font-family: "Titillium Web", sans-serif;
  font-size: 0.5625rem;
}

@media (min-width: 768px) {
  .time {
    font-size: 0.75rem;
  }
}

/* Match Time */
.match-time {
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  grid-column: span 1;
}

@media (min-width: 768px) {
  .match-time {
    grid-column: span 1;
  }
}

.empty-time {
  font-weight: 600;
}

.live-time-display {
  display: flex;
  flex-direction: column;
  background: #e5e7eb;
  font-size: 0.75rem;
  align-items: center;
  padding: 0.25rem;
  line-height: 1.25;
}

.live-date {
  font-size: 0.5625rem;
  color: #ef4444;
}

.live-time {
  font-size: 0.5625rem;
  color: #ef4444;
}

/* Match Icons */
.match-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* padding: 0 0.5rem; */
  grid-column: span 1;
}

@media (min-width: 768px) {
  .match-icons {
    grid-column: span 1;
  }
}


.pre-game-icon {
  width: 20px;
  text-align: center;
  margin-top: 2px;
  display: inline-block;
}

/* Match Odds Section */
.match-odds-section {
  grid-column: span 1;
}

/* Odds Grid */
.odds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  height: 100%;
}

/* Odds Cell */
.odds-cell {
  grid-column: span 1;
  border: 1px solid #e5e7eb;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 12px;
}

@media (min-width: 768px) {
  .odds-cell {
    padding: 0.25rem 0;
  }
}

.odds-blue {
  background: #66d1ff;
}

.odds-pink {
  background: #ffb4c5;
}

/* Bet Button Price */
.bet-button-price {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.odds-main {
  font-size: 0.75rem;
  font-weight: 600;
}

.odds-sub {
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .sidebar {
    width: 240px;
  }

  .search-input {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    width: 100%;
    background-color: #333;
    color: white;
    padding: 10px 0;
  }

  .filter-btn {
    padding: 0.1rem 0.8rem;
    background: #fff;
    color: #dc2626;
    border: 1px solid #dc2626;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }

  .header-left {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .dashboard-content {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    max-height: 200px;
  }

  /* .table-header,
  .match-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  } */

  .match-odds {
    grid-template-columns: repeat(6, 1fr);
  }

  .odds-columns {
    grid-template-columns: repeat(6, 1fr);
  }

  .match-row {
    padding: 0.35rem 0.5rem;
    gap: 0.25rem;
  }

  .main-nav-pre {
    padding: 0.5rem 1rem;
  }

  /* Mobile suspended overlay widths - match odds boxes width */
  /* On mobile, country-name takes 60% (box-6), odds boxes take 40% */
 
  
}

.main-nav-pre {
  display: flex;
  gap: 1rem;
  /* spacing between items */
  overflow-x: auto;
  /* enable horizontal scroll */
  white-space: nowrap;
  /* prevent wrapping */
  padding: 0.5rem;
  background-color: black;
  /* scrollbar-width: none;     Firefox */
}

.main-nav-pre::-webkit-scrollbar {
  /* display: none;             Chrome, Safari, Edge */
  background-color: rgb(32, 32, 32);
  border: none;
}

/* Parent hover */
/* Hover on the container changes both button and text */
.nav-item:hover .navbutton {
  background-color: #7817ff;
  color: white;
  border: 1px solid #7817ff;

}

.nav-item:hover .navspan {
  color: #fff;
}

/* Active state */
.navbutton.active {
  background-color: #212529;
  /* optional */
  color: #886cff;
  border: 1px solid #886cff;
}

.navbutton {
  background-color: #212529;
  /* default dark */
  transition: background-color 0.3s ease;
}

.navspan {
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.navbutton.active+.mt-2 .navspan {
  color: #886cff;
}

/* Responsive styles for fixed header */
@media (max-width: 768px) {
  .dashboard-container {
    min-height: 100vh;
    background: #333;
    font-family: "Arial", sans-serif;
    contain: layout style;
    overflow-x: hidden;
  }

  .fixed-header {
    flex-direction: column;
    background-color: #333;
    gap: 1rem;
    padding: 1rem;
    min-height: auto;
    /* background:red; */
  }

  .header-left {
    justify-content: start;
  }

  .header-center {
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
  }

  .search-input {
    width: 100%;
    max-width: 300px;
  }

  .header-right {
    justify-content: center;
  }

  .logo-main {
    font-size: 1.25rem;
  }

  .logo-sub {
    font-size: 0.8rem;
  }

  .signup-btn,
  .login-btn {
    /* min-width: 70px;
    height: 35px;
    font-size: 0.8rem;
    padding: 0.4rem 1rem; */
  }

  .rules-btn {
    height: 35px;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/* Rules Modal Styles */
.rules-modal-btn {
  background: #C10930;
  color: white;
  padding: 0.4rem 1.1rem;
  border: none;
  border-radius: 4px;
  border-bottom: 4px solid #6D081D;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
  font-size: 0.875rem;
}

.rules-modal-btn:hover {
  background: #6D081D;
  border-bottom-color: #C10930;
}

.rules-modal-content {
  margin: 0;
  padding: 0;
  border-radius: 8px;
  width: 100%;
  background: white;
  max-width: 600px;
  min-width: 500px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  contain: layout style;
  transform: translateZ(0);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {

  .rules-modal-content {
    max-width: 95vw;
    min-width: 95vw;
    margin: 0 1rem;
  }

  .modal-overlay {
    padding-top: 1rem;
  }
}

.rules-modal-header {
  background: #343435;
  padding: 1rem 1.5rem;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  position: relative;
}

.rules-modal-title {
  color: white;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.rules-modal-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.rules-modal-close-btn:hover {
  color: #f0f0f0;
  transform: scale(1.1);
}

.rules-modal-body {
  padding: 1rem;
  background: white;
}

/* Ensure proper spacing between accordion items */
.accordion-container .MuiAccordion-root {
  margin-bottom: 0.5rem;
}

.accordion-container .MuiAccordion-root:last-child {
  margin-bottom: 0;
}

/* Accordion Styles */
.accordion-container {
  padding: 0;
  padding-bottom: 0;
  padding-top: 0;
}

.accordion-title {
  padding: 0.75rem 1rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

/* Custom styling for the expand icon */
.accordion-container .MuiAccordionSummary-expandIconWrapper {
  color: white;
  transition: transform 0.2s ease;
}

.accordion-container .MuiAccordionSummary-expandIconWrapper.Mui-expanded {
  transform: rotate(180deg);
}

.accordion-content-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

.accordion-content-item:last-child {
  border-bottom: none;
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2rem;
  z-index: 1000;
}

.modal-open {
  visibility: visible;
  background: rgba(0, 0, 0, 0.4);
}

.modal-closed {
  visibility: hidden;
  background: transparent;
}

.modal-container {
  background: transparent;
  border-radius: 8px;
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-content-open {
  transform: scale(1);
  opacity: 1;
}

.modal-content-closed {
  transform: scale(1.25);
  opacity: 0;
}

.modal-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-close-btn:hover {
  color: #333;
}

/* Login Modal Styles */
.login-modal-content {
  display: flex;
  flex-direction: column;
  background: #212529;
  justify-content: center;
  margin-top: 0.75rem;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 768px) {
  .login-modal-content {
    flex-direction: row;
  }
}

.login-form-section {
  width: 100%;
  display: flex;
  flex: 1;
}

@media (min-width: 768px) {
  .login-form-section {
    flex: 1;
  }
}

.login-image-section {
  display: none;
  flex: 1;
}

@media (min-width: 768px) {
  .login-image-section {
    display: flex;
    flex: 1;
  }
}

.login-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simple Header Styles */
.simple-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  min-height: 80px;
}

/* Original desktop styles */
.dashboard-header {
  width: 100%;
  background-color: #fff;
  color: white;
  padding: 10px 0;
}

.fixed-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #fff;
}

.header-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-mobile {
  display: none;
  background-color: #333;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-center {
  flex-grow: 1;
  max-width: 600px;
  margin: 0 20px;
}

.search-container {
  position: relative;
  flex-grow: 1;
  margin-right: 10px;
}

.search-input {
  width: 100%;
  padding: 8px 30px 8px 10px;
  border-radius: 4px;
  border: none;
  background-color: #fff;
  border: 1px solid #ccc;
  color: white;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.signup-btn,
.login-btn,
.rules-btn {
  padding: 9px 12px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.signup-btn {
  background-color: #2a2e38;
  /* border: 1px solid #6D081D; */
  color: white;
}

.login-btn {
  background-color: var(--primary-color);
  /* border: 1px solid #6D081D; */
  color: white;
}

.rules-btn {
  background-color: #C10930;
  color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px 0;
  }

  .header-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0 5px;
  }

  .header-auth-buttons {
    display: flex;
    gap: 10px;
  }

  .search-container {
    flex-grow: 1;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .new-shuff-sidebar {
    display: none
  }

  .dashboard-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #333;
    /* Consistent dark background */
    color: white;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .fixed-header {
    position: relative;
    padding: 0;
    background: transparent;
  }

  .header-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #333;
  }

  .header-top-row,
  .header-bottom-row {
    padding: 8px 15px;
    background: #333;
  }

  .header-top-row {
    border-bottom: 1px solid #444;
  }

  /* Ensure logo stays left-aligned */
  .logo-container {
    justify-content: flex-start !important;
    margin-right: auto;
  }

  /* Make buttons more visible */
  .signup-btn,
  .login-btn {
    /* background: #C10930; */
    border: none;
    color: white;
  }

  /* Fix search input styling */
  .search-input {
    background: #444;
    color: white;
    border: 1px solid #555;
  }

  .search-icon {
    color: #aaa;
  }
}

.new-shuff-sidebar-pre {
  width: 15rem;
  min-height: 100vh;
  background: #111317;
  /* padding: 1rem; */
  transition: width 0.3s;
  border: #2a2e38;
  padding-bottom: 50px;
}

.new-shuff-border {
  border: 0.2px solid #2a2e38;
}

.new-shuff-collapsed {
  width: 60px;
}

.new-shuff-nav-link {
  color: #aaa;
  padding: 8px;
  border-radius: 4px;
  margin-bottom: 4px;
  transition: background 0.2s;
}

.new-shuff-nav-link:hover,
.new-shuff-nav-link.active {
  background: #222;
  color: #fff;
}

.new-shuff-collapsed .new-shuff-nav-link span {
  display: none;
}

.new-shuffle-nav-item {
  padding: 0.7rem 0.7rem 0.7rem 1rem;
  /* background-color: red; */
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 100%;
  color: var(--color-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  /* margin-bottom: 8px; */
  /* border-radius: 0 12px 12px 0; */
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.new-shuffle-nav-item:hover {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.1); */
}

.new-shuffle-nav-item.active {
  color: var(--primary-color);
  /* background: rgba(167, 139, 250, 0.15); */
}

.new-shuffle-nav-item i {
  margin-right: 12px;
  font-size: 1rem;
}

.new-shuffle-nav-item span {
  font-weight: medium;
  font-family: Aeonik, sans-serif;
  font-size: 14px;
  line-height: 21px;
  /* color: rgb(136, 108, 225); */
  color: rgb(255, 255, 255);
}

.new-shuffle-nav-item span :active {
  color: rgb(136, 108, 225);
  ;
}

.new-shuff-span-sidebar {

  font-weight: 500;
  font-size: 16px;
  font-family: Aeonik, sans-serif;
}

/* Inner border effect using pseudo-elements */
.new-shuffle-nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 0;
  width: 4px;
  background-color: var(--primary-color);
  border-radius: 0 8px 8px 0;
  /* transition: all 0.3s ease; */
  opacity: 0;
}

.new-shuffle-nav-item:hover::before,
.new-shuffle-nav-item.active::before {
  height: 100%;
  opacity: 1;
}

.scroll-sidebar-content {}

.scroll-sidebar-content::-webkit-scrollbar {
  display: none;
}

.odds-box-hover .odds-span-hover {
  color: #886cff;
  /* transition: color 0.2s; */
}

.odds-box-hover:hover .odds-span-hover {
  color: white;
}

.odds-box-hover:hover span.odds-span-hover {
  color: #fff !important;
}

.casino-main-div {
  background-color: black;
}

.toggle-tab-casino {
  background-color: #202329;
  display: flex;
  gap: 8px;
  flex: 1 1 0;
}

.search-cont-casino {
  flex: 1 1 0;
}

.home-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  flex: 1;
}

.home-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.home-icon {
  width: 17px;
  height: 17px;
  object-fit: contain;
  font-weight: 600;
}

.home-text {
  font-size: 15px;
  opacity: 0;
  font-weight: 700;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.home-btn:hover {
  background-color: #886cff !important;
}

.home-btn.active {
  background-color: #495057 !important;
}

.home-btn:hover .home-text,
.home-btn.active .home-text {
  opacity: 1;
  visibility: visible;
}

.casino-input-wrapper {
  position: relative;
  width: 100%;
}

.search-icon-casino-input {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #6b7280;
  font-size: 16px;
  pointer-events: none;
}

.casino-input {
  width: 100%;
  padding: 6px 10px 6px 36px;
  border-radius: 0.5rem;
  border: 1px solid #202329;
  font-size: 14px;
  background-color: #202329;
  color: #a8a8a9;
  outline: none;
}

.casino-input::placeholder {
  color: #9ca3af;
}

.toggle-tab-casino,
.search-cont-casino {
  flex: 1 1 0;
}

/* Apply to whole app */
* {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(42, 43, 44, 0.6);
  /* gray-blue like shadcn */
  border-radius: 9999px;
  /* fully rounded */
  border: 3px solid transparent;
  /* creates padding around thumb */
  background-clip: padding-box;
  transition: background-color 150ms ease, transform 150ms ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(148, 163, 184, 0.85);
  transform: scale(1.02);
}

*::-webkit-scrollbar-thumb:active {
  transform: scale(1.06);
}

/* Optional: hide scrollbars on touch devices, still allow scrolling */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    display: none;
  }
}

* {
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: rgba(148, 163, 184, 0.6) transparent;
}

/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: black;
}

*::-webkit-scrollbar-corner {
  background: black;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.6);
  /* gray-blue like shadcn */
  border-radius: 9999px;
  /* fully rounded */
  border: 3px solid #111317;
  /* creates padding around thumb */
  background-clip: padding-box;
  transition: background-color 150ms ease, transform 150ms ease;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(148, 163, 184, 0.85);
  transform: scale(1.02);
}

*::-webkit-scrollbar-thumb:active {
  transform: scale(1.06);
}

/* Optional: hide scrollbars on touch devices, still allow scrolling */
@media (pointer: coarse) {
  *::-webkit-scrollbar {
    display: none;
  }
}

.new-shuff-border-top-left {
  border: 0.2px solid #2a2e38;
  border-right: none;
}
