@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600&display=swap');

body,
html {
  height: 100% !important;
  background-color: #edf0f0 !important;
  color: var(--black-white) !important;
  font-size: 14px !important;
  /* font-weight: 600 !important; */
  margin: 0;
  padding: 0;
  width: 100%;
  transition: all 400ms;
  /* font-family: 'Signika', sans-serif; */
  /* overflow: hidden; */
  /* letter-spacing: 0.5px; */
}

header .navbar-light {
  background-color: #363031;
  padding: .25rem 0.5rem 0.25rem 0;
  transition: all 400ms;
  min-height: 47px;
  max-height: 47px;
}

header .navbar-brand {
  /* padding: 0; */
  margin-left: 48px;
}

.menu-icon {
  padding: 0px 13px 2px 12px;
  /* padding: 16px; */
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: all 400ms;
}

.menu-icon img {
  width: 25px;
  height: 25px;
}

.home-icon {
  background-color: #232323;
  padding: 12px 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  font-size: 26px;
}

a.home-icon .fa-home {
  color: rgb(var(--primary-color-rgb));
}

a.home-icon:hover {
  text-decoration: none;
}

header .navbar-light .navbar-nav {
  align-items: center;
  /* color: var(--balance-text); */
  color: var(--header-txt-color) !important;
}

header .navbar-light .navbar-nav .nav-link.login-link {
  background-color: #000;
  font-weight: 400;
  color: #fff;
  padding: 0 20px;
  border-radius: 4px;
  height: 25px;
  line-height: 23px;
}

header .navbar-light .navbar-nav .nav-link.login-link:hover {
  font-weight: 600;
  background-color: #000;
  box-shadow: none;
}

header .navbar-light .navbar-nav .nav-item {
  display: flex;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

header .navbar-light .navbar-nav .nav-link {
  /* color: var(--black-white); */
  /* color: var(--balance-text) !important; */
  color: #ffffff !important;
}

header .navbar-light .navbar-nav .nav-link.my-account.dropdown-toggle::after {
  content: none;
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu {
  margin: .5rem 0 0;
  border: 0;
  border-radius: 5px;
  min-width: 250px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
  background-color: var(--secondary-bg-color);
  max-height: calc(100vh - 100px);
  overflow-y: scroll;
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-divider.blue {
  border-top: 3px solid rgb(var(--primary-color-rgb));
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  padding: 6px 12px;
  cursor: pointer;
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--white-8a8a8a);
  color: var(--black-white);
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu .dropdown-divider {
  border-top: 1px solid var(--white-black);
}

header .navbar-expand .navbar-nav .nav-link {
  /* padding-right: .75rem;
  padding-left: .75rem; */
  font-weight: 700;
  padding-top: 2px;
  padding-bottom: 2px;
  cursor: pointer;
  white-space: pre;
  padding: 10px;
  /* font-size: 14px; */
  min-width: 40px;
}


.left-menu-active {
  height: calc(100vh - 47px);

}

.left-menu-active-without {
  height: calc(100vh - 47px) !important;
}


.container-main .left-menu,
.page-container {
background-color: #efefef;  
  position: relative;
}

.container-main .left-menu {
  z-index: 45;
  height: calc(100vh - 47px);
  min-width: 250px;
  width: 250px;
  transition: all 0.5s;
}

.container-main .right.games-block {
     background-color: #efefef;
  position: relative;
  height: calc(100vh - 294px);
  overflow-x: hidden;
  border-radius: 10px;
  /* overflow-y: hidden; */
}

.container-main .right.games-block .title-link {
  margin: 0 0 8px;
  color: var(--black-white);
  font-weight: 600;
  display: block;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 2px solid rgb(var(--primary-color-rgb));
}

.container-main .right.games-block .title-link:hover {
  transform: scale(1);
}

.container-main .right.games-block .title-link:focus {
  box-shadow: none;
}

.game-item {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  margin: 0;
  overflow: hidden;
  text-transform: uppercase;
  border: 1px solid #666;
  transition: all .4s;
  height: 100%;
  background-color: rgba(var(--black-white-rgb), 0.7);
  cursor: pointer;
}

/* .game-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all .4s;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
} */

/* .game-item:hover::before {
  background-color: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  backdrop-filter: blur(2px);
} */

.in-play-link a {
  min-height: 30px;
  line-height: 20px;
  padding: 5px 9px;
  font-weight: 600;
  background: linear-gradient(90deg, #56b95a 0%, rgba(255, 255, 255, 0) 100%);
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin: 0 0 5px 5px;
  transition: all .5s;
}

.in-play-link a:hover {
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #449e48 0%, rgba(255, 255, 255, 0) 100%);
}

.games-list-new .row {
  margin-left: -3px;
  margin-right: -3px;
}

.games-list-new .col-6 {
  padding-left: 3px;
  padding-right: 3px;
}

.page-container {
  height: calc(100vh - 52px);
  min-width: 250px;
  width: 250px;
  overflow-y: scroll;
  padding-bottom: 40px;
}

.page-container .sidebar-header-wrapper {
  position: relative;
  padding: 5px 5px;
  display: grid;
}

.page-container .sidebar-header-wrapper input {
  text-indent: 8px;
  height: 33px;
  padding: 1px 25px 1px 2px;
  background-color: var(--white-black);
  width: 100%;
  color: var(--black-white);
  border-radius: 5px;
  border: 0;
}

.page-container .sidebar-header-wrapper input[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

.page-container .sidebar-header-wrapper input[type="search"]:focus {
  box-shadow: none;
  outline: none;
}

.page-container .sidebar-header-wrapper .search-icon {
  position: absolute;
  top: 53%;
  right: 15px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-container #left-menu {
  max-height: calc(100vh - 103px);
}

.page-container #left-menu {
  position: relative;
  padding-left: 5px;
  cursor: pointer;
  overflow-y: auto;
  overflow-x: hidden;
}

.page-container #left-menu .item-level0 {
  background: #cacaca;
  white-space: pre-wrap;
  line-height: 20px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 9px;
  /* font-weight: 600; */
}

.page-container #left-menu .item-level-inplay {
  white-space: pre-wrap;
  line-height: 20px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 9px !important;
  /* font-weight: 600; */
}

.page-container #left-menu .up-levels .item-level1 {
  background: #cacaca;
  white-space: pre-wrap;
  line-height: 20px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 10px;
  font-weight: 600;
}

.page-container #left-menu .item-level0.active {
  background: linear-gradient(90deg, rgb(var(--primary-color-rgb)) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-container #left-menu .item-level-inplay.active {
  background: linear-gradient(90deg, var(--primary-inplay-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-container #left-menu .up-levels .item-level1.active {
  background: linear-gradient(90deg, rgb(var(--primary-color-rgb)) 0%, rgba(255, 255, 255, 0) 100%);
}

.page-container #left-menu .downs-levels .level {
  position: relative;
  transition: all 0.2s;
}

.page-container #left-menu .item-level1 {
  white-space: pre-wrap;
  line-height: 4px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: block;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px ridge transparent;
  /* var(--menu-border-bottom-color) */
  /* padding-left: 14px; */
  position: relative;
  z-index: 1;
  transition: all 0.5s ease 0s;
}

.page-container #left-menu .item-level1 .badge {
  margin-left: auto;
  background-color: rgb(var(--primary-color-rgb));
  color: var(--badge);
  transition: all .5s;
  align-self: center;
  margin-right: 12px;
}

/* .page-container #left-menu .item-level1:hover {
  background: linear-gradient(to right, var(--animation-bg-color) 50%, transparent 50%);
  color: var(--black-white);
  background-position: left bottom !important;
} */
.page-container #left-menu .item-level1:after {
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  width: 0px;
  position: absolute;
  border-radius: 5px;
  transition: all 0.5s ease 0s;
  z-index: -1;
  /* background: rgba(var(--primary-color-rgb), 0.3); */
  background: var(--animation-bg-color);
  /* linear-gradient(to right, var(--animation-bg-color) 50%, transparent 50%);
  color: var(--black-white); */
  /* background-position: left bottom !important; */
}

.page-container #left-menu .item-level1:hover:after {
  width: 100%;
}

/* .page-container #left-menu .level .item-level1{
  background-color: green;
} */
/* .page-container #left-menu .level .item-level1 {
  transition: all .5s ease-out;
}

.page-container #left-menu .level .item-level1::before {
  opacity: 0;
  transition: all .5s ease-out;
  position: absolute;
  content: "";
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

.page-container #left-menu .level .item-level1::after {
  opacity: 1;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  color: transparent;
  z-index: 0;
  transition: all .5s ease-out;
  position: absolute;
  content: "";
  backface-visibility: hidden;

} 

.page-container #left-menu .level:hover .item-level1::after {
   right: 0px;
  left: 0px;

  color: var(--black-white);
  background-position: left bottom !important;

  border-radius: 6px;
  content: "";
  position: absolute;
  transition: all .5s ease-out;
  z-index: 0; 
  right: 7px;
  left: 5px;
  border-radius: 6px;
} */

.page-container #left-menu .item-level2 {
  white-space: pre-wrap;
  line-height: 20px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: block;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px ridge var(--menu-border-bottom-color);
  padding-left: 0;
  font-size: 14px;
}

.page-container #left-menu .item-level2>div:first-child {
  line-height: 20px;
  min-height: 30px;
  padding-left: 20px;
}

.page-container #left-menu .item-level2>div:first-child:hover {
  background-color: #000;
  color: #fff;
  background-position: left bottom;
}

.page-container #left-menu .item-level2 span {
  vertical-align: sub;
}

.page-container #left-menu .item-level3 {
  white-space: pre-wrap;
  line-height: 20px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: block;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px ridge var(--menu-border-bottom-color);
  padding-left: 0;
  font-size: 14px;
}

.page-container #left-menu .item-level3>div:first-child {
  line-height: 20px;
  min-height: 30px;
  padding-left: 30px;
}

.page-container #left-menu .item-level3>div:first-child:hover {
  background-color: #000;
  color: #fff;
  background-position: left bottom;
}

.page-container #left-menu .item-level3 span {
  vertical-align: sub;
}

.page-container #left-menu .item-level4 {
  white-space: pre-wrap;
  line-height: 20px;
  min-height: 30px;
  overflow-y: hidden;
  display: -ms-flexbox;
  display: block;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px ridge var(--menu-border-bottom-color);
  padding-left: 20px;
  font-size: 14px;
}

.page-container #left-menu .item-level4 span {
  vertical-align: sub;
}

.container-main .main-content-wrapper {
  background-color: var(--primary-light-color);
}

.main-content-wrapper .notification {
  background: var(--notification-bg-color) !important;
}

.container-main .main-content-wrapper .notification {
  position: relative;
  /* z-index: 20; */
  height: calc(100vh - 47px);
}

.container-main .main-content-wrapper .notification .onoffswitch {
  position: absolute;
  top: 7px;
  right: 7px;
  margin: 0;
}

.notification .announcement-wrapper {
  padding: 10px 10px 0;
  position: relative;
}

.top-navbar-container .selected-tab {
  cursor: default !important;
  /* border-bottom: 5px solid rgb(var(--primary-color-rgb)); */
  background-color: var(--primary-dark-color);
  height: 35px;
  /* height: 45px; */
  border-radius: 5px;
  line-height: 36px;
  font-size: 14px;
  font-weight: 500;
  font-weight: 700;
}

.selected-tab {
  cursor: default !important;
  border-radius: 5px;
  background-color: var(--animation-bg-color) !important;
  font-size: 14px;
  font-weight: 500;
  font-weight: 700;
}

.top-navbar-container .navbar .navbar-nav .nav-item a {
  /* color: var(--black-white); */
  color: var(--game-tab-text);
  /* color: black; */
}

.top-navbar-container .navbar .navbar-nav .nav-item a {
  font-size: 14px;
  text-decoration: none;
  /* line-height: 32px; */
  cursor: pointer;
  /* padding: 0 10px; */
  padding: 0px 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.container-main .main-content-wrapper .main-content {
  height: 100%;
  background-color: #deb841;
}

.div-scroll {
  /* max-height: calc(100vh - 176px); */
  /* max-height: calc(100vh - 140px); */
  max-height: calc(100vh - 47px);
  overflow-x: hidden;
  overflow-y: auto;
}

.sport-content .resize-padding {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.sport-content .resize-padding+.resize-padding {
  padding-top: 0px !important;
  /* padding-bottom: 10.5px !important; */
}

.sport-list-menu {
  background-color: #232323;
  position: relative;
  width: 100%;
  padding: 0px 26px !important;
  height: 39px;
}

.sport-list-menu .navbar-nav li {
  white-space: nowrap;
  padding: 0 8px;
  display: flex;
}

.sport-list-menu .navbar-nav li a {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}

.sport-list-menu .navbar-nav li a.nav-link-home {
  font-size: 13px;
}

.sport-list-menu .navbar-nav li a i[class*="icon-"] {
  font-size: 20px;
}

#scroll-menu {
  box-sizing: border-box;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#scroll-menu::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.paddle {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #232323;
  color: #ffffff;
  font-size: 30px;
  line-height: 1px;
  outline: none;
  border: none;
}

.left-paddle {
  left: 0;
}

.left-paddle:focus {
  outline: none;
}

.right-paddle {
  right: 0;
}

.right-paddle:focus {
  outline: none;
}

.scroll-menu-icon {
  font-size: 18px;
}

.mod-comingup {
  margin-bottom: 10.5px;
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #c7d5e0;
}

.mod-comingup .mod-header {
  color: black;
  padding-bottom: 5px;
  padding-left: 8px;
  font-weight: 700;
}

.mod-comingup .comingup-races-content {
  /* border-top: 1px solid #c7d5e0; */
  border-bottom: 1px solid #c7d5e0;
  height: auto;
  min-height: 12px;
  overflow: hidden;
  padding: 8px;
}

.mod-comingup .comingup-races-content:last-child {
  border: none;
}

.mod-comingup .comingup-races-content span {
  display: block;
  float: left;
  color: #666;
}

.mod-comingup .comingup-races-content .comingup-links li {
  border-left: 1px solid #c7d5e0;
  color: #428bca;
  display: block;
  float: left;
  font-weight: 700;
  padding: 0 8px 0 10px;
  text-decoration: none;
}

.mod-comingup .comingup-races-content .comingup-links li:first-child {
  border-left: 0;
  padding: 0 8px 0 2px;
}

.mod-comingup .comingup-races-content .comingup-links li a {
  color: #428bca;
}

.left-menu-active .highlight-content {
  min-width: calc(100vw - 293px);
}

.highlight-content {
  padding-right: 15px;
  padding-left: 15px;
}

.sport-highlight {
  /* background-color: var(--notification-bg-color); */
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item img {
  border-radius: 10px;
}

.sport-highlight-content {
  /* background-color: #fff; */
  position: relative;
  width: 100%;
}

/* #sport-highlight .sport-highlight-content {
  border: 1px solid var(--white-black);
} */

.sport-highlight-icon {
  background: url("../images/highlights.png");
  background-repeat: no-repeat;
  width: 27px;
  height: 33px;
  position: absolute;
  left: 20px;
}

.sport-highlight .sport-highlight-content .header-color {
  margin-left: 46px;
  color: var(--black-white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px;
  margin-bottom: 9px;
  /* background-color: #fff; */
}

.sport-highlight .nav-tabs {
  /* height: 41px; */
  border: none;
  -ms-flex-wrap: inherit;
  flex-wrap: inherit;
  border-bottom: 3px solid rgb(var(--primary-color-rgb));
  overflow-y: hidden;
  overflow-x: auto;
  padding: 0;
}

.sport-highlight .nav-tabs::-webkit-scrollbar {
  display: none;
}

.sport-highlight .nav-tabs .nav-link {
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border: none;
  border-radius: 5px 5px 0 0;
  font-size: 14px;
  margin-right: 3px;
  text-transform: uppercase;
  padding-bottom: 6px;
  padding-top: 15px;
  white-space: nowrap;
  position: relative;
}

.sport-highlight .nav-tabs .nav-link {
  color: var(--black-white);
  background-color: var(--tab-link-bg-color);
  height: 100%;
}

.sport-highlight .nav-tabs .nav-item {
  margin-bottom: 0;
}

.sport-highlight .nav-tabs .nav-link.active {
  /* color: #000; */
  color: var(--balance-text);
  /* color: var(--header-txt-color) !important; */
  background-color: rgb(var(--primary-color-rgb));
}

.container-event-info {
  padding: 0px 6px 0px 0px;
}

@media (max-width: 991px) {
  .container-event-info {
    padding: 0px;
  }
}

.competiton {
  width: 100%;
}

.highlight-container {
  padding-right: 10px;
}

.market-container {
  display: -ms-flexbox;
  display: flex;
}

.market-details {
  display: -ms-flexbox;
  display: contents;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}

.market-details .market-info {
  float: none;
  margin-right: 5px;
  font-weight: 700;
  font-size: 12px;
}

.description span {
  padding-right: 2px;
}

.inplay {
  color: #090 !important;
  font-weight: 700 !important;
  margin-right: 5px;
  text-transform: uppercase;
}

.notInplay {
  font-weight: 700 !important;
  margin-right: 5px;
  text-transform: uppercase;
}

.noselection-btn,
.selection-btn {
  -webkit-filter: none;
  filter: none;
  border: 0;
  color: #273a47;
  width: 91%;
  min-height: 38px;
  font-weight: 700;
  zoom: 1;
  overflow: visible;
  /* border-bottom: 1px solid #fff; */
  cursor: pointer;
  margin: 5px 0;
  border-radius: 5px;
  padding: 0;
}

.selection-btn {
  cursor: default;
}

.back-cell {
  background-color: #9ecddf !important;
}

.lay-cell {
  background-color: #fbd7e5 !important;
}

.price {
  font-weight: 700;
  display: block;
  font-size: 14px;
}

.event-meta ul {
  margin-bottom: 0;
}

.event-meta ul li {
  -ms-flex: 1;
  flex: 1;
}

.event-meta ul li {
  float: left;
}

.event-meta ul li .lay-cell {
  float: left;
  /* margin-left: -2px; */
  line-height: 0;
}

.links {
  margin: auto;
  padding: 20px 0px;
  font-size: 10px;
  font-weight: 700;
  outline: 0 none;
}

.links a:hover {
  color: var(--black-white);
}

.footer-container a {
  color: var(--black-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.links .block-rule.margin-items a {
  margin-left: 10px;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .links .block-rule.margin-items a {
    font-size: 11px;
  }

  .noselection-btn,
  .selection-btn {
    min-height: 32px;
  }

  .paddle {
    font-size: 20px;
  }
}

.links .block-social.margin-items>div,
.links .block-social .margin-items>div {
  margin: 5px 10px;
  font-size: 18px;
}

.links .block-social.margin-items>div a:hover,
.links .block-social .margin-items>div a:hover {
  text-decoration: none;
}

.icon-mail {
  background: url(../images/icon-mail.png) no-repeat;
}

.icon-instagram {
  background: url(../images/instagram_icon.png) no-repeat;
}

.icon-facebook {
  background: url(../images/facebook_icon.png) no-repeat;
}

.icon-telegram {
  background: url(../images/telegraph_icon.png) no-repeat;
}

.icon-twitter {
  background: url(../images/twiter_icon.png) no-repeat;
}

.icon-youtube {
  background: url(../images/youtube_icon.png) no-repeat;
}

.icon-whatsapp {
  background: url(../images/whatsapp_icon.png) no-repeat;
}

.links .block-social .icon {
  /* margin-right: 8px; */
  width: 20px;
  height: 20px;
  float: left;
  background-size: 100%;
}

.links .block-social .icon-youtube {
  margin-top: 3px;
}

.profit-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  border-radius: 15px;
  height: 30px;
  background: var(--profit-bg-color);
}

.profit-group .balance,
.profit-group .liability {
  text-align: center;
  height: 100%;
  /* line-height: 50px; */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.profit-group .balance span,
.profit-group .liability span {
  font-weight: 700;
  margin-right: 5px;
  /* color: #000; */
  color: var(--balance-text);
  /* color: var(--header-txt-color) !important; */
}

.profit-group .balance i,
.profit-group .liability i {
  /* color: #000; */
  color: var(--balance-text);
  /* color: var(--header-txt-color) !important; */
}

.profit-group .between {
  margin-right: 5px;
  color: #000;
}

.profit-group .liability .lia-val {
  color: red;
  margin-right: 0;
}

.timer-container {
  border-bottom: 1px solid #e1e1e1;
}

.time-stamp {
  font-weight: 600;
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu.profit {
  min-width: auto;
}

header .navbar-light .navbar-nav .dropdown .dropdown-menu .profit-group {
  background-color: transparent;
  height: auto;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 0;
  padding: 0 10px;
}

header .navbar-expand .navbar-nav .nav-link.profit-link {
  background: var(--profit-bg-color);
  border-radius: 15px;
  padding-top: 3px;
}

header .navbar-expand .navbar-nav .nav-link.profit-link:hover {
  background: var(--profit-bg-color);
}

.product-tab-wrapper .top-navbar-container .navbar-nav {
  overflow-x: scroll;
  height: 100%;
  white-space: nowrap;
  flex-direction: row;
  /* width: 98vw !important; */
  padding: 16px 30px 16px 25px;
}

.product-tab-wrapper .top-navbar-container .navbar-nav::-webkit-scrollbar {
  height: 3px;
}

.sport-list-menu .navbar-nav {
  /* overflow-x: auto; */
  height: 100%;
  white-space: nowrap;
  flex-direction: row;
}

/* .sport-list-menu .navbar-nav::-webkit-scrollbar {
  height: 1px;
} */

.sport-highlight-content {
  /* background: #fff; */
  padding-bottom: 10px;
}

.sport-header {
  padding: 15px 0px;
}

.sport-header .header {
  /* color: #333; */
  padding: 5px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  border-left: 8px solid rgb(var(--primary-color-rgb));
}

.sport-inplay .card {
  border: 0;
}

.sport-inplay .card .card-header {
  background-color: var(--secondary-bg-color);
  border: 0;
  border-bottom: 3px solid rgb(var(--primary-color-rgb));
  padding: .375rem .75rem;
}

.sport-inplay .card .card-header .btn-link {
  text-align: left;
  padding: 0;
  color: var(--black-white);
  text-decoration: none !important;
  font-weight: 600;
}

.sport-inplay .card .card-header .btn-link::after {
  content: "\f0d8";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
}

.sport-inplay .card .card-header .btn-link.collapsed::after {
  content: "\f0d7";
}

.sport-highlight .horse-racing .nav-tabs .nav-link {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
}

.horse-racing .sport-inplay .card .card-header .btn-link {
  width: auto !important;
}

.horse-racing .sport-inplay .card .card-header .btn-link::after {
  margin-left: 8px;
}

.tracks-list {
  border-left: 1px solid #c4d6e4;
  border-right: 1px solid #c4d6e4;
  overflow: auto;
  display: grid;
}

.tracks-list .single-track {
  font-size: 14px;
  border-bottom: 1px solid #c4d6e4;
  min-height: 36px;
  padding: 5px 12px;
  background-color: #fff;
  white-space: nowrap;
}

.tracks-list .single-track .track-name {
  font-weight: 700;
}

.tracks-list .single-track .meto-text-leftmenu {
  color: #2489d5;
}

.tracks-list .races-list {
  display: flex;
}

.tracks-list .single-track {
  font-size: 14px;
  white-space: nowrap;
}

.tracks-list .races-list span {
  padding-right: 5px;
}

.tracks-list .races-list .separate {
  color: #7e97a7;
}

.horse-racing .sport-highlight-content {
  padding-bottom: 0;
}

.market {
  width: 100%;
}

.list-market {
  min-height: calc(100vh - 305px);
}

.market-inPlay,
.market-NoInPlay {
  position: relative;
}

.market-info {
  padding: 5px 10px;
  background-color: var(--secondary-bg-color);
  /* font-weight: 700; */
  /* border-top-left-radius: 5px;
  border-top-right-radius: 5px; */
}

.market-info:not(.bottom-radius) {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

iframe+.market-info {
  margin-top: 7px;
}

.market-info .titles {
  text-align: center;
  justify-content: center;
  font-size: 15px;
  padding: 5px 0;
  font-weight: 600;
  text-transform: uppercase;
}

.border-line {
  border-top: 1px solid var(--white-black);
  padding: 5px 3px 3px;
  border-bottom: 1px solid var(--white-black);
  /* font-weight: 700; */
}

.meto-text-inplay {
  color: #090;
}

.market-info .matched-is-live {
  padding: 3px;
}

.market-info .total-matched-label .matched-value {
  font-weight: 700;
}

.market-info .market-rule {
  background-color: #fff;
  border: 1px solid #d3d3d3;
  font-size: 12px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* margin-left: 5px; */
  margin-left: 2px;
  cursor: pointer;
  color: #000;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 3px;
}

.market-info .market-rule .market-rules-span {
  display: block;
  /* padding: 0 5px; */
  padding: 0 2px;
  border-radius: 0 2px 2px 0;
}

.selection-info {
  background-color: var(--secondary-bg-color);
  font-size: 0.91rem !important;
  min-height: 85px;
}

.selection-info .table-odds {
  border-top: none !important;
  margin-bottom: 0;
  position: relative;
  line-height: 27px;
}

.market-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-align: center;
  align-items: center;
}

.selection-info .table-odds .selections-count {
  font-weight: 400;
  padding-left: 5px;
}

.selection-info .back-header,
.selection-info .lay-header {
  text-align: center;
  font-size: 0.91rem !important;
  width: 70px;
  font-weight: 700;
}

.border-top-line {
  border-top: 1px solid #e0e6e6;
}

.market-container:last-child {
  border-bottom: 1px solid #e0e6e6;
}

.market-container .market-name {
  -ms-flex: 1;
  flex: 1;
}

.meto-text-info {
  color: #516472;
}

.meto-icon-chart {
  border: 1px solid #e5e6e8;
  cursor: pointer;
  padding: 1px 3px;
}

.market-container .odds {
  width: 70px;
  border-left: 1px solid #e0e6e6;
}

.selection-info .table-odds .odds {
  cursor: pointer;
}

.selection-info .table-odds .odds:hover {
  background-color: #edf0f0;
}

.selection-info .table-odds .odds>div {
  height: 50px;
  min-width: 50px;
  line-height: 24px;
}

.pending-stake {
  color: #333;
  font-size: 12px;
}

.cell-odds.cell-back {
  background-color: #e5f6fd;
  /* border: 1px solid #489bbd !important; */
}

/* .selection-info .cell-odds.cell-back>div {
  border: 1px solid #489bbd  !important;
} */

.cell-odds.cell-lay {
  background-color: #fbd7e5;
  /* border: 1px solid #f996ab !important; */
}

/* .selection-info .cell-odds.cell-lay>div {
  border: 1px solid #f996ab !important;
} */

.selection-info .table-odds .cell-odds.cell-back:hover,
.selection-info .table-odds .cell-odds.cell-lay:hover {
  box-shadow: inset 0 0 8px 0.2px hsla(0, 0%, 49.8%, 0.6);
}

.meto-bg-betslip,
.meto-bg-sport {
  background-color: var(--white-black);
}

.container-bet-slip {
  font-size: 14px;
}

.container-bet-slip {
  padding-right: 0;
}

.meto-bg-header-title {
  background-color: var(--bet-slip-bg-color);
  line-height: 35px;
  font-size: 13px;
  /* font-weight: 600; */
}

.meto-bg-header-title.one-click-bet {
  background-color: var(--secondary-bg-color);
}

.meto-bg-header-title .title {
  font-weight: 600;
  font-size: 14px;
}

.nav-bet-slip {
  display: inline-block;
  border-bottom: none;
}

.container-bet-slip .nav-tabs .nav-link {
  color: #000;
}

.container-bet-slip .nav-link {
  font-weight: 600;
}

.container-bet-slip .nav-tabs .nav-link {
  border: 0 solid rgba(0, 0, 0, 0);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  cursor: pointer;
}

.edit-stake-header {
  background-color: var(--secondary-bg-color);
  color: var(--white-black);
}

.edit-stake-header {
  float: right;
  font-weight: 600;
  height: 100%;
  line-height: 33px;
  padding: 0 20px;
  cursor: pointer;
}

.bottom-part {
  margin-top: 0.5rem;
}

.open-bets-header-bg {
  background-color: var(--bet-slip-bg-color);
  line-height: 35px;
  font-size: 14px;
  font-weight: 600;
  /* color: var(--badge); */
}

.container-mybets .pointer {
  cursor: pointer;
}

.nav-mybets {
  display: inline-block;
  border-bottom: none;
}

.container-mybets .nav-link {
  font-weight: 600;
}

.container-mybets .nav-tabs .nav-link {
  border: 0 solid rgba(0, 0, 0, 0);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  cursor: pointer;
}

.fancy-container {
  /* background-color: #fff; */
  margin: 10px 0;
  position: relative;
}

.fancy-container .header .title {
  color: var(--badge);
  font-size: 14px;
  font-weight: 600;
  background: rgb(var(--primary-color-rgb));
  padding: 0 10px;
  min-height: 28px;
  line-height: 28px;
  display: inline-block;
  position: relative;
}

/* .fancy-container .header .title:after {
  border-left-color: rgb(var(--primary-color-rgb));
  border-top-color: rgb(var(--primary-color-rgb));
  border-right-color: hsla(0, 0%, 100%, 0) !important;
  content: "";
  display: inline-block;
  vertical-align: top;
  border-bottom: 28px solid rgb(var(--primary-color-rgb));
  border-right: 28px solid rgb(var(--primary-color-rgb));
  position: absolute;
  bottom: 0;
  right: -28px;
  height: 28px;
  width: 28px;
} */

.fancy-container .selection-info {
  min-height: 0;
  position: relative;
}

.fancy-container .selection-info .table-odds {
  line-height: 1.5;
  /* line-height: 1.2; */
}

.selection-info .table {
  border: 0;
  table-layout: fixed;
}

.selection-info .table.table-odds {
  border-top: none !important;
  margin-bottom: 0;
  position: relative;
}

.selection-info .table tr {
  border: 1px solid #dee2e6;
  border-top: 0;
}

.selection-info .table tr:first-child {
  border-top: 1px;
}

.selection-info .fancy-liability {
  width: 30%;
}

.selection-info .table td {
  border-left: none;
  border-right: none;
  padding: 0 5px;
}

.fancy-liability p {
  margin: 0;
  padding-left: 8px;
}

.selection-info .fancy-odds-frist {
  width: 16%;
  font-size: 10px;
}

.selection-info .table.table-odds .cell-odds {
  cursor: pointer;
  margin: 3px 0;
}

.selection-info .fancy-odds-frist .mm-bet .value-mm-bet {
  font-weight: 700;
}

.selection-info .fancy-odds {
  width: 13%;
  height: 47px;
  min-width: 34px;
}

.cell-odds.cell-lay {
  background-color: #fbd7e5;
}

.cell-odds.cell-back {
  background-color: #9ecddf;
}

.fancy-container .selection-info .cell-odds .pending-odds {
  border: 0 !important;
}

.chevron-up {
  width: 10%;
}

.icon-size {
  font-size: 15px;
  margin: 0 5px;
}

.ladder-book svg {
  width: 10px;
}

.market-name {
  font-weight: 700;
  font-size: 12px;
}

.table-bordered td,
.table-bordered th {
  border: 0 solid;
}

.selection-info .suspended,
.selection-info .suspended-mobile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: hsla(0, 0%, 100%, .8);
  color: #b71212;
  font-weight: 700;
  border: 1px solid #b30000;
  position: absolute;
  z-index: 2;
  top: 1px;
  height: 98%;
  width: 25%;
  text-align: center;
  margin-left: 61%;
  padding: 10px 0;
}

.selection-info .suspended-mobile span,
.selection-info .suspended span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}

.selection-info .suspended-mobile {
  width: 30%;
  margin-left: 53%;
}

.live-center-container {
  display: block;
  background-color: #000;
}

.live-center-container .live-commentary-frame.desktop {
  height: 244px;
}

.betslip-tab-content {
  width: 99%;
  padding: 5px 0;
  max-height: calc(100vh - 690px);
  min-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
}


.betslip-hearer {
  height: 30px;
  line-height: 30px;
}

.betslip-title {
  -ms-flex-align: center;
  align-items: center;
  height: auto;
  font-weight: 700;
  line-height: normal;
  padding: 5px 0px;
}

.bottom-radius {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.top-radius {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

@media (min-width: 176px) {

  .container-bet-slip .betslip .col-sm-5,
  .container-bet-slip .open-bets .col-sm-5 {
    -ms-flex: 0 0 43.66666667% !important;
    flex: 0 0 43.66666667% !important;
    max-width: 43.66666667% !important;
  }

  .container-bet-slip .betslip .col-sm-2,
  .container-bet-slip .open-bets .col-sm-2 {
    -ms-flex: 0 0 16.66666667% !important;
    flex: 0 0 16.66666667% !important;
    max-width: 16.66666667% !important;
  }

  .container-bet-slip .betslip .col-sm-3,
  .container-bet-slip .open-bets .col-sm-3 {
    -ms-flex: 0 0 20.66666667% !important;
    flex: 0 0 20.66666667% !important;
    max-width: 20.66666667% !important;
  }

  .container-bet-slip .betslip .col-sm-6,
  .container-bet-slip .open-bets .col-sm-6 {
    -ms-flex: 0 0 50.66666667% !important;
    flex: 0 0 50.66666667% !important;
    max-width: 50.66666667% !important;
  }
}

.betslip-title .bet-slip-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.back {
  background-color: #C9E6EF;
}

.lay {
  background-color: #F9E6ED;
}

.back,
.lay {
  margin-bottom: 1px;
  line-height: 25px;
}

.selection-body {
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
}

.remove-bet {
  cursor: pointer;
  margin-right: 2px;
  color: red;
}

.oddsladder {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.oddsladder .form-control {
  background-color: #fff !important;
}

.form-control-ssm {
  padding: .2rem .4rem !important;
}

.input-betslip {
  height: calc(1.5em + .5rem + 4px);
  font-size: 14px;
  font-weight: 600;
}

.odds-ladder-right .arrow-btn {
  border: 1px solid #ccc;
  background-color: #eee;
}

.odds-ladder-right .arrow-btn {
  cursor: pointer;
  display: block;
  width: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
}

.arrow-btn .fas {
  display: block;
  font-size: 15px;
}

.bet-slip-profit {
  line-height: 35px;
}

.profit-text {
  color: green;
  font-weight: 700;
}

.fastbutton {
  width: 100%;
  padding: 5px 0px 10px 0px;
}

.fastbutton table {
  width: 100%;
}

.fastbutton table tr {
  display: flex;
}

.fastbutton table tr td {
  width: 16.66%;
  display: inline-block;
  padding-left: 2px;
}

.fastbutton table tr:first-child td {
  padding-bottom: 2px;
}

.meto-bg-fastbutton {
  background-color: #F2E8D0;
}

.fastbutton .fastbtn {
  color: #011d49;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  border-radius: 3px;
  border: 1px;
  font-weight: 700;
  font-size: 14px;
}

.fastbutton .fastbtn:focus {
  outline: none;
}

.btn-cancel {
  background: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#efefef));
  background: -moz-linear-gradient(top, #ffffff, #efefef);
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#efefef);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffff, endColorstr=#efefef);
  border: 1px solid #c7d5e0 !important;
  color: #3b5160;
  font-weight: 700;
  zoom: 1;
  padding: 5px 0;
  font-size: 14px;
  width: 40%;
  margin-left: 5px;
}

.button-primary {
  border-radius: 2px;
  font-weight: 700;
  padding: 5px 0;
  font-size: 14px;
  border: 1px solid rgb(var(--primary-color-rgb));
  background-color: rgb(var(--primary-color-rgb)) !important;
  width: 100%;
}

.mybets-body {
  background-color: var(--white-black);
  padding: 5px;
}

.mybets-wrapper {
  line-height: 16px;
}

.open-bets-header {
  border-bottom: 2px solid rgb(var(--primary-color-rgb));
  border-radius: 5px;
}

.open-bets-header {
  background: var(--white-black);
}

.bets-header,
.open-bets-header {
  font-weight: bolder;
  overflow: hidden;
  min-height: 30px;
  text-align: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.bet-header {
  font-size: 14px;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 5px;
  padding-right: 15px;
  justify-content: space-between;
}

.bet-header .cancel-all-bet,
.bet-header .unmatch-title {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.bets-header {
  background: #dcdcdc;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bet-slip-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.setting-matched-bets {
  font-weight: 400;
}

.chk-average-odds {
  display: block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  font-size: 13px;
  margin-bottom: 0;
}

.chk-average-odds input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
}

.averge-odds {
  display: block;
}

.title-option-setting {
  margin-left: 20px;
  font-weight: 600;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0;
  margin-top: -3px;
}

.custom-checkbox .custom-control-label::after {
  border-radius: 0;
  margin-top: -3px;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: rgb(var(--primary-color-rgb));
  background-color: rgb(var(--primary-color-rgb));
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none;
}

.selection-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bets-data {
  font-size: 13px;
}

.bets-data .remove-bet {
  position: absolute;
  left: 4px;
  font-size: 11px;
}

.blur-background {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  filter: Alpha(Opacity=0);
  opacity: 1;
  z-index: 80;
  background-color: rgba(17, 17, 17, .5);
}

.edit-stakes {
  background-color: #242424;
  padding-top: 20px;
  padding-bottom: 20px;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.edit-stakes .edit-stakes-body {
  padding: 5px;
  background-color: #fff;
  text-align: center;
  margin: 0 10px;
}

.edit-stakes .edit-stakes-body .errorMsg {
  color: red;
  font-weight: 700;
  padding-bottom: 5px;
  text-align: center;
}

.edit-stakes .edit-stakes-body table {
  width: 100%;
}

.edit-stakes .edit-stakes-body table tr td {
  padding: 0 5px;
  padding-bottom: 0px;
  padding-left: 5px;
}

.edit-stakes .edit-stakes-body table tr:first-child td {
  padding-bottom: 12px;
}

.edit-stakes .edit-stakes-body table tr td:first-child {
  padding-left: 5px;
}

.edit-stakes .edit-stakes-body .input-fast-button-setting {
  width: 100%;
  padding: 7px 0;
  font-weight: 700;
  font-size: 12px;
  border-radius: 3px;
  border: 1px solid #edf0f0;
  text-align: center;
}

.edit-stakes .edit-stakes-body .buttons {
  padding-top: 10px;
  padding-bottom: 5px;
}

.edit-stakes .edit-stakes-body .btn-edit-stakes {
  float: none;
  padding: 6px 25px;
  font-weight: 700;
  font-size: 12px;
}

.edit-stakes .edit-stakes-body .btn-white {
  background-color: #fff;
}

.edit-stakes .edit-stakes-body .btn-gold {
  background-color: #ffa800;
  color: #fff;
}

.popup-market {
  padding: 1rem;
}

.table-container {
  font-size: 14px;
}

.table-bordered td,
.table-bordered th {
  padding: .4rem;
}

.table-bordered,
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

.table-container .reload-container .btn-reload {
  float: right;
  padding: 0;
}

.table-container table tr .negative {
  color: #b30000;
  text-align: right;
}

.modal-body .text-danger {
  font-size: 12px;
}

.market-container:last-child {
  border-bottom: 1px solid #e0e6e6;
}

.mod-inlinebet {
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.mod-inlinebet .element {
  position: relative;
  display: inline-block;
  width: 49%;
  vertical-align: middle;
}

.mod-inlinebet .cancel,
.mod-inlinebet .placebet,
.mod-inlinebet .price,
.mod-inlinebet .size {
  margin: 5px;
  position: relative;
}

.btn.btn-bet {
  border: none;
  font-size: 15px;
  line-height: 30px;
  background-color: #d2d2d2;
  font-weight: 700;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: #000;
}

.btn.btn-bet,
.btn.btn-price {
  display: block;
  text-align: center;
  height: 40px;
  border-radius: 5px;
}

.mod-inlinebet .minus,
.mod-inlinebet .plus {
  width: 40px;
  display: inline-block;
  position: absolute;
  top: 0;
  line-height: 31px;
}

.mod-inlinebet .minus {
  left: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.mod-inlinebet .plus {
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.mod-inlinebet .input-placeholder {
  position: relative;
  margin: 0 40px;
}

.quick-stakes-input {
  background-color: #fff;
  padding: 12px !important;
}

.mod-inlinebet .input {
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #1e1e1e;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 700;
  padding: 12px;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.mod-inlinebet .stake {
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-stakes-placeholder {
  color: #7f7f7f;
}

.quick-stake-input-selected {
  background-color: #fff8d6;
}

.element-cancel {
  width: 38% !important;
}

.element-placebet {
  width: 60% !important;
}

.btn.btn-bet.placebet {
  background-color: rgb(var(--primary-color-rgb));
}

.btn.btn-bet.placebet.disabled {
  opacity: .7;
  pointer-events: none;
}

.quick-stake-items {
  padding-top: 2px;
  padding-right: 2px;
  display: -ms-flexbox;
  display: flex;
}

.quick-stake-item {
  padding-left: 2px;
  padding-right: 2px;
  width: 100%;
}

.quick-stake-btn {
  background: #d2d2d2;
  width: 100%;
  height: 35px;
}

.quick-stake-confirm {
  background-color: rgb(var(--primary-color-rgb));
}

.ppb-doubleline-keyboard {
  color: #1e1e1e;
  font-size: 15px;
  padding: 5px 0;
  width: 100%;
}

.ppb-calculator-keyboard,
.ppb-doubleline-keyboard {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  box-sizing: border-box;
  outline: 0;
}

.ppb-doubleline-keyboard * {
  box-sizing: border-box;
}

.ppb-doubleline-keyboard .panel-keyboard {
  padding-top: 5px;
}

.ppb-doubleline-keyboard .panel-row {
  display: table;
  width: 100%;
}

.ppb-doubleline-keyboard .panel-left {
  display: table-cell;
  vertical-align: top;
  height: 75px;
  width: 86%;
}

.ppb-doubleline-keyboard .panel-row.bottom-row {
  margin-top: 5px;
}

.ppb-doubleline-keyboard .panel-left .panel-row {
  border-collapse: separate;
  border-spacing: 5px 0;
}

.ppb-doubleline-keyboard .button-container {
  height: 35px;
  width: 16.6666%;
}

.ppb-doubleline-keyboard .button-container-clear {
  height: 75px;
}

.ppb-doubleline-keyboard .button-container,
.ppb-doubleline-keyboard .button-container-clear {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  border-radius: 2px;
  background-color: #fff;
}

.ppb-doubleline-keyboard .panel-right {
  display: table-cell;
  vertical-align: top;
  height: 75px;
  width: 14%;
  padding-right: 5px;
}

.account-statement-container {
  background: #edf0f0 url(../images/pattern.png);
  padding: 15px;
  height: 100%;
}

.account-statement-container .card-content {
  padding: 15px;
}

.sportHighlight {
  padding: 5px 0px 5px 0px !important;
  letter-spacing: 0.3px;
  font-size: 14px;
}

.sportGridPadding {
  padding: 18px 0px 6px 0px;
}

.dropdown-divider {
  margin: 8px 0px 0px 0px !important;
}

.last-dropdown-item {
  border: none !important;
  padding: 5px 9px !important;
  font-size: 15px !important;
}

.overFlowDotted {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #000;
}

.tag-counters {
  float: right;
  display: flex;
}

.tag-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 2px;
  cursor: pointer;
}

.tag-item.disabled {
  filter: grayscale(1);
  opacity: 0.25;
}

.tag-counter {
  background-color: rgb(var(--primary-color-rgb));
  color: var(--badge);
  border-radius: 4px;
  padding: 0 4px;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  position: relative;
  margin-bottom: 5px;
}

.tag-counter::after {
  content: "";
  border: solid;
  border-color: rgb(var(--primary-color-rgb)) transparent;
  border-width: 6px 3px 0 3px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  position: absolute;
}

.tag-name {
  color: var(--black-white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.live-tv {
  float: right;
  margin: 10px 30px 0 20px;
}

.live-tv a {
  color: #000;
}

.casino-game-2nd-slider.third-party .virtual-slide-img {
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  width: 100%;
}

.match-counter {
  background-color: crimson;
  color: #fff;
  padding: 0 5px;
  height: 16px;
  display: flex;
  align-items: center;
  border-radius: 3px;
  font-size: 12px;
  position: absolute;
  top: 2px;
  right: -5px;
  transform: scale(0.85);
  box-shadow: 0 2px 5px rgb(0 0 0 / 50%);
}

.match-counter img {
  margin-right: 2px;
}

/* 
.product-tab-wrapper {
  display: none;
} */

/*  Deposit  */
input.amount {
  color: var(--black-white) !important;
}

/*  KYC */
input.unique-number,
select.document-list {
  color: var(--black-white) !important;
}

/*
input[name="uniqueNumber"][disabled],
select[name="document-list"][disabled] {
 color: black !important; 
}*/


/* Withdraw */
input[name="bankname"],
input[name="bankaccno"],
input[name="bankifsc"],
input[name="accountholdername"],
input[name="MobileNo"],
input[name="amount"],
input[name="description"],
textarea[name="description"] {
  color: var(--black-white) !important;
}

/*   Profile */
input[name="email"] {
  color: var(--black-white) !important;
}

/* PL */
select[name="sports-list"],
select[name="sports-list"] option,
input[type="date"] {
  color: var(--black-white) !important;
  background-color: var(--white-2e2f2f)!important;
}


/* Result */
select[name="tournament-list"],
select[name="tournament-list"] option,
select[name="match-list"],
select[name="match-list"] option,
select[name="market-list"] {
  color: var(--black-white) !important;
}

/* Chip Settings  */
input.chip-name,
input.chip-value {
  color: var(--black-white) !important;
}

/* Change Password  */
input.change-password {
  color: var(--black-white) !important;
}

/* Register */
input[name="user-name"],
input[name="mobile-no"],
input[name="email"],
input[name="new-password"],
input[name="re-enter-password"] {
  color: var(--black-white) !important;
}

.scrollable-height {
  height: calc(100vh - 47px) !important;
  overflow-x: hidden;
  overflow-y: auto;
}

@media (min-width:1200px) {
  .scrollable-height {
    height: calc(100vh - 47px) !important;
  }
}

@media (max-width:991px) {
  .div-scroll {
    max-height: unset !important;
  }

  .scrollable-height {
    height: calc(100vh - 47px) !important;
  }

  .container-main .right.games-block {
    height: unset;
  }

  .left-menu-active {
    max-height: unset !important;
  }
}

@media (max-width:768px) {
  .market-info .market-rule {
    font-size: 11px;
    padding: 0;
    /* color: blue; */
  }

  .market-info .titles {
    font-size: 12px;
  }

  header .navbar-expand .navbar-nav .nav-link {
    padding: 0px !important;
  }

  .left-menu-active {
    max-height: unset !important;
  }

  .scrollable-height {
    height: calc(100vh - 47px) !important;
  }
}

.market-InfoClass {
  width: 170px;
}


.upcoming-match {
  margin-top: 5px;
  border-top: 2px solid var(--primary-light-color);
}

.container-main .main-content-wrapper .notification .onoffswitch {
  top: 8.25px;
}

.padding-tab {
  padding-top: 5px;
  padding-bottom: 5px;
}

.dateTime {
  white-space: nowrap !important;
  align-items: center;
  display: flex;
}

::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
