: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: #4083f8;
  --laycolor: #d468a2;
  --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;
  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: 11px
  }
}

.content {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px
}

.section {
  padding: 5px
}

.card {
  background: var(--cardbg);
  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: 100px;
  margin-bottom: -15px;
  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;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  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 {
  position: absolute;
  top: 0;
  left: 0;
  height: 25%;
  z-index: 2;
  display: flex;
  width: 100%
}

.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 {
  background: var(--bmcolor)
}

.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: 4px;
  overflow: hidden;
}

.w-50 {
  width: 50% !important;
  font-size: 14px;
  font-weight: 700;
      display: flex;
    align-items: center;
    justify-content: center;
  border-radius: 3px;
}

.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: #d9d51a;
    color: black !important;
}

.content-table tbody tr:nth-child(even) td {
  background-color: #f1f5f9;
}

/* Even rows */
.content-table tbody tr:nth-child(odd) td {
    background-color: #cacad3;
}

.placeholder::placeholder
{
  color : white !important;
}

.bottom-sheet {
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(.25,.8,.25,1);
}

.bottom-sheet.show {
  transform: translateY(0);
}