@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  --primary-color: #0092ad;
  --secondary-color: #434040;
  --text-light: #fff;
  --light_br: #cee4e9;
  --input_bg: #e2ebed;
  --btnbr: #007388;
  --labelcolor: #4c4f50;
  --arrowdown: #666666;
  --blacktext: #000;
  --menuactive: #33a8bd;
  --bodybg: #e4eff1;
  --back: #72bbef;
  --lay: #f994ba;
  --btn-secondery: #d7d7d7;
  --btn-yellow: #ac8442;
  --btn-green: #58ad0c;
  --text-red: #ff0000;
  --text-dark: #2a2a2a;
}

.btn {
  font-size: 14px;
}

*::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: #f5f5f5;
}

*::-webkit-scrollbar {
  width: 6px;
  height: 4px;
  background-color: #fff;
  border: 1px solid #fff;
}

*::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #10495e;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 25px;
  overflow-x: hidden;
  background-color: var(--secondary-color);
}

a:hover,
a {
  text-decoration: none !important;
}

.btn-light {
  background-color: #e3e3e3;
  border-color: #e3e3e3;
}

.dash_header {
  background: #ffffff;
  height: 80px;
  /* border-bottom: 1px solid #edf2f9; */
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 1030;
  display: flex;
}

.side_nav {
  width: 295px;
  background-color: var(--primary-color);
  z-index: 1001;
  top: 80px;
  bottom: 0;
  position: fixed;
  color: #000;
  overflow: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}

.page_container {
  min-height: 100vh;
  padding-left: 295px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
}

.main_content {
  padding: calc(60px + 30px) 30px 30px;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  background-attachment: fixed;
  height: 100vh;
  overflow: scroll;
}

.dash_logo .logo_fold {
  display: none;
}

.dash_logo img {
  max-height: 50px;
}

.dash_header .dash_logo {
  width: 295px;
  /* border-right: 1px solid #edf2f9; */
  display: flex;
  padding-left: 10px;
  background: var(--secondary-color);
  align-items: center;
  /* justify-content: center; */
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  margin-left: 10px;
}

.side_nav .side_nav_inner {
  position: relative;
  height: 100%;
}

.side_nav .side_nav_inner .sideNav_menu {
  position: relative;
  list-style: none;
  margin: 0;
  padding-left: 0;
  overflow: auto;
  /* border-right: 1px solid #edf2f9; */
  height: calc(100vh - 90px);
  padding: 0px;
}

.side_nav .side_nav_inner .sideNav_menu li {
  margin-bottom: 0px;
}

.side_nav .side_nav_inner .sideNav_menu li ul li {
  margin-bottom: 0px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

.side_nav .side_nav_inner .sideNav_menu::-webkit-scrollbar-track {
  background: transparent;
}

.dash_nav_item a {
  display: flex;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-light);
  align-items: center;
  padding: 11px 22px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
}

.dash_nav_item a.active,
.dash_nav_item a:hover {
  border-radius: 0px;
  color: #d77319;
}

.dash_nav_item a .icon_holder {
  display: inline-block;
  flex: 0 0 40px;
  line-height: 0.8;
}

.dash_nav_item a .icon_holder svg {
  height: 20px;
  width: 20px;
  fill: var(--text-light);
}

.dash_nav_item a .title_dash_nav {
  display: block;
  flex: 1;
  font-weight: 630;
  position: relative;
}

/* .dash_nav_item a .title_dash_nav::before{
    border-bottom: 1px solid rgba(190, 209, 235, .3);
    position: absolute;
    content:'';
    height: 100%;
    width:100%;
    bottom: -20px;
} */

.dash_nav_item a svg path {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
}

.dash_nav_item a.active svg path,
.dash_nav_item a:hover svg path {
  fill: #1a73e8;
}

.nav_dash_wrap {
  flex: 1;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(190, 209, 235, 0.3);
  align-items: center;
  padding: 15px 10px;
  background-color: var(--secondary-color);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* nav checkbox */

.dash_userProfile {
  display: flex;
  align-items: center;
}

.dash_userProfile img {
  box-shadow: 0px 5px 10px 6px rgba(41, 72, 152, 0.14);
  border-radius: 10px;
  width: 100%;
  flex: 0 0 48px;
  max-width: 48px;
}

.prfDash_userContent {
  flex: 0 0 calc(100% - 48px);
  max-width: calc(100% - 48px);
  padding-left: 15px;
}

.topPRfNameUser {
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #0d1118;
  margin-bottom: 5px;
}

.makeAvaiDash {
  display: flex;
  align-items: center;
}

.makeAvaiDash span {
  font-weight: 300;
  font-size: 13px;
  line-height: 17px;
  color: rgba(13, 17, 24, 0.6);
  margin-right: 6px;
}

.statusDash_tag {
  font-weight: 400;
  font-size: 13px;
  line-height: 17px;
  color: #0d1118;
  margin-left: 6px;
}

.statusDash_tag.available {
  color: #0cab50;
}

.statusDash_tag.notAvailable {
  color: #ee0909;
}

/* ************ switch style  */

.switch-style-1 {
  line-height: 0;
}

.switch-style-1 input[type="checkbox"],
.switch-style-1 input[type="radio"] {
  appearance: none;
  width: 24px;
  height: 14px;
  border-radius: 30px;
  background: rgb(211, 211, 211);
  background: linear-gradient(90deg,
      rgba(62, 205, 123, 1) 50%,
      rgba(211, 211, 211, 1) 50%);
  margin: 0 6px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background-size: 100px;
  background-position: -70px 0px;
  outline: 0;
  box-shadow: none;
}

.switch-style-1 input[type="checkbox"]::before,
.switch-style-1 input[type="radio"]::before {
  background: #ffffff;
  box-shadow: 3px 1px 4px rgba(0, 0, 0, 0.1);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  content: "";
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.switch-style-1 input[type="checkbox"]:checked::before,
.switch-style-1 input[type="radio"]:checked::before {
  left: 11px;
}

.switch-style-1 input[type="checkbox"]:checked,
.switch-style-1 input[type="radio"]:checked {
  background-position: -20px 0px;
}

.nav_right_notification .dropdown-menu {
  border: 0px;
  border-radius: 10px;
  font-size: 14px;
  min-width: 180px;
  color: #53535f;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  width: 350px;
  padding: 0;
  padding-bottom: 15px;
}

.notiHeader_top {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dee2e6;
}

.notiHeader_top .viewBtn {
  color: #fff;
  background-color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 0.35rem 1rem;
  height: auto;
  line-height: 1.25;
  font-size: 0.875rem;
  border-radius: 5px;
}

.notiHeader_top i {
  padding-right: 5px;
}

.notificationListDrop {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 250px;
  overflow: auto;
}

.notificationListDrop::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.notificationListDrop::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 5px;
}

.notificationListDrop::-webkit-scrollbar-track {
  background: transparent;
}

.notificationListDrop .dropdown-item {
  padding: 15px;
}

.notificationListDrop li:not(:last-child) .dropdown-item {
  border-bottom: 1px solid #edf2f9;
}

.notificationListDrop .dropdown-item:hover {
  background: #fafafa;
}

.notiListCard {
  display: flex;
  align-items: center;
}

.notiListCard .notiListImg {
  flex: 0 0 30px;
  max-width: 30px;
  width: 100%;
}

.notiListCard .notiListImg img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.notiListCard .notiListContent p {
  color: #2a2a2a;
  font-size: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notiListCard .notiListContent p span {
  color: #1a73e8;
}

.notiListCard .notiListContent small {
  display: block;
  color: #72849a;
}

.notiListCard .notiListContent {
  flex: 0 0 calc(100% - 30px);
  max-width: calc(100% - 30px);
  width: 100%;
  padding-left: 15px;
}

.notiHeaderTopHeading {
  color: #212529;
  font-weight: 500;
}

.notiHeaderTopHeading i {
  font-weight: 500;
}

.nav_dash_wrpRight {
  display: flex;
  align-items: center;
}

.rightMenuBtn {
  display: inline-block;
  background: #fff;
  color: #53535f;
  padding: 10px;
  display: flex;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
}

.rightMenuBtn.newNotiMsg::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f9be7a;
  border: 2px solid #1a73e8;
  position: absolute;
  right: 11px;
  top: 11px;
}

.mr-15 {
  margin-right: 15px;
}

.rightMenuBtn.langDropBtn {
  min-width: 48px;
  width: auto;
  padding: 10px 15px;
}

.rightMenuBtn.langDropBtn img {
  height: 14px;
  width: auto;
  margin-right: 10px;
}

.nav_right_notification.landDropDown .dropdown-menu {
  padding: 0;
  width: unset;
  min-width: unset;
  border-radius: 10px;
}

.walletSearchRow .searchRow_col {
  flex: 0 0 70%;
  max-width: 70%;
  width: 100%;
}

.walletSearchRow .walletRow_col {
  flex: 0 0 30%;
  max-width: 30%;
  width: 100%;
}

.searchFilteHome {
  background: #1a73e8;
  border: 1px solid #f3f2f2;
  border-radius: 10px;
  padding: 20px 25px;
}

.searchFilteHome .form-control {
  background: #f7f7f9;
  border-radius: 10px;
  padding: 15px 22px;
  /* background-image: url(../img/search\ icon.svg); */
  background-position: 98%;
  background-repeat: no-repeat;
  color: #0d1118;
  font-size: 18px;
  font-weight: 500;
}

.searchFilteHome .form-control::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #0d1118;
  opacity: 0.5;
}

ul.subMenuSide {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.subMenuSide li a {
  font-weight: 400;
  font-size: 15px;
  color: var(--text-light);
  padding: 11px;
  padding-left: 41px;
  opacity: 0.8;
  margin-left: 60px;
  font-weight: 650;
}

ul.subMenuSide li a:hover {
  color: #d77319 !important;
  opacity: 1;
}

ul.subMenuSide li a span {
  width: 25px;
  display: inline-block;
}

.subMenuLink {
  position: relative;
}

.arrowIconSubmenu {
  position: absolute;
  right: 35px;
  line-height: 30px;
  transition: all 0.05s ease-in;
  -webkit-transition: all 0.05s ease-in;
  top: 18px;
  background-color: var(--text-dark);
}

.subMenuLink .arrowIconSubmenu::before,
.subMenuLink.collapsed .arrowIconSubmenu::before,
.subMenuLink .arrowIconSubmenu::after {
  content: "";
  position: absolute;
  background: 0 0;
  background-image: linear-gradient(to right,
      var(--text-dark),
      var(--text-dark));
  border-radius: 2px;
  width: 6px;
  height: 1.5px;
  top: 4px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: rotate(-135deg) translateX(2px);
  -webkit-transform: rotate(-135deg) translateX(2px);
  right: -19px;
}

.subMenuLink .arrowIconSubmenu::after,
.subMenuLink.collapsed .arrowIconSubmenu::after {
  transform: rotate(-45deg) translateX(2px);
  -webkit-transform: rotate(-45deg) translateX(2px);
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::before {
  transform: rotate(-225deg) translateX(2px);
  -webkit-transform: rotate(-225deg) translateX(2px);
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::after {
  transform: rotate(45deg) translateX(2px);
  -webkit-transform: rotate(45deg) translateX(2px);
}

.subMenuLink:not(.collapsed) {
  color: var(--text-dark);
}

.subMenuLink:not(.collapsed) svg path {
  fill: var(--text-dark);
}

.dashIconFold svg {
  width: 25px;
  height: 25px;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.dashIconFold:hover svg {
  color: var(--text-dark);
}

.dashIconFold {
  display: inline-block;
  padding: 5px;
  margin-right: 10px;
}

.nav_dash_wrpLeft {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 10px;
}

.folded {
  display: none;
}

.is-folded .folded {
  display: block;
}

.is-folded .notFolded {
  display: none;
}

.dashBoard_overLay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.bg_back {
  /* background-image: url(../img/inner-bg.webp); */
  height: 100vh;
  background-color: #ecfcff !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.login_wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

.login_wrapper .form_heading {
  max-width: 310px;
  margin: auto;
  position: relative;
  margin-bottom: 30px;
}

.login_wrapper .form_heading h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--text-primary2);
}

.login_wrapper .login_form_modal {
  padding: 35px 15px;
  max-width: 445px;
  background-color: var(--secondary-color);
  margin: auto;
  border-radius: 10px;
}

.login_wrapper .form_heading h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.login_wrapper .form_heading h2::before {
  content: "";
  height: 2px;
  width: 112px;
  position: absolute;
  left: -9px;
  top: 50%;
  background-image: linear-gradient(to right, var(--primary-color), #fff);
}

.login_wrapper .form_heading h2::after {
  content: "";
  height: 2px;
  width: 112px;
  position: absolute;
  right: -9px;
  top: 50%;
  background-image: linear-gradient(to right, #fff, var(--primary-color));
}

.login_wrapper .login_form_modal .form-control {
  color: var(--primary-color);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--light_br);
  border-radius: 8px;
  padding-left: 45px;
}

.login_wrapper .login_form_modal .form-floating>label {
  left: 35px;
  color: var(--labelcolor);
}

.login_wrapper .login_form_modal .privacy_check {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.login_wrapper .login_form_modal .form-check-input {
  width: 25px;
  height: 25px;
  background-color: #336b62;
  border: 2px solid rgb(111 157 147);
}

.login_wrapper .login_form_modal .form-check-input:focus {
  box-shadow: none;
}

.login_wrapper .login_form_modal .form-check {
  display: flex;
  margin-bottom: 0;
  align-items: center;
  gap: 10px;
}

.login_wrapper .form-check-label {
  margin: 0;
  font-size: 15px;
  color: #79bcaf;
}

.login_wrapper .privacy_check a {
  text-decoration: none;
  color: #79bcaf;
  font-size: 15px;
}

.login_wrapper .login_btn {
  margin-top: 15px;
  text-align: center;
}

.login_wrapper .login_btn .btn-primary {
  background-color: var(--bodybg) !important;
  display: inline-block;
  width: 100%;
  border-radius: 8px;
  height: 55px;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--blacktext);
  border: 1px solid var(--btnbr);
  font-weight: 500;
}

.login_wrapper .input_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  fill: var(--primary-color);
}

.login_wrapper .login_btn .btn-primary:hover {
  background-color: var(--secondary-color);
}

.login_wrapper .input_icon svg {
  height: 22px;
  width: 22px;
}

.login_wrapper .modal_logo img {
  max-width: 200px;
}

.login_wrapper .modal_logo {
  text-align: center;
  margin-top: 40px;
}

.login_wrapper .btn-close {
  display: none;
}

.login_wrapper .logo_block {
  text-align: center;
  margin-bottom: 40px;
}

.form-control:focus {
  box-shadow: none;
}

/* dashborad page css start */

.welcome_text {
  flex: 1;
  text-align: center;
}

.welcome_text p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.userDropDown .rightMenuBtn.langDropBtn img {
  height: 30px;
}

.userDropDown .rightMenuBtn.langDropBtn svg {
  height: 14px;
  width: 14px;
  fill: var(--btn-secondery);
  margin-left: 4px;
}

.userDropDown .rightMenuBtn.langDropBtn:hover {
  color: var(--primary-color);
}

.userDropDown .rightMenuBtn.langDropBtn {
  padding: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.userDropDown .rightMenuBtn.langDropBtn:hover {
  color: #fff;
}

.userDropDown .rightMenuBtn.langDropBtn .user_right_bal {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 19px;
}

.userDropDown .rightMenuBtn.langDropBtn .user_right_bal {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 19px;
}

.nav_right_notification.userDropDown .dropdown-menu {
  min-width: 100px;
  width: 180px;
  padding: 0px;
  border: none;
  border-radius: 5px;
}

.nav_right_notification.userDropDown .dropdown-menu a {
  display: flex;
  align-items: center;
  color: #333;
  gap: 8px;
  font-size: 14px;
  border-bottom: 1px solid #efefef;
  padding: 6px 10px;
}

.nav_right_notification.userDropDown .dropdown-menu a:last-child {
  border-bottom: 0px;
}

.nav_right_notification.userDropDown .dropdown-menu a svg {
  height: 20px;
  width: 20px;
}

.page_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page_heading {
  color: #fff;
  font-size: 16px;

  text-transform: uppercase;
  margin: 0;
}

.breadcrumb_block .breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb_block .breadcrumb-item a {
  color: black !important;
  font-weight: bold;
}

/* .breadcrumb-item+.breadcrumb-item::before {  
    content: var(--bs-breadcrumb-divider, ">");
} */

.dash_box a {
  display: block;
  background-color: #fff;
  padding: 17px;
  border-radius: 10px;
}

.dash_box a h2 {
  font-size: 18px;
  margin: 0;
  color: #232323;
}

.dash_box .dash_icon_box {
  height: 56px;
  width: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.dash_box .dash_icon_box svg {
  height: 30px;
  width: 30px;
}

.light_yellow {
  background-color: #eeead1;
  fill: #bda300;
}

.light_blue {
  background-color: #cfd2ec;
  fill: #5662c0;
}

.light_green {
  background-color: #d6edcb;
  fill: #538837;
}

.light_orange {
  background-color: #f3dedc;
  fill: #d85447;
}

/* bet table css start */
.bet_tbl_inner_block {
  background-color: #fff;
}

.bet_tbl_inner_block .bet_tbl_header {
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 7px 15px;
}

.bet_tbl_inner_block .bet_tbl_header h5 {
  font-size: 16px;
  color: var(--text-light);
  margin: 0;
}

.bet_tbl_inner_block .bet_tbl_row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e4e4e4;
  align-items: center;
  gap: 7px;
  padding: 5px 5px 5px 15px;
  justify-content: space-between;
}

.bet_tbl_row.inplay-bg {
  background-color: rgb(255, 194, 41);
}

.bet_tbl_inner_block .bet_col_70 {
  width: calc(70% - 7px);
}

.bet_tbl_inner_block .bet_col_30 {
  width: calc(30% - 7px);
}

.bet_tbl_inner_block .btn_group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bet_tbl_inner_block .btn_group a {
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  color: var(--text-light);
  width: calc(50% - 3px);
  border-radius: 0;
}

.back {
  background-color: var(--back);
}

.lay {
  background-color: var(--lay);
}

.team_name {
  display: block;
  line-height: normal;
  font-size: 15px;
  font-weight: 500;
}

.Betting_tbl {
  margin-top: 30px;
}

.bet_tbl_inner_block .btn_group a.btn {
  color: #000;
  font-weight: 500;
}

/* bet table css end */

/* modify-master page css start */
.Super_master_details_section {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
}

.jmd_input .jmd_input_btn a {
  padding: 15px 40px;
  background: var(--bg-primary);
  border-radius: 5px;
  margin-top: 20px;
  margin-right: 15px;
  font-weight: 500;
}

.jmd_input .jmd_input_btn a:hover {
  color: #fff;
}

.jmd_input .jmd_input_btn .bg-light-btn {
  background: #dadada;
  color: #000;
  font-weight: 500;
}

.jmd_input .jmd_input_btn .bg-light-btn:hover {
  color: #000;
}

.jmd_input .clearfix_input label {
  margin-bottom: 0px;
  color: #3c3c3c;
}

.jmd_input .clearfix_input {
  margin-bottom: 20px;
}

.jmd_input .input-sub-headding {
  margin-bottom: 10px;
  margin-top: 10px;
}

.jmd_input_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jmd_input_btn .btn {
  display: inline-block;
  width: 110px;
}

.form-select,
.form-control {
  font-size: 14px;
  height: 36px;
}

.btn-primary {
  background-color: var(--secondary-color) !important;
  border: 1px solid var(--secondary-color) !important;
  height: 36px;
}

.btn-primary:hover {
  background-color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
}

.btn-secondary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--text-light) !important;
}

.btn:focus {
  box-shadow: none;
}

/* modify-master page css end */

/* admin details page css start */
.custom_table .table {
  border: 1px solid #d4dee0;
  color: #414141;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.custom_table .table>thead {
  background-color: var(--bodybg);
  color: var(--primary-color);
}

/* .custom_table .table tr {
    white-space:nowrap;
} */
.custom_table .table>thead tr {
  background-color: var(--secondary-color);
}

.custom_table .table>thead tr th {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 10px;
}

.custom_table .table> :not(:first-child) {
  border-top: none;
}

.custom_table .table> :not(caption)>*>* {
  vertical-align: middle;
  border-width: 1px 1px;
  border-color: #eee;
}

.active_lbl {
  background-color: #58ad0c;
  display: inline-block;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  height: 28px;
  padding: 0 16px;
  font-size: 15px;
  border-radius: 0.25rem;
  color: var(--text-light);
}

.action_drop .btn.btn-primary.dropdown-toggle {
  height: 28px;
  padding: 0 8px;
  font-size: 15px;
  color: #fff !important;
}

.action_drop .dropdown-item {
  font-size: 15px;
}

hr {
  margin: 0px 0px !important;
}

.action_drop .dropdown-menu {
  box-shadow: 0 0 15px #0000005c;
  border-color: #d4dee0;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.cursor_pointer {
  cursor: pointer;
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  opacity: 0.7;
}

.match_name {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.tabs_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tabs_btn .active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}

/* admin details page css end */

/* client master page start */
.top_baroption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.top_baroption .btn_left {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: start;
}

.top_baroption .search_bar_right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn_yellow {
  background-color: var(--btn-yellow);
  border-color: var(--btn-yellow);
  color: var(--text-light);
}

.btn_secondery {
  background-color: var(--btn-green);
  color: var(--text-light);
}

.btn_secondery:hover {
  color: var(--text-light);
}

/* client master page end */

/* current sport details page start */
.sportname_search {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 25px;
}

.sportname_search .form-control {
  flex: 0 0 250px;
}

.sportname_search .page_heading {
  flex: 0 0 auto;
}

.plus_value {
  color: var(--btn-green) !important;
}

.mainus_value {
  color: var(--text-red) !important;
}

.custom_table table tfoot {
  background-color: #d3d3d3;
  color: #0e0e0e;
}

/* current sport details page start */

/* agentledger page start */
.search_bar_right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* agentledger page end */

.custom_table .table .bg_green {
  background-color: var(--btn-green);
  color: var(--blacktext);
}

.custom_table .table .bg_red {
  background-color: var(--text-red);
  color: var(--blacktext);
}

.reset_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.win_icon {
  color: var(--btn-green);
}

.pdf_icon {
  color: var(--primary-color);
}

.btn_block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn_block .btn {
  display: inline-block;
  width: 110px;
}

.custom_table .form-switch .form-check-input {
  width: 40px;
}

.custom_table .form-switch .form-check-input:focus {
  box-shadow: none;
}

.custom_table .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.table_btn_top {
  text-align: right;
  margin-bottom: 20px;
}

.action_point {
  display: flex;
  align-items: center;
  gap: 7px;
}

.action_point .form-check-input {
  width: 24px;
  height: 24px;
  padding: initial;
}

/* session modal css */

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border: 2px solid #ccc;
  box-shadow: -2px -1px 20px 9px rgba(0, 0, 0, 0.2);
}

.popup-content {
  text-align: center;
}

.close-popup-button {
  background: #01667a;
  color: #fff;
  display: flex;
  margin: auto;
  padding: 5px 24px;
  border: none;
  border-radius: 5px;
}

svg.logo_fold {
  fill: #0d89a0a6;
}

/* match session page css start */
.bet_inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

.inner_tbl {
  width: 100%;
}

.inner_tbl td {
  width: 33.33%;
}

.inner_tbl tr td {
  padding: 0px;
}

.inner_tbl td a {
  display: block;
  border-radius: 0;
}

.team_name_link {
  color: var(--blacktext);
}

.team_name_link:hover {
  color: var(--primary-color);
}

.bet_tbl td {
  padding: 00;
}

.bet_tbl .td_width {
  width: 100px;
}

.form-switch .form-check-input {
  width: 38px;
  height: 20px !important;
  padding: 5px;
}

.inner_tbl td a.btn {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 12px;
}

.inner_tbl td a.btn .Odds_size {
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
}

.suspend_block {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  background: #000000d1;
  height: 100%;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bet_tbl .table>thead tr th {
  font-size: 13px;
}

.bet_tbl a.team_name_link.font_gridDisplay {
  padding: 3px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.market_minmax .btn::after {
  display: none;
}

.market_minmax .btn {
  display: flex;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  padding: 0px;
  font-weight: 900;
  font-family: none;
  font-size: 13px;
}

.market_minmax {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 8px;
  gap: 6px;
}

.market_minmax ul.dropdown-menu {
  font-size: 14px;
  padding: 13px 10px;
  width: max-content !important;
  min-width: fit-content;
  border: none;
  box-shadow: 0 0 4px rgb(26 26 26 / 25%);
}

.market_minmax ul.dropdown-menu .value_min_max {
  display: flex;
  gap: 10px;
}

/* 
.bet_tbl a.team_name_link.font_gridDisplay.fancy_st_padding{
    padding-right:28px;
} */

.suspend_block span svg {
  height: 20px;
  width: 20px;
  fill: var(--white-text);
}

.suspend_block span {
  color: var(--text-light);
}

.inner_tbl_2 {
  width: 100%;
}

.inner_tbl_2 td a {
  display: block;
  border-radius: 0;
  font-size: 15px;
  min-width: 50px;
}

.inner_tbl_2 td h5 {
  margin: 0;
  font-size: 15px;
}

.bottom_btn_block {
  margin: 15px 0;
}

.score_details ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.score_details ul li {
  display: flex;
  gap: 3;
  align-items: center;
  color: var(--text-light);
}

.score_borad {
  background-image: url(../img/score-bg.jpg);
  background-size: cover;
  padding: 30px 20px;
  background-position: bottom;
  position: relative;
  z-index: 1;
}

.score_borad::before {
  content: "";
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.game_setting_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.game_setting_block .form-switch {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 0;
}

.game_setting_block .form-check-label {
  margin: 0;
  line-height: normal;
}

.form-switch .form-check-input {
  width: 40px;
}

.form-switch .form-check-input:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.search_dropdown {
  background: #e4eff1;
  border-radius: 4px;
  padding: 5px 15px;
  position: absolute;
  width: 100%;
  top: auto;
}

.search_dropdown ul {
  padding: 0;
  margin: 0;
  width: 100%;
  max-height: 200px;
  overflow: auto;
}

.search_dropdown ul li {
  list-style: none;
}

.search_dropdown ul li a {
  text-decoration: none;
  font-size: 15px;
  color: var(--blacktext);
  padding: 5px 0;
  display: block;
}

.inline_btn {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
}

.market_minmax.bet_btn {
  position: absolute;
  right: 5px;
  top: 6px;
}

.bet_btn1 {
  padding: 1px 5px;
  line-height: normal;
}

.bet_btn1 img {
  height: 17px;
}

.font_gridDisplay {
  display: grid;
  line-height: normal;
}

.Search_modal_box {
  position: relative;
  margin-right: 10px;
}

.Search_modal_box .sarech_plusbtn {
  position: absolute;
  right: 7px;
  top: 5px;
}

.Search_modal_box .sarech_plusbtn svg {
  width: 20px;
  height: 20px;
  fill: #0092ad;
}

.modal-backdrop {
  display: none !important;
}

.sitemoadal .modal-header {
  background-color: var(--btnbr);
  padding: 8px 15px;
}

.sitemoadal .modal-header h5 {
  color: #fff;
  font-size: 18px;
}

.sitemoadal .modal-header button.btn-close {
  filter: invert(1);
  opacity: 1;
}

.sitemoadal table.table {
  margin-bottom: 0px;
}

.sitemoadal .card-title {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 500;
}

.sitemoadal .form-check-input {
  width: 19px !important;
  height: 19px !important;
  padding: 1px;
  border-radius: 2px;
}

.top_details {
  margin-bottom: 20px;
}

.top_details .sportname_search .page_heading {
  flex: 0 0 90px;
  font-size: 15px;
}

.top_details .sportname_search {
  gap: 20px;
  margin-bottom: 10px;
}

.bet_tbl_inner_block .bet_tbl_header .imgWidth {
  width: 22px;
  /* filter: invert(1); */
}

.change_pass_block {
  display: flex;
  gap: 7px;
}

.tbl_btn {
  display: flex;
  gap: 7px;
}

.welcome_text {
  padding: 0 15px;
}

.custom_table .table-responsive {
  min-height: 260px;
}

.inner_top_block h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.top_details.inner_top_block .sportname_search {
  gap: 20px;
  margin-bottom: 0;
}

.bottom_btn_block button.btn.btn-primary {
  padding: 3px 11px;
  height: auto;
  border-radius: 30px;
  border: none !important;
  font-size: 14px;
}

/* 26-02-2024 css start */
.custom_select_block label {
  display: block;
}

.custom_select_block .mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 0;
  padding-bottom: 0;
  height: 40px !important;
  display: block;
}

.custom_select_block .mat-mdc-form-field {
  min-width: 100%;
}

.custom_select_block .mat-mdc-form-field {
  min-width: 100%;
  width: 100%;
}

.custom_select_block .mat-mdc-text-field-wrapper {
  width: 100%;
  max-height: 36px;
}

.custom_select_block .mat-mdc-form-field-subscript-wrapper {
  display: none;
}

.custom_select_block .mat-mdc-select-arrow svg {
  top: 40%;
  left: 50%;
  transform: translate(-40%, -27%);
}

/* 26-02-2024 css end */

/* *** loader css start ****  */

.loader-wrapper {
  background: rgba(255, 255, 255, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
  content: "";
  width: 100px;
  height: 100px;
  border: 5px solid rgba(0, 0, 0, 0.05);
  border-top-color: #725097;
  border-radius: 50%;
  animation: spin 1.5s infinite linear;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* *** loader css end  ****  */

#detailaModal {
  background: #0000006e;
}

#detailaModal .modal-body {
  height: 300px;
}

.modal-body .custom_table .table-responsive {
  min-height: auto;
}

.table_btn {
  gap: 5px;
}

.table_btn .btn-primary {
  height: auto;
}

.match_detail_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 5px;
}

.match_detail_header h5 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0px;
}

.match_detail_header .dtl_headr {
  display: flex;
  gap: 5px;
}

.match_detail_header .dtl_headr .btn {
  padding: 4px 8px;
  font-size: 14px;
  height: auto;
  border: none !important;
}

.match_detail_header .dtl_headr .btn::after {
  display: none;
}

.match_detail_header .dtl_headr .btn.live_tv_btn {
  background-color: #fd0 !important;
  color: #000 !important;
}

.match_detail_header .dtl_headr .dropdown ul.dropdown-menu {
  font-size: 13px;
  line-height: 25px;
  padding: 0px;
  overflow: hidden;
}

/* scoreboard */

.scoreboard {
  background-color: #181818;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
}

.scoreboard .scoreboard-card_panel .teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.scoreboard .scoreboard-card_panel .team_group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.scoreboard .scoreboard-card_panel .team_group .team_score {
  font-weight: 500;
}

.scoreboard .scoreboard-card_panel .score_middle_title {
  background-color: var(--primary-color);
  margin-top: 13px;
  padding: 5px 10px;
}

.scoreboard .scoreboard-card_panel .batting_stats {
  background-color: #2e2e2e;
  padding: 12px;
}

.scoreboard .scoreboard-card_panel .players_group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.scoreboard .scoreboard-card_panel .batting_stats .title {
  margin-bottom: 2px;
  font-weight: 500;
}

.scoreboard .scoreboard-card_panel .batting_stats .players_group .score {
  display: inline-block;
  margin-left: 7px;
  color: #2cd448;
}

.scoreboard .current_over {
  text-align: center;
  background-color: #2e2e2e;
  padding: 25px 10px;
  height: 100%;
}

.scoreboard .current_over .title {
  font-size: 20px;
  font-weight: 500;
}

.scoreboard .current_over .ball_group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.scoreboard .current_over .ball_group .ball {
  background-image: url("../img/ball-score.png");
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.scoreboard .current_over .ball_group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 19px;
}

.scoreboard .current_over .ball_group .ball span {
  z-index: 222;
}

.scoreboard .current_over .ball_group .ball::before {
  border-radius: 50%;
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  height: 40px;
  width: 40px;
  position: absolute;
  left: 0;
  right: 0;
}

.scoreboard .current_over .ball_status {
  text-overflow: ellipsis;
  animation: grow 2s ease infinite;
  font-size: 26px;
  margin-top: 25px;
}

@keyframes grow {
  0% {
    transform: scale(0.3);
  }

  to {
    transform: scale(1);
  }
}

.table .dis_txt {
  background-color: var(--secondary-color);
  padding: 5px 6px;
  font-size: 11px;
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
}

.modal {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-body .nav-tabs {
  margin-bottom: 15px;
  border: none;
}

.modal-body .nav-tabs .nav-link {
  border: none;
  background-color: #eee;
  border-radius: 0px;
  color: #242424;
}

.modal-body .nav-tabs .nav-link.active {
  background-color: var(--secondary-color);
  color: #fff;
}

tr.back td,
tr.lay td {
  color: #000;
}

.pdf_excel-btn {
  display: inline-flex;
  gap: 5px;
}

.pdf_excel-btn button.btn {
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  border: none;
  padding: 8px 9px;
  gap: 5px;
}

.pdf_excel-btn button.btn svg {
  fill: #fff !important;
  width: 16px;
  height: 16px;
}

.pdf_excel-btn button.btn.btn-pdf {
  background-color: #cb0606 !important;
}

.pdf_excel-btn button.btn.btn-excel {
  background-color: #217346 !important;
}

.form-radio-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-radio-group .form-check-input {
  width: 16px !important;
  height: 16px !important;
  padding: 2px;
  border-radius: 50% !important;
}

/* 08-03-2024  css start */
.show_drop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dataTables_filter label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn_block_tbl {
  display: flex;

  gap: 3px;
}

.btn_block_tbl .btn-primary {
  padding: 3px 6px;
  height: auto;
  font-size: 13px;
}

/* 08-03-2024  css end */
.match_setting_item {
  margin-bottom: 15px;
}

.match_setting_item .match_setting_header {
  background: var(--menuactive);
  color: #fff;
  padding: 8px 11px;
  margin-bottom: 5px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}

.mat-mdc-form-field-subscript-wrapper {
  display: none;
}

.mat-mdc-text-field-wrapper.mdc-text-field--outlined .mat-mdc-form-field-infix {
  padding-top: 6px !important;
  padding-bottom: 5px !important;
  min-height: 36px !important;
  max-height: 36px !important;
}

.mat-mdc-select-value-text {
  font-size: 14px !important;
}

.mat-mdc-form-field {
  width: 100%;
}

.input_block label {
  display: block !important;
}

.session_fancy_bet_table a.btn {
  font-size: 13px;
}

.right_search_box {
  max-width: 280px;
  margin-left: auto;
}

.list_dropdown {
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px #00000014;
  width: 100%;
  top: 62px;
  z-index: 1;
  max-height: 180px;
  overflow: auto;
  border: 1px solid #ced4da;
}

.list_dropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.list_dropdown ul li {
  padding: 10px 15px;
  background-color: #ededed00;
  margin-bottom: 0px;
  border-bottom: 1px solid #ced4da;
  line-height: normal;
}

.list_dropdown ul li:hover {
  cursor: pointer;
  /* background-color: #ced4da; */
}

/* 03-05-2024 css start */
.select_input_block {
  width: 100%;
}

.list_max_width {
  max-width: 250px;
  width: 100%;
  top: 36px;
}

.top_btn_block {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: end;
  overflow: auto;
  padding-bottom: 5px;
}

.top_btn_block button {
  flex: 0 0 auto;
}

/* 03-05-2024 css end */

/* 06-05-2024 css start */
.input_with_close {
  position: relative;
}

.input_with_close .form-control {
  padding-right: 30px;
}

.input_with_close a {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.input_with_close a svg {
  height: 18px;
  width: 18px;
}

.blockchain {
  margin-bottom: 15px;
  overflow: auto;
}

.blockchain .agent_path-L {
  border: 1px solid #7e97a7;
  border-radius: 3px;
  background-color: #eee;
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.blockchain .agent_path-L ul {
  margin: 0;
}

.blockchain .agent_path-L li {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  font-weight: 700;
  list-style: none;
  background-repeat: no-repeat;
  padding: 0 15px 0 10px;
  background-position: 100% -45px;
  display: inline-flex;
  background-image: url(../img/agent-bg.png);
}

.blockchain .agent_path-L li a {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.blockchain .agent_path-L li:last-child {
  background: no-repeat;
}

.blockchain .agent_path-L li span {
  width: auto;
  height: 15px;
  line-height: 12px;
  text-decoration: none !important;
  color: #fff;
  border-radius: 4px;
  margin-right: 5px;
  font-size: 10px;
  margin-top: 0;
  font-weight: lighter;
  display: inline-flex;
  background: #d77319;
  justify-content: center;
  align-items: center;
}

/* 06-05-2024 css end*/

/* 10-05-2024 css strat */
.th_custom {
  width: 150px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.th_custom .btn_block_tbl button {
  height: 24px;
  width: 24px;
  padding: 0;
}

/* 10-05-2024 css end */
.top_logo_image {
  text-align: center;
  margin-bottom: 50px;
}

.top_logo_image img {
  max-height: 150px;
}

.action-btn-icon {
  padding: 0 6px !important;
}

.action-btn-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff !important;
}

.Date_time_box {
  width: 53px;
}

.bd-blue-100 {
  background-color: #cfe2ff;
}

.collapsing {
  transition: height 0.25s ease !important;
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.25s ease !important;
}

.custom-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.custom-pagination button {
  border: none;
  width: 27px;
  height: 27px;
  border-radius: 4px !important;
  font-size: 13px;
}

.custom-pagination button.pagination-previous {
  width: auto;
}

.custom-pagination button.pagination-next {
  width: auto;
}

.delete_color {
  background: hwb(354 12% 41%) !important;
}

/* 30-05-2024 css start */
.inplay_dot {
  flex: 1;
  text-align: right;
  color: #fff;
}

.inplay_dot span {
  width: 12px;
  height: 12px;
  background-color: var(--text-red);
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* 30-05-2024 css end */

.market_minmax.bet_btn .bet_btn1 {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .mat-mdc-option {
    font-size: 12px !important;
  }

  ::ng-deep .mdc-list-item__primary-text {
    font-size: 12px !important;
  }
}

.subMenuLink .arrowIconSubmenu::before,
.subMenuLink.collapsed .arrowIconSubmenu::before,
.subMenuLink .arrowIconSubmenu::after {
  content: "";
  position: absolute;
  background: 0 0;
  background-image: linear-gradient(to right,
      rgb(255, 255, 255),
      rgb(255, 255, 255));
  border-radius: 2px;
  width: 6px;
  height: 1.5px;
  top: 4px;
  transition: background 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
    top 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: rotate(-135deg) translateX(2px);
  -webkit-transform: rotate(-135deg) translateX(2px);
  right: -19px;
}

.subMenuLink .arrowIconSubmenu::after,
.subMenuLink.collapsed .arrowIconSubmenu::after {
  transform: rotate(-45deg) translateX(2px);
  -webkit-transform: rotate(-45deg) translateX(2px);
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::before {
  transform: rotate(-225deg) translateX(2px);
  -webkit-transform: rotate(-225deg) translateX(2px);
}

.subMenuLink:not(.collapsed) .arrowIconSubmenu::after {
  transform: rotate(45deg) translateX(2px);
  -webkit-transform: rotate(45deg) translateX(2px);
}

.subMenuLink:not(.collapsed) {
  color: #fff;
}

.subMenuLink:not(.collapsed) svg path {
  fill: #fff;
}