:root {
  --primary-color: #03133B;
  --primary-color2: #10D25C;
  --primary-light: #273B6B;
  --secondary-color: #41CF8D;
  --secondary-color2: #373737;
  --other-bg: #172648;
  --bg-body: #010922;
  --text-white: #fff;
  --text-black: #000;
  --light-text: #566594;
  --tabs-bg: #182548;
  --green-bg: #4caf50;
  --br-color: #273B6B;
  --select-box-bg: #1F2C53;
  --input-bg: #0b1c47;
  --bg-gredient-1: linear-gradient(to bottom, #FF80A8, #F0216E);
  --bg-gredient-2: linear-gradient(to bottom, #41CF8D, #10D25C);
  --bg-gredient-2-hover: linear-gradient(to bottom, #0baf4b, #7bdbae);
  --footer-bg: #112558;
  --back: #55B7FD;
  --lay: #F994BA;
}

a {
  text-decoration: none;
transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 25px;
  overflow-x: hidden;
  color: var(--text-white);
  background-color: var(--bg-body);
}

button:focus {
  box-shadow: none !important;
}

/* home page css start */
.top_header {
    background-color: var(--primary-color);
    /* height: 50px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}

.top_header .top_header_left {
  display: flex;
  align-items: center;
}

.top_header .top_header_left a {
  border: 1px solid var(--br-color);
  border-radius: 5PX;
  min-width: 112px;
  padding: 7px 23px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: normal;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
}

.top_header .top_header_left a img {
  height: 17px;
  width: 17px;
}
.top_header .top_header_left a:hover{
  background-color: var(--primary-color2);
}
.top_header .login_singup_right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: end;
}

.top_header .login_singup_right .login_btn {
  background: var(--bg-gredient-1);
  border-radius: 5px;
  padding: 7px 21px;
    font-size: 14px;
  color: var(--text-white);
  border: 0;
  line-height: normal;
  min-width: 89px;
  border: 1px solid transparent;
}

.top_header .login_singup_right .singup_btn {
  background: var(--bg-gredient-2);
  border-radius: 5px;
 padding: 7px 21px;
    font-size: 14px;
  color: var(--text-white);
  border: 0;
  line-height: normal;
  min-width: 89px;
  border: 1px solid transparent;
}
.top_header .login_singup_right .singup_btn:hover{
   color: var(--primary-color2);
   border-color: var(--primary-color2);
   background: transparent;
}
.top_header .login_singup_right .login_btn:hover{
  color: #f22d76;
    border-color: #f22d76;
   background: transparent;
}
/* header css start */
.header_wrapper {
  height: 50px;
  padding: 0 20px;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.header_wrapper .logo_block {
  min-width: 250px;
  position: relative;
}
.logo_block img{
  max-width: 150px;
}
.header_wrapper .logo_block::after {
  content: '';
  width: 3.17px;
  height: 84px;
  background-color: var(--primary-color);
  position: absolute;
  top: -24px;
  right: 40px;
  transform: rotate(343deg);
}

.header_wrapper .header_menu {
  flex: 1;
}

.header_wrapper .header_menu ul {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  width: 100%;
  margin: 0;
  list-style: none;
}

.header_wrapper .header_menu ul li a {
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: normal;
  transition: transform 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    perspective: 1000px;
   
}

.header_wrapper .header_menu ul li a .menu_iocn svg {
  height: 18px;
  width: 18px;
  fill: var(--text-white);
}

.header_wrapper .header_menu ul li a .menu_name {
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
}

.header_wrapper .header_menu ul li.active .menu_iocn img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(100%) saturate(367%) hue-rotate(90deg) brightness(100%) contrast(106%);
}

.header_wrapper .header_menu ul li.active .menu_name,
.header_wrapper .header_menu ul li:hover .menu_name {
  color: var(--primary-color2);
}

.header_wrapper .header_menu ul li.active a .menu_iocn svg,
.header_wrapper .header_menu ul li:hover a .menu_iocn svg {
  fill: var(--primary-color2);
}

.header_wrapper .search_bar_header {
  min-width: 213px;
}

.header_wrapper .search_bar_header .search_input {
  position: relative;
}

.header_wrapper .search_bar_header .search_input .form-control {
  background-color: var(--primary-color);
  border-radius: 5px;
  border: 1px solid var(--br-color);
  height: 36px;
  color: var(--text-white);
  font-size: 14px;
}

.header_wrapper .search_bar_header .search_input .form-control::placeholder {
  color: #273B6B;
}

.search_icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.search_icon img {
    height: 13px;
    width: 13px;
}

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

/* header css end */

/* main container css start */
.main_container {
  display: flex;
  gap: 20px;
  padding: 7px 20px 0;
}

.main_container .left_sidebar_wrapper {
  height: calc(100vh - 107px);
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 15px;
  width: 250px;
  position: fixed;
  left: 20px;
  top: 107px;
  display: flex;
  flex-direction: column;
}

.main_container .center_wrapper {
    width: calc(100% - 634px);
    flex: 1;
    margin-left: 270px;
    margin-right: 310px;
    padding-top: 100px;
}

.main_container .right_bar_wrapper {
  height: calc(100vh - 107px);
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 10px;
  width: 290px;
  position: fixed;
  right: 20px;
  top: 107px;
}

/* left sidebar css start */
.left_sidebar_wrapper .top_btn_block {
  background-color: var(--other-bg);
  border-radius: 5px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
}

.left_sidebar_wrapper .top_btn_block a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color2);
  border-radius: 5px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 500;
  gap: 5px;
  width: 50%;
  height: 36px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* initial */
}

.left_sidebar_wrapper .top_btn_block a:hover {
  background: var(--bg-gredient-2);
}

.left_sidebar_wrapper .top_btn_block a.active {
  background: var(--bg-gredient-2);
}

/* .left_sidebar_menu {
  margin-top: 7px;
  flex: 1;
  margin-bottom: 7px;
  overflow-y: auto;
} */
.left_sidebar_menu {
    margin-top: 7px;
    flex: 1;
    margin-bottom: 7px;
    overflow-y: auto;
    height: calc(100vh - 240px);
}

.left_sidebar_menu::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: var(--primary-light)
}

.left_sidebar_menu::-webkit-scrollbar {
  width: 5px;
  height: 4px;
  background-color: var(--primary-light);
  border: 1px solid #fff
}

.left_sidebar_menu::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--grey-300)
}

.left_sidebar_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.left_sidebar_menu ul li {
  background-color: var(--other-bg);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 7px;
}

.left_sidebar_menu ul li a {
  display: flex;
  align-items: center;
  padding: 13px;
  line-height: normal;
  max-height: 45px;
}

.left_sidebar_menu ul li a .menu_text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
}

.left_sidebar_menu .accordion-item .accordion-button {
  background-color: transparent;
  border: 0;
  box-shadow: none;
}

.left_sidebar_menu ul li .submenu_block {
  border-top: 1px solid var(--br-color);
}

.left_sidebar_menu ul li a .menu_icon {
  margin-right: 10px;
  line-height: normal;
  display: flex;
}

.left_sidebar_menu ul li a .menu_icon svg {
  height: 18px;
  width: 18px;
  fill: var(--text-white);
}
.left_sidebar_menu ul li a .menu_icon img {
    height: 18px;
    width: 18px;
}

.left_sidebar_menu ul li .accordion-button::after {
    background-image: url(../images/arrow-down.svg);
    height: 18px;
    width: 18px;
    background-size: 18px;
}

.left_sidebar_menu ul li .submenu_block {
  padding-left: 10px;
  padding-top: 13px;
}

.left_sidebar_menu ul li .submenu_block ul li {
  margin-bottom: 13px;

}

.left_sidebar_menu ul li .submenu_block ul li a {
  padding: 0px 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.left_sidebar_menu ul li .submenu_block ul li a .menu_text {
  font-size: 13px;
  font-weight: 400;
}
.left_sidebar_menu ul li .submenu_block ul li.active{
  color: var(--primary-color2);
}
.left_sidebar_menu ul li.single_menu.active a .menu_text,
.left_sidebar_menu ul li.single_menu:hover a .menu_text{
  color: var(--primary-color2);
}
.left_sidebar_menu ul li.single_menu.active a .menu_icon svg,
.left_sidebar_menu ul li.single_menu:hover a .menu_icon svg{
  fill: var(--primary-color2);
}
.left_sidebar_menu ul li .submenu_block ul li.active a .menu_text,
.left_sidebar_menu ul li .submenu_block ul li:hover a .menu_text{
  color: var(--primary-color2);
}
.left_sidebar_menu ul li .submenu_block ul li.active a .menu_icon svg,
.left_sidebar_menu ul li .submenu_block ul li:hover a .menu_icon svg{
  fill: var(--primary-color2);
}





.left_sidebar_menu ul li .accordion-item:last-of-type .accordion-button.collapsed {
  background-color: transparent;
}

.left_sidebar_menu ul li .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.logout_btn a {
    height: 40px;
    width: 100%;
    background: var(--bg-gredient-2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 15px;
    color: var(--text-white);
    font-weight: 600;
}
.logout_btn a img {
    height: 18px;
    width: 18px;
}
/* left sidebar css end */


/* center wrapper css start */

/* offer wrapper */
.offer_wrapper .offer_card {
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--primary-color);
  border: 1px solid var(--br-color);
  padding: 30px 15px;
  display: flex;
  align-items: center;
  background-image: url(../images/offer-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  justify-content: space-between;
}

.offer_wrapper .offer_card .offer_left p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-white);
}

.offer_wrapper .offer_card .offer_left h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--text-white);
}

.offer_wrapper .offer_card .offer_left a {
  background: var(--bg-gredient-2);
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 16px;
  color: var(--text-black);
  border: 0;
  line-height: normal;
  width: 89px;
  display: block;
}

/* offer wrapper end*/

/* sports tabs start */
.sports_tabs_wrapper {
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 8px;
  overflow-x: auto;
  margin-top: 10px;
    scrollbar-width: thin;              /* For Firefox */
    scrollbar-color: #28375e transparent;  /* Scroll thumb and track */
}

/* Chrome, Edge, Safari */
.sports_tabs_wrapper::-webkit-scrollbar {
    height: 4px;
}

.sports_tabs_wrapper::-webkit-scrollbar-track {
    background: transparent;
      height: 4px;
}

.sports_tabs_wrapper::-webkit-scrollbar-thumb {
    background-color: #28375e;
    border-radius: 3px;
    height: 4px;
}

.sports_tabs_wrapper ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: nowrap;
}

/* .sports_tabs_wrapper::-webkit-scrollbar {
  background-color: var(--primary-light);
  height: 5px;
} */

.sports_tabs_wrapper ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--tabs-bg);
    border-radius: 5px;
    gap: 8px;
    padding: 12px;
    width: 70px;
    height: 70px;
    list-style: none;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.sports_tabs_wrapper ul li a:hover {
  background-color: var(--primary-light)
}

.sports_tabs_wrapper ul li a.active {
  background:var(--primary-color2);
}

.sports_tabs_wrapper ul li a svg {
  height: 22px;
  width: 22px;
  fill: var(--text-white);
}

.sports_tabs_wrapper ul li a span {
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    width: 55px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    line-height: normal;
}

/* sports tabs end */

/* inplay css start */
.inplay_wrapper {
  margin-top: 15px;
}

.inplay_wrapper .match_name_text {
  display: flex;
  font-size: 13px;
  align-items: center;
  line-height: normal;
}

.inplay_wrapper .match_name_text img {
    margin-right: 4px;
    height: 16px;
    min-width: 26px;
}
.inplay_heading h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.inplay_wrapper .game-icons img {
    height: 13px !important;
    width: 13px !important;
    filter: brightness(0) saturate(100%) invert(37%) sepia(15%) saturate(1343%) hue-rotate(188deg) brightness(97%) contrast(82%) !important;
}

/* inplay css end*/

/* slider wrapper css start */
.slider_wrapper .slider_top_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.slider_wrapper .slider_top_header .left_heading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider_wrapper .slider_top_header .left_heading h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);

}

.slider_wrapper .slider_top_header .right_arrow_seemore {
  border: 1px solid var(--br-color);
  border-radius: 5px;
  height: 35px;
  min-width: 180px;
  display: flex;
  align-items: center;
  position: relative;
}

.slider_wrapper .slider_top_header .right_arrow_seemore::after {
  content: '';
  position: absolute;
  background-color: var(--br-color);
  height: 25px;
  width: 1px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider_wrapper .slider_top_header .right_arrow_seemore a {
  display: block;
  width: 50%;
  text-align: center;
  font-size: 14px;
  color: var(--text-white);
  font-weight: 500;
}
.slider_wrapper .slider_top_header .right_arrow_seemore a:hover{
  color: var(--primary-color2);
}
.slider_wrapper .slick-next {
  top: -36px;
  right: 18px;
}

.slider_wrapper .slick-prev {
  top: -36px;
  right: 50px;
  left: auto;
}

.slider_wrapper .slick-next:before,
.slider_wrapper .slick-prev:before {
  color: var(--secondary-color);
}

.slider_wrapper .slick-slide {
  padding-right: 7px;
}

.slider_wrapper .slick-slide:nth-child(7) {
  margin-right: 0;
}

.slider_wrapper .slick-slide img {
  width: 100%;
  cursor: pointer;
}

.slider_wrapper .slick-slide:last-child {
  padding-right: 0;
}

.slider_wrapper .slick-dots {
  display: none !important;
}

.slider_wrapper .slick-dotted.slick-slider {
  margin-bottom: 0;
}

/* slider wrapper css end */


/* footer wrapper css start */
.footer_wrapper {
  background-color: var(--footer-bg);
  padding: 60px 20px 0;
  margin: 30px -20px 0;

}

.footer_wrapper .logo_and_dis {
  max-width: 275px;
}

.footer_wrapper .logo_and_dis .dis_text {
  margin-top: 20px;
}

.footer_wrapper .logo_and_dis .dis_text p {
  color: var(--light-text);
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  line-height: normal;
}

.footer_wrapper .social_link_footer {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer_wrapper .social_link_footer a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--br-color);
}

.footer_wrapper .social_link_footer a img {
  width: 20px;
  height: 20px;
}

.footer_wrapper .social_link_footer a:hover {
  border-color: var(--text-white);
}

.footer_wrapper .social_link_footer a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(299deg) brightness(106%) contrast(101%);
}

.footer_wrapper .footer_menu_link h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer_wrapper .footer_menu_link ul {
  padding: 0;
  margin: 0;
  list-style: none;

}

.footer_wrapper .footer_menu_link ul li {
  margin-bottom: 7px;
}

.footer_wrapper .footer_menu_link ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: normal;

}


.footer_wrapper .footer_menu_link ul li a span {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-text);
}

.footer_wrapper .footer_menu_link ul li a:hover img {
filter: brightness(0) saturate(100%) invert(62%) sepia(99%) saturate(1593%) hue-rotate(92deg) brightness(97%) contrast(88%);
}

.footer_wrapper .footer_menu_link ul li a:hover span {
  color: var(--primary-color2);
}

.footer_wrapper .footer_menu_link .select_box {
  margin-top: 24px;
  /* background-color: var(--select-box-bg); */
  border-radius: 5px;
  padding: 0;
  display: flex;
  align-items: center;
}

.footer_wrapper .footer_menu_link .select_box .flag_img {
    position: relative;
    padding-right: 8px;
    border-right: 1px solid #5b6c98;
    margin-right: 8px;
}
.footer_wrapper .footer_menu_link .select_box .flag_img img {
    width: 20px;
    height: 20px;
}
.footer_wrapper .footer_menu_link .select_box .form-select {
  background-color: var(--select-box-bg);
  border: 0;
  padding: 0 0px 0 10px;
  color: var(--text-white);
  background-image: url(../images/up-arrow.svg);
  background-position: right 0px center;
}

.footer_wrapper .footer_menu_link .select_box .form-select:focus {
  box-shadow: none;
}

.footer_wrapper .partner_wrapper {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid var(--br-color);
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1090px;
  margin: auto;
  flex-wrap: wrap;
  margin-top: 50px;
  row-gap: 5px;
}

.footer_wrapper .partner_wrapper img {
  max-height: 30px;
}
.footer_wrapper .copyright_block {
  padding: 40px 15px;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
  text-align: center;
}

.dropdown.select_box .dropdown-toggle {
    background-color: var(--select-box-bg);
    display: flex;
    align-items: center;
    border-color: var(--br-color);
    font-size: 14px;
}
/* footer wrapper css end */
/* center wrapper css end */


/* right bar css start */
.right_bar_wrapper .right_bar_header {
  background-color: var(--tabs-bg);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  line-height: normal;
}

.right_bar_wrapper .right_bar_header h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: var(--text-white);
}

.right_bar_wrapper .right_bar_header a {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-color2);
}

.right_bar_wrapper .game_list_block {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
  row-gap: 7px;
}

.right_bar_wrapper .game_list_block .game_item {
  width: calc(33.33% - 5px);
  overflow: hidden;
  border-radius: 5px;
}

.right_bar_wrapper .game_list_block .game_item img {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    min-height: 65px;
}

/* right bar css end */



/* main container css end */


.both_header_wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}


  /* login modal css start */
  .login_singup_modal .modal-content {
    background-color: var(--primary-color);
    overflow: hidden;
    position: relative;
    border: 0;
    border-radius: 25px;
  }

  .login_singup_modal .modal-body {
    padding: 0;
  }

  .login_singup_modal .modal-body .modal_row {
    display: flex;
  }

  .login_singup_modal .modal-body .modal_row .left_col {
    width: 40%;
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom, #00a33d, #00ff64);
    min-height: 500px;
  }

  .login_singup_modal .modal-body .modal_row .right_col {
    width: 70%;
    flex: 1;
  }

  .login_singup_modal .modal-body .modal_row .left_col img {
    width: 100%;
  }

  .login_singup_modal .btn-close {
    position: absolute;
    right: 30px;
    top: 20px;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(94%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
    z-index: 1;
  }

  .login_singup_modal .modal-body .modal_row .left_col h2 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 600;
  }

  .login_singup_modal .modal-body .modal_row .left_col p {
    font-size: 16px;
    line-height: normal;
  }

  .login_singup_modal .modal-body .modal_row .left_col img {
    position: absolute;
    bottom: -1px;
    left: 0;
  }

  .login_singup_modal .form_wrapper {
    padding: 80px 30px 0;
  }

  .login_singup_modal .form_wrapper .input_block {
    position: relative;
  }

  .login_singup_modal .form_wrapper .input_block .form-control {
    height: 50px;
    width: 100%;
    background-color: var(--input-bg);
    border-radius: 5px;
    border: 1px solid var(--br-color);
    padding-left: 50px;
    color: var(--text-white);
  }

  .login_singup_modal .form_wrapper .input_block .form-control::placeholder {
    color: var(--light-text);
  }

  .login_singup_modal .form_wrapper .input_block .input_iocn {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login_singup_modal .form_wrapper .input_block .input_iocn svg {
    height: 25px;
    width: 25px;
    fill: var(--light-text);
  }

  .login_singup_modal .form_wrapper .input_block {
    margin-bottom: 20px;
  }

  .login_singup_modal .form_wrapper .input_block .form-check-input {
    height: 25px;
    width: 25px;
    border: 1px solid var(--br-color);
    background-color: var(--input-bg);
    border-radius: 5px;
    min-width: 25px;
  }

  .login_singup_modal .form_wrapper .input_block .form-check-input:focus {
    box-shadow: none;
  }

  .login_singup_modal .form_wrapper .input_block .form-check {
    display: flex;
    align-items: start;
  }

  .login_singup_modal .form_wrapper .input_block .form-check .form-check-label {
    font-size: 14px;
    line-height: normal;
    margin-left: 10px;
    margin-top: 5px;
    font-weight: 400;
  }

  .login_singup_modal .form_wrapper .input_block .form-check .form-check-label a {
    color: var(--primary-color2);
  }

.login_singup_modal .form_wrapper .submit_btn {
    background: var(--bg-gredient-2);
    display: block;
    width: 100%;
    height: 45px;
    border: 0;
    border-radius: 5px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 500;
}
  .login_singup_modal .form_wrapper .or_box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .login_singup_modal .form_wrapper .middle_box {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: var(--input-bg);
    font-size: 13px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
  }

  .login_singup_modal .form_wrapper .or_box::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: var(--input-bg);
    z-index: -1;
  }

  .login_singup_modal .form_wrapper .social_link_modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .login_singup_modal .form_wrapper .social_link_modal a {
    height: 40px;
    width: 40px;
    background-color: var(--input-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login_singup_modal .form_wrapper .social_link_modal a img {
    height: 25px;
    width: 25px;
  }

  .login_singup_modal .another_link {
    padding: 15px;
    text-align: center;
    background-color: var(--primary-color);
  }

  .login_singup_modal .another_link p {
    margin: 0;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
  }

  .login_singup_modal .another_link p a {
    color: var(--primary-color2);
  }

  .modal-backdrop.show {
    opacity: 0.8;
  }

  .modal-backdrop {
    background-color: #010715;
  }

  .login_singup_modal .form_wrapper .input_block .eyes_iocn {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }

  .login_singup_modal .form_wrapper .input_block .eyes_iocn svg {
    fill: var(--light-text);
    width: 20px;
    height: 20px;
  }

  /* login modal css end */

/* betsilip modal mobile  */
.betslip-lay-back-modal .modal-header {
  padding: 10px 7px;
  border: 0;
}

.betslip-lay-back-modal .modal-header .modal-title {
  font-size: 18px;
}

.betslip-lay-back-modal .betslipright {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.betslip-lay-back-modal .modal-dialog .modal-content .modal-body .bet-slip-box .bet-buttons .clear-btn {
  text-align: right;
  width: 100%;
}

.betslip-lay-back-modal .modal-dialog .modal-content .modal-body .bet-slip-box .bet-buttons .clear-btn button {
  border: 1px solid var(--br-color);
  background-color: transparent;
  border-radius: 5px;
  color: var(--text-white);
  padding: 0 13px;
  font-size: 13px;
  font-weight: 400;
}

/* betsilip modal mobile end */

/* casino page css start */
.casino_wrapper .sports_tabs_wrapper ul li a {
  width: auto;
  height: auto;
  flex-direction: row;
  padding: 7px 10px;
}

.casino_wrapper .sports_tabs_wrapper ul li a img {
  height: 20px;
  width: 20px;
}

.casino_wrapper .sports_tabs_wrapper ul li a span {
  width: auto;
}

.casino_wrapper .sports_tabs_wrapper ul li a.active {
  border: 0;
  background: var(--bg-gredient-2);
}

.casino_game_list {
  margin-top: 15px;
  min-height: 50vh !important;
}

.casino_game_list .casino_inner_list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
}

.casino_game_list .casino_inner_list .casino_item a img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.page_heading {
  margin-bottom: 10px;
  background: var(--primary-light);
  padding: 7px 15px;
  border-radius: 5px;
}

.page_heading h1 {
  font-size: 16px;
  color: var(--text-white);
  margin: 0;
}

/* casino page css end */

/* after login  css */
.top_header .login_singup_right.after_login_box .singup_btn {
  min-width: 95px;
}

.top_header .login_singup_right.after_login_box .singup_btn.balance_btn {
  background: transparent;
  border: 1px solid var(--primary-color2);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}



.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
}

/* .dropdown_wrapper {
  position: fixed;
  top: 50px;
  right: 20px;
  width: 270px;
  height: auto;
  background-color: var(--tabs-bg);
  color: var(--text-white);
  padding: 15px;
  display: none;
  z-index: 1002;
  border-radius: 15px;
  height: 500px;
  overflow: hidden;
} */
.dropdown_wrapper {
    position: fixed;
    top: 50px;
    right: 20px;
    width: 270px;
    height: auto;
    background-color: var(--tabs-bg);
    color: var(--text-white);
    padding: 15px;
    display: none;
    z-index: 1002;
    /* box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5); */
    border-radius: 15px;
    max-height: 500px;
    overflow: hidden;
}

.dropdown_wrapper .inner_scroll {
  overflow-y: auto;
  max-height: 390px;
}

.dropdown_wrapper .inner_scroll::-webkit-scrollbar {
  width: 5px;
}

.dropdown_wrapper .inner_scroll::-webkit-scrollbar-track {
  background: transparent;
  /* Transparent background */
}

.dropdown_wrapper .inner_scroll::-webkit-scrollbar-thumb {
  background-color: var(--tabs-bg);
  /* Light colored thumb */
  border-radius: 5px;
}

.dropdown_wrapper .user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--br-color);
  margin-bottom: 10px;
}

.dropdown_wrapper .wallet-info {
  border-bottom: 1px solid var(--br-color);
  padding-bottom: 5px;
  font-size: 14px;
}

.dropdown_wrapper .wallet-info .value_text {
  color: var(--primary-color2);
}

.dropdown_wrapper .wallet-info div {
  display: flex;
  justify-content: space-between;
  line-height: normal;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 10px;
}

.dropdown_wrapper .wallet-info .span.small_text {
  display: block;
  line-height: normal;
  font-size: 10px;
}

.dropdown_wrapper ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 17px;
}

.dropdown_wrapper ul.menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.dropdown_wrapper ul.menu li {
  margin-bottom: 17px;
}

.dropdown_wrapper ul.menu li .menu_drop_icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.dropdown_wrapper .logout {
  background: #47B335;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 600;
  margin: 1px -15px -14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  justify-content: center;
  
}

/* after login css end */

/* home page css end */




/* all reports page css start */
.about_content_wrapper.all_reports_wrapper {
  padding: 10px;
}

.top_dashborad_link {
  margin-bottom: 10px;
  background-image: none;
  background-color: initial;
  margin-right: -5px;
  margin-left: -5px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.top_dashborad_link a {
  border-bottom: none;
  display: inline-block;
  width: 23%;
  vertical-align: middle;
  margin-right: 1%;
  margin-left: 1%;
  background-color: #585858;
  min-height: initial;
  text-align: center;
  border-radius: 3px;
  padding: 15px 1px;
  margin: 1%;
  line-height: normal;
}

.top_dashborad_link a span {
  display: block;
  text-align: center;
  font-size: 14px;
  width: 100%;
  word-wrap: break-word;
  color: var(--text-white);
}

.top_dashborad_link a .icon_bg {
  display: inline-block;
  height: 37px;
  width: 37px;
  float: none;
  background-image: url(../images/all-icon-bg.png);
}

.top_dashborad_link a .icon_bg.deposit_icon {
  background-position: -238px 2px;
}

.top_dashborad_link a .icon_bg.upi_icon {
  background-position: -205px -3774px;
  width: 71px;
}

.top_dashborad_link a .icon_bg.transfer_icon {
  background-position: -238px -81px;
}

.top_dashborad_link a .icon_bg.withdraw_icon {
  background-position: -236px -39px;
}

.top_dashborad_link a .icon_bg.History_icon {
  background-position: -238px -241px;
}

.top_dashborad_link a .icon_bg.Bank_icon {
  background-position: -239px -196px;
  width: 47px;
}

.top_dashborad_link a .icon_bg.Payment_icon {
  background-position: -241px -160px;
}

.line_div {
  height: 1px;
  width: 100%;
  background-color: #bebebe;
}

.reports_menu ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  list-style: none;
  margin: 0;
  width: 100%;
}

.reports_menu ul li a {
  display: flex;
  align-items: center;
  border-top: 10px solid #3d3d3c;
  padding: 8px 25px 8px 8px;
  border-bottom: 1px solid #424242;
  background-color: #333031;
  text-decoration: none;
  font-size: 15.81px;
  min-height: 43px;
  width: 100%;
  color: var(--text-white);
  gap: 10px;
  position: relative;
}

.reports_menu ul li a svg {
  width: 30px;
  height: 25px;
  fill: var(--text-white);
}

.reports_menu ul li a:after {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg _ngcontent-ng-c2693686463='' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath _ngcontent-ng-c2693686463='' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z' fill='%23585858'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 10px;
  height: 20px;
  width: 20px;
  right: 8px;
  position: absolute;
}

/* report page css start */
.report_main_wrapper .inner_wrapper {
  border-radius: 10px;
  margin: 0px;
}

.report_main_wrapper .report_inner_wrapper {
  padding: 15px 50px;
}

.report_main_wrapper .card_header {
  margin-bottom: 10px;
  justify-content: space-between;
  height: 38px;
  display: flex;
  align-items: center;
  background: var(--bg-black);
  border: 1px solid var(--primary-light);
  padding: 0 15px;
  border-radius: 5px;
}

.report_main_wrapper .card_heading {
  font-size: 20px;
  color: var(--bg_dark);
}

.report_main_wrapper .serach_input {
  position: relative;
  width: 300px;
}

.report_main_wrapper .serach_input .form-control {
  height: 45px;
}

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

.report_main_wrapper .search_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color: var(--icon_fill);
}

.report_main_wrapper .report_inner_wrapper .input_block .form-control {
    height: 36px;
    font-size: 13px;
    background-color: var(--input-bg);
    color: var(--text-white);
    border: 1px solid var(--br-color);
    border-radius: 5px;
}

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

.report_main_wrapper .report_inner_wrapper .input_block .form-label {
  color: var(--greybg);
  font-size: 12px;
  font-weight: 400;
  line-height: 16.2px;
}

.report_main_wrapper .report_inner_wrapper .input_block .btn-primary {
    color: var(--text-white);
    padding: 0px 30px;
    height: 36px;
    background: var(--bg-gredient-2);
    border: 0px;
    margin: 0px;
    border-radius: 5px;
    width: 100%;
}

.report_main_wrapper .show_entris {
  display: flex;
  gap: 5px;
  align-items: center;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.report_main_wrapper .show_entris .form-select {
  padding: 0px 5px;
  height: 28px;
  width: 50px;
  border-radius: 0px;
  background-position: right 3px center;
}

.report_main_wrapper .show_entris .input_block {
  border-radius: 0px;
}

.report_main_wrapper .tbl_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0px;
}

.report_main_wrapper .report_inner_wrapper {
  padding: 0px;
}

.report_main_wrapper .card_heading {
  font-size: 14px;
  color: var(--text-white);
  margin: 0px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.report_main_wrapper .serach_input {
  position: relative;
  width: 300px;
}

.report_main_wrapper .serach_input .form-control {
  height: 32px;
  border-radius: 70px;
  background-color: var(--grey-800);
  border: 1px solid rgb(254, 98, 1);
  color: var(--text-white);
}

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

.report_main_wrapper .search_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  color: var(--light-text);
}

.report_main_wrapper .search_icon:hover {
  color: var(--text-white);
}

.report_main_wrapper .input_block .form-control {
  height: 40px;
  font-size: 14px;
}

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

.report_main_wrapper .input_block .form-label {
  font-size: 15px;
}

.report_main_wrapper .input_block .btn-primary {
  background-color: var(--sucess-color);
  border-color: var(--sucess-color);
  color: var(--bg-white);
  padding: 0px 30px;
  height: 40px;
}

.report_main_wrapper .show_entris {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--light-text);
  margin-bottom: 0px;
}

.report_main_wrapper .report_inner_wrapper .show_entris .form-select {
  padding: 0px 5px;
  height: 30px;
  width: 60px;
  border-radius: 5px;
  background-position: right 3px center;
}

.report_main_wrapper .show_entris .input_block {
  border-radius: 0px;
  margin: 0px;
}

.report_main_wrapper .tbl_filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0px 20px;
}

.report_main_wrapper .icon_block {
  display: flex;
  align-items: center;
  gap: 5px;
}

.report_main_wrapper .icon_block a {
  color: var(--light-text);
}

.report_main_wrapper .icon_block a svg {
  height: 25px;
  width: 25px;
}

.report_main_wrapper .custom_table table {
  font-size: 14px;
  border-color: var(--br-color);
  color: var(--light-text);
}

.report_main_wrapper .custom_table table thead {
  background-color: var(--other-bg);
}

/* .report_main_wrapper .custom_table table thead th {border:1px solid var(--primary-color);} */
.report_main_wrapper .custom_table table thead th {
  background-color: transparent;
  color: var(--text-white);
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 7px;
}

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

.report_main_wrapper .custom_table table td {
  white-space: nowrap;
  padding: 4px 7px;
}

.report_main_wrapper button:focus:not(:focus-visible) {
  box-shadow: none !important;
}

.report_main_wrapper #picker {
  display: none !important;
}

.report_main_wrapper .report_inner_wrapper .input_block .form-control::-webkit-calendar-picker-indicator {
  filter: invert();
}

.report_main_wrapper .tabs_row .nav-tabs {
  border: 0px;
}

.report_main_wrapper .tabs_row .nav-tabs .nav-link {
  color: var(--text-white);
  border: 0px;
  font-weight: 500;
  padding: 5px 15px;
}

.report_main_wrapper .tabs_row .nav-tabs .nav-link:hover {
  border: 0px;
}

.report_main_wrapper .tabs_row .nav-tabs .nav-link.active {
  background: var(--bg-gredient-2);
  color: var(--text-white);
  border-radius: 5px;
}

/* .report_main_wrapper .tabs_row {margin-bottom:15px;} */
.report_main_wrapper .radio_block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.report_main_wrapper .radio_block .form-check .form-check-label {
  font-size: 15px;
  margin-top: 3px;
}

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

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

.report_main_wrapper .radio_block .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 0px;
  margin: 0px;
  line-height: normal;
}

.report_main_wrapper .bets_amount {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
}

.report_main_wrapper .icon_heading {
  background-color: var(--bg-white);
  height: 20px;
  width: 20px;
  margin: 6px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.report_main_wrapper .icon_heading svg {
  height: 12px;
  width: 12px;
  fill: var(--text-dark);
  color: var(--text-dark);
}

.report_main_wrapper .icon_heading img {
  height: 12px;
  width: 12px;
}

.report_main_wrapper .depositwrap a.nav-link {
  background: var(--grey-800);
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  border-radius: 70px;
}

.report_main_wrapper .depositwrap a.nav-link.active {
  color: rgb(23, 23, 23);
  font-weight: 600;
  background-color: var(--primary-color);
}

.report_main_wrapper .depositwrap .depositwrapbox {
  background-color: var(--secondary-color);
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
}

.report_main_wrapper .depositwrapbox table {
  color: rgb(255, 255, 255);
  width: 100%;
}

.report_main_wrapper .depositwrapbox table .text-end {
  text-align: right;
}

.report_main_wrapper .depositwrapbox table td {
  padding: 3px;
}

.report_main_wrapper .depositwrapbox table td svg.icon {
  width: 16px;
  height: 16px;
  fill: rgb(255, 255, 255);
  margin-left: 10px;
  opacity: 0.8;
}

.report_main_wrapper .upload_img {
  max-width: 200px;
  margin: auto;
}

.report_main_wrapper .upload_img img {
  width: 100%;
}

.report_main_wrapper .report_inner_wrapper .change_password .input_block .form-control {
  height: 40px;
}

.report_main_wrapper .report_inner_wrapper .change_password .input_block .btn-primary {
  height: 40px;
}

/* report page css end */
.main_container .center_wrapper.reports_wrapper {
  margin-right: 0;
}

.report_inner_card {
  padding: 15px;
  background-color: var(--other-bg);
  border-radius: 5px;
  margin-top: 20px;
}


/* settings page css start */
.plus_minus .form-control {
  background: var(--secondary-color);
  border-radius: 100px;
  height: 30px;
  display: flex !important;
  border: 0;
  line-height: normal;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  color: #fff;
  padding: 0 35px;
}

.plus_minus .minus_icon {
  background: var(--bg-gredient-2);
  border-radius: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 2.5px;
  height: 24px;
  border-radius: 100%;
  padding: 6px 13px;
  width: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  position: absolute;
  left: 0;
  top: 0;
}

.plus_minus .plus_icon {
  background: var(--bg-gredient-2);
  border-radius: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 2.5px;
  height: 24px;
  border-radius: 100%;
  padding: 6px 13px;
  width: 24px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  position: absolute;
  right: 0;
  top: 0;
}

.set_button_wrapper .main_card {
  width: 100%;
  background-color: var(--primary-light);
  height: fit-content;
  border-radius: 15px;
  font-family: Lato;
}

.set_button_wrapper .text_block {
  padding: 9px 32px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.set_button_wrapper .button_inner_block {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  margin-top: 12px;
  gap: 12px 11px;
}

.set_button_wrapper .button_box {
  min-width: 320px;
  background-color: var(--other-bg);
  border-radius: 5px;
}

.set_button_wrapper .item_row {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 16px;
}

.set_button_wrapper .left_content {
    color: var(--text-white);
    font-size: 14px;
}

.set_button_wrapper .right_input {
  width: 50%;
}

.set_button_wrapper .right_input .form-control {
    border-radius: 20px;
    height: 25px;
    border: none;
    outline: none;
    padding: 20px 12px;
    background-color: var(--input-bg);
    color: var(--text-dark);
    font-size: 14px;
}

.set_button_wrapper .right_input .plus_minus .minus_icon {
  height: 30px;
  border-radius: 100%;
  padding: 6px 13px;
  width: 30px;
  margin: 0px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.set_button_wrapper .right_input .plus_minus .plus_icon {
  height: 30px;
  border-radius: 100%;
  padding: 6px 13px;
  width: 30px;
  margin: 0px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.set_button_wrapper .item_row:last-child {
  margin-bottom: 16px;
}

/* settings page css end */


/* all reports page css end */

/* cms page css start */
.content_wrapeer h2 {
  font-size: 1.75rem;
  color: var(--text-white);
  font-weight: 600;
}

.content_wrapeer p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 15px;
}

.code_text {
  display: flex;
  flex-direction: column;
  overflow-x: auto;
  padding: 1rem;
  background: #213743;
  color: var(--text-white);
  border-radius: .25rem;
  margin-top: 1rem;

}

.code_text span {
  font-size: 1.125rem;
}

.content_wrapeer h3 {
  font-size: 16px;
  color: var(--primary-color2);
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content_wrapeer h4 {
  font-size: 16;
  color: var(--primary-color2);
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content_wrapeer ul {
  margin: 0;
  margin-top: 1rem;
}

.content_wrapeer ul li {
  font-size: 16px;
  margin-bottom: .5rem;
}

.content_wrapeer svg {
  height: 15px;
  width: 15px;
  color: var(--text-white);
}

.content_wrapeer a {
  color: var(--text-white);
}


/* content page css start here */
.help_center_wrap .reports_menu {
  display: block;
}

.reportspagedata .accordion-item {
  background: transparent;
  border: none;
  box-shadow: none;
}

.reportspagedata .accordion-item .accordion-button {
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0px;
}

.reportspagedata .accordion-item .accordion-button {
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0px;
  color: #fff;
  font-weight: 500;
  padding-left: 0px;
  padding-right: 0px;
}

.reportspagedata .accordion-item .accordion-button::after {
  background-color: var(--other-bg);
  height: 32px;
  width: 32px;
  background-position: center;
  border-radius: 3px;
  background-image: url('../images/arrow-light.png');
  background-size: 15px;
  border: none;
  box-shadow: none;
}

.reportspagedata .accordion-body {
  padding: 10px 0px;
}

.reportspagedata .accordion-body p {
    color: var(--light-text);
    font-size: 15px;
    margin-bottom: 7px;
}

.reportspagedata .accordion-body h1 {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.reportspagedata .accordion-body ol,
.reportspagedata .accordion-body ul,
.reportspagedata .accordion-body menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.reportspagedata .accordion-body li {
  color: var(--text-light);
  list-style: inside disc;
  margin: 0.5rem 0px;
}

.reportspagedata .accordion-body table {
  border: none;
  border-bottom-width: 0 !important;
  border-color: #1d303d00;
  color: var(--text-white);

}

.reportspagedata .accordion-body a {
  color: var(--light-text);
}

.reportspagedata .accordion-body table p {
  margin-bottom: 0;
}

.reportspagedata .accordion-body table tr {
  border-style: none !important;
}

.deposit-game-list {
  border-top: 1px solid rgba(228, 234, 240, 0.3);
  border-left: 1px solid rgba(228, 234, 240, 0.3);
  margin-bottom: 13px;
}

.deposit-game-list>div {
  display: flex;
  align-items: center;
  height: 1.5rem;
}

.deposit-game-list>div>span {
  width: 25%;
  text-align: center;
  border-right: 1px solid rgba(228, 234, 240, 0.3);
  border-bottom: 1px solid rgba(228, 234, 240, 0.3);
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.75rem;
  height: 1.5rem;
  line-height: 1.5rem;
  overflow: hidden;
}


.blocked-game-list {
  border-top: 1px solid rgba(228, 234, 240, 0.3);
  border-left: 1px solid rgba(228, 234, 240, 0.3);
  margin-bottom: 13px;
}

.blocked-game-list>div {
  display: flex;
  align-items: center;
  height: 1.5rem;
}

.blocked-game-list>div>span {
  width: 25%;
  text-align: center;
  border-right: 1px solid rgba(228, 234, 240, 0.3);
  border-bottom: 1px solid rgba(228, 234, 240, 0.3);
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.75rem;
  height: 1.5rem;
  line-height: 1.5rem;
  overflow: hidden;
}

.reportspagedata table {
  border: none;
  border-bottom-width: 0 !important;
  border-color: #1d303d00;

}

.reportspagedata table p {
  margin-bottom: 0;
}

.reportspagedata table tr {
  border-style: none !important;
}

.reportspagedata .accordion-body {
  color: var(--light-text);
}

.contact_card .img_box {
  text-align: center;
}

.contact_card .img_box svg {
  height: 80px;
  width: 80px;
  fill: #23ee89;
}

.w-36 {
  width: 9rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.max_img {
  max-width: 456px;
}

/* cms page css end */
/* cms page css end */

/* deposit page css start */
.depositwrapbox .btn-secondary {
  background-color: var(--primary-light);
  color: var(--text-white);
  border: 0;
  border-radius: 5px;
}

.depositwrapbox .btn-secondary:hover {
  background: var(--primary-light);
}

.depositwrapbox .btn-primary {
  background: var(--bg-gredient-2);
  border: 0;
  border-radius: 5px;
}

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

.max_w_block {
  max-width: 1000px;
  margin: 0 auto;
}

/* deposit page css end */

/* fix footer css start */
.fixedfooter {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--other-bg);
  z-index: 999;
  border-top: 1px solid var(--primary-color2);
}

.fixedfooter a {
  color: var(--text-light);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  width: 16.66%;
  text-align: center;
}

.fixedfooter a .icon svg {
  width: 25px;
  height: 25px;
  fill: var(--text-white);
}

/* fix footer css end*/

/* other css start */
.livetv_scorboad {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-top: 15px;
}

.livetv_scorboad a {
  display: flex;
  gap: 5px;
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-color2);
  border: 1px solid #182548;
  padding: 7px 15px;
  border-radius: 5px;
  line-height: normal;
}

.livetv_scorboad a img {
  height: 16px;
  width: 16px;
  filter: brightness(0) saturate(100%) invert(59%) sepia(95%) saturate(2890%) hue-rotate(105deg) brightness(109%) contrast(87%);
}
.livetv_scorboad a:hover{
  background-color: var(--primary-color2);
  color: var(--text-white);
}
.livetv_scorboad a:hover  img{
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(175deg) brightness(104%) contrast(101%);
}
.live_tv_card_and_score {
  border-radius: 5px;
  min-height: 150px;
  background-color: var(--other-bg);
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.search_icon_mobile {
  position: absolute;
  right: 7PX;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 35px;
  background: var(--primary-color);
  border-radius: 5px;
  display: none;
  align-items: center;
  justify-content: center;

}

.search_icon_mobile img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(300deg) brightness(110%) contrast(101%);
}

.forgot_passlink {
  text-align: right;
  margin-top: -15px;
}

.forgot_passlink a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 15px;
}

.forgot_passlink a:hover {
  color: var(--primary-color2);
}

/* other css end */

/* search modal css start */
.search_modal .modal-body {
  padding: 70px 15px 30px;
}

.search_modal .search_input {
  position: relative;
}

.search_modal .search_input .form-control {
  background-color: var(--primary-color);
  border-radius: 5px;
  border: 1px solid var(--br-color);
  height: 40px;
  color: var(--text-white);
}

.search_list_box {
  background: var(--other-bg) !important;
  border-radius: 10px !important;
  padding: 5px !important;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  position: absolute;
  top: 40px !important;
  width: 100%;
}

.search_list_box a {
  border: none !important;
  color: #fff !important;
  font-size: 13px;
  padding: 7px 15px !important;
  border-bottom: 1px solid var(--br-color) !important;
  display: block;
  line-height: normal;
}

.login_singup_modal.search_modal .modal-content {
  overflow: inherit;
}

.header_wrapper .search_list_box {
  background: var(--other-bg) !important;
  border-radius: 10px !important;
  padding: 5px !important;
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  position: fixed;
  top: 105px !important;
  width: 250px;
}

.main_container .left_sidebar_wrapper .close_btn {
  display: none;
}

/* search modal css end */
/* casino page css */

.casino_tablist ul{
  width: 100%;
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    display: block;
    border: 1px solid var(--footer-bg);
    margin: 4px 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.casino_tablist ul::-webkit-scrollbar {
    height: 4px;
}

.casino_tablist ul::-webkit-scrollbar-track {
    background: transparent;
      height: 4px;
}

.casino_tablist ul::-webkit-scrollbar-thumb {
    background-color: #28375e;
    border-radius: 3px;
    height: 4px;
}
.casino_tablist ul li{
  position: relative;
    display: inline-block;
    list-style: none;
}
.casino_tablist ul li a {
    align-items: center;
    padding: 5px 15px;
    text-transform: uppercase;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
    display: block;
    text-decoration: none;
    transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out;
}
.casino_tablist ul li a:hover{
  color: var(--primary-color2);
}
.casino_tablist ul li::after{
  content: '';
    background: var(--footer-bg);
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.casino_tablist.with_icon_sport ul li a{
  display: flex;
  flex-direction: column;
}
.casino_tablist.with_icon_sport ul li a img{
  display: block;
    width: 32px;
    margin: 0 auto;
    filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(290deg) brightness(104%) contrast(101%);
    margin-bottom: 3px;
}
.casino_tablist.with_icon_sport ul li a svg {
    display: block;
    width: 22px;
    height: 22px;
    margin: 0 auto;
    filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(290deg) brightness(104%) contrast(101%);
    margin-bottom: 3px;
}
.casino_tablist.with_icon_sport ul li a:hover{
  color: var(--primary-color2);
}
.casino_tablist.with_icon_sport ul li a:hover img,
.casino_tablist.with_icon_sport ul li a:hover svg{
  filter: brightness(0) saturate(100%) invert(59%) sepia(94%) saturate(1140%) hue-rotate(92deg) brightness(97%) contrast(88%);
}
.casino_tablist ul li a.active{
  background-color: var(--primary-color2);
  color: var(--text-white);
}
.casino_tablist ul li a.active span{
  color: var(--text-white);
}
.casino_tablist ul li a.active:hover img,
.casino_tablist ul li a.active:hover svg{
    filter: invert(98%) sepia(0%) saturate(0%) hue-rotate(290deg) brightness(104%) contrast(101%);
}

.casino_tablist.with_icon_sport ul li a:hover
.casino_game_wrapper .casino_item img{
  height: 180px;
  width: 100%;  
}
.casino_game_wrapper .casino_item button{
  border: none;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background: var(--primary-color2);
    color: var(--text-white);
    font-size: 12px;
    line-height: 2.1;
}
.casino_game_wrapper .row .col-4 {
  margin-bottom: 10px;
  padding: 0px 3px;
}
.casino_game_wrapper {
  padding: 0 10px;
}
/* casino page css end */
.bankdetails {
    background-color: var(--bg-gredient-2);
    border: solid 1px var(--primary-light);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}
.bankdetails table {
    width: 100%;
}

.report-box.deposit {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 30px;
}

.deposit .nav-pills .nav-link {
    background-color: var(--bg-body);
    padding: 8px 23px;
    margin-right: 5px;
    cursor: pointer;
    color: var(--text-white);
border: 1px solid var(--primary-light);
   border-radius: 5px;
}

.deposit .nav-pills a.nav-link.active {
    background: var(--bg-gredient-2);
    color: #fff;
}

.bankdetails table td {
    padding: 3px;
}
.bankdetails .modal-footer{
  border-top: 0px solid #dee2e6;
}
/* casino page css */
/* pagination css */
.page-item.active .page-link {
      z-index: 0;
    background-color: #37d083;
    border-color: #38cf84;
}
.page-link {
    color: var(--text-white);
    background-color: #172648;
    border-color: var(--br-color);
}
.page-link:focus {
    color: #3dd089;
}
.page-link:focus {
 box-shadow: 0 0 0 .25rem rgb(255 255 255 / 0%);
}
/* pagination css */

/* 16-07-2025 css start */
.deposit_withdraw_btn {
    display: flex;
    gap: 10px;
    margin-right: 0;
    margin-top: 12px;
}
.deposit_withdraw_btn .deposit_btn{
    background: var(--bg-gredient-2);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 16px;
    color: var(--text-white);
    border: 0;
    line-height: normal;
    height: 40px;
    width: 50%;
}
.deposit_withdraw_btn .withdraw_btn{
    border: 1px solid var(--primary-color2);
    border-radius: 5px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    line-height: normal;
     height: 40px;
     width: 50%;
}

.breadcrumbs-container {
    display: flex;
    height: 39px;
    align-items: center;
    background-color: var(--light-box-color);
    padding: 5px 12px;
    border: solid 1px var(--stroke-color);
    border-radius: 5px;
    overflow-y: auto;
    border: 1px solid var(--primary-light);
    margin-top: 15px;
}
.breadcrumbs-container .back_btn {
  display:none;
}
.breadcrumbs-container ul {
  padding: 0px;
  margin: 0px;
  gap:30px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.breadcrumbs-container ul a {
  position:relative;
  width: max-content;
  font-size: 15px;
  color: var(--light-text);
}
.breadcrumbs-container ul a::before {
    content: '/';
    position: absolute;
    right: -21px;
}
.breadcrumbs-container ul a:last-child::before {
    display:none;
}
.breadcrumbs-container ul a:hover{
  color: var(--primary-color2);
}

.slider_wrapper.Popular_game_wrapper  .slick-slide {
    display: block;
    aspect-ratio: 16 / 21;
    width: 100%;
    overflow: hidden;
}
.slider_wrapper.Popular_game_wrapper .slick-slide img {
    width: 100%;
    height: 100%;
}

.submit_btn_setting{
  text-align: center;
  margin-top: 40px;
}
.submit_btn_setting .btn_submit {
    background: var(--bg-gredient-2);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 20px;
    color: var(--text-white);
    border: 0;
    line-height: normal;
    min-width: 120px;
    height: 40px;
}
/* 16-07-2025 css end */

/* 21-07-2025 css start */
.betsilp_accordion_block .accordion-item{
  margin-bottom: 5px;
  background-color: transparent;
}
.betsilp_accordion_block .accordion{
  margin-top: 10px;
}

.betsilp_accordion_block .accordion-button{
  padding: 11px 15px;
  background-color: var(--primary-light);
  color: var(--text-white);
  font-size: 15px;
}
.betsilp_accordion_block .accordion-button:not(.collapsed)::after{
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(0%) hue-rotate(235deg) brightness(98%) contrast(105%);
}
.betsilp_accordion_block .list-item.my-bet-lay .team-name{
  color: var(--lay);
  font-size: 13px;
  line-height: normal;
}
.betsilp_accordion_block .list-item.my-bet-back .team-name{
  color: var(--back);
  font-size: 13px;
  line-height: normal;
}
.betsilp_accordion_block .points{
  font-size: 12px;
  line-height: normal;
}
.betsilp_accordion_block .score{
  font-size: 12px;
  line-height: normal;
}
.betsilp_accordion_block .list-item{
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px solid var(--br-color);
}
.betsilp_accordion_block .list-item .bet_value_row{
  display: flex;
  gap: 10PX;
  margin-top: 5px;
}
.betsilp_accordion_block .list-item:last-child{
  border: 0;
}
/* 21-07-2025 css end */

/* 22-07-2025 css start */
.hero_slider_wrapper .dark_theme_load_box {
  border-radius: 5px;
  overflow: hidden;
}
.hero_slider_wrapper .owl-dots{
  display: none !important;
}
/* 22-07-2025 css end */

/* 23-07-2025 css start */
.modal_text_msg .modal-header{
  border-bottom: 1px solid var(--br-color);
}
.modal_text_msg  .modal-body{
  padding: 40px 20px;
}
.modal_text_msg .agree_btn {
    background: var(--bg-gredient-2);
    margin-top: 20px;
    border: 0;
    color: var(--text-white);
    font-size: 15px;
}
.login_singup_modal.modal_text_msg .modal-content {
    border-radius: 9px;
}
.error_mgs_block {
    position: relative;
    top: -12px;
    line-height: normal;
}
/* 23-07-2025 css end */

/* 24-07-2025 css start */
.before_login_wrapper .left_sidebar_menu{
  height: calc(100vh - 210px);
}

.whatsapp_icon_fix{
  position: fixed;
  left: 15px;
  bottom: 15px;
}
.whatsapp_icon_fix img{
  height: 60px;
  width: 60px;
}
/* 24-07-2025 css end */


/* 31-07-2025 css start */
.mac_game_wrapper .casino_item  img {
    max-height: 150px;
    object-fit: cover;
}
.skeleton_theme .casino_item.dark_theme_load_box.is_loading .casinoBtn{
  display: none;
}
/* 31-07-2025 css end */

/* 21-08-2025 css start */
.fotter_logo img{
  max-width: 185px;
}
.footer_wrapper .footer_menu_link .select_box .dropdown-menu {
    background: #03133b;
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    border: 1px solid var(--br-color);
}
.footer_wrapper .footer_menu_link .select_box .dropdown-menu .dropdown-item{
  color: var(--text-white);
}
.footer_wrapper .footer_menu_link .select_box .dropdown-menu .dropdown-item:hover{
  background-color: var(--select-box-bg);
}
.footer_wrapper .footer_menu_link .select_box .dropdown-menu li{
  margin-bottom: 0 !important;
}
.footer_wrapper .footer_menu_link .select_box .dropdown-menu .dropdown-item.active{
  background-color: var(--primary-color2);
}

.login_singup_modal.result_modal .modal_inner_element {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
}
.login_singup_modal.result_modal .modal_inner_element .left_deta_result{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.login_singup_modal.result_modal .modal_inner_element .total-soda div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.login_singup_modal.result_modal .modal_inner_element .total-soda div .text-danger{
  top: 0;
}
.login_singup_modal.result_modal .modal-body{
  padding: 15px;
}
.login_singup_modal.result_modal .modal-content {
    border-radius: 10px;
}
.login_singup_modal.result_modal .modal-header {
    border-bottom: 1px solid var(--br-color);
    padding: 10px 15px;
}
.login_singup_modal.result_modal .modal-header .modal-title{
  font-size: 20px;
}
.login_singup_modal.result_modal .modal_inner_element .custom-control-input{
  margin-right: 5px;
}
.login_singup_modal.result_modal .modal_inner_element .left_deta_result label{
  font-size: 15px;
}
button.btn.singup_btn.balance_btn.menu-toggle:hover{
  background: var(--bg-gredient-2);
  color: var(--text-white);
}
/* 21-08-2025 css end */

/* betslip no data css */
.nodata_found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 50px;
    color: rgb(52, 48, 77);
}
.nodata_found img {
    width: 100px;
    height: 100px;
    opacity: 0.3;
}
.nodata_found p{
  margin: 0;
  margin-top: 15px;
  color: var(--light-text);
}

/* betslip no data css */

.sidebarLeft app-main-layout {
  height: 95vh;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}
.livetv_scorboad a.active {
    background-color: var(--primary-color2);
    color: var(--text-white);
}
.live_tv_card_and_score{
    margin-top: 5px;
    background-color: #160f25;
}
.live_tv_card_and_score .tv_box_block {
    text-align: center;
    padding: 0;
    background-color: #160f25;
    border-radius: 5px;
    max-height: 180px;
}
.live_tv_card_and_score .tv_box_block iframe {
    width: 320px;
    height: 180px;
    margin: 0 auto;
}
.live_tv_card_and_score .score_B{
    width: 100%;
    height: 180px;
}
.livetv_scorboad a.active img {
    filter: brightness(0) invert(1) !important;
}
 .hero_slider_wrapper .owl-carousel .owl-item img {
  min-height: 180px;
  object-fit: fill;
 }

 .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #172648;
    border-color: #273b6b;
}