@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
:root {
  --primary-color: #c10930;
  --secondary-color: #6d081d;
  --dark-color: #343435;
  --border-color: #f8f8f8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 7px;
  height: 2px;
}

body::-webkit-scrollbar-thumb {
  background-color: #c10930;
  max-height: 2px;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Titillium Web", sans-serif !important;
  background: #dfe8e9 !important;
}
a {
  text-decoration: none !important;
}
.rules {
  background: var(--primary-color);
  border-bottom: 4px solid var(--secondary-color);
}

header {
  box-shadow: 0px 2px 20px rgb(1 41 112 / 10%);
  background-color: #fff;
  position: sticky;
  transition: all 0.5s;
  z-index: 995;
  height: 60px;
  top: 0;
  left: 0;
  right: 0;
}
header .logo {
  max-height: 37px;
}
.mobile-logo {
  max-height: 37px;
  display: none;
}
.search-box {
  min-width: 360px;
  padding: 0 20px;
}

::placeholder {
  color: var(--dark-color) !important;
  /* background-color: red !important; */
}
/* 
.signin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
} */

.signin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000; /* Ensure it appears above other content */
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

header .search-bar {
  border: 0;
  font-size: 14px;
  color: #012970;
  box-shadow: 0 0 10px 0 rgb(1 41 112 / 15%) !important;
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
  appearance: none !important;
}

header input:focus {
  border: none !important;
}
.search-icon-btn {
  position: absolute;
  bottom: 6px;
  right: 30px;
  background: transparent;
  border: none;
}
.search-icon {
  color: #012970;
}
.rules {
  margin-right: 5px;
  text-transform: uppercase;
  font-size: 11px;
  padding: 7px 15px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.rules:hover {
  color: #fff;
  background: var(--secondary-color);
  border-bottom: 4px solid var(--primary-color);
}

.rules:hover,
.deposit:hover,
.withdrawal:hover {
  color: #fff;
  background: var(--secondary-color);
  border-bottom: 4px solid var(--primary-color);
}
.rules img,
.deposit img,
.withdrawal img {
  width: 18px;
  filter: invert(1);
  margin-right: 5px;
}
.deposit {
  margin-right: 5px;
  text-transform: uppercase;
  font-size: 11px;
  padding: 7px 15px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: darkgreen;
  color: #fff !important;
  border-bottom: 4px solid darkred;
}
.withdrawal {
  margin-right: 5px;
  text-transform: uppercase;
  font-size: 11px;
  padding: 7px 15px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: darkred;
  color: #fff !important;
  border-bottom: 4px solid darkgreen;
}
@media (max-width: 991px) {
  .deposit,
  .withdrawal {
    display: none;
  }
}
.btn-login {
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  text-transform: uppercase;
  padding: 7px 15px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px #fff;
  transition: 0.9s;
  letter-spacing: 1px;
  background: var(--dark-color);
  border: 1px solid var(--primary-color);
}
.menu_icon {
  display: none;
}
@media (max-width: 380px) {
  .mobile-logo {
    max-height: 30px;
    width: 100px;
  }
}
@media (max-width: 1199px) {
  .search-box {
    display: none;
  }
}
@media (max-width: 991px) {
  header {
    background-color: #000;
    padding: 0 5px;
  }
  header .container {
    padding: 0;
  }
  .mobile-logo {
    display: block;
    max-height: 32px;
  }
  .logo {
    display: none;
  }
  .rules {
    display: none;
  }
  .action-btns {
    display: flex;
    gap: 6px;
  }
  .menu_icon {
    display: block;
    position: fixed;
    right: 0;
    top: 60px;
    z-index: 999;
    background: #fff !important;
    padding: 3px 13px;
    font-size: 25.6px;
    color: #000 !important;
    cursor: pointer;
  }
  .btn-login {
    padding: 7px 13px;
    margin-left: 10px;
    box-shadow: inset 0 0 0 1px #fff;
    border-radius: 5px;
  }
  .row,
  .container-fluid {
    --bs-gutter-x: 0 !important;
  }
}
.show {
  left: 0 !important;
  z-index: 1001 !important;
  width: 55% !important;
}
.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.arrow {
  transition: transform 0.3s ease;
}

.wp-support a {
  position: fixed;
  right: 4%;
  bottom: 3%;
}
.wp-support img {
  width: 75px;
  animation: simple-scale 1s linear 1s infinite alternate;
}

@keyframes simple-scale {
  100% {
    transform: scale(1.2);
  }
}

/* ARSH 6Nov */

li.nav-item.expo_bal::before {
  background: url(/bal.png);
}
li.nav-item.expo_bal::before {
  content: "";
  background-size: contain !important;
  background-repeat: no-repeat !important;
  position: absolute;
  top: -10px;
  bottom: 0;
  right: 0;
  left: 0;
  justify-content: center;
  display: flex;
  width: 90%;
  z-index: 99;
}
.header-nav > ul {
  margin: 0;
  padding: 0;
}
.header-nav ul {
  list-style: none;
}
nav.header-nav ul .expo_bal:nth-child(1) {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-right: none;
  /* box-shadow: inset -1px 0px 0 0px var(--theme-primary-color); */
}
.expo_bal {
  margin: 0 0px;
  /* border: 1px solid var(--theme-primary-color); */
  /* padding: 4px 6px; */
  /* border-radius: 6px; */
  width: 100px;
  background: none;
  color: #000;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.expo_bal a {
  display: block;
  margin: 0 auto;
  align-items: center;
}
.expo_bal i {
  color: var(--primary-color);
}
.expo_bal i {
  display: none;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 0px;
  opacity: 0.3;
}
.expo_bal span {
  top: -2px;
  margin-left: -5px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: normal;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 999;
  text-align: center;
}
.expo_bal span b {
  display: block;
  color: #000;
  font-weight: 600 !important;
}
/* li.nav-item.expo_bal::before {
  top: -20px;
} */
@media (max-width: 991px) {
  .expo_bal {
    width: 90px;
    padding: 2px;
  }
}
@media (max-width: 380px) {
  .expo_bal {
    width: 80px;
  }
}
@media (max-width: 991px) {
  li.nav-item.expo_bal::before {
    top: -7px;
    left: 7px;
  }
}
@media (max-width: 991px) {
  .expo_bal span,
  .header-nav .nav-profile,
  .expo_bal span b,
  .commentary {
    color: #fff;
  }
}
@media (max-width: 991px) {
  .expo_bal span {
    top: -2px;
    margin-left: 5px;
  }
}
.de_wi_btns {
  display: none;
}
@media (max-width: 991px) {
  .de_wi_btns {
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 60px;
    z-index: 9;
  }
}
@media (max-width: 991px) {
  .de_wi_btns a {
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px;
    border-radius: 0px;
    color: #fff;
    width: 100%;
    text-align: center;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .btn-deposit {
    background: darkgreen;
    color: #fff !important;
  }
}
@media (max-width: 991px) {
  .de_wi_btns a img {
    width: 18px;
    filter: invert(1);
    margin-right: 5px;
  }
}
@media (max-width: 991px) {
  .btn-withdrawal img,
  .btn-deposit img {
    filter: invert(1);
  }
}
@media (max-width: 991px) {
  .btn-withdrawal {
    background: darkred;
    color: #fff !important;
  }
}

.error-content {
}

/* bottom header section */
.active {
  background: #c00930 !important;
}

.bottom_header {
  width: 100%;
  position: sticky;
  top: 60px;
  z-index: 9;
}
.MainHeader ul {
  display: flex;
  list-style: none;
  overflow-x: auto;
  /* gap: 10px; */
  background: #343435;
}

.MainHeader ul {
  padding-left: 0 !important;
}

.MainHeader ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 15px;
  text-wrap: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  padding: 7px 26px;
  font-weight: 500;
  color: #fff;
}

.MainHeader img {
  width: 17px;
}

.MainHeader_Second {
  border: 1px solid #6d081d;
}

.MainHeader_Second img {
  width: 25px;
}

.MainHeader_Second ul li {
  background-color: #fff;
  border-right: 1px solid #343435;
}
.MainHeader_Second ul li a {
  color: #000;
}

.nmm-active {
  background: #6d081d;
}
@media (max-width: 991px) {
  .MainHeader ul {
    background: #fff;
    border-bottom: 1px solid #d1d1d1;
  }
  .MainHeader ul li a {
    color: #000;
  }
}

main {
  padding: 10px 15px;
  transition: all 0.3s;
}

.active {
  background: #c00930 !important;
}

.commentary {
  background: var(--secondary-color);
  margin-bottom: 1px;
  position: relative;
  display: inline-flex;
  width: 100%;
  align-items: center;
  border-radius: 1px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.bet-table {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
}

.bet-table img {
  width: 178px;
}

.commentary img {
  width: 22px;
  padding: 3px;
}

.coupon_thumb_section {
  display: none;
}
.cts_img {
  width: 176px;
}

.live_check:checked + label {
  border: 1px solid #00ad6f !important;
  background-color: #00ad6f !important;
  color: #fff !important;
  transition: all 0.2s !important;
}
.live_check:checked + label::before {
  content: "\f633";
  transform: rotate(-1turn);
  transition: transform 0.3s ease-in-out;
}
.virtual_check:checked + label {
  border: 1px solid #00ad6f !important;
  background-color: #00ad6f !important;
  color: #fff !important;
  transition: all 0.2s !important;
}
.virtual_check:checked + label::before {
  content: "\f633";
  transform: rotate(-1turn);
  transition: transform 0.3s ease-in-out;
}
/* BET TABEL CSS */
.bet_table_header {
  color: #333;
  font-weight: 600;
  font-size: 15px;
  background: #e9eff8;
}
.sport_title_icon {
  max-width: 20px !important;
  margin-right: 3px;
}
.sport_title {
  background: var(--primary-color);
  text-transform: uppercase;
  position: relative;
  padding: 7px 12px;
  color: #fff;
  display: inline-flex;
  width: 200px;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
}
.sport_title::before {
  content: "";
  clip-path: polygon(0 -1px, 100% -1px, 1px 100%, 0 100%);
  width: 18px;
  height: calc(100% + 0px);
  position: absolute;
  right: -17px;
  top: 0;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0,
    var(--primary-color)
  );
}

.mode_tag_box {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  float: right;
  margin: 0 30% 0 0;
}
.mode_tag_box li {
  display: inline;
}

.mode_tag_box li input {
  position: absolute;
  opacity: 0;
}

.mode_tag_box li label {
  display: inline-block;
  border: 1px solid var(--primary-color) !important;
  color: var(--primary-color) !important;
  border-radius: 25px;
  white-space: nowrap;
  margin: 3px 1px;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s;
  font-weight: 600;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.mode_tag_box li label::before {
  display: inline-block;
  font-style: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: bootstrap-icons;
  font-weight: 400;
  font-size: 12px;
  padding-right: 2px;
  content: "\f4fe";
  transition: transform 0.3s ease-in-out;
}
small {
  font-size: 0.75em !important;
  font-weight: 600;
}
/* BET TABLE ROW CSS */
.bet_table_row {
  background: #ffffff;
  color: #1e1e1e;
  border-bottom: 1px solid #f8f8f8;
  transition: 0.9s;
}

.game_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.game_left_col {
  display: flex;
  align-items: center;
  width: 82%;
}
.game_name {
  margin-left: 10px;
}
.team_name {
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 280px;
  width: 280px;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.team_name.team_event {
  font-size: 10px;
  color: #838383;
  font-weight: 500;
}

.game_date {
  width: 78px;
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: #444;
  background: #e9eff8;
  padding: 4px;
  margin: 8px 4px 0 4px;
}

.game_date.inplay {
  text-align: center;
  position: relative;
  background: none;
  border: none;
}

.game_date.inplay span {
  color: #03b37f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.game_date.inplay span::after {
  content: "";
  background-color: #03b37f;
  height: 2px;
  width: 50px;
  position: absolute;
  bottom: -1px;
  animation: linear infinite alternate;
  animation-name: run;
  animation-duration: 1.2s;
  -webkit-animation: linear infinite alternate;
  animation-name: none;
  animation-duration: 0s;
  -webkit-animation-name: run;
  -webkit-animation-duration: 1.2s;
}

@keyframes run {
  0% {
    left: 0;
    width: 5%;
  }
  50% {
    width: 100%;
  }
  100% {
    right: 0;
    width: 5%;
  }
}

.day {
  text-align: center;
  text-transform: uppercase;
}

.game_icons {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #7f7f7f;
}

.game_icons .game_bm {
  width: 20px;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  height: 20px;
  vertical-align: super;
  color: #fff;
  line-height: 20px;
  font-size: 9px;
  font-weight: 700;
  margin-left: 3px;
  background: var(--primary-color);
}

.h_backLay {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bl_box {
  width: 100%;
  padding: 0;
  text-align: center;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease 0s;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 50px;
  border-left: 1px solid #f8f8f8;
}
.back {
  background: #66d1ff;
}
.bet_button_price {
  line-height: 1.1;
}
.bet_button_price em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
}
.lay {
  background: #ffb4c5;
}
/* MEDIA QUERIES */

@media (max-width: 767px) {
  .mode_tag_box {
    margin-right: 0;
  }
  .mode_tag_box li label {
    padding: 3px 10px;
  }
}
.sec_coupon_thumb_section {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 2px;
  margin-bottom: 1px;
}
@media (max-width: 991px) {
  .commentary {
    background: #fff !important;
    color: #000 !important;
  }
  main {
    padding: 1px;
  }
  .coupon_thumb_section {
    width: 100%;
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    overflow-x: scroll;
    grid-row-gap: 1px;
    grid-column-gap: 1px;
    margin-bottom: 1px;
    justify-content: space-between;
    white-space: nowrap;
  }

  .game_left_col {
    width: 75%;
  }
  .team_name {
    max-width: 150px;
    font-size: 12px;
  }
  .game_date {
    width: 50px;
    padding: 0;
    font-size: 8px;
    margin: 0 4px;
  }
  .game_date.inplay span {
    font-size: 11px;
  }
  .game_icons {
    display: flex;
    margin-right: 3px;
  }
}
@media (min-width: 1200px) {
  main {
    margin-left: 250px;
  }
}

/* TAB HEADER */

.tab_header {
  background: var(--dark-color);
  overflow-y: hidden;
  overflow-x: overlay;
  display: block;
  white-space: nowrap;
}

.tab_header_second {
  display: flex;
  flex-wrap: nowrap !important;
  gap: 15px;
}

.tab_header_second li {
  padding: 5px 10px;
}

.tab_header_second li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.tab_header li {
  display: inline-flex;
}

.tab_header .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  padding: 6px 19px;
  border: none !important;
  border-radius: 0;
  margin: 0 !important;
}
.tab_header .nav-link.active {
  color: #fff;
  background: var(--secondary-color);
}

/* SEC BET TABLE ROW */

.racing_listing {
  display: flex;
  flex-wrap: wrap;
  margin: 4px 0;
}

.racing_listing .rl_box {
  background: var(--dark-color);
  padding: 5px 8px;
  color: #fff;
  margin-right: 2px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 2px;
}

/* Preloader */
.loading {
  /* display: none; */
  /* background: #fff; */
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #c10930;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* Overlay with blur effect */
.loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
  backdrop-filter: blur(5px); /* Blur effect on background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure it's above other content */
}

/* Loader style */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

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

/* sidebar css */

aside::-webkit-scrollbar {
  width: 7px;
  height: 5px;
}

aside::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
}

.app_sidebar {
  position: fixed;
  top: 106px;
  left: 0px;
  bottom: 0;
  width: 250px;
  z-index: 994;
  transition: all 0.3s;
  padding: 0;
  overflow-y: auto;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  /* display: none; */
}
.sidebar_nav {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mobile_logo {
  max-height: 32px;
  display: none;
}

.nav_item {
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav_item .nav_link {
  color: var(--secondary-color);
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
  padding: 5px 15px 5px 10px;
  text-transform: capitalize;
}

.nav_item .nav_link::before {
  content: "";
  background: var(--border-color);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 13.3%;
}

.nav_item .nav_link img {
  width: 18px;
  object-fit: contain;
  margin-right: 5px;
}

.sidebar_nav .nav_link span {
  padding-left: 10px !important;
  padding-top: 5px;
  padding-bottom: 5px;
}

.sidebar_nav .nav_link .angle_down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
  color: var(--secondary-color);
  font-size: 11px;
}

.sidebar_nav .nav_link:hover {
  color: var(--primary-color);
  background: #fff6ee;
  cursor: pointer;
}
.sidebar_nav .nav_link:hover .nav_icon {
  filter: grayscale(1);
}
@media (max-width: 1199px) {
  .app_sidebar {
    top: 0;
    left: -250px;
  }
}

@media (max-width: 991px) {
  .mobile_logo {
    margin: 5px auto;
    display: block;
    width: 70px;
  }
}
/* Cricket Dropdown Navigation */
.cricket_navigation {
  list-style: none;
  padding-left: 20px;
  display: none;
}

.cricket_navigation a {
  display: block;
  padding: 8px 0;
  color: #6c757d;
  font-size: 12px;
  text-transform: capitalize;
  transition: color 0.3s;
}

.cricket_navigation a:hover {
  color: #007bff;
}

/* If open, display the dropdown */
.open + .cricket_navigation {
  display: block;
}

/* Rotate caret down icon when open */
.nav_link .bi-caret-down {
  transition: transform 0.3s;
}

.nav_link .open {
  transform: rotate(180deg);
}
.cricket-nav-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.cricket-nav-content.open {
  display: block;
  max-height: 500px; /* Adjust height as needed */
}
/* SIGN IN AND FORGOT PASSWORD */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100% !important;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.fade {
  transition: opacity 0.15s linear;
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  /* transform: translate(0, -50px); */
}

.login-popup .login-form input:focus {
  background: #c10930;
}
.login-popup .login-form input:focus {
  border: none;
  box-shadow: 0 0 0 2px #fff;
}

.btn-login {
  border: 1px solid var(--primary-color);
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 800px;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .d-sm-block {
    display: block !important;
  }
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-content {
  background: none !important;
  padding: 0 !important;
}

.modal-overlay {
  top: 300px !important;
}

.login-popup .modal-content .modal-body {
  padding: 0;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.login-popup .modal-content .close {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  z-index: 9;
  opacity: 1;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.btn-close {
  background-size: 25%;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.login-popup .login-block {
  background: #005098 !important;
}

.login-popup .login-block {
  float: left;
  width: 100%;
  padding: 0;
  box-shadow: 0 0 25px 2px #222;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }

  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}

.formText::after {
  content: "";
  position: absolute;
  top: 45px;
  width: 29%;
  height: 2px;
  background: #fff;
  left: 35%;
}

.login-popup .login-sec h2 {
  font-size: 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.login-popup .login-form label {
  color: #fff;
  font-size: 10px;
}

.login-popup .login-form input {
  background: #00427c;
}

.login-popup .login-form label input {
  padding: 0;
}

form-check-input:checked[type="checkbox"] {
  background-image: url("/check.svg");
}

.form-group a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}

.login-popup .login-sec {
  padding: 50px 30px;
  position: relative;
}

.login-popup .banner-sec {
  padding: 0;
  background: #c10930;
  min-height: 400px;
  position: relative;
}

.login-popup .login-form .button-login {
  background: #fff;
  color: #000;
  font-weight: 600;
  width: 100%;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.login-popup .login-sec .copy-text {
  position: absolute;
  width: 80%;
  bottom: -15px;
  font-size: 13px;
  text-align: center;
  color: #fff;
}

.login-popup .login-sec .copy-text a {
  color: #c10930;
  text-decoration: none;
}

.login-popup .login-sec .copy-text p a {
  color: #fff;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  border-radius: 0;
}

.login-popup .login-form input {
  border: none;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 13px;
}

.carousel-indicators {
  display: none;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
.signUpUi form {
  background: var(--theme-secondary-color);
  box-shadow: none;
  border: 1px solid var(--theme-secondary-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding: 25px;
}
@media (max-width: 575px) {
  .signUpUi form {
    padding: 25px 50px;
  }
}
.forgotPasswordBody {
  /* width: 500px; */
  height: 500px;
}

.signUpUi form .form-group {
  margin-bottom: 20px;
}
.signUpUi form .form-group input::placeholder {
  color: #fff;
}
@media (max-width: 767px) {
  .signUpUi form .btn-primary {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .signUpUi form .btn-primary {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .signUpUi form .btn-primary {
    border-radius: 0;
  }
}
.iti {
  position: relative;
  display: inline-block;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}
.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}
.iti__flag {
  height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(../img/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}
.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}
@media (max-width: 500px) {
  .iti__country-list {
    white-space: normal;
  }
}
.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti__hide {
  display: none;
}
.iti__flag.iti__in {
  height: 14px;
  background-position: -2251px 1px;
}
.iti__flag {
  height: 15px;
  box-shadow: 0 0 1px 0 #888;
  background-image: url(/flags.png);
  background-repeat: no-repeat;
  background-color: #dbdbdb;
  background-position: 20px 0;
}
.pull-right {
  z-index: 20;
}

.forgotui {
  border: none !important;
  background: none !important;
  top: 25% !important;
  width: 430px !important;
  position: absolute !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.update-password-ui {
  border: none !important;
  background: none !important;
  top: 54% !important;
  width: 430px !important;
  position: absolute !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.sign-up-page-wrap {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background: #6d081d;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signUpUi {
  font-family: sans-serif;
  width: 430px;
  background: #6d081d;
  position: absolute;
  max-width: 430px;
  min-height: 90%;
  max-height: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: unset !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid #fff;
}

.head-title {
  color: #e5cb63;
  text-align: center;
}

.iti--allow-dropdown .iti_flag-container:hover .iti_selected-flag {
  background-color: rgba(0, 0, 0, 0.05);
}

.iti_flag.iti_in {
  height: 14px;
  background-position: -2413px 0px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti_flag.iti_in {
  height: 14px;
  background-position: -2413px 0px;
}
.iti__flag {
  height: 15px;
  box-shadow: 0px 0px 1px 0px #888;
  background-image: url("../../public/flags.png");
  /* background-repeat: no-repeat; */
  background-color: #dbdbdb;
  background-position: 20px 0;
  background-position: 3239px 1px;
  z-index: 1003;
  background-size: cover;
}

.iti__flag {
  width: 20px;
}

.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 10px;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: white;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti__country-name {
  margin-right: 6px;
}

.iti_flag-box,
.iticountry-name,
.iti_dial-code {
  vertical-align: middle;
}

.iti__flag-container {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1px;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.signUpUi form .form-group input {
  background: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}

.signUpUi form .form-group input {
  border: none;
  border-radius: 25px;
  height: 50px;
  text-align: center;
  font-size: 12px;
  box-shadow: none;
  color: #fff;
}
.signUpUi form .form-group {
  margin-bottom: 20px;
}

.signUpUi form small {
  color: #fff;
}

.signUpUi form .btn-primary {
  width: auto !important;
}
.signUpUi form .btn-primary {
  width: 20%;
  line-height: 2;
  text-transform: uppercase;
  font-size: 15px;
  margin: 0 auto;
  margin-top: 20px !important;
  display: block;
  border-color: #c10930;
  background-color: #c10930;
  color: #fff;
}

.btn {
  display: inline-block;
  font-weight: 400;
  /* color: #212529; */
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.signUpUi form .form-group input {
  background: none;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.signUpUi form .form-group label {
  font-size: 13px;
  margin: 0;
  margin-left: 11px;
  display: none;
}

.signUpNew_info {
  display: block;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 15px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
}

.signUpUi form .form-group .form-control:focus {
  /* color: #fff; */
  background: none;
  /* border: none; */
  outline: 0;
  box-shadow: 0px 1px 0 0px #106257ab;
}

::placeholder {
  color: #fff !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* ACCOUNT PAGE */

.accounts .table th,
.accounts .table thead th {
  font-weight: 600;
  padding: 8px;
  font-size: 12px;
}

.accounts .table thead th {
  background: #dfdde0;
  text-transform: capitalize;
  border-bottom: none !important;
}
