/* === GENERAL === */
.kyc_verification_container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
}

/* === PAGE-SPINNER === */
.page_loader_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.loader {
  width: 40px;
  --b: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2b4b1b;
  -webkit-mask: repeating-conic-gradient(
      #0000 0deg,
      #000 1deg 70deg,
      #0000 71deg 90deg
    ),
    radial-gradient(
      farthest-side,
      #0000 calc(100% - var(--b) - 1px),
      #000 calc(100% - var(--b))
    );
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l5 1s infinite;
}
@keyframes l5 {
  to {
    transform: rotate(0.5turn);
  }
}

.formStepBtnDisabled {
  cursor: not-allowed !important;
  opacity: 0.7 !important;
}

/* === PAGE-SPINNER end === */

/* === GENERAL END === */

/* === KYC-PENDING === */

/* === KYC-PENDING END === */

/* === KYC MODAL === */

.kyc_modal_overlay {
  position: fixed;
  z-index: 5 !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0.75;
}

.kyc_modal_dialog {
  z-index: 6 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.kyc_modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  width: 50%;
  padding: 2rem;
}

.kyc_modal_close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.kyc_modal_close button {
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  background-color: transparent !important;
}

.kyc_modal_close button i {
  color: #2b4b1b;
  font-size: 2rem;
  font-weight: 600;
}

.kyc_modal_bodyImg {
  margin: 0.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.kyc_modal_bodyContent h2 {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
}

.kyc_modal_bodyContent > div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
  font-size: 1.35rem;
  font-weight: 400;
  color: #758694;
}

/* === KYC MODAL END === */

.kyc_info_message {
  font-size: 0.975rem;
  font-weight: 500;
  padding: 0.5rem 0;
  color: #c7253e;
}

/* Mobile */
@media (max-width: 700px) {
  .kyc_modal_inner {
    width: 85%;
    padding: 1rem;
  }
}
