:root {
  --bg: #0f172a;
  --box-bg: #1e293b;
  --text: #ffffff;
  --icon: #94a3b8;
  --input-bg: #383b41;
  --input-border: #cbd5e1;
  --login-btn: #fbbf24;
  --demo-btn: #fde047;
  --note: #facc15;
  --topbarbg: #313e4e;
  --cardbg: #3f454e;
  --bmcolor: #62636e45;
  --backcolor: #4083f8;
  --laycolor: #d468a2;
  --betbtnbg: #4d504f;
  --footer: #393a45;
  --lightrow: #4d4d4f
}

[data-theme=light] {
  --bg: #f1f5f9;
  --box-bg: #ffffff;
  --text: #0f172a;
  --icon: #475569;
  --login-btn: #fbbf24;
  --demo-btn: #facc15;
  --note: #d97706;
  --input-bg: #ffffff;
  --input-border: #94a3b8;
  --topbarbg: #d9d51a;
  --cardbg: #e1e1e1;
  --bmcolor: #e8e9f2;
  --backcolor: #72bbef;
  --laycolor: #ff7390ab;
  --betbtnbg: #4d504f;
  --footer: #c8c9cb;
  --lightrow: #cacad3
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  justify-content: center;
  /* height: 100vh; */
  box-sizing: border-box;
  color: var(--text);
  transition: background .3s ease, color .3s ease
}

a {
  text-decoration: none;
  color: #fff
}

.theme-toggle {
  position: fixed;
  top: 17px;
  right: 40px;
  background: var(--box-bg);
  border: none;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.login-container {
  display: flex;
  height: 80vh;
  align-items: center;
  justify-self: center;
  padding: 20px
}

.login-box {
  width: 100%;
  max-width: 100% !important;
  background: var(--box-bg);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px #cab1b14d;
  transition: background .3s ease
}

.title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  /* background:#86918d5e; */
  border-radius: 12px;
  margin-bottom: 10px
}

.input-field {
  margin-bottom: 18px;
  position: relative
}

.input-field span {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--icon)
}

.input-field input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border: 1px solid #383b41;
  outline: none;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  background: var(--input-bg);
  color: var(--text);
  transition: background .3s ease, color .3s ease
}

button {
  width: 100%;
  padding: 14px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: 700;
  transition: .3s
}

.login-btn {
  background: var(--login-btn);
  color: #000;
  transition: background .3s ease
}

.demo-btn {
  background: var(--demo-btn);
  color: #000;
  transition: background .3s ease
}

.note {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #11110f;
  background: #fdda2d;
  font-size: 18px;
  font-weight: 700;
  padding: 5px
}

.ruleheader {
  background: #3a3a3a;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 20px;
  font-weight: 700
}

.rulecontent-wrapper {
  background: var(--bg);
  color: var(--text);
  margin: 10px;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px #00000026;
  height: calc(100vh - 160px);
  overflow-y: auto
}

.rulecontent-wrapper ol {
  margin: 0;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.7
}

.rulefooter {
  background: #3a3a3a;
  color: #fff;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 700;
  position: fixed;
  bottom: 0;
  width: 100%;
  cursor: pointer
}

@media(min-width:768px) {
  .ruleheader {
    font-size: 24px;
    padding: 20px
  }

  .rulecontent-wrapper {
    max-width: 1400px;
    margin: 20px auto;
    padding: 24px;
    height: auto
  }

  .rulecontent-wrapper ol {
    font-size: 18px;
    line-height: 1.8
  }

  .rulefooter {
    font-size: 22px;
    padding: 20px
  }
}

.marquee-container {
  width: 90%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  color: var(--text);
  font-size: 12px;
  padding: 3px
}

.marquee-content {
  display: inline-block;
  animation: scroll-left 15s linear infinite
}

@keyframes scroll-left {
  0% {
    transform: translate(50%)
  }

  to {
    transform: translate(-100%)
  }
}

.top-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--topbarbg);
  color: var(--text);
  padding: 10px 100px;
  display: grid;
  grid-template-columns: 60px 1fr 120px;
  align-items: center;
  column-gap: 10px;
  box-shadow: 0 2px 4px #00000026
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: contain
}

.user-details {
  font-size: 12px;
  line-height: 1.2
}

.logout-icon {
  font-size: 1.4rem;
  text-align: right;
  cursor: pointer
}

@media(max-width:768px) {
  .top-bar {
    padding: 5px
  }

  .theme-toggle {
    top: 7px
  }
}

.content {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px
}

.section {
  padding: 5px
}

.card {
  /* background: var(--cardbg); */
  background-color: transparent;
  color: var(--text);
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0 1px 3px #0000001a; */
  text-align: center;
  animation: fadeIn .5s ease
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  color: #fff;
  padding: 5px
}

@media(min-width:900px) {

  .content,
  .section {
    padding: 15px 200px
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr))
  }
}

.homelogo {
    height: 74px;
    margin-bottom: -23px;
    object-fit: contain;
    width: auto;
}

.casinologo {
  height: 95px;
  max-width: 100%;
  border-radius: 10px
}

.ipl-card {
  background: linear-gradient(135deg, #1e2a78, indigo);
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 20px #00000073;
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: fadeIn .5s ease
}

.ipl-card:before {
  content: "";
  position: absolute;
  top: -70px;
  left: -70px;
  width: 155px;
  height: 155px;
  background: #ffffff0f;
  border-radius: 50%
}

.ipl-card:after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  background: #ffffff0d;
  border-radius: 50%
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px
}

.team {
  text-align: center
}

.team-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px
}

.vs-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fbbf24
}

.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: green;
  padding: 6px 12px;
  border-radius: 25px;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  box-shadow: 0 0 10px #105a1c99
}

.pulse-circle {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
  animation: heartbeat 1.2s infinite
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.8);
    opacity: .6
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

.match-info {
  background: #ffffff1f;
  padding: 8px;
  border-radius: 12px;
  margin-top: 8px
}

.match-time {
  font-size: 1rem;
  font-weight: 600;
  color: #fcd34d
}

.venue {
  font-size: .85rem;
  margin-top: 6px
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 245px;
  -webkit-overflow-scrolling: touch
}

.iframe-container-full {
  position: relative;
  width: 100%;
  height: 460px;
  -webkit-overflow-scrolling: touch
}

.iframe-container-full iframe,
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  -webkit-overflow-scrolling: touch
}

.gridpar {
  display: grid;
      border: 2px solid #e8e9f2;
    padding: 1px;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  width: 100%
}

.gridpar>div {
  border-radius: 3px
}

.row-12 {
  grid-column: span 12 / span 12
}

.row-8 {
  grid-column: span 8 / span 8
}

.row-6 {
  grid-column: span 6 / span 6
}

.row-4 {
  grid-column: span 4 / span 4
}

.row-3 {
  grid-column: span 3 / span 3
}

.row-2 {
  grid-column: span 2 / span 2
}

.hg50 {
  height: 50px
}

.hg {
  height: 35px
}

.overlay {
    top: 0;
    left: 0;
    height: 25%;
    z-index: 2;
    display: flex;
    width: 100%;
    align-items: end;
    justify-content: end;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.if-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #000c43
}

.fl {
  position: inherit;
  right: 10px;
  font-size: 20px;
  color: #fff
}

.mfc {
  font-size: 14px;
  overflow: hidden;
  font-weight: 700
}

.backcolor {
  background: var(--backcolor)
}

.laycolor {
  background: var(--laycolor)
}

.bmcolor {
      padding-left: 5px;
  background: white;
}

.won {
  color: #31d8ad;
  font-weight: 700
}

.loss {
  color: #ff795b;
  font-weight: 700
}

.fancymessage {
  font-size: 10px;
  color: var(--text);
  text-align: right
}

.ladder {
  float: right;
  position: relative;
  bottom: -11px;
  right: 8px;
  color: #0da266
}

.center {
  text-align: center
}

.betfooter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--footer);
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 1000;
  height: 32px
}

.betbutton {
  display: inline-block;
  width: 30%;
  border: 1px solid #ffffff36;
  padding: 9px;
  border-radius: 5px
}

.betbuttonbg {
  background-color: var(--betbtnbg)
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 24px;
  cursor: pointer
}

.betfootershow {
  height: 300px
}

.hide {
  display: none
}

.content-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: .9em;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px #00000026;
  text-align: left;
  width: 100%;
  color: var(--text)
}

.content-table thead tr {
  background-color: var(--topbarbg);
  text-align: left;
  font-weight: 700
}

.content-table th,
.content-table td {
  padding: 12px 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.tcl {
  overflow-x: scroll;
  height: 100%;
  scrollbar-width: none
}

.tcl .content-table th,
.content-table td {
  padding: 12px 15px;
  max-width: 200px
}

.content-table th {
  position: -webkit-sticky;
  position: sticky;
  top: 0
}

table {
  border-collapse: collapse
}

table,
th,
td {
  border: 1.5px solid #e6e6e6
}

.content-table tbody tr:nth-of-type(2n) {
  background-color: var(--lightrow)
}

.content-table tbody tr:last-of-type {
  border-bottom: 2px solid #152334
}

.content-table tbody tr.active-row {
  font-weight: 700;
  color: #009879
}

.tle {
  white-space: normal !important;
  text-overflow: unset !important;
  min-width: 125px
}

.backdrop {
  position: fixed;
  inset: 0;
  background: #00000080;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: 900
}

.backdrop.show {
  opacity: 1;
  pointer-events: auto
}

.bottom-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #18181861 !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, .2);
  max-height: 85vh;
  overflow: hidden;
  z-index: 10;
  overflow: auto;
  transform: translateY(100%);
  will-change: transform;
  transition: transform .32s cubic-bezier(.25, .8, .25, 1)
}

.bottom-sheet.show {
  transform: translateY(0)
}

.sheet-header {
  padding: 12px;
  display: flex;
  justify-content: right !important;
  font-size: 20px !important
}

h3 {
  margin-top: 1px
}

.handle {
  width: 50px;
  height: 5px;
  background: #fff6;
  border-radius: 10px
}

.sheet-content {
  padding: 0 20px 20px;
  color: #fff;
  font-family: Poppins, sans-serif
}

.mrow-2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  width: 100%
}

.mrow-2 input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  background: #ffffff1f;
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px
}

.button-grid button {
  padding: 14px 0;
  border-radius: 10px;
  background: #ffffff1f;
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer
}

.mrow-5 {
  display: flex;
  gap: 15px;
  margin-top: 25px
}

.cancel-btn {
  flex: 1;
  padding: 14px 0;
  border-radius: 10px;
  background: #ff50502e;
  border: 1px solid rgba(255, 80, 80, .3);
  color: #ff7070;
  cursor: pointer
}

.submit-btn {
  flex: 1;
  padding: 14px 0;
  border-radius: 10px;
  background: #00c8ff2e;
  border: 1px solid rgba(0, 200, 255, .3);
  color: #57d8ff;
  cursor: pointer
}

.open-btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  padding: 12px 24px;
  border: none;
  background: #ffffff0f;
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  color: var(--text);
  cursor: pointer;
  font-size: 16px
}

.bettable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px
}

.bettable th,
.bettable td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.bettable th,
.bettable td {
  color: var(--text)
}

.pagination-wrapper {
  width: 100%;
  display: flex;
  justify-content: right
}

.pagination {
  display: flex;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  flex-wrap: wrap
}

.pagination button {
  padding: 10px 16px;
  background: var(--lightrow);
  border-radius: 8px;
  cursor: pointer;
  transition: .25s;
  font-size: 16px;
  min-width: 48px;
  color: var(--text)
}

.pagination button:hover {
  background: #4c8dff;
  color: #fff;
  border-color: #4c8dff
}

.pagination .active {
  background: #4c8dff;
  color: #fff;
  border-color: #4c8dff;
  font-weight: 700
}

.pagination .disabled {
  opacity: .5;
  cursor: not-allowed
}

.pagination .ellipsis {
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 8px
}

.pagination .ellipsis:hover {
  background: #4c8dff;
  color: #fff;
  border-color: #4c8dff
}

@media(max-width:480px) {
  .pagination {
    padding: 10px;
    gap: 6px
  }

  .pagination button {
    padding: 8px 10px;
    font-size: 14px;
    min-width: 30px
  }
}

@media(max-width:360px) {
  .pagination button {
    padding: 6px 8px;
    font-size: 13px;
    min-width: 30px
  }
}

.lh {
  line-height: 36px;
  text-align: center;
  border-radius: 3px
}

.vam {
  vertical-align: middle;
  height: 20px
}

.wn {
  display: inline-block;
  background: #2b31a4;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 5px;
  padding: 6px
}

.roundid {
  position: inherit;
  right: 10px;
  font-size: 14px;
  font-weight: 700
}

.counter {
  position: inherit;
  bottom: 10px;
  right: 10px;
  font-size: 25px
}

.abparent {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
  height: 110px;
  zoom: .8;
  grid-auto-flow: column
}

.abfc {
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 2;
  position: relative
}

.abandar {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 1;
  position: relative;
  overflow: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.abandar::-webkit-scrollbar {
  display: none
}

.abbahar {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 2;
  grid-row-start: 3;
  position: relative;
  overflow: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none
}

.abbahar::-webkit-scrollbar {
  display: none
}

.pcard {
  width: 55px;
  height: 90px;
  border-radius: 3px;
  background: #fff;
  color: #000;
  box-shadow: 0 4px 12px #00000040;
  position: relative;
  overflow: hidden;
  margin: 6px;
  font-family: Segoe UI, sans-serif
}

.pcard.locked {
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center
}

.corner {
  position: absolute;
  font-weight: 700;
  line-height: 1.1
}

.corner.top {
  top: 5%;
  left: 5%;
  font-size: 18px
}

.corner.bottom {
  bottom: 5%;
  right: 5%;
  transform: rotate(180deg);
  font-size: 18px
}

.center-suit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  opacity: .4
}

.heart,
.diamond {
  color: #d00000
}

.club,
.spade {
  color: #000
}

.css-lock {
  width: 40%;
  height: 50%;
  position: relative
}

.css-lock-body {
  width: 100%;
  height: 40%;
  background: #fff;
  border-radius: 10%;
  position: absolute;
  bottom: 0
}

.css-lock-shackle {
  width: 60%;
  height: 24%;
  border: 3px solid #fff;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translate(-50%)
}

.center-suits-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 5%;
  justify-items: center;
  align-items: center;
  opacity: .7
}

.cp {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600
}

.input-groupcp {
  margin-bottom: 18px
}

.cplabel {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500
}

.cpinput {
  width: 100%;
  padding: 12px;
  border: 1px solid #dddddd47;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  box-sizing: border-box;
  background-color: var(--lightrow);
  color: var(--text)
}

.cpbutton {
  width: 100%;
  padding: 13px;
  background: #5ab201;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  transition: .3s
}

.mtcontainer {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 6px 25px #0000001a;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  height: 65vh;
  margin-top: 15px
}

.tabs {
  display: flex;
  background: #eef1f7;
  border-bottom: 1px solid #5c5c5c;
  position: sticky;
  top: 0;
  z-index: 10
}

.tab {
  flex: 1;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #555;
  transition: .3s;
  -webkit-user-select: none;
  user-select: none
}

.tab.active {
  background: #3b82f6;
  color: #fff
}

.content-wrapper {
  overflow-y: auto;
  padding: 20px;
  flex: 1
}

.tab-content {
  display: none;
  animation: fadeIn .4s ease
}

.tab-content.active {
  display: block
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

.mtbutton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px
}

.mtbutton {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #3b82f6;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s
}

.mtbutton:hover {
  background: #2575fc
}

@media(max-width:768px) {
  .mtbutton {
    font-size: 16px;
    padding: 6px
  }
}

.text-success {
  color: #31d8ad
}

.text-danger {
  color: #ff795b
}

.back-main-menu a {
  text-decoration: none;
  border: 1px solid #344F1F;
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 13px;
  color: #fff !important;
  font-weight: 700;
  background: #344f1f;
  padding: 8px 10px;
  display: block;
  text-align: center
}

#pause {
  display: block;
  background: rgba(0, 0, 0, .66) no-repeat 0 0;
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000000;
}



@media screen and (max-width: 767px) {
  #spinner {
    width: 10vw;
    height: 10vw;
  }
}

#spinner {
  animation: spin 1s infinite linear;
  background: transparent;
  border: .75vw solid #fff;
  border-radius: 100%;
  border-top-color: #df691a;
  width: 36px;
  height: 36px;
  opacity: 1;
  padding: 0;
  position: absolute;
  z-index: 999;
}

.logo-text {
  text-transform: uppercase;
  font-weight: bold;
  white-space: nowrap;
  color: #0336ff;
}

.title .logo-text {
  font-size: 50px !important;
  color: #facc15 !important;
  margin-bottom: 25px !important;
}

.user-details {
  font-size: 12px;
  line-height: 1.2;
  /* margin-left: 25px; */
}


.flex-item {
  display: flex;
}

.d-flex {
  display: flex;
}

.w-67 {
  width: 67%;
}

.w-33 {
  width: 33% !important;
  gap: 2px;
  overflow: hidden;
}

.w-50 {
  width: 50% !important;
  font-size: 14px;
  font-weight: 700;
      display: flex;
    align-items: center;
    justify-content: center;
  border-radius: 0px;
}

.text-center
{
  text-align: center;
}
.plus_text {
    color: #31d8ad;
    font-weight: 700;
}
.minus_text {
    color: red;
    font-size: 14px;
    font-weight: 700;
}

.content-table th {
    background: #052a51;
    color: #fff !important;
}

.content-table tbody tr:nth-child(even) {
  background-color: #f1f5f9;
}



.placeholder::placeholder,
.content-table th p
{
  color : white !important;
}

.bottom-sheet {
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(.25,.8,.25,1);
}

.bottom-sheet.show {
  transform: translateY(0);
}
.text-red
{
  color : red !important;
}
.won {
    color: #2aa082 !important;
    font-weight: 700;
}
.ant-list-pagination {
    margin-top: 24px;
    text-align: right
}

.ant-list-pagination .ant-pagination-options {
    text-align: left
}

.ant-list-more {
    margin-top: 12px;
    text-align: center
}

.ant-list-more button {
    padding-right: 32px;
    padding-left: 32px
}

.ant-list-spin {
    min-height: 40px;
    text-align: center
}

.ant-list-empty-text {
    padding: 16px;
    color: rgba(0, 0, 0, .25);
    font-size: 14px;
    text-align: center
}

.ant-list-items {
    margin: 0;
    padding: 0;
    list-style: none
}

.ant-pagination {
    box-sizing: border-box;
    color: #545454;
    font-size: 14px;
    margin-left: 10px;
    font-variant: tabular-nums;
    line-height: 1.3;
    font-feature-settings: "tnum", "tnum";
    display: flex;
    align-items: center;
    margin-top: 10px !important;
    gap: 10px;
}

.ant-row>[class*=ant-col-] {
    margin: 0 -.3px;
}

.ant-row>[class*=ant-col-] {
    margin: 0 -0.3px;
}

.ant-pagination-jump-next,
.ant-pagination-jump-prev,
.ant-pagination-next,
.ant-pagination-prev {
    line-height: 30px;
}

.gx-fs-sm {
    font-size: 12px;
    line-height: 1.5;
}

.gx-pl-2,
.gx-px-2 {
    padding-left: .5rem !important;
}

.gx-pr-2,
.gx-px-2 {
    padding-right: .5rem !important;
}

.gx-border {
    border: 1px solid #e8e8e8;
}

.gx-border-info {
    border-color: #002d5b !important;
}

.gx-bg-white {
    background-color: #fff !important;
}

.ant-pagination-item-active {
    font-weight: 500;
    color: #fff;
    border-color: #002d5b !important;
    background: #002d5b !important;
}

.ant-pagination-item {
    min-width: 32px;
    font-family: "Arial", sans-serif;
    text-align: center;
    list-style: none;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    outline: 0;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ant-pagination-disabled,
.ant-pagination-disabled:hover {
    cursor: not-allowed;
}

.ant-pagination-next,
.ant-pagination-prev {
    font-family: Arial, Helvetica, sans-serif;
    outline: 0;
}

.ant-pagination-jump-next,
.ant-pagination-jump-prev,
.ant-pagination-next,
.ant-pagination-prev {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    color: #545454;
    font-family: "Arial", sans-serif;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
    list-style: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all .3s;
}

.btn-success {
    color: #fff;
    background-color: #002d5b;
    border-color: #002d5b;
}

.ant-row .col-lg-3 {
    margin-bottom: 5px !important;
}
.card
{
  border: none !important;
}

a:hover {
    color: black;
}
html[data-theme="dark"] a:hover {
    color: black;
}


.content-table tbody tr:nth-of-type(2n) {
    background-color: var(--lightrow);
}

/* Even rows */
html[data-theme="dark"] .content-table tbody tr:nth-child(odd) {
  background-color: #cacad3b0;
}

iframe.ht_270px
{
  height: 270px !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;
}



.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: 25px 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
}

@media screen and (max-width: 575px) {
  .ant-card {
    margin-bottom: 20px;
  }
}

.iframe-full
{
  height: 250px !important;
}

.iframe-half
{
  overflow: hidden;
  height: 95px !important;
}
.casino-page ul.nav-tabs.nav.color-black .nav-link {
    color: black !important;
    font-weight: 500 !important;
}
.casino-page ul.nav-tabs.nav.color-black .active.nav-link {
    color: white !important;
    font-weight: 800 !important;
    background-color: #002D5B !important;
    border-radius: 3px;
}
.old-matches-list {
    & .TeamName {
        a {
            padding: 5px 0px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase !important;
        }
    }
}


.user-details
{
  color: white;
}
.timer-text {
  font-size: 80px;     /* large size */
  font-weight: 800;    /* bold */
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
}

.login-btn,
.demo-btn {
    background: #052a51 !important;
    color: #fff !important;
    transition: background .3s ease;
}

.w-67 {
    width: 67%;
    display: flex;
    align-items: center;
}

.gridpar
{
      background: #e8e9f2;
}
.mybook
{
    background: #052a51;
    color: white;
    padding: 2px 9px;
    margin-top: -2px;
    width: 102%;
    margin-left: -3px;
    border-radius: 0px !important;
}
.fancybook
{
    background: #052a51;
    color: white;
    padding: 1px 9px;
    margin-top: -2px;
    width: 101%;
    margin-left: -3px;
    border-radius: 0px !important;
    margin-top: 0px;
}

.hg50 {
    height: 45px;
}
.mfc
{
      line-height: 11px;
}

.w-50
{
      line-height: 1px !important;
    border-radius: 0px;
    display: block;
}
.lh-50
{
  line-height: 40px !important;
}
.mybook-1
{
      height: 35px;
          border-radius: 0px !important;
    background: #052a51;
    color: white;
    font-weight: 500;
}