/* You can add global styles to this file, and also import other style files */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100&display=swap');

:root {
  --bg-primary: #0091ac;
  --bg-primary2: #01667a;
  --bg-white: #fff;
  --bg-yellow: #FAB841;
  --bg-tabactive: #0091ac;
  --white-text: #fff;
  --secondary-text: #7b97b6;
  --pink-text: #420A57;
  --dark-text: #0f2327;
  --text-white: #fff;
  --text-light-yellow: #ffecc6;
  --back: rgb(75, 177, 252) !important;
  --lay: rgb(247, 148, 168) !important;
  --theme-bg: #e4eff1 !important;
  --gray2: #d8e0e1;
  --body-bg: #e4eff1;
}

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

.btn-primary:hover {
  color: #fff;
  background-color: var(--bg-primary2);
  border-color: var(--bg-primary2);
}

ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.btn:focus {

  box-shadow: none;
}

.back {
  background-color: #13a0fc;
}

.lay {
  background-color: #f689a8;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 17px;
  overflow-x: hidden;
  color: var(--text-white);
  background: var(--theme-bg);
  padding-bottom: 85px;
}

/* Login css start here  */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login_background {
  background: url(../images/inner-bg.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(#ffffff00, #1fa9ae);
}

.log-fld .log-logo img {
  width: 160px;
}

.login-mn {
  margin: 0 auto;
  width: 400px;
  padding: 0px 0 0 0;
}

.log-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}

.log-logo img {
  max-width: 100px;
}

.login_background .form-group {
  margin: 0px 0px 15px 0px;
}

.login_background .form-group input {
  background-color: #fff;
  padding: 10px 14px;
  font-size: 14px;
}

.login_background .form-group input::placeholder {
  color: #000;
  opacity: 1;
}

.form-group input:focus {
  box-shadow: none;
}

.login_background .form-group p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 7px;
}

.log-footer {
  color: #fff;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

.log-footer p {
  margin-bottom: 0px;
}

.log-fld {
  width: 100%;
  padding: 24px 25px;
  box-sizing: border-box;
  margin-top: 15px;
  background: var(--bg-primary);
  border-radius: 6px;
  /* box-shadow: 0px 0px 4px #fff; */
  /* background: white; */
}


.login_background .form-group p {
  /* color: black !important; */
}

.log-footer p {
  margin-bottom: 0px;
  /* color: black; */
}

.btn-login {
  background: var(--bg-primary2);
  color: #fff;
  padding: 15px;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  border-radius: 5px;
  border: none;
}

.btn-login:hover {
  color: #fff;
}

/* Login css end here  */


/* header css start here */
.main-header {
  height: 70px;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 0px 30px;
}

.main-header.fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}


.main-header .head-logo img {
  max-height: 46px;
}

.main-header .head-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.main-header .head-center ul {
  display: inline-flex;
}

.main-header .head-center ul li {
  margin: 0px 10px;
}

.main-header .ProfileDropdown .btn-secondary {
  border: none;
  border-radius: 50px;
  box-shadow: none;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  padding: 0px;
  margin-top: 2px;
}

.main-header .ProfileDropdown .btn-secondary svg.icon {
  fill: #fff;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.main-header .ProfileDropdown .btn-secondary img {
  width: 45px;
  margin-right: 4px;
}

.main-header .ProfileDropdown .btn-secondary::after {
  display: none;
}

.main-header .ProfileDropdown .btn-secondary i {
  font-size: 12px;
  margin-left: 6px;
}

.main-header .menubtn svg.icon {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-right: 20px;
}

.head-right {
  display: flex;
  flex-direction: column;
  align-items: end;
  position: relative;
}

.head-right::before {
  content: '';
  width: 48%;
  background-color: var(--bg-primary2);
  height: 3px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  bottom: -3px;
  position: absolute;
  right: 0;
}

.head-right::after {
  content: '';
  width: 48%;
  background-color: #fff;
  height: 3px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  bottom: -3px;
  position: absolute;
  left: 0;
}

.main-header .Balance_site {
  display: flex;
}

.main-header .Balance_site li {
  list-style-type: none;
  position: relative;
  font-size: 14px;
  margin-left: 10px;
}

.main-wrapper {
  padding-top: 65px;
}

.natification-messgae {
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: #3d3d3d;
  font-size: 14px;
  padding: 7px 0px;
  height: 37px;
}

.sidenav {
  background-color: #fff !important;
  width: 300px;
  position: fixed;
  top: 0;
  height: 100vh;
  z-index: 999;
  left: -100%;
  transition: 0.3s all;
  overflow: auto;
}

.sidenav.sidenav-open {
  left: 0;
  transition: 0.3s all;
}

.menu_overlay {
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  display: none;
}

.showoverlay .menu_overlay {
  display: block;
}

.sidenav li a {
  text-decoration: none;
  font-size: 16px;
  padding: 17px;
  border-bottom: 1px solid #10101029;
  color: #494949;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 5px;
  align-items: center;
  position: relative;
}

.sidenav li a .drop_icon {
  position: absolute;
  font-size: 20px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  /* color: var(--bg-primary); */
}

.sidenav li a svg.icon {
  fill: #494949;
  height: 20px;
  width: 20px;
  display: inline-block;
}

.sidenav li a span {
  width: 24px;
}

.sidenav li a:hover svg.icon {
  fill: var(--bg-primary);
}

.sidenav li a:hover {
  color: var(--bg-primary);
}

.has-sub ul {
  background: var(--bg-primary);
}

.has-sub ul li a:hover {
  color: #000000 !important;
}

.has-sub ul li a:hover {
  color: #000000 !important;
}

.has-sub ul li a {
  color: #000000ad;
  padding: 14px;
  padding-left: 39px;
  border-bottom: 1px solid #f977773b;
  font-weight: 400;
  font-size: 16px;
  background: #e4eff1;
  font-weight: 500;
}

.has-sub ul li a:hover {
  color: #fff !important;
}


.sidenav-logo-box {
  display: flex;
  align-items: center;
  height: 65px;
  width: 100%;
  background-color: var(--bg-primary2);
  /* background-color: #335c5d; */
  padding: 8px;
  justify-content: space-between;
}

.sidenav .sidenav-logo-box .closebtn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  opacity: 0.8;
}

.sidenav .sidenavlogo img {
  height: 42px;
  width: auto;
  padding-left: 10px;
}



.ProfileDropdown ul.dropdown-menu {
  background-color: var(--bg-primary);
  border: 1px solid #87e7ff;
  width: 218px;
  border-radius: 9px;
  padding: 0px;
  overflow: hidden;
  transform: translate3d(-89px, 2px, 0px);
}

.ProfileDropdown ul.dropdown-menu li a {
  color: #fff;
  font-size: 16px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.ProfileDropdown ul.dropdown-menu li span {
  width: 26px;
  display: inline-block;
}

.ProfileDropdown ul.dropdown-menu li:last-child a {
  border-bottom: none;
}

.ProfileDropdown ul.dropdown-menu li a img {
  margin-right: 0;
  width: 18px;
  filter: brightness(0) invert(1);
}

.ProfileDropdown ul.dropdown-menu .dropdown-item:focus,
.ProfileDropdown ul.dropdown-menu .dropdown-item:hover {
  background-color: var(--bg-primary2);
}

.Footer_copyright {
  position: fixed;
  background: rgb(1 1 57 / 60%);
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  z-index: 222;
  text-align: center;
  font-size: 14px;
  padding: 14px 15px;
}

.Mobile_footer {
  background-color: #0091ac !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -1px 0 3px #a6d0d7;
  height: 64px;
}

.Mobile_footer ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 63px;
  align-items: center;
}

.Mobile_footer ul li {
  display: inline-flex;
  justify-content: center;
  width: 20%;
}

.Mobile_footer ul li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  font-size: 14px;
  color: #fff !important;
  text-decoration: none;
}

.Mobile_footer ul li a svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-bottom: 6px;
}

/* header css end here */

/* Dashboard css start here*/


/* match details css */
.game-market {
  background-color: transparent;
  border-radius: 12px;
  padding: 0;
  margin-top: 0;
  position: relative;
}

.game-market .market-row {
  display: flex;
  flex-wrap: nowrap;
  height: 48px;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  /* background-color: #f5db7a; */
  border-bottom: 1px solid #d1d1d1;
}

.game-market .market-row:last-child {
  border: none;
}

/* .game-market .market-row:nth-of-type(even) {
  background-color:#feeaa2;
  } */
.game-market .market-row .market-details {
  width: 65%;
  height: 100%;
  align-items: baseline;
  display: inline-flex;
  color: #000;
  justify-content: center;
  padding-left: 13px;
  align-items: baseline;
  padding-right: 15px;
  flex-direction: column;
}

.game-market .market-row .market-odds-row {
  width: 35%;
  height: 100%;
  align-items: center;
  display: flex;
  position: relative;
}

.Fancy_Market .market-row.market_body_item {
  margin-bottom: 2px;
}

.market_item {
  margin-bottom: 10px;
  background-color: #fff;
}

.game-market .market-row.market-header {
  background-color: var(--bg-primary2);
  color: #fff;
}

.game-market .market-row.market-header .market-details {
  color: #fff;
}

.dropdown.fancy_market_min_max {
  position: absolute;
  right: 10px;
  top: 4px;
}

.fancy_market_min_max button {
  border: none;
  background: transparent;
  padding: 0px;
}

.fancy_market_min_max button svg.icon {
  width: 13px;
  height: 13px;
  fill: #3f3f3f;
}

.fancy_market_min_max ul.dropdown-menu {
  padding: 7px;
  font-size: 13px;
  width: max-content;
  font-weight: 500;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: none;
  box-shadow: 0 0 5px #9b9b9b;
}



.suspended-table::after {
  content: attr(data-title);
  background-color: rgba(0, 0, 0, 0.6);
  color: var(--text-white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
  cursor: not-allowed;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  font-size: 15px;
  color: #ff1c1c;
}

.game-market .market-row .market-details .market_Title {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 0px;
}

.game-market .market-row .market-details .market_Title span.market-name {
  font-size: 16px;
  font-weight: 500;
}

.market-odds-row .market-odds-box {
  display: flex;
  width: 50%;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.game-market .market-row.market-header .market-odds-box.back {
  background: #6bc2ff !important;
}

.game-market .market-row.market-header .market-odds-box.lay {
  background: #ff9eba !important;
}

.game-market .market-row .market-details .team_name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 94%;
  padding-right: 6px;
  font-weight: 500;
  font-size: 15px;
}

.game-market .market-row .market-details .team_min_max {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.game-market .market-row .market-details .team_min_max a {
  color: var(--bg-white);
}

.game-market .market-row .market-details .team_min_max .min_max_amt {
  position: absolute;
  width: 190px;
  background: white;
  padding: 8px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 0 15px #0000003d;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: auto;
}

.game-market .market-row .market-details .team_min_max .min_max_amt span {
  color: #000;
}

.game-market .market-row .market-details .team_min_max .value {
  font-weight: 400;
}

.game-market .market-row .market-details .team_name_stk {
  color: #fb4700;
  font-weight: 500;
  font-size: 13px;
}

.game-market .game_market_title {
  background-color: var(--bg-primary);
  color: var(--text-white);
  display: inline-flex;
  padding: 15px 40px;
  font-size: 24px;
  font-weight: 500;
  border-radius: 9px;
  position: absolute;
  left: 0;
  top: -20px;
  right: 0;
  margin: 0 auto;
  width: max-content;
  z-index: 22;
  overflow: visible;
  text-transform: uppercase;
  min-width: 280px;
  justify-content: center;
}

.Session_Market .market-row {
  background-color: #fff;
}

.Session_Market .market-row:nth-of-type(even) {
  background-color: #f8f8f8;
}

.Session_Market .market-fancy-titile {
  font-weight: 500;
  color: #242424;
  display: block;
  overflow: hidden;
  width: 100%;
  padding-right: 11px;
  font-size: 13px;
  line-height: 12px;
}

.Session_Market .market-fancy-titile span {
  color: #004bcc;
  font-weight: 600;
}

.game-market .match_header {
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 16px;
}

.game-market .match_header .livetv_btn {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 0;
  background-color: #fff;
  color: #000;
  padding: 7px 9px;
  border-radius: 3px;
  font-weight: 500;
  width: 72px;
  border: none;
}

.game-market .match_header .livetv_btn.dropdown-toggle {
  background-color: var(--bg-primary2);
  color: #fff;
}


.game-market .match_header .dropdown-toggle::after {
  display: none;
}

.btn_grop {
  display: flex;
  align-items: center;
  gap: 2px;
}

.game-market .match_header ul.dropdown-menu {
  padding: 0px;
  max-height: 150px;
  overflow-y: auto;
  width: 200px;
}

.game-market .match_header ul.dropdown-menu .dropdown-item {
  padding: 6px;
  font-size: 14px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}



/* mobile matches */

.sitemoadal .modal-content {
  border-radius: 0px;
  border: none !important;
}

.sitemoadal .modal-content .modal-header {
  background-color: var(--bg-primary);
  padding: 7px 15px;
  border-radius: 0px;
}

.sitemoadal .modal-content .modal-header h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.sitemoadal .modal-content .modal-header button.btn-close {
  filter: invert(1);
  opacity: 1;
  width: 16px;
  height: 16px;
  background-size: 14px;
}

.sitemoadal .modal-content .modal-body {
  padding: 0px;
}

.bet-slip-box {
  border-radius: 0;
  margin-top: 0;
  padding: 0;
}

.bet-slip-box.lay {
  color: #000;
}

.bet-slip-box.lay:hover,
.bet-slip-box.lay:focus,
.bet-slip-box.lay:active {
  background-color: var(--lay);
}

.bet-slip {
  border-bottom: 1px solid #666;
  padding: 4px 8px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

.bet-nation span {
  height: auto;
  /* color: var(--text-table); */
  font-size: var(--font-caption);
  letter-spacing: 0;
  line-height: 1;
  max-width: calc(100% - 20px);
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.match-result {
  margin-top: 0;
  height: auto;
  /* color: var(--text-table); */
  font-size: var(--font-caption);
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bet-team {
  font-size: var(--font-caption);
  margin-top: 0;
  font-weight: var(--font-bold);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}

.bet-team-name {
  max-width: calc(100% - 85px);
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.bet-input {
  margin-top: 3px;
  margin-left: 4px;
  width: calc(48% - 8px);
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 36px;
  margin: 0;
  margin-left: 4px;
}

.bet-input.lay-border {
  border-left: 0;
}

.bet-input .form-control {
  color: #eee;
  height: 36px;
  border: 0;
  background-color: #fff;
  border-radius: 0px;
}

.bet-buttons {
  padding: 5px 4px 0 4px;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-center;
  flex-wrap: wrap;
}

.bet-buttons .btn {
  min-width: calc(25% - 3px);
  margin-right: 4px;
  margin-bottom: 4px;
  height: 35px;
  border-radius: 0;
  background-color: var(--bg-primary);
  border-color: transparent;
  padding: 0;
  font-size: 14px;
}

.bet-buttons .btn:nth-child(4n) {
  margin-right: 0;
}

input.form-control:disabled {
  cursor: not-allowed;
}

.bet-slip-box .place-bet-btn {
  text-align: center;
  padding: 0px 5px;
}

.bet-slip-box .place-bet-btn button.btn.btn-primary.btn-block {
  width: 100%;
  height: 35px;
  border-radius: 0;
  background-color: var(--bg-primary2);
  border-color: var(--bg-primary2);
  margin-bottom: 10px;
}



/* 07-02-2024 css start */

.sports_banner {
  position: relative;
  margin-bottom: 0;
}

.sports_banner img {
  width: 100%;
}

.pane_middle {
  display: block;
  vertical-align: top;
  ;
  height: 100%;
  width: calc(100% - 0px);
  margin: 0 auto;
  padding: 0px 15px;
}

.mobile_fixbar {
  background-color: var(--gray3);
  padding: 0px 30px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-top: 10px solid #4e4d4d61;
  position: fixed;
  bottom: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  box-shadow: 0 0 80px #f1f1f1;
  display: none;
  height: 80px;
}

.mobile_fixbar ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  position: relative;
}

.mobile_fixbar::before {
  content: '';
}

.mobile_fixbar ul li {
  width: calc(20% - 15px);
}

.mobile_fixbar ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray5);
  font-size: 15px;
  text-decoration: none;
}

.mobile_fixbar ul li a svg {
  fill: var(--gray5);
  height: 35px;
  width: 35px;
}

.home_menu_active {
  position: relative;
  background-color: var(--gray3);
  border-radius: 50%;
  border: 10px solid var(--primary2-color);
  height: 80px;
  width: 80px;
  top: -20px;
  justify-content: center;
  margin: auto;
}

.home_menu_active::before {
  content: "";
  width: 80px;
  min-height: 80px;
  border: 10px solid rgba(0, 0, 0, 0%);
  border-right-color: #fff955;
  border-radius: 50%;
  position: absolute;
  transform: rotate(323deg);
}

.score_borad_wrapper {
  background-color: var(--gray3);
  padding: 20px 0
}

.sport_tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  margin-bottom: 15px;
  width: 100%;
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 5px;
  padding: 0 0;
  background-color: var(--bg-primary);
  height: 50px;
  position: relative;
  top: -4px;
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.sport_tabs button {
  background-color: var(--bg-primary);
  border-radius: 0px;
  padding: 7px 15px;
  color: var(--bg-white);
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  width: 31%;
  display: flex;
  gap: 7px;
  align-items: center;
  position: relative;
  height: 50px;
  border: none;
}

.sport_tabs button svg {
  fill: var(--bg-white);
}

/* .sport_tabs a:hover, .sport_tabs a.active {background-color:var(--primary-color); color:var(--yellow-color);} */
.bet_tabel {
  min-height: calc(100vh - 440px);
}

.tabel_header {
  background-color: #cbcbcb;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 15px;
  padding-right: 7px;
}

.col_60 {
  width: 60%;
  flex: 0 0 60%;
}

.col_13 {
  width: calc(13.33% - 7px);
}

.game_icon {
  position: relative;
  width: 50px;
  background-color: var(--gray1);
  height: 31px;
  text-align: center;
  color: #fff;
}

.game_icon:after {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  border-top: 22.5px solid transparent;
  border-bottom: 22.5px solid transparent;
  border-left: 20px solid var(--gray1);
}

.game_icon {
  display: flex;
  align-items: center;
  padding: 0 0px 0 10px;
}

.game_details .game_icon svg {
  width: 22px;
  height: 22px;
  fill: var(--bg-primary);
}

.game_icon img {
  max-width: 25px;
}

.game_details {
  display: flex;
  align-items: center;
  gap: 0;
}

.game_name {
  font-size: 16px;
  color: var(--dark-text);
}

.bet_tabel_body {
  position: relative;
  background-color: #fff;
  padding: 0;
}

.bet_tabel_row .bet_table_row_item {
  display: flex;
  width: 100%;
  background-color: #e5e5e5;
  flex-wrap: wrap;
  border-radius: 0;
  padding: 4px;
  margin-top: 1px;
  justify-content: center;
}

.bet_tabel_row:last-child {
  border: 0;
}

.game_status img {
  max-width: 37px;
}

.left_block {
  display: flex;
  gap: 10px;
}

.game_status {
  width: 70px;
  text-align: center;
}

.game_status_details {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
}

.game_status_details span {
  color: var(--dark-text);
  font-weight: 600;
}

.game_type {
  width: 97%;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: baseline;
}

.game_type .team_details {
  width: 70%;
  display: block;
}

.team_details a {
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  line-height: 16px;
  font-weight: 500;
}

.team_details a span {
  display: block;
  color: #01667a;
  font-size: 14px;
}

.game_score_details {
  display: flex;
  align-items: center;
  gap: 5px;
}

.game_score_details a {
  padding: 5px;
  border-radius: 0;
  text-decoration: none;
  font-size: 15px;
  color: var(--dark-text);
  width: calc(50% - 3px);
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  font-weight: 500;
}

.game_score_details a:hover {
  opacity: 0.8;
}

.back {
  background-color: var(--back);
}

.lay {
  background-color: var(--lay);
}

.game_starttime {
  display: flex;
  align-items: center;
  padding: 0 12px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 300;
}

.game_starttime::after {
  content: '';
  height: 30px;
  width: 1px;
  background-color: #a39f9f;
  position: absolute;
  right: 0;
}

.game_starttime span {
  width: 100px;
}

/* .icon_block {display:none;} */
.icon_block svg {
  height: 25px;
  width: 25px;
  fill: var(--dark-text);
}

.sport_tabs button.active .icon_block svg {
  fill: var(--bg-white);
}

.sport_tabs button.active {
  background-color: var(--bg-primary2);
}

.game_status_details span svg {
  height: 15px;
  width: 15px;
  fill: #cfcfcf;
}

.bet_tabel .game_score_details .suspend_block {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  background: #000000d1;
  height: 100%;
  justify-content: center;
}

.bet_tabel .game_score_details .suspend_block span svg {
  height: 20px;
  width: 20px;
  fill: var(--white-text);
}

.sport_tabs a::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #ececec;
  position: absolute;
  right: 0;
  border-left: 1px solid #ececec;
  display: none;
}

/* 07-02-2024 css end */

.details_background {
  background: #fff;
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-top: 18px !important;
}

.change_password_input {
  padding: 10px 0px;
}

.details_background .change_password_input input {
  padding: 10px;
  width: 100%;
  border-radius: 7px;
  border: 1px solid #e5e5e5;
}

.details_background .change_password_input input:focus {
  outline: none;
}

.details_background .change_password_input label {
  margin-right: 15px;
  color: #3c3c3c;
  margin-bottom: 7px;
  font-size: 16px;
}

.jmd_input_btn button {
  padding: 12px 20px;
  background: var(--bg-primary);
  border-radius: 5px;
  margin-top: 20px;
  margin-right: 15px;
  font-weight: 400;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  border: none;
}

.bg-light-btn {
  background: #dadada !important;
  color: #000 !important;
  font-weight: 500;
}

.table>:not(:first-child) {
  border-top: none;
}

.details_background table {
  font-size: 14px;
}

.details_background table thead tr th {
  padding: 12px !important;
  font-weight: 500;
  background: #f3f3f3;
}

.details_background table tbody tr td {
  padding: 12px;
}

/* */
.details_background h4 {
  padding: 10px 20px;
  background: var(--bg-primary);
  font-size: 16px;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 0px;
  font-weight: 400;
}

.details_background .details_background_items {
  padding: 20px;
}

.details_background_items .JMD_sub_headding {
  color: #000;
}

.change_password_input select {
  width: 100%;
  border: 1px solid #e5e5e5;
  padding: 10px;
  border-radius: 7px;
}

.change_password_input select:focus {
  outline: none;
}

.personal_information_box {
  color: #404040;
  padding: 13px;
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  font-size: 15px;
}

.details_background_items hr:not([size]) {
  color: #000;
}

.img_sportsWidth {
  width: 20px;
}

.minus_text {
  color: red !important;
}

.plus_text {
  color: green !important;
}

.amountColor {
  color: #000 !important;
}

.scoreboard {
  background-color: #181818;
  padding: 10px;
  font-size: 14px;
}

.scoreboard .scoreboard-card_panel .teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scoreboard .scoreboard-card_panel .team_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scoreboard .scoreboard-card_panel .team_group .team_score {
  font-weight: 500;
}

.scoreboard .scoreboard-card_panel .score_middle_title {
  background-color: var(--bg-primary);
  margin-top: 13px;
  padding: 8px;
}

.scoreboard .scoreboard-card_panel .batting_stats {
  background-color: #2e2e2e;
  padding: 12px;
}

.scoreboard .scoreboard-card_panel .players_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scoreboard .scoreboard-card_panel .batting_stats .title {
  margin-bottom: 10px;
}

.scoreboard .scoreboard-card_panel .batting_stats .players_group .score {
  display: inline-block;
  margin-left: 7px;
  color: #2cd448;
}

.scoreboard .current_over {
  text-align: center;
  background-color: #2e2e2e;
  padding: 25px 10px;
  height: 100%;
}

.scoreboard .current_over .title {
  font-size: 22px;
  font-weight: 500;
}

.scoreboard .current_over .ball_group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.scoreboard .current_over .ball_group .ball {
  background-image: url('../images/ball-score.png');
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.scoreboard .current_over .ball_group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 19px;
}

.scoreboard .current_over .ball_group .ball span {
  z-index: 222;
}

.scoreboard .current_over .ball_group .ball::before {
  border-radius: 50%;
  content: '';
  background-color: rgba(0, 0, 0, 0.25);
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0;
  right: 0;
}

.scoreboard .current_over .ball_status {
  text-overflow: ellipsis;
  animation: grow 2s ease infinite;
  font-size: 26px;
  margin-top: 25px;
}

@keyframes grow {
  0% {
    transform: scale(0.3)
  }

  to {
    transform: scale(1)
  }
}

.Fancy_Market .market-details {
  padding-right: 30px;
  position: relative;
}

.Fancy_Market .market-details .market_fancy_icon {
  position: absolute;
  right: 12px;
  bottom: 5px;
}

.Fancy_Market .market-details .market_fancy_icon img {
  width: 9px;
}

.laddermodal .modal-dialog {
  max-width: 350px;
}

.laddermodal table {
  margin-bottom: 0px;
}

.laddermodal .modal-body {
  padding: 14px !important;
  font-size: 14px;
}

.laddermodal .modal-footer {
  padding-bottom: 0px;
  justify-content: center;
}

.laddermodal .modal-footer button.btn {
  padding: 4px 30px;
  border: none;
}

.details_page_table table {
  font-size: 14px;
}

.details_page_table {
  padding: 15px;
  background-color: #fff;
  margin: 15px 0px;
}

.details_page_table .details_background.table-responsive {
  padding: 0px;
  margin: 0px;
}

.details_page_table .details_background table {
  margin-bottom: 0px;
}

/* 05-03-2024 css start */
.filter_block {
  padding: 20px 20px 0;
}

.btn_block {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;

}

.btn_block .btn {
  width: 70px;
  font-size: 14px;
  padding: 5px;

}

.tbl_tabs {
  width: 100%;
}

.tbl_tabs ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--bg-primary);
}

.tbl_tabs ul li {
  width: 20%;
}

.tbl_tabs ul li a {
  padding: 12px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: white;
}

.tbl_tabs ul li a.active {
  background-color: var(--bg-primary2);
}

.table-responsive tr {
  white-space: nowrap;
}

.form-control:focus {
  box-shadow: none;
}

.inplay_icon svg {
  height: 30px;
  width: 30px;
  fill: #387985;
}

.match_details_wrapper .market-odds-row .market-odds-box {
  flex-direction: column;
  color: #262626;
  font-weight: 500;
  line-height: 14px;
}

.profile_details ul {
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 25px;
}

.profile_details ul li {
  display: flex;
  align-items: center;
  list-style: none;
  color: #575757;
  font-size: 14px;
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid #d7d7d7;
}

.profile_details ul li span {
  width: 150px;
  font-weight: 500;
}

.JMD_sub_headding h6 {
  color: #000;
}

.input_block label {
  color: #575757;
}

/* 05-03-2024 css end */

/* 06-03-2024 css start */
.date_input {
  position: relative;
}

.date_input div#picker {
  display: none !important;
  background-image: none;
}

.date_input input::-webkit-calendar-picker-indicator {

  opacity: 0;
}

.date_input input {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-calendar4-week' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5M2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1z'/%3E%3Cpath d='M11 7.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-2 3a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5zm-3 0a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-size: 15px;
  background-position: right 3% center;
}

.game-market .market-row .market-details.right_amt {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.tabs_block_cms {
  padding: 20px;
}

.tabs_block_cms .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #335c5d;
}

.nav-pills .nav-link {
  color: #000;
}

.tab_inner_details p {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.continue_btn {
  margin-top: 20px;
  text-align: center;
}

/* 06-03-2024 css end */

.match_details_table .nav-tabs {
  border-bottom: none;
  background-color: var(--bg-primary);
  height: 40px;
  margin-bottom: 5px;
}

.match_details_table .nav-tabs .nav-link {
  border-radius: 0px;
  border: none;
  background-color: transparent;
  color: #fff;
  height: auto;
  padding: 9px;
  font-size: 18px;
  height: 40px;
  font-weight: 500;
}

.match_details_table .nav-tabs .nav-link.active {
  background-color: var(--bg-primary2);
  border: none;
}

button#MatchedBet-tab {
  background-color: #019137 !important;
}

button#profile-tab {
  background: #417e92 !important;
}

button#Session-tab {
  background: darkred !important;
}

.scoreboard .current_over .ball_group .ball {
  font-size: 18px;
}

.sidenav li a i {
  font-size: 18px;
}

.Total_ladger_amount {
  display: inline-flex;
  color: #242424;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 500;
  padding: 5px 5px 5px 22px;
  align-items: center;
  gap: 19px;
  margin-bottom: 20px;
}

.Total_ladger_amount .titile {
  font-weight: 600;
}

.Amount_box {
  width: 144px;
  background-color: #e2e2e2;
  display: inline-flex;
  padding: 9px 15px;
  border-radius: 5px;
  gap: 10px;
}

.wallet_icon svg {
  width: 20px;
  height: 20px;
  fill: var(--bg-primary);
}

.wallet_value {
  font-weight: 500;
}

.match_list_icons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.match_list_icons .inplay_btn {
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  color: #1aa711;
  animation: blink2 900ms step-end infinite;
}

.match_list_icons .inplay_btn::before {
  position: absolute;
  content: '';
  background-color: #1aa711;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: -12px;
  top: 3px;
  animation: blink 900ms step-end infinite;
}

@keyframes blink {
  50% {
    background-color: red;
  }
}

@keyframes blink2 {
  50% {
    color: red;
  }
}




#style-2::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #e0e0e0;
}

#style-2::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: #e0e0e0;
  margin: 0px;
  padding: 0px;
}

#style-2::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-color: #e72300;
}



.Upcoming_game_item {
  background-color: #fff;
  border: 1px solid var(--bg-primary);
  border-radius: 9px;
  overflow: hidden;
  margin-top: 10px;
}

.Upcoming_game_item .upcoming_header {
  background-color: var(--bg-primary);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 5px 10px;
  justify-content: center;
}

.Upcoming_game_item .upcoming_header img {
  width: 24px;
}

.Upcoming_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #242424;
  padding: 5px 10px;
  line-height: 22px;
  font-size: 14px;
  font-weight: 500;
  align-items: center;
}

.com_match_deails .table_header {
  background-color: var(--bg-primary);
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}





.ngx-pagination li {
  display: inline-block;
  background-color: #e5e5e5;
  border-radius: 3px !important;
  color: #242424;
  height: 26px;
  min-width: 26px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ngx-pagination {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.ngx-pagination .current {
  background: var(--bg-primary) !important;
}

.ngx-pagination li.small-screen {
  display: none !important;
}



/* js popup */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  color: #242424;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 2px solid #ccc;
  box-shadow: -2px -1px 20px 9px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

.popup-content {
  text-align: center;
}

.close-popup-button {
  background: #01667a;
  color: #fff;
  display: flex;
  margin: auto;
  padding: 5px 24px;
  border: none;
  border-radius: 5px;
}




/* Styles for the loader and logo */
.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  /* Optional: Add a semi-transparent background to dim the rest of the content */
  z-index: 9999;
  /* Ensure the loader is on top of other elements */
}

.logo {
  width: 100px !important;
  /* Adjust the width and height based on your logo size */
  height: 100px !important;
  ;
  margin-bottom: 20px !important;
  ;
  /* Optional: Add some spacing between the logo and the loader */
}

.loader {
  display: block;
  position: fixed;
  z-index: 9999;
  /* / background-image: url("src/assets/images/loader.gif") !important; */
  background-color: #666;
  opacity: 0.4;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  background-size: 100px 100px;
}

.buttons-pdf,
.buttons-excel {
  padding: 0px 6px;
  border-radius: 0px !important;
}

.loader img {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100px;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #335c5d;
  border-color: #335c5d;
}

.custom_paginastion li {
  padding: .1875rem .625rem;
}


.rules-table-design {
  font-size: 14px;
  line-height: 26px;
}


.login-text {
  color: black;
  text-align: center;
}

.has-sub ul {
  background: #f1f1f1;
}

.sidenav li a:hover {
  color: #000000;
}

.sidenav {
  background-color: #e4eff1;
}

.has-sub ul li a:hover {
  color: #000000 !important;
}

/* scoreCard */
.score_board_outer {
  float: left;
  width: 100%;
  display: block;
  padding: 5px;
  width: calc(100% - 0px);
}

.score_board_Main {
  background: url("ground_img.bf0722425e5c2daab204.jpg") no-repeat;
  margin: 0;
  background-position: 50%;
  background-position-y: -24px;
  width: calc(100% - 4px);
  padding: 5px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  z-index: 1;

  padding-top: 9px !important;
  height: 100px;
}

.score_board_Main:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.score_board_Main_Content {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 99;
  color: #fff;
  font-size: 15px;
  align-items: end;
}

.score_board_Main_Content .score_board_Content_Left {
  width: 60%;
  float: left;
}

.score_board_Content_Left_Top {
  display: inline-block;
  width: 100%;
}

.score_board_Content_Left_Top .score_board_Content_Left_Top_head {
  display: flex;
}

.score_board_Content_Left_Top_head_Score1 {
  width: 70%;
  margin-top: 10px;
  margin-bottom: 11px;
  display: flex;
}

.score_board_Content_Left_Top_head_Score1 div {
  width: 50%;
}

.score_board_Content_Left_Top_head_Score2 {
  width: 30%;
  padding-left: 15px;
}

.score_board_Content_Left_Top_head_Score1 .text_Right {
  text-align: right;
}

.score_board_Main_Content .score_board_Content_Right {
  width: 40%;
  float: left;
  text-align: right;
}

.score_board_Content_Right .score_board_Content_Right_Days {
  width: 100%;
  min-height: 20px;
  line-height: 20px;
}

.score_board_Content_Right .score_board_Content_Right_Balls {
  width: 100%;
  margin: 0;
}

.score_board_Content_Right .score_board_Content_Right_Balls_inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  padding: 3px 0 4px;
}

.score_board_Content_Right .score_board_Content_Right_Balls_inner>div {
  height: 25px;
  line-height: 25px;
  width: 25px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
}

@media only screen and (max-width: 1440px) {
  .score_board_Main {
    background-position: 50%;
    background-position-y: center;
    background-size: 100% 100%;
  }
}

@media only screen and (max-width: 1199px) {

  .score_board_Content_Left_Top,
  .score_board_Content_Right .score_board_Content_Right_Days {
    font-size: 14px;
  }
}

@media only screen and (max-width: 991px) {
  .score_board_Content_Right .score_board_Content_Right_Balls_inner>div {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
  }

  .score_board_Main_Content .score_board_Main_Content_middle {
    width: 100%;
  }

  .ScoreBoard_MobileOuter {
    margin: 0;
  }

  .ScoreBoard_MobileOuter .score_board_Content_Left {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .score_board_LeftSection {
    width: 50%;
  }

  .score_board_Content_Left_Top_head_Score1 {
    width: 100%;
    display: flex;
    font-size: 14px;
  }

  .score_board_Content_Left_Top_head_Score1 div {
    width: auto;
    margin-right: 5px;
  }

  .score_board_Content_Left1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .score_board_Main_Content .score_board_Content_Left {
    width: 100%;
  }

  .score_board_Main_Content_middle {
    width: 100%;
    display: flex;
    margin-top: -18px;
    justify-content: space-between;
  }

  .score_board_Main_Content_middle_left,
  .score_board_Main_Content_middle_right {
    width: 100%;
  }

  .score_board_Content_Left_Top_head_Score2 {
    width: 100%;
    padding-left: 0;
    font-size: 14px;
  }

  .score_board_Main_Content .score_board_Content_Right {
    width: 100%;
    float: left;
    text-align: right;
  }

  .ScoreBoard_match2 {
    text-align: right;
    display: flex;
    justify-content: flex-end;
  }

  .score_board_Main {
    background-position-y: 0;
    margin: 0;
    width: calc(100%);
  }

  .score_board_Content_Right .score_board_Content_Right_Days {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .score_board_Content_Right .score_board_Content_Right_Balls_inner>div {
    font-size: 12px;
    width: 27px;
    height: 27px;
    line-height: 27px;
  }
}

@media only screen and (max-width: 400px) {
  .score_board_Content_Left_Top_head_Score1 {
    font-size: 13px;
  }

  .score_board_Content_Left_Top_head_Score2 {
    font-size: 14px;
  }

  .score_board_Content_Right .score_board_Content_Right_Days {
    font-size: 14px;
    margin-top: -3px;
  }

  .score_board_Content_Right .score_board_Content_Right_Balls_inner>div {
    width: 22px;
    height: 22px;
    line-height: 22px;
  }

  .score_board_Main_Content_middle_right {
    width: calc(100% + 10%);
  }

  .score_board_Main_Content_middle_left {
    width: 90%;
  }

  .score_board_Content_Right .score_board_Content_Right_Balls_inner>div {
    font-size: 12px;
  }
}

.ScoreBalls {
  background: #08c;
}

.ScoreFour {
  background: #087f23
}

.ScoreSix {
  background: #883997
}

.batsmen-details {
  margin-top: 17px;
}

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

.back {
  background-color: #13a0fc !important;
}

.login-page {
  background-image: linear-gradient(#0091ac99, #2c3e501f);
}

.fa-home:before {
  content: "\f015";
}

.icon-img {
  width: 28px !important;
  margin-left: -6px;
}

.bet_table_row_item.inplay_bg {
  background-color: #fff2b1 !important;
}

@media screen and (max-width: 575px) {
  .ant-card {
    margin-bottom: 20px;
  }
}

.ant-card {
  margin-bottom: 32px;
  border-radius: 0 !important;
}

.gx-position-relative {
  position: relative !important;
}

.ant-card-bordered {
  border: 1px solid #e8e8e8;
}

.ant-card-hoverable {
  cursor: pointer;
  transition: box-shadow .3s, border-color .3s;
}

.ant-card {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #545454;
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.3;
  list-style: none;
  font-feature-settings: "tnum", "tnum";
  position: relative;
  background: #fff;
  border-radius: 6px;
}


.ant-row {
  margin-left: -16px;
  margin-right: -16px;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ant-row-center {
  justify-content: center;
}

.ant-row {
  flex-flow: row wrap;
  min-width: 0;
}

.ant-row {
  margin-left: -16px;
  margin-right: -16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ant-row-center {
  justify-content: center;
}

.ant-row {
  display: flex;
      gap: 10px;
  flex-flow: row wrap;
}

.ant-col-10 img{
  width: 100% !important;
}
.ant-col-10 {
    display: block;
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
}

.ant-card-bordered .ant-card-cover {
    margin-top: -1px;
    margin-right: -1px;
    margin-left: -1px;
}
.nav-link {
    color: #000000 !important;
}
.btn.btn-primary {
    background: linear-gradient(90.01deg, #12b7d6 .01%, #0091ac 99.99%) !important;
    border: 1px solid;
}

.match_details_table .nav-tabs .nav-link
{
      color: #fff !important;
}
.market_body_item .ball
{
    background: transparent !important;
    border-radius: 0 !important;
        padding: 0px !important;
            border: 0px solid #1e2833;
    box-shadow: none !important;
}
.ball.running-table::after {
    content: attr(data-title);
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    top: 0;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    font-size: 15px;
    color: #ff1c1c;
}
.placebet_loader {
    position: absolute;
    height: 100%;
    background: #343a40ad;
    width: 100%;
    top: 0 !important;
    bottom: 0 !important;
    border-radius: 0px;
    display: flex;
        left: 0;
    align-items: center;
        gap: 11px;
    flex-direction: column;
    color: white;
    justify-content: center;
}

.modal-dialog .btn.btn-primary.btn-block
{
      background: #019137 !important;
}

.loader_new {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: #0091ac;
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    to {
        transform: rotate(1turn)
    }
}
.ht_211
{
  height: 256px !important;
}


.Diamond_scoreboard .scorecard:before {
    content: "";
    background-color: #0000008c;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
      border-radius: 0px !important;
    height: 100%;
    z-index: -1;
}
.Diamond_scoreboard{
   border-radius: 8px !important;
   width: 100%;
}
.Diamond_scoreboard .scorecard {
    width: 100%;
    padding: 7px !important;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    z-index: 1;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    background-color: #616161;
    border-radius: 0px !important;
}

.Diamond_scoreboard .ball-runs {
    display: inline-block;
    height: 25px;
    line-height: 25px;
    width: 25px;
    border-radius: 50%;
    font-size: var(--font-small);
    background-color: #08c;
    color: #fff;
    text-align: center;
    margin-right: 4px;
}
.Diamond_scoreboard .ball-runs.four {
  background-color: #087f23 !important
}

.Diamond_scoreboard .ball-runs.six {
  background-color: #883997 !important
}

.Diamond_scoreboard .ball-runs.wicket {
  background-color: red !important
}