body {
  background-color: #F4F4F4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.bg_grey {
  background: #F4F4F4;
}
h2 {
  color: #000000;
  font-weight:600;
}
.form-label-group {
    position: relative;
    /* margin-bottom: 1rem; */
    background-color: #ffffff;
  }
  .form-control {
      height: calc(2.2em + 0.75rem + 2px);
      background-color: #ffffff;
      box-shadow: 0px 7px 6px rgba(70, 174, 217, 0.12);
  }
  select {
    z-index: 4;
    background-color: transparent !important;
  }
  .error .container {
    background-color: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
  }
  .form-label-group > label, .form-label-group option.select-default {
    text-align: left;
    display: block;
    background-color: #F4F4F4;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
  }
  .for-dropdown-label label {
    display: block;
    text-align: left;
  }
  
  .form-label-group input::-webkit-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input:-ms-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input::-ms-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input::-moz-placeholder {
    color: transparent;
  }
  
  .form-label-group input::placeholder {
    color: transparent;
  }
  
  .form-label-group input:not(:placeholder-shown) {
    padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * (2 / 3));
    padding-bottom: calc(var(--input-padding-y) / 2);
  }
  
  .form-label-group input:not(:placeholder-shown) ~ label, .form-label-group input:not(:placeholder-shown) option.select-default {
    padding-top: calc(var(--input-padding-y) / 2);
    padding-bottom: calc(var(--input-padding-y) / 2);
    font-size: 12px;
    top: 15px;
    color: #777;
  }
  
  /* Fallback for Edge
  -------------------------------------------------- */
  @supports (-ms-ime-align: auto) {
    .form-label-group > label {
      display: none;
    }
    .form-label-group input::-ms-input-placeholder {
      color: #777;
    }
  }
  
  /* Fallback for IE
  -------------------------------------------------- */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
      display: none;
    }
    .form-label-group input:-ms-input-placeholder {
      color: #777;
    }
  }
  /* toggle switch css */
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    height: 24px;
    width: 51px;
    margin: auto 0;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 0;
    bottom: 0;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #FFD100;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #FFD100;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .form-group.switch-container {
      margin-top: 15px !important;
      margin-bottom: 15px !important;
  }
  /* Create a custom checkbox */
  .checkbox-container {
      background-color: #30302F;
      display: block;
      height: 100%;
  }
  .checkbox-container input {
      opacity: 0;
      width: 0;
      height: 0;
  }
  .checkmark {
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #eee;
    margin: auto 0;
    right: 20px;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 2px #c1c1c1 solid;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-container input ~ .checkmark, .checkbox-container input ~ .checkmark-mobile {
    background-color: #fff;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark, .checkbox-container input:checked ~ .checkmark-mobile {
    background-color: #FFD100;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after, .checkmark-mobile:after {
    content: "";
    position: absolute;
    display: block;
  }
  
  /* Show the checkmark when checked */
  /* .container input:checked ~ .checkmark:after {
    display: block;
  } */
  
  /* Style the checkmark/indicator */
  @media screen and (max-width:576px) {
    #acceptanceOTP {
      width:100%;
    }
    .checkbox-label {
        width: 80%;
    }
    /* .custom-counter li{
      display: none;
    } */
    
  }
  @media screen and (max-width:1272px) {
    .desktop-only {
      display: none;
    }
    .mobile-only {
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .custom-counter li.nav-item-active {
      min-width: 160px;
    }
    .custom-counter li.nav-item {
      min-width: 0;
    }
    .custom-counter li.nav-item .nav-link span {
      display: none;
    }
    .custom-counter li.nav-item-active .nav-link span {
      display: block;
    }
    .custom-counter a {
      margin: auto;
    }

  }
  @media screen and (min-width:1273px) {
    .desktop-only {
      display: block;
    }
    .mobile-only {
      display: none;
    }
    .custom-counter a {
      margin-right: 3rem;
    }
  }
  @media screen and (min-width:577px) {
    #acceptanceOTP {
      width:80%;
    }
    .checkbox-label {
        width: 90%;
    }
  }
  .checkbox-label {
      text-align:left;
      float:left;
      padding: 10px 0 5px 20px;
      background-color: #30302F;
      color: #fff;
  }
  .checkbox-container .checkmark:after, .checkbox-container .checkmark-mobile:after {
    left: 7px;
    top: 0;
    width: 7px;
    height: 17px;
    border: solid white;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* select dropdown arrow */
  /* The container must be positioned relative: */
  .custom-select-superb {
    position: relative;
    background-color: #fff;
  }
  
  .custom-select-superb select {
    display: none; /*hide original SELECT element: */
  }
  
  .select-selected {
    background-color: #F9F9F9;
    /* border: 1px solid #ced4da;
    border-radius: 0.25rem; */
  }
  
  /* Style the arrow inside the select element: */
  .select-selected:after {
    position: absolute;
    content: "";
    top: 50%;
    right: 30px;
    width: 15px;
    height: 15px;
    border: solid #12989F;
    border-width: 0 3px 3px 0;
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #12989F transparent;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 15px;
    border: solid #12989F;
    border-width: 0 3px 3px 0;
    -ms-transform: rotate(225deg);
    transform: translate(-50%, -50%) rotate(225deg);
  }
  
  /* style the items (options), including the selected item: */
  .select-selected {
    color: #000;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    height: calc(2.2em + 0.75rem + 2px);
    text-align: left;
    display: flex;
    align-items: center;
    border-radius: 8px;
    z-index: 4;
    position: relative;
    background-color: #F9F9F9;
  }
  
  .select-items div {
    color: #000;
    padding: 8px 10px;
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
    height: calc(2.2em + 0.75rem + 2px);
    text-align: left;
    display: flex;
    align-items: center;
  }
  .select-items div:first-child {
      border-radius: 0;
  }
  .select-items div:last-child {
      border-radius: 0 0 8px 8px;
  }
  
  /* Style items (options): */
  .select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 8px;
    height: 140px;
    overflow-y: scroll;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .checkmark-bg-color {
      background-color:#D9D9D9
  }
  /* button button */
  .proceed-button:hover:not([disabled]) {
      background-color: #fff;
      color: #12989F;
      border: 3px solid #12989F;;
  
  }
  .proceed-button {
      background-color:#12989F;
      color:#fff;
      border-radius:34px;
      padding:10px 50px;
      display:inline-block;
      border: none;
      font-size: 1.2rem;
      margin:0 auto;
      font-weight: 700;
      border: 3px solid transparent;
  }
  .cancel-button{
      background-color:#12989F;
      color:#ffffff;
      border-radius:34px;
      padding:10px 50px;
      display:inline-block;
      margin:0 auto;
      font-weight: 700;
      font-size: 1.2rem;
      border: 3px solid transparent;
  }
  .cancel-button:hover{
      background-color:#ffffff;
      color:#12989F;
      border: 3px solid #12989F;
  }
  @media screen and (max-width:576px) {
    .proceed-button {
      padding:5px 80px;
    }
    .cancel-button{
      padding:5px 80px;
    }
    .checkmark-mobile {
      display: block !important;
      position: absolute;
      height: 25px;
      width: 25px;
      background-color: #eee;
      margin: auto 0;
      right: 20px;
      top: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer;
      border: 2px #c1c1c1 solid;
    }
    .checkmark-left-desktop {
      display: none;
    }
  }
  @media screen and (min-width:577px) {
    .proceed-button {
      padding:5px 100px;
    }
    .cancel-button{
      padding:5px 100px;
    }
    .checkmark-left-desktop {
      display: block !important;
      position: absolute;
      height: 25px;
      width: 25px;
      background-color: #fff;
      margin: auto 0;
      left: 0;
      top: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer;
      border: 2px #c1c1c1 solid;
    }
    .checkmark-mobile {
      display: none;
    }
  }
  .checkmark-left {
    display: block !important;
    position: absolute;
    height: 25px;
    width: 25px;
    background-color: #fff;
    margin: auto 0;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 2px #c1c1c1 solid;
  }
  
  /* On mouse-over, add a grey background color */
  /* .checkbox-container input ~ .checkmark-left {
    background-color: #ced4da;
  } */
  
  /* When the checkbox is checked, add a blue background */
 .checkbox-container input:checked ~ .checkmark-left, .checkbox-container input:checked ~ .checkmark-left-desktop {
    background-color: #FFD100;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark-left:after, .checkmark-left-desktop:after {
    content: "";
    position: absolute;
    display: block;
  }
  
  /* Show the checkmark when checked */
  /* .container input:checked ~ .checkmark:after {
    display: block;
  } */
  .checkbox-container .checkmark-left:after, .checkbox-container .checkmark-left-desktop:after {
    left: 7px;
    top: 0px;
    width: 7px;
    height: 17px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .checkbox-span {
    position: relative;
    top: 25%;
    transform: translateY(-50%);
    color:#fff
  }
  /* li:not(:last-child) { 
    margin-bottom: 1rem;  
 } */
 .custom-counter {
   list-style-type: none;
   background-color: #12989F;
 }
 .custom-counter li {
   counter-increment: step-counter;
   position: relative;
 }
.custom-counter li::before {
  content: counter(step-counter);
  margin-right: 20px;
  font-size: 80%;
  background-color: #fff;
  color: #12989F;
  font-weight: 400;
  padding: 3px 8px;
  border-radius: 50%;
  /* border: 1px solid #BDC3C7; */
  top: 50%;
  transform: translate(-50%,-50%);
  position: absolute;
  left: -5px
}
.custom-counter-thank-you {
  list-style-type: none;
}
.custom-counter-thank-you li {
  counter-increment: step-counter;
  position: relative;
}
.custom-counter-thank-you li::before {
  content: counter(step-counter);
  margin-right: 20px;
  font-size: 80%;
  background-color: #12989F;
  color: #fff;
  font-weight: 400;
  padding: 3px 8px;
  border-radius: 50%;
  margin-left: -50px;
  border: none;
}
li.nav-item-active::before {
  background-color: #FFD100;
  color: #fff;
  border: none;
}
.bank-upload-button, .bank-verification-button {
  background-color:#12989F;
  color:#ffffff;
  border-radius:34px;
  /* padding: 5px 100px; */
  display:block;
  border:none;
  margin:auto;
  font-size:1rem;
  font-weight:700;
  width:50%;
  border:3px solid #fff;
}
.manual-bank-upload-button {
  background-color:#12989F;
  color:#ffffff;
  border-radius:34px;
  /* padding: 5px 100px; */
  display:block;
  border:none;
  margin:auto;
  font-size:1rem;
  font-weight:700;
  width:50%;
  border:3px solid #12989F;
}
@media screen and (max-width:576px) {
  .bank-verification-button {
    width:100%
  }
  .bank-upload-button {
    width:100%
  }
  .manual-bank-upload-button {
    width:100%
  }
}
@media screen and (min-width:577px) {
  .bank-verification-button {
    width:75%
  }
  .bank-upload-button {
    width:75%
  }
  .manual-bank-upload-button {
    width:75%
  }
}
.bank-upload-button:hover:not([disabled]), .bank-verification-button:hover:not([disabled]),
.manual-bank-upload-button:hover:not([disabled]) {
  background-color:#fff;
  color:#12989F;
  border:3px solid #12989F;
}
.resend-otp-button {
  background-color:#12989F;
  color:#fff;
  border-radius:34px;
  display:inline-block;
  font-size:20px;
  border: 3px solid transparent;
  flex: 1 100%;
  max-width: 200px;
  padding: 10px;
  font-weight: 400;
  
}
#acceptanceOTP::placeholder {
  text-align: center; 
}
.resend-otp-button:hover {
  background-color:#ffffff;
  color:#12989F;
  border: 3px solid #12989F;

}
#step1-registration-form label.error {
  margin-left: 20px;
  width: auto;
  display: inline;
}
.select-items::-webkit-scrollbar {
  width: 0.2em;
  background-color: #F5F5F5;
}

.select-items::-webkit-scrollbar-thumb {
background-color: #000000;
}

.select-items::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}

.bottom-radius-input-boxes {
  border-radius: 8px 8px 0px 0px;
}
/* css for custom upload button */
.custom-file-input.selected:lang(en)::after {
  content: "" !important;
}
.custom-file {
  overflow: hidden;
}
.custom-file-input {
  white-space: nowrap;
}
.form-control:focus, .search-form .search-field:focus {
  color: #495057;
  background-color: #F9F9F9;
  border-color: #12989F;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(18 152 159 / 25%);
  margin-top: 0 !important;
}
.form-control:focus ~ label, .search-form .search-field:focus ~ label {
  font-size: 12px;
  top: 15px;
  color: #777;
}
.dropdown-focus {
  border-color: #05A871;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgb(18 152 159 / 25%);
}

.red-border-color {
  border: 1px red solid !important;
}
.custom-counter li.nav-item .nav-link {
  color: #ffffff;
}
.nav-link:hover {
  color: #B0B0B0;
}
.custom-counter li.nav-item-active .nav-link {
  color: #000;
  font-weight: bold;
}
#btnDownload {
  background-color:#30302F;
  width:100%;
  color: #FFD100;
  border: 3px solid #FFD100;
}
#btnDownload:hover {
  background-color: #FFD100;
  color: #30302F;
  border: 3px solid #FFD100;
}
.main-menu-list-game  {
  background-color: #12989F;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Style the arrow icon */
.my-dropdown::-ms-expand {
  display: none;
}

.remove-dropdown-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: 0px 7px 6px rgba(70, 174, 217, 0.12);
}

.arrow-dropdown:after {
  content: "";
  position: absolute;
  top: 65%;
  right: 30px;
  width: 15px;
  height: 15px;
  border: solid #12989F;
  border-width: 0 3px 3px 0;
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.monthly-income-block {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.monthly-income-block-text {
  background-color:#30302F;
  border-radius: 7px;
  text-align:left;
  padding: 10px 20px;
  color:#fff
}
.account-creation-block {
  background-color:#30302F;
  border-radius: 7px;
  text-align:left;
  padding: 10px 20px;
  color:#fff
}

/* cpi css styles */
.cpi-list {
  padding-left: 0;
  list-style: none;
}
.cpi-list li {
  position: relative;
  padding-left: 24px; /* Space for the circle */
  font-size: 14px;
}
.cpi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1); /* Optional shadow for visibility */
}
.cpi-div {
  background-color: #30302F;
  padding: 2rem;
  border-radius: 7px;
  color: #ffffff;
}
.cpi-terms {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  margin: 2rem 1.5rem 2rem 0;
  border-radius: 7px;
  color: #4D4D4F;
}