.user-tabs.custom {
  margin-right: -15px;
  margin-left: -15px;
  padding-left: 0;
  background-color: var(--primary-dark-color);
}

.content-page>.content.custom {
  padding-left: 0;
  padding-right: 0;
}

.user-tabs.custom .nav.nav-tabs {
  background-color: var(--primary-dark-color);
}

.user-tabs.custom .nav.nav-tabs .tab {
  width: auto !important;
  background-color: var(--primary-dark-color);
}

.user-tabs.custom .nav.nav-tabs a {
  text-transform: capitalize;
  font-weight: 600;
  padding-left: 15px;
  padding-right: 15px;
  color: #000 !important;
  border-radius: 0;
}

.user-tabs.custom .nav.nav-tabs a.active {
  color: #fff !important;
  background-color: #232323;
}

.user-tabs.custom .nav.nav-tabs a:hover {
  color: #000 !important;
  text-decoration: underline;
  /* border-bottom: 2px solid #000; */
}

.breadcrumb.custom {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0.25rem;
  margin-bottom: 0;
}

.mini-stat.custom {
  padding: 5px;
  /* text-align: center; */
}

.mini-stat.custom .mini-stat-info span {
  font-size: 16px;
}

.gutters-2 {
  margin-right: -2px;
  margin-left: -2px;
}

.gutters-2>[class*="col-"] {
  padding-right: 2px;
  padding-left: 2px;
}

.card-body.custom {
  padding: 0;
}

.ngx-pagination .current {
  background-color: #000 !important;
}

thead.color-header {
  background-color: #dcdcdc;
  color: #232323;
}

thead.color-header tr th {
  line-height: 1.2;
  vertical-align: middle;
}

.status a {
  display: inline-block;
  font-weight: 600;
  font-size: 11px;
  border: 1px solid;
  border-radius: 5px;
  height: 18px;
  padding: 0 5px;
  background-color: #e8e8e8;
  color: #999;
  white-space: nowrap;
  color: #000 !important;
}

.status a i {
  font-size: 8px;
  padding-right: 2px;
  position: relative;
  top: -1px;
}

.status.suspend a {
  background-color: #fcdddc;
  border-color: #facac9;
  color: #ef5350;
  white-space: nowrap;
}

.status.active a {
  color: #119d31;
  background-color: #d4edda;
  border-color: #c3e6cb;
  white-space: nowrap;
  color: #000 !important;
}

.status.active a i {
  color: #119d31 !important;
}

.status.locked a {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.status.locked a i {
  color: #383d41 !important;
}

.action-btn {
  padding: 4px 5px;
  line-height: 100%;
  margin: 1px;
}

.action-btn i {
  margin-right: unset !important;
}

.action-btn-inverse {
  padding: 4px 8px;
  line-height: 100%;
}

.btn-info.action-btn-inverse {
  border: 1px solid #23779b !important;
  margin: 0px 3px;
}

.radio-tile-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.radio-tile-group .input-container {
  position: relative;
  height: auto;
  width: 7rem;
  margin: 0.5rem 0.2rem;
}

.radio-tile-group .input-container label {
  margin-bottom: 0;
}

.radio-tile-group .input-container label input {
  top: 2px;
  position: relative;
}

.radio-tile-group .input-container .radio-button {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.radio-tile-group .input-container .radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 2px solid #079ad9;
  border-radius: 5px;
  padding: 1rem;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.radio-tile-group .input-container .radio-tile.active {
  border-color: #c3e6cb;
  background-color: #d4edda;
}

.radio-tile-group .input-container .radio-tile.suspend {
  background-color: #fcdddc;
  border-color: #facac9;
}

.radio-tile-group .input-container .radio-tile.locked {
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.radio-tile-group .input-container .icon svg {
  fill: #079ad9;
  width: 3rem;
  height: 3rem;
}

.radio-tile-group .input-container .icon i {
  font-size: 2rem;
  text-align: center;
  color: #079ad9;
}

.radio-tile-group .input-container .radio-tile.active .icon i {
  color: #119d31;
}

.radio-tile-group .input-container .radio-tile.suspend .icon i {
  color: #ef5350;
}

.radio-tile-group .input-container .radio-tile.locked .icon i {
  color: #383d41;
}

.radio-tile-group .input-container .radio-tile-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #079ad9;
}

.radio-tile-group .input-container .radio-tile.active .radio-tile-label {
  color: #119d31;
}

.radio-tile-group .input-container .radio-tile.suspend .radio-tile-label {
  color: #ef5350;
}

.radio-tile-group .input-container .radio-tile.locked .radio-tile-label {
  color: #383d41;
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile {
  background-color: #079ad9;
  border: 2px solid #079ad9;
  color: white;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile .icon svg {
  fill: white;
  background-color: #079ad9;
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile .icon i {
  color: white;
  background-color: #079ad9;
}

.radio-tile-group .input-container .radio-button:checked+.radio-tile .radio-tile-label {
  color: white;
  background-color: #079ad9;
}

.my-account-card.card-box .card {
  margin-bottom: 1px;
}

.my-account-card.card-box .card .card-header {
  border-radius: 0;
  padding: 10px;
}

.my-account-card.card-box .card .card-header .card-title {
  font-weight: 400;
  text-transform: capitalize;
}

.my-account-card.card-box .card .card-header a[data-toggle="collapse"]::before {
  content: none;
}

.my-account-card.card-box .card .card-body {
  padding: 0;
}

.my-account-card.card-box .card .card-body .list-group-item {
  padding: 5px 10px;
  font-size: 13px;
}

.my-account-card.card-box .card .card-body .list-group-item.active {
  /* background-color: #fff4b4; */
  border-color: #dddddd;
  color: #444444;
  z-index: 2;
}

table .text-success {

  color: #1db354 !important;

}

.mini-stat.custom.acount-summary {
  font-weight: 600;
}

.mini-stat.custom.acount-summary .mini-stat-info span {
  font-size: 21px;
  line-height: 100%;
}

.mini-stat.custom.acount-summary .mini-stat-info span small {
  font-size: 40%;
  opacity: .5;
  line-height: 100%;
}

.radio label::before,
.checkbox label::before,
.checkbox label::after {
  top: 1px;
}

.radio label::after {
  top: 4px;
}

.input-small {
  width: 130px;
  height: calc(1.3rem + 2px);
  border: 1px solid #dbdbdb;
}

.input-medium {
  width: 150px;
}

.modal-header.custom {
  background-color: var(--primary-color);
}

.modal-header.custom h4 {
  color: #000;
}

.modal-header.custom .close {
  color: #fff;
}

.rm-tab .nav.nav-tabs>li>a.active {
  background-color: #2b4049;
  color: #fff !important;
}

.rm-tab .nav.nav-tabs>li>a {
  margin-right: 10px;
  line-height: 35px;
}

.rm-tab .nav.nav-tabs>li>a.active:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background-color: #2b4049;
  -webkit-transform: skewX(20deg);
  transform: skewX(20deg);
}

.rm-tab .nav.nav-tabs>li>a.active:before {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background-color: #2b4049;
  -webkit-transform: skewX(20deg);
  transform: skewX(20deg);
}

.rm-tab .nav.nav-tabs>li>a:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background-color: #58c9c7;
  -webkit-transform: skewX(20deg);
  transform: skewX(20deg);
  box-shadow: 5px 0 6px rgba(0, 0, 0, 0.2);
}

.rm-tab .nav.nav-tabs>li>a:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 20px;
  background-color: #58c9c7;
  -webkit-transform: skewX(20deg);
  transform: skewX(20deg);
  box-shadow: -5px 0 6px rgba(0, 0, 0, 0.2);
}

.rm-tab .nav-tabs .nav-item {
  margin-bottom: 0;
}

.rm-tab .nav.nav-tabs {
  overflow: hidden;
}

.bets-wrap {
  position: relative;
  /*background-color: #fff;*/
  /*border-top: 1px solid #7E97A7;*/
  margin-top: 10px;
  /*margin-bottom: 15px;*/
}

.bet-all td {
  border-top: 0;
}

.refer_only {
  position: absolute;
  top: -24px;
  font-size: 11px;
  color: #7E97A7;
  line-height: 23px;
  margin-left: 5px;
}

.bets {
  width: 100%;
  margin-top: -24px;
}

.bets td,
.bets-HS td,
.bets-GH td {
  width: 8.97436%;
  /*border-bottom: 1px solid #7E97A7;*/
  border-left: 1px solid #ddd;
  font-weight: bold;
  text-align: center;
  color: #333;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.bets .refer-bet,
.bets-HS .refer-bet,
.bets-GH .refer-bet,
.bets .refer-book,
.bets-HS .refer-book,
.bets-GH .refer-book {

  font-size: 11px;
  line-height: 22px;
  font-weight: normal;
  text-align: left;
}


.bets .bet-all td,
.bets-HS .bet-all td,
.bets-GH .bet-all td {

  background-color: transparent;
  border-left-color: transparent;
  padding-bottom: 1px;

}

.bets .back-all,
.bets .lay-all {
  background-image: url("../images/main-saa87811704.png");
  background-repeat: no-repeat;
}

.bets .bet-all a,
.bets-HS .bet-all a,
.bets-GH .bet-all a {
  position: relative;
  width: 100%;
  height: 22px;
  line-height: 22px;
  cursor: pointer;
}

.bets .bet-all a {
  float: left;
}

.bets .back-all,
.bets-HS .back-all,
.bets-GH .back-all {

  background-position: -274px -251px;

}

.bets td a,
.bets-HS td a,
.bets-GH td a {
  position: relative;
  height: 35px;
  color: #1E1E1E;
  padding: 3px 0 2px;
  cursor: pointer;
}

.bets .bet-all span,
.bets-HS .bet-all span,
.bets-GH .bet-all span {
  position: absolute;
  width: 100%;
  font-weight: bold;
  font-size: 12px;
  left: 0;
  right: 0;
  bottom: 0;
}

.bets .lay-all,
.bets-HS .lay-all,
.bets-GH .lay-all {
  background-position: 100% -355px;
}

.bets .back-3,
.bets-HS .back-3,
.bets-GH .back-3 {
  background-color: #D7E8F4;
  border-left-color: #fff;
}

.bets td a,
.bets-HS td a,
.bets-GH td a {
  position: relative;
  height: 35px;
  color: #1E1E1E;
  padding: 3px 0 2px;
  cursor: pointer;
  display: block;
  line-height: 14px;
  font-size: 12px;
}

.bets td a span {
  display: block;
  font-size: 10px;
}

.bets .back-2,
.bets-HS .back-2,
.bets-GH .back-2 {

  background-color: #B7D5EB;
  border-left-color: #fff;

}

.bets .back-1,
.bets-HS .back-1,
.bets-GH .back-1 {
  background-color: #72BBEF;
  border-left-color: #fff;
}

.bets .lay-1,
.bets-HS .lay-1,
.bets-GH .lay-1 {
  background-color: #FAA9BA;
  border-left-color: #fff;
}

.bets .lay-2,
.bets-HS .lay-2,
.bets-GH .lay-2 {
  background-color: #EFD3D9;
  border-left-color: #fff;
}

.bets .lay-3,
.bets-HS .lay-3,
.bets-GH .lay-3 {
  background-color: #F6E6EA;
  border-left-color: #fff;
}

.bets .refer-book {
  text-align: right;
}

.icon-predict {
  background-image: url("../images/main-saa87811704.png");
  background-repeat: no-repeat;
}

.icon-predict {

  background-position: -398px -1704px;
  height: 16px;
  width: 16px;

}

.icon-time,
.icon-live,
.icon-irun,
.icon-predict,
.icon-cashout {

  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
  vertical-align: top;

}

.bets th p,
.bets-HS th p,
.bets-GH th p {
  width: 292px;
  margin-bottom: 0;
}

.game-info {
  padding: 0;
  float: left;
}

.game-info li {

  padding: 7px 0;
  display: block;
  float: left;
  color: #508D0E !important;
}

.icon-irun {
  background-image: url("../images/main-saa87811704.png");
  background-repeat: no-repeat;
  background-position: -399px -2065px;

}

.game-matched {
  padding: 0 5px;
}

.game-matched dt {
  padding: 7px 0 0;
  display: inline-block;
}

.game-matched dd {
  font-weight: bold;
  color: #1E1E1E;
  padding: 7px 0 0 5px;
  display: inline-block;
  margin-bottom: 0;
}

.dark-tab .nav.nav-tabs>li>a {
  line-height: 28px;
  height: 30px;
  border: 1px solid #2b4049;
  padding-left: 80px;
  padding-right: 80px;
}

.dark-tab .nav.nav-tabs>li>a.active {
  background-color: #2b4049;
  border: 0;
  color: #fff !important;
}

.dark-tab .nav.nav-tabs>li:first-child>a {
  border-radius: 3px 0 0 3px;
}

.dark-tab .nav.nav-tabs>li:last-child>a {
  border-radius: 0 3px 3px 0;
}

.dark-tab.inverse .nav.nav-tabs+.tab-content {
  border-top: 2px solid #2b4049;
}

.dark-tab.inverse .nav.nav-tabs>li>a {
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 5px;
}

.card-header.custom {
  background-color: rgba(0, 0, 0, .1);
}

.card-header.custom .breadcrumb {
  padding: .3rem 1rem;
  margin-bottom: 0;
}

.user-tabs.custom .nav.nav-tabs a span {
  display: inline-block !important;
}

.ngx-pagination {
  padding-left: 0;
  /* margin: 0.5rem !important; */
}

.sport-heading {
  padding: 2px 10px !important;
}

.sport-heading h5 {
  margin-top: 0;
  padding: 5px 0;
}

.banking-search input {
  border: 1px solid #ddd;
}

.select-month {
  margin: 0.7rem 0;
}

.card-body {
  padding: 0.25rem;
}

.sport-box {
  border-bottom: 2px solid lightgray !important;
}

.tournament-heading {
  padding: 3px 0px 4px 15px !important;
}

.tournament-heading h5 {
  margin-top: 0 !important;
  line-height: 100%;
  padding: 5px 0;
}

.tournament-heading h5 a label {
  margin-bottom: 0;
}

.sport-heading h5 a label {
  margin-bottom: 0;
}

.match-heading {
  padding: 3px 0px 4px 20px !important;
}

.match-heading h5 {
  margin-top: 0;
  padding: 5px 0;
}

.match-heading a label {
  margin-bottom: 0;
}

@media (max-width:767px) {
  body {
    font-size: 0.7rem;
  }

  th {
    font-size: 11px;
  }

  .nav>li>a {
    font-size: 11px;
    padding-right: 0;
  }

  .nav.nav-tabs>li>a,
  .nav.tabs-vertical>li>a {
    line-height: 30px;
  }

  .user-tabs.custom .nav.nav-tabs a {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dropdown-menu>li>a {
    padding: 3px 10px;
    font-size: 11px;
  }

  h5 {
    font-size: 12px;
    margin-top: 0;
  }

  .tournament-heading {
    padding: 5px 0px 5px 15px !important;
  }

  .sport-heading h5 {
    padding: 5px 0;
  }

  .match-heading {
    padding: 5px 0px 5px 20px !important;
  }

  .logo {
    line-height: 40px;
  }

  .content-page>.content.custom {
    padding-bottom: 10px;
  }

  .profile img {
    width: 25px;
    height: 25px;
  }

  .navbar-right .show .dropdown-menu {
    margin-top: 0;
  }

  .mini-stat.custom .mini-stat-info span {
    font-size: 12px;
  }

  .mini-stat.custom {
    padding: 1px 10px 3px;
    margin-bottom: 5px;
  }

  thead.color-header tr th {
    font-size: 11px;
    line-height: 12px;
  }

  .status a {
    padding: 0 2px;
    font-size: 9px;
    /* width: 45px; */
  }

  .status.suspend a {
    width: 64px;
  }

  .action-users {
    display: inline-block !important;
    width: 100px;
  }

  .action-users.custom {
    width: 60px;
  }

  .action-users button {
    width: 22px;
    font-size: 10px;
    margin-bottom: 2px;
  }

  .account-name {
    display: inline-block !important;
    width: 100px;
  }

  .radio-tile-group .input-container {
    width: 5rem;
  }

  .d-w-td {
    display: inline-block;
    width: 148px;
  }

  .d-w-td .btn-info.action-btn-inverse {
    padding: 2px 4px;
  }

  .d-w-td .input-small {
    width: 90px;
    height: calc(1.15rem + 1px);
  }

  /*.cr-td {
		display: inline-block;
	}
	.rpl-td {
		display: inline-block;
	}
	.log-td {
		display: inline-block;
	}*/
  .cr-td .action-btn-inverse {
    padding: 4px;
    width: 22px;
    font-size: 10px;
  }

  h4 {
    line-height: 18px;
    font-size: 15px;
  }

  .form-group {
    margin-bottom: 0.5rem;
  }

  .form-control.custom-select {
    height: calc(1.5rem + 1.5px);
    font-size: 12px;
    padding: .175rem 1.75rem .175rem .75rem;
  }

  .page-title {
    font-size: 12px;
  }

  .bets th p,
  .bets-HS th p,
  .bets-GH th p {
    width: 125px;
    margin-bottom: 0;
  }

  .bets td a span {
    font-size: 9px;
    font-weight: 400;
  }

  .bets .bet-all span,
  .bets-HS .bet-all span,
  .bets-GH .bet-all span {
    font-size: 11px;
  }
}

@media (max-width:768px) {
  .popover {
    transform: translate(36px, -70px) !important;
  }

  /* .dateTime {

    .popover {
      top: 90% !important;
      left: 55px !important;
    }

    .popover-body {
      max-width: 150px !important;
    }
  } */
}





@media (max-width: 1012px) {
  .header-ui {
    display: none;
  }
}