* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family:'Roboto';
  list-style: none;
  touch-action: manipulation;
}
:root {
  --primary-color: #f4b400;
  /* --primary-color: #7ED4AD; */
  --bblue: #85c2f1;
  --lpink:#f8afba;
  --r: #e43d37;
  --g: #008014;
}
body, html {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}
body {
  background-color: #ddd;
}
.header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.wrapper {
  flex:1;
  display: flex;
  overflow-y: auto;
  background-color: #f0f0f0;
  position: relative;
}
.content {
  flex:1;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap:5px;
}
.footer {
  display: none;
  background-color: #222;
  height: 60px;
}

.aside-box {
  background-color: #f9f9f9;
}
.aside-heading {
  font-size:16px;
  font-weight: 500;
  padding: 10px 13px;
  border-bottom: 1px solid #DDD;
  background-color: #222;
  color:#FFF;
  position: relative;
}
.aside-bets-content {
}
.aside-menu {
  width: 60%;
  max-width: 250px;
  background-color: #111;
  padding: 7px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 90;
}
.copyright {
  padding: 10px;
  color:#666;
  font-size:12px;
  margin-top: auto;
  display: flex;
}
.sahee {
  width: 60%;
  max-width: 375px;
  padding: 5px;
  height: 100%;
  overflow-y: auto;
  position: relative;
  display: flex;
  gap:5px;
  flex-direction: column;
}
header {
  background-color: var(--primary-color);
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  padding-right: 10px;
}
.burger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:5px;
  cursor: pointer;
  box-shadow: 0px 0px 10px rgba(0,0,0,.2);
  padding: 10px;
  background-color: rgba(255,255,255,.2);
  border-radius: 3px;
}


.burger-menu.opened {
  background-color: #222;
}
.burger-menu.opened span {
  background-color: #FFF;
}
.burger-menu >span {
  height: 4px;
  width: 28px;
  background-color: #222;
}
.logo {
  position: relative;
}
.logo a {
  color:inherit;
  font-family: "Righteous", sans-serif;
  font-size:26px;
  text-decoration: none;
}
.menu-logo {
  height: 100%;
  display: flex;
  align-items: center;
  gap:10px;
}
.user-area {
  display: flex;
}
.user-login {
  background-color: #222;
  font-size:14px;
  color:#FFF;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  font-weight: bold;
}
.user-login:hover {
  color:var(--primary-color);
}
.header nav {
  display: flex;
  background-color: #222;
  overflow-x: auto;
  align-items: center;
}
.header nav ul {
  display: flex;
  align-items: center;
}
.header nav ul li a {
  color:#FFF;
  display: flex;
  height: 50px;
  align-items: center;
  font-size:16px;
  font-weight: bold;
  padding: 0px 15px;
  text-decoration: none;
  white-space: nowrap;
  gap:5px;
}
.header nav ul li a:hover {
  color:var(--primary-color);
}

*::-webkit-scrollbar-track {
  cursor:pointer;
  background-color:#FFF;
}
*::-webkit-scrollbar{
  width:5px;
  height:5px;
  background-color:var(--primary-color);
  cursor:pointer
}
*::-webkit-scrollbar-thumb{
  cursor:pointer;
  background-color:var(--primary-color);
}

.footer-link {
  display: flex;
  height: 100%;
}
.footer-link a {
  flex:1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* gap:5px; */
  text-decoration: none;
  position: relative;
}
.footer-link a i {
  color:#999;
  font-size:24px;
}
.footer-link a span {
  color:#FFF;
  font-size:10px;
  text-decoration: none;
  font-weight: 500;
}
.footer-link a font {
  position: absolute;
  background-color: red;
  color:#FFF;
  border-radius: 50%;
  top:-13px;
  left:50%;
  margin-left:-10px;
  font-size:11px;
  width: 20px;
  height: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.footer-link a.inslip i {
  color:#FFF;
}


.aside-search {
  width: 100%;
  position: relative;
}
.aside-search input {
  width: 100%;
  background-color: #111;
  border: 2px solid #444;
  border-radius: 1px;
  font-size:16px;
  font-weight: bold;
  color:#FFF;
  padding: 7px;
  outline: none;
}

.aside-search input:focus {
  background-color: #f0f0f0;
  color:#111;
  border-color:var(--primary-color);
}

.aside-search-result {
  position: absolute;
  left:0px;
  width: 100%;
  background-color: #FFF;
  z-index: 500;
}
.search-error {
  padding: 10px;
  font-size:13px;
  color:#222;
}
.search-result-line {
}
.search-result-line a {
  font-size:13px;
  color:#222;
  display: flex;
  justify-content: center;
  padding: 7px;
  border-bottom: 1px solid #DDD;
  font-weight: 500;
  text-decoration: none;
  flex-direction: column;
}
.search-result-line a span {
  font-size:10px;
  color:#777;
  font-weight: normal;
}

.search-result-line a span font {
  background-color: red;
  color:#FFF;
  padding: 1px 5px;
  border-radius: 2px;
}
.live-minte{
  color:green;
}
.matches-box {
  width: 100%;
}
.live-minte.fn {
  color:#666;
}
.matches-list .live-minte {
  text-align: right;
}

.matches-box-title {
  padding: 10px;
  background-color: #333;
  color:#999;
  font-weight: bold;
  font-size:14px;
  display: flex;
  align-items: center;
  gap:5px;
  white-space: nowrap;
  overflow-x: auto;
}
.matches-box-title i {
  color:var(--primary-color);
  font-size:13px;
}
.matches-box-title img {
  max-width: 30px;
}
.matches-box-title a {
  color:#ccc;
}

.match-box {
  display: flex;
  min-height: 40px;
  border-bottom: 1px solid #DDD;
  background-color: #FFF;
}
.match-box:hover {
  background-color: #f0f0f0;
}
.match-info {
  flex:1;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: space-between;
}
.match-time {
  font-size:11px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 100%;
  gap:5px;
  padding-right: 10px;
}

.match-time span:last-child {
  font-weight: 500;
}

.match-teams-name {
  font-size:14px;
  font-weight: bold;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
}
.match-teams-name span {
  font-weight: normal;
  font-size:10px;
  color:#777;
}
.match-teams-name a{
  color:inherit;
  text-decoration: none;
}
.match-teams-name span.line-score {
  font-size:14px;
  font-weight: bold;
  color:green;
  letter-spacing: 1px;
}

.matched {
  font-size:12px;
  display: flex;
  min-height: 100%;
  padding: 0px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color:#666;
  font-weight: bold;
  width: 80px;
}
.matched >span:first-child {
  font-size:10px;
  font-weight: normal;
}
.match-odds {
  flex:1;
  min-height: 100%;
  max-width: 400px;
}
.inline-match-odds {
  display: flex;
  min-height: 100%;
  gap:5px;
}
.inline-match-odds >div {
  display: flex;
  min-height: 100%;
  padding: 2px;
  gap:2px;
  flex:1;
}
.inline-match-odds >div >a {
  flex:1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color:#222;
  padding: 5px 0px;
  font-weight: bold;
  font-size:15px;
  cursor: pointer;
  position: relative;
}
.oddsb {
  background-color: var(--bblue);
}
.oddsl {
  background-color: var(--lpink);
}

.inline-match-odds >div >a >i {
  opacity:0.5;
}

.inline-match-odds >div >a:hover {
  box-shadow: 0px 0px 100px rgba(255,255,255,.3) inset;
}
.inline-match-odds >div >a.added, .inline-match-odds >div >a.added:hover {
  background-color: #111;
  color:#FFF;
  position: relative;
  box-shadow: none;
}
/* .inline-match-odds >div >a.added::before {
  content:'';
  position: absolute;
  border:6px solid transparent;
  border-top-color:#111;
  left:50%;
  margin-left:-3px;
  bottom:-12px;
} */
.inline-match-odds >div >a >span:last-child {
  font-size:10px;
  font-weight: normal;
}
.oddsl span, .oddsb span {
  font-family: Arial;
}



.aside-link {
  color:#DDD;
  margin-top:7px;
}
.aside-title {
  font-weight: 500;
  font-size:16px;
  padding: 10px;
}
.aside-title.otitle {
  color:var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aside-title.otitle a {
  font-size:12px;
  color:red;
  display: none;
  text-decoration: none;
}

.aside-inlink {
  padding: 0px 10px;
  width: 100%;
}
.aside-inlink >li {
  width: 100%;
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-direction:column;
}
.aside-inlink >li:last-child {
  border-bottom: 0px;

}
.aside-inlink >li >span {
  display: flex;
  width: 100%;
}
.aside-inlink >li >span >a {
  color:#999;
  font-size:14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  min-width: 100%;
  height: 30px;
  align-items: center;
  gap:5px;
  position: relative;
}
.aside-inlink >li >span >a >img {
  max-width: 20px;
}
.aside-inlink >li >span >a:hover {
  color:#FFF;
}
.aside-inlink >li >span >a >span {
  position: absolute;
  right:5px;
  color:#777;
  font-weight: bold;
}

.sub-leagues {
  padding: 5px 0px 10px;
  display: none;
}
.sub-leagues a {
  font-size:12px;
  font-weight: 500;
  color:#999;
  display: inherit;
  padding: 5px 0px;
  text-decoration: none;
  position: relative;
}
.sub-leagues a font {
  position: absolute;
  right:5px;
  color:var(--primary-color);
}
.sub-leagues a:hover {
  text-decoration: underline;
  color:var(--primary-color);
}
.odds-box {
  border: 1px solid #ccc;
  background-color: #FFF;
}
.odds-box-title {
  font-size:13px;
  background-color: #ddd;
  color:#222;
  font-weight: 500;
  border-bottom: 2px solid #CCC;
  display: flex;
  justify-content: space-between;
}
.odds-box-title >span:first-child {
  flex:1;
  padding: 5px 10px;
  display: flex;
}
.bl-title {
  flex:1;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl-title >span {
  flex:1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:10px;
  color:#666;
}

.selections .bl-title >span:first-child {
  justify-content: flex-end;
  padding-right: 20px;
}
.selections .bl-title >span:last-child {
  justify-content: flex-start;
  padding-left: 20px;
}

.runners {
  display: flex;
  flex-direction: column;
}
.runner {
  border-bottom: 1px solid #DDD;
  display: flex;
  align-items: center;
}
.runner:last-child {
  border-bottom: 0px;
}
.runner-title {
  flex:1;
  height: 100%;
  padding: 0px 10px;
  font-size:13px;
  font-weight: 500;
  position: relative;
}
.event-odds-content {
  display: grid;
  grid-gap: 10px;
  padding: 5px 0px;
  grid-template-columns: 1fr 1fr 1fr;
}

.left-odds-content li span a {
  /* transition: 250ms all; */
}
.left-odds-content li span a.checked {
  color:var(--primary-color);
  text-decoration: underline;
  padding-left: 15px;
  position: relative;
}
.left-odds-content li span a.checked::before {
  content:'';
  position: absolute;
  border:6px solid transparent;
  border-left-color:var(--primary-color);
  right:0px;
  transform: rotateX(45deg);
}


.inbet {
  padding: 5px;
  background-color: #f0f0f0;
  display: none;
}
.inbet.backing {
  background-color: var(--bblue);
}
.inbet.laying {
  background-color: var(--lpink);
}

.shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  background: rgb(112, 128, 144, .6);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
}
.login {
  width: 90%;
  max-width: 350px;
  background-color: #FFF;
  border-radius: 3px;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 0px 15px rgba(0,0,0,.1);
  padding: 15px;
  position: relative;
  display: none;
}
.login-close {
  position: absolute;
  right:0px;
  top:0px;
}
.login-close a {
  color:#555;
  font-size:18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.login-logo {
  font-family: "Righteous", sans-serif;
  font-size:34px;
  text-align: center;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-logo span {
  font-size:12px;
  font-weight: normal;
  color:#555;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap:7px;
}
.login-form >div {
  position: relative;
  display: flex;
  align-items: center;
}
.eye-toggle {
  position: absolute;
  padding: 15px;
  right:0px;
  cursor: pointer;
}
.putdata {
  padding: 12px;
  border: 1px solid #ddd;
  font-size:18px;
  width: 100%;
  border-radius: 3px;
  outline: none;
}
.login-button {
  display: flex;
  border: none;
  background-color: var(--primary-color);
  color:#222;
  padding: 12px;
  align-items: center;
  justify-content: center;
  font-size:16px;
  font-weight: bold;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
}
.login-button.disabled {
  background-color: #777;
  color:#ccc;
}

.curr {
  margin-right: 2px;
  font-weight: normal;
}



.le {
  color:red;
  font-size:12px;
  padding: 10px 0px 0px;
  align-items: center;
  justify-content: center;
  display: none;
}

.upayo {
  border-radius: 5px;
  display: flex;
  align-items: center;
  background-color: #222;
  padding: 3px 10px;
  margin-right: -5px;
  gap:15px;
  position: relative;
}
.upayo-menu {
  position: absolute;
  background-color: #FFF;
  border: 1px solid #DDD;
  box-shadow: 0px 0px 10px rgba(0,0,0,.1);
  top:45px;
  right:0px;
  border-radius: 5px;
  z-index: 50000;
  display: none;
  min-width: 250px;
}
.upayo-menu a {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #DDD;
  color:#222;
  text-decoration: none;
  font-size:14px;
  font-weight: 500;
}
.upayo-menu a span {
  width: 25px;
  font-size:18px;
}
.upayo-menu a:hover {
  background-color: #f0f0f0;
}
.upayo-menu a:last-child {
  border-bottom: 0px;
}
.blc {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  color:#FFF;
  align-items: flex-end;
}
.ri {
  color:#e43d37;
  display: none;
}
.bup {
  font-size:24px;
  cursor: pointer;
  color:#FFF;
}
.bup.rollin {
  animation: rolling 500ms;
}
@keyframes rolling {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }

}
.co {
  font-size:24px;
  color:#FFF;
  cursor: pointer;
}
.co:hover {
  color:#FFF;
}
.uname {
  font-weight: 500;
  color:#ccc;
}

.event-header-box {
  background-color: #222;
  padding: 14px;
  position: sticky;
  top:0px;
  z-index: 80;
}

.event-details-name {
  display: flex;
  align-items: flex-start;
  gap:10px;
}


.event-names {
  font-size:18px;
  font-weight: bold;
  color:#FFF;
  display: flex;
  flex-direction: column;
}
.event-timer {
  font-size:12px;
  font-weight: normal;
  color:#999;
  margin-top:3px;
}

.details-score {
  color:green;
}

.event-odds-content.full-width {
  display: flex;
  flex-direction: column;
}

.deteails-inline-match-odds >div a.depth {
  display: none;
  background-color: #f0f0f0;
}
.selections .deteails-inline-match-odds >div a.depth {
  display: flex;
}
.deteails-inline-match-odds >div a.depth.added {
  background-color: #111;
  color:#FFF;
}



.with-link {
  justify-content: space-between;
}
.with-link a {
  text-decoration: none;
  font-size:12px;
  font-weight: normal;
}

.with-link a i {
  font-size:10px;
}


.onthelock span {
  opacity:0.3;
}
.onthelock i {
  position: absolute;
  font-size:8px;
  top:2px;
  left:2px;
}

.coupon {
  display: flex;
  flex-direction: column;
  position: relative;
}

.cp-process {
  position: absolute;
  background-color: rgba(0,0,0,.05);
  top:0px;
  left:0px;
  right:0px;
  bottom:0px;
  z-index: 500;
  display: none;
}
.coupon-heading {
  display: flex;
  background: rgba(0,0,0,.2);
}
.coupon-heading >div {
  padding: 5px;
  font-size:12px;
  font-weight: bold;
}
.coupon-heading >div:first-child {
  width: 150px;
}
.coupon-information {
  display: flex;
  flex:1;
  padding: 5px 10px 10px;
}
.bet-information {
  display: flex;
  width: 100%;
  padding: 0px 10px;
}
.ty1 {
  background-color: var(--bblue);
}
.ty2 {
  background-color: var(--lpink);
}
.aside-bets-content {
  /* padding: 5px; */
  display: flex;
  flex-direction: column;
  /* gap:5px; */
}

.coupon-information >div {
  min-height: 100%;
  display: flex;
}

.btype {
  justify-content: center;
  font-size:14px;
  flex-direction: column;
  flex:1;
  padding: 5px 5px 0px;
  height: 40px;
}
.btype span {
  min-height: 20px;
}


.bprofit {
  flex:1;
}
.btype >span:last-child {
  font-weight: bold;
}
.btype >span:first-child {
  /* font-size:12px; */
}

.btype:last-child {
  justify-content: flex-end;
  align-items: flex-end;
}

.bodds {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px 20px;
  flex:1;
}
.cselector {
  height: 30px;
  width: 100%;
  font-weight: bold;
  border:2px solid rgba(0,0,0,.8);
  outline: none;
  padding: 0px 5px;
  font-size:16px;
  text-align: center
}

.bodds a {
  position: absolute;
  height: 100%;
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#999;
  font-size:24px;
  width: 30px;
  border:2px solid rgba(0,0,0,.8);
  z-index: 10;
}
.bodds a:first-child {
  left:2px;
}

.bodds a:last-child {
  right:2px;
}

.bodds a:hover {
  color:#222;
}

.beventname {
  padding: 10px 15px 0px;

}
.beventname a {
  font-weight: bold;
  font-size:18px;
  color:#333;
}


.bchips {
  display: grid;
  grid-template-columns: auto auto auto auto;
  flex-wrap: wrap;
  padding: 12px;
  gap:2px;
}
.bchips a {
  display: flex;
  height: 25px;
  background-color: #f9f9f9;
  text-align: center;
  justify-content: center;
  flex:1;
  color:#222;
  text-decoration: none;
  font-size:12px;
  align-items: center;
  font-weight: bold;
}
.bchips a:hover {
  opacity:0.8;
}
.bbuttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 12px 10px;
}

.bbuttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap:5px;
  padding: 10px 15px;
  text-decoration: none;
  font-size:14px;
  font-weight: bold;
}
.bbuttons a.bcancel {
  background-color: #e43d37;
  color:#FFF;
}
.bbuttons a.bsubmit {
  background-color: #008014;
  color:#FFF;
  position: relative;
}
.bbuttons a.bsubmit-process {
  width: 100%;
  background-color: #333;
  justify-content: center;
  position: relative;
}



.minimal-count {
  padding: 10px;
  color:#666;
  font-size:14px;
}

.error {
  color:red;
  font-size:12px;
  padding: 0px 10px 10px;
  text-align: center;
}
.error-ins {
  background-color: #e43d37;
  color:#FFF;
  text-align: center;
  padding: 15px;
  font-size:16px;
  font-weight: bold;
}
.green-ins {
  background-color: #008014;
  color:#FFF;
  text-align: center;
  padding: 15px;
  font-size:16px;
  font-weight: bold;
}
.orange-ins {
  background-color: orange;
  color:#222;
  text-align: center;
  padding: 15px;
  font-size:16px;
  font-weight: bold;
}

.clsS {
  position: absolute;
  right:0px;
  top:0px;
  height: 100%;
  padding: 0px 15px;
  text-decoration: none;
  color:#FFF;
  display: none;
  align-items: center;
  font-size:24px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



.bload {
  position: absolute;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  z-index: 989999999999;
  cursor: wait;
  display: none;
}

.odds-change {
  padding: 5px;
  background: lightyellow;
  align-items: center;
  justify-content: center;
  margin:10px 11px 0px;
  font-size:13px;
  gap:5px;
  display: none;
}
.odds-change span {
  color:var(--r);
  font-size:16px;
}

.odds-change a {
  font-weight: bold;
  color:var(--r);
  text-decoration: none;
}



.anuman-box {
  padding: 0px;
  font-size:13px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(0,0,0,.05);
}
.a-anuman {
  display: flex;
  justify-content: space-between;
  margin-bottom:3px;
}
.a-anuman >span:last-child {
  font-weight: bold;
  font-size:14px;
  display: flex;
  flex-direction: column;
  position: absolute;
  right:10px;
  align-items: flex-end;
}
.a-teambox {
  font-weight: bold;
}
.a-to {
  padding: 10px;
}

.a-teambox a{
  color:#222;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  max-width: 50%;
  display: inline-flex;
  white-space: nowrap;
}
.a-teambox a:hover{
  text-decoration: underline;
}
.blcont {
  gap:2px;
  padding: 2px 0px;
}

.anuman-now {
  display: flex;
  padding: 3px;
  gap:3px;
}

.anuman-now a {
  color:#222;
  flex:1;
  background-color: rgba(255,255,255,.9);
  padding: 4px 8px;
  display: flex;
  font-size:12px;
  font-weight: 500;
  text-decoration: none;
  gap:5px;
  border-radius: 3px;
}

.anuman-now a b {
  color:var(--r);
}
.anuman-now a:first-child {
  flex:3;
}

.anuman-now a:last-child {
  /* background-color: var(--r); */
  color:var(--r);
  justify-content: center;
}

.anuman-now a:hover {
  background-color: rgba(255,255,255,.4);
}

.at1 {
  border: 1px solid var(--bblue);
  border-bottom: 5px solid var(--bblue);
  background-color: rgba(13, 110, 253, 0.1);
}
.at2 {
  border: 1px solid var(--lpink);
  border-bottom: 5px solid var(--lpink);
  background-color: rgb(248, 175, 186, 0.1);
}

.anuman-status {
}
.st-2 {
  color:var(--g);
}
.st-3 {
  color:var(--r);
}
.st-1 {
  color:#555;
}
.st-4 {
  color:#999;
}

.add-favorite {
  background-color: #f0f0f0;
  border-radius: 3px;
  position: relative;
}
.add-favorite a {
  color:#777;
  text-decoration: none;
  font-size:18px;
  height: 100%;
  width: 100%;
  display: flex;
  padding: 3px 5px;
  align-items: center;
  justify-content: center;
}

.add-favorite a:hover {
  color:var(--primary-color);
}

.add-favorite a i.ylw {
  color:var(--primary-color);
}


.inlist {
  position: absolute;
  left:10px;
}

.event-header-box .add-favorite {
  background-color: #333;

}
.event-header-box .inlist {
  position: relative;
  left:0px;
}
#ccpl {
  display: flex !important;
}

.dialog-shadow {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgb(112, 128, 144, .6);
  z-index: 100;
  display: none;
  padding: 10px;
}

.dialog-window {
  width: 100%;
  max-width: 1400px;
  background-color: #FFF;
  max-height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.dialog-title {
  padding: 10px 15px;
  background-color: #f0f0f0;
  font-size:14px;
  font-weight: 500;
  width: 100%;
  position: relative;
}
.dialog-content {
  flex:1;
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
}
.dialog-close {
  position: absolute;
  right:0px;
  height: 100%;
  background-color: var(--r);
  color:#FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:18px;
  padding: 0px 15px;
  top:0px;
}

.intb {
  font-size:13px;
  padding: 10px;
  width: 100%;
}

table {
  font-size:13px;
  border:1px solid #ddd;
}
.dt-info, .dt-length, .dt-search {
  font-size:12px;
}
.dtr-details {
  width: 100%;
}
.dtr-title {
  min-width: 30% !important;
}
.dt-input {
  padding: 6px;
  font-size:13px;
  font-weight: bold;
  border: 1px solid #444;
  outline: none;
  border-radius: 0px !important;
}
.dt-length {
  text-align: left !important;
  padding: 3px;
}
.dt-search {
  text-align: left !important;
}
.dt-search label {
  display: none !important;
}


.lb, .ll {
  padding: 7px 10px;
  border-radius: 3px;
  width: 100%;
  display: inline-block;
  text-align: center;
  margin: -5px 0px -5px;
}

.lb {
  background-color: var(--bblue);
}
.ll {
  background-color: var(--lpink);
}

tr.table-back {
  background-color: rgba(13, 110, 253, 0.1) !important;
}
tr.table-lay {
  background-color: rgb(248, 175, 186, 0.3) !important;
}
tr.dp td {
  color: var(--g);
}
tr.wd td {
  color:var(--r);
}

.light-back {
  background-color: rgba(13, 110, 253, 0.1) !important;
}
.light-lay {
  background-color: rgb(248, 175, 186, 0.3) !important;
}

.vab {
  color:var(--primary-color);
  font-size:14px;
  position: absolute;
  right:10px;
}

.e-inb {
  color:var(--r);
  font-size:12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap:2px;
  margin-top:5px;
}
.e-inb:hover {
    color:#222;
}
.e-inb span {
  font-size:14px;
}

.dialog-filter {
  display: flex;
  justify-content: flex-start;
  gap:10px;
  padding: 10px;
  width: 100%;
  background-color: #f9f9f9;
  flex-wrap: wrap;
  position: relative;

}


.int-date {
  padding: 5px;
  font-size:12px;
  background-color: lightyellow;
}

.filter-item {
  display: flex;
  gap:5px;
  align-items: center;
  border: 1px solid #444;
  padding: 5px;
  background-color: #f0f0f0;
  position: relative;
  flex:1;
}
.filter-item span {
  flex:1;
  display: flex;
}

/* .filter-item::before {
  content: attr(data-title);
  position: absolute;
  font-size:10px;
  font-weight: bold;
  border: 1px solid #444;
  left:-1px;
  top:-17px;
  height: 15px;
  background-color: #FFF;
  padding: 0px 5px;
  z-index: 1500;
} */


.filter-item input {
  width: 100%;
  font-size:16px;
  border:1px solid #999;
  padding: 0px 15px;
  height: 35px;
  font-weight: bold;
  outline: none;
  text-align: center;
  background-color: #FFF;
  color:#222;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0px;
}

.filter-tab-item {
  /* overflow-x: auto; */
}
.filter-tab-item a {
  height: 35px;
  padding: 0px 15px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  font-size:14px;
  color:#222;
  text-decoration: none;
  font-weight: bold;
  justify-content: center;
  background-color: #fff;
  flex:1;
}
.filter-tab-item a.chaya {
  background-color: var(--primary-color);
  color:#222;
  border-color:rgba(0,0,0,.4);
}


@media screen and (max-width: 1500px) {
  .event-odds-content { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 1250px) {
  .clsS {
    display: flex;
  }
  .sahee { display: none; }
  body {
    max-width: 100%;
    border:none;
    box-shadow: none;
  }
  .footer {
    display: block;
  }
  .bs-in-mb {
    position: absolute;
    top:0px;
    right:0px;
    left:0px;
    bottom:0px;
    background-color: rgba(0,0,0,.8);
    z-index: 10000;
    display: none;
    padding: 15px;
    padding-top: 50px;
  }
  .bs-content {
    min-width: 100%;
    overflow-x: auto;
    background-color: #FFF;
    display: none;
  }
  .bchips a {
    height: 35px;
    font-size:14px;
  }
}
@media screen and (max-width: 800px) {

  .bload {
    background: rgb(112, 128, 144, .5) !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bload::before {
    content:'Loading ..';
    position: absolute;
    color:#FFF;
    opacity:0.8;
    font-size:13px;
    background: rgba(0,0,0,.2);
    padding: 5px 10px;
    border-radius: 10px;
  }
  .user-area {
    position: absolute;
    right:10px;
  }
  .filter-tab-item a {
    flex:1;
    /* flex:initial; */
    font-size:12px;
  }
  .dialog-filter {
    flex-direction: column;
    gap:5px;
}
  .filter-item {
    background-color: #fff;
    display: flex;
    gap:5px;
    max-width: 100%;
    overflow-x: auto;
    border:1px solid #f0f0f0;
    /* border:0px; */
  }
  .filter-item::before {
    display: none;
  }
  .filter-item span {
    display: flex;
    /* flex:initial; */
    flex:1;
  }

  .selections .bl-title >span:first-child {
    justify-content: center;
    padding: 0px;
  }
  .selections .bl-title >span:last-child {
    justify-content: center;
    padding: 0px;
  }
  .runner-title {
    font-size:14px;
  }
  .odds-box-title {
    font-size:16px;
  }
  .event-odds-content {
    grid-template-columns: 1fr;
    padding: 5px;
    grid-gap: 5px;
  }

  .aside-menu {
    display: none;
    position: absolute;
    height: 100%;
  }

  .match-box {
    display: block;
    min-height: auto;
  }
  .match-info {
    padding: 10px 0px 0px;
  }
  .match-teams-name {
    font-size:16px;
  }
  .match-odds {
    background-color: inherit;
    border:none;
    padding: 5px;
    max-width: 100%;

  }
  .matched {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap:5px;
    border:0px;
    margin-top:3px;
    width: 100%;
  }
  .inline-match-odds >div >a {
    font-size:16px;
  }
  .match-time {
    display: block;
    text-align: right;
  }
  ::-webkit-scrollbar {
    display: none;
  }
  .match-teams-name span.line-score {
    font-size:18px;
    font-weight: bold;
    color:green;
  }
  .content {
    padding: 0px;
    gap:0px;
  }
  .selections .deteails-inline-match-odds >div a.depth {
    display: none;
  }

}

.s-name {
  max-width: 60%;
  flex-wrap: wrap;
}

input.user-base {
  text-align: left;
}

thead tr {
  background-color: #f0f0f0;
}

.bid {
  font-size:12px;
  font-weight: 500;
}

.twinner {
  max-width: 500px;
  margin: 0 auto;
  padding: 15px;
}

.csettings {
  flex-direction: row;
  flex-wrap: wrap;
  gap:1%;
}
.csettings >div {
  flex:1;
  min-width: 49%;
  margin-bottom:3px;
}

.greenbutton, .redbutton, .graybutton, .anybutton{
  display: inline-flex;
  padding: 7px 10px;
  background-color: #DDD;
  text-decoration: none;
  font-weight: bold;
  color:#222;
  border-radius: 3px;
  gap:5px;
}


.greenbutton {
  background-color: var(--g);
  color:#FFF;
}
.redbutton {
  background-color: var(--r);
  color:#FFF;
}

.greenbutton:hover, .redbutton:hover, .graybutton:hover, .anybutton:hover{
  background-color: #222;
  color:#FFF;
}

.unmatched-title {
  position: absolute;
  font-size:9px;
  background-color: var(--r);
  color:#FFF;
  padding: 3px 5px;
  right:0px;
  bottom:0px;
  border-radius: 3px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

i.d {
  background-color: var(--r);
  color:#FFF;
  padding: 2px 4px;
  font-size:10px;
  position: absolute;
  border-radius: 3px;
  right:5px;
  font-style: normal;
}
i.u {
  background-color: var(--g);
  color:#FFF;
  padding: 2px 4px;
  font-size:10px;
  position: absolute;
  border-radius: 3px;
  font-style: normal;
  right:5px;
}

.language-link {
  gap:5px;
}
.language-link img {
  max-height: 20px;
}

table.dataTable > tbody > tr > th, table.dataTable > tbody > tr > td {
  padding: 4px 6px !important;
}

.accept-area {
  padding: 7px;
  margin:-5px 13px 7px;
  background-color: rgba(255,255,255,.4);
  font-size:14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap:5px;
  cursor: pointer;
}
.accept-area:hover {
  background-color: rgba(255,255,255,.3);

}
.accept-area input {
  height: 18px;
  width: 18px;
  accent-color:var(--r);
}
table.dataTable>tbody>tr>th, table.dataTable>tbody>tr>td {
  padding: 8px 10px !important;
}

.leaguess {
  display: grid;
  grid-template-columns: auto auto auto;
  gap:2px;
}
.leaguess >div {
  font-size:0px;
  border-radius: 5px;
  overflow: hidden;
}
.leaguess >div >a >img {
  filter:grayscale(100%);
  -webkit-filter:grayscale(100%);
  opacity:0.7;
}
.leaguess >div >a:hover img {
  filter:grayscale(0%);
  -webkit-filter:grayscale(0%);
  opacity:1;
}

.closed-msg {
  background-color: var(--r);
  color:#FFF;
  padding: 10px;
  text-align: center;
  font-size:14px;
}

.bet-ok-button {
  padding: 10px;
  display: flex;
  width: 100%;
  color:#FFF;
  background-color: #222;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size:16px;
  font-weight: bold;
}
