/*
	============
	Common
	============
*/
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea, select {
  -webkit-user-select: auto !important;
  -khtml-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}
.flex {
  display: flex;
  align-items: center;
}

.lock {
  overflow: hidden;
}

/* dashboard category color code */
.fd {
  background-color: #737CE3;
}

.rd {
  background-color: #56A745;
}

.bond {
  background-color: #D28142;
}

.kvp {
  background-color: #53BDA8;
}

.nps {
  background-color: #C9AF67;
}

.nsc {
  background-color: #C39DE4;
}

.jewellery {
  background-color: #D86F6F;
}

.gold {
  background-color: #EDB827;
}

.silver {
  background-color: #46C9AF;
}

.diamond {
  background-color: #943DE0;
}

.platinum {
  background-color: #4360AA;
}

.re {
  background-color: #68AC82;
}

.other {
  background-color: #F2373A;
}

/*
	=======================
	%Widget: Model
	=======================
*/
.modelWrapper {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -8;
  width: 100%;
  height: 100%;
  background: rgba(9, 34, 90, 0.8);
  opacity: 0;
  overflow: hidden;
  -webkit-transition: -webkit-transform 350ms ease;
  -moz-transition: -moz-transform 350ms ease;
  transition: transform 350ms ease;
}

.modelWrapper .clickOverlay {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: red;
  opacity: 0;
}

.modelWrapper .model {
  background: #fff;
  box-shadow: 0px 0px 48.06px 5.94px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 5;
  width: 80%;
  -webkit-transform: translateY(150%);
  -ms-transform: translateY(150%);
  transform: translateY(150%);
  -webkit-transition: -webkit-transform 350ms ease;
  -moz-transition: -moz-transform 350ms ease;
  transition: transform 350ms ease;
}

.modelWrapper .model .modelTitle {
  background: rgb(231, 108, 66);
  background: linear-gradient(90deg,
      rgba(231, 108, 66, 1) 0%,
      rgba(216, 48, 126, 1) 35%,
      rgba(87, 90, 203, 1) 100%);
  color: #fff;
  height: 55px;
  line-height: 55px;
  padding: 0px 15px;
}

.modelWrapper .model .modelTitle .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.modelWrapper .model .modelContent {
  padding: 25px;
}

.modelWrapper[data-modelShow="false"] {
  opacity: 0;
}

.modelWrapper[data-modelShow="true"] {
  z-index: 1000;
  opacity: 1;
}

.modelWrapper[data-modelShow="true"] .model {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.overlayClose {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1;
  background: yellow;
  width: 100%;
  height: 100%;
  opacity: 0;
}

/*
.modelContent{
  position:absolute;
  top: 0px;
  left: 0px;
  z-index: 1125;
  width: 100%;
  height:100%;
  -webkit-transition: -webkit-transform 350ms ease;
  -moz-transition: -moz-transform 350ms ease;
  transition: transform 350ms ease;
}
.modelContent .modelWrapperBox{
  width:90%; height:max-content;
  margin: 30% auto 0px auto;
  padding: 18px;
  background: #fff;
  z-index: 105;
  box-shadow: -3px 2px 12px 3px rgba(200, 196, 196, 0.3);
  border-radius: 5px;
}*/
.modelContent {
  display: block;
  width: 100%;
  padding: 0px 24px;
  position: absolute;
  top: calc(45% - 229px);
  left: 0px;
  z-index: 100;
}

.modelContent .modelWrapperBox {
  width: 100%;
  padding: 24px;
  background: #fff;
  z-index: 105;
  box-shadow: -3px 2px 12px 3px rgba(200, 196, 196, 0.3);
  border-radius: 5px;
  text-align: center;
}

.modelContent p {
  text-align: center;
  margin: 12px auto;
  line-height: 24px;
  max-width: 282px;
  font-family: "Poppins", sans-serif;
}

.modelContent .submitBtn {
  width: 100px;
  margin-top: 12px;
}

.modelWrapperBox.withdraw img {
  width: 50%;
  height: 50%;
  margin: auto;
  top: 5px;
}

.modelContent .withdrawConfrim {
  width: 100px;
}

.modelWrapperBox .withdrawReason {
  width: 100%;
  padding-top: 24px;
}

.modelWrapperBox .withdrawReason textarea {
  width: 100%;
  height: 100px;
  border: 1px solid #d9d9de;
  border-radius: 5px;
}

.modelContent .modelWrapperBox.imageBox {
  padding: 5px;
}

/*
	============
	#Page :: Index.php
	============
*/
.splash {
  display: grid;
  width: 100%;
  height: 100vh;
  align-items: center;
  text-align: center;
}

.splash:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url("../../images/Splash.png");
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.splash .logo {
  position: absolute;
  top: auto;
  left: auto;
  text-align: center;
  width: 100%;
}

/*=============*/
.header {
  /* position: sticky;  */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #5e54f6;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-family: "poppins";
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #ffffff;
  padding: 16px 0px;
  margin: auto;
  /*width: calc(100% - 110px);*/
  width: max-content;
  max-width: 100%;
}

.sort {
  width: 50px;
  height: 50px;
  background: url("../../images/sort_white.svg") no-repeat center;
  background-size: 24px;
  cursor: pointer;
}

.search {
  width: 50px;
  height: 50px;
  background: url("../../images/search.svg") no-repeat center;
  background-size: 24px;
  position: relative;
  cursor: pointer;
}

.searchBox {
  /*position: relative;*/
  position: sticky;
  top: 50px;
  z-index: 100;
  width: 100%;
}

.searchBox .input {
  width: 100%;
  height: 48px;
  padding: 8px;
  border-radius: 5px;
  z-index: 2;
  background-color: #fff;
}

.searchBox .clear {
  position: absolute;
  right: 8px;
  top: 12px;
  z-index: 3;
}

.clear {
  width: 24px;
  height: 24px;
  background: url("../../images/cross_icon.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 1;
}


.header .left {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
}

.header .left.back {
  width: 50px;
  height: 50px;
  background: url("../../images/back.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
}

.header .right.edit {
  width: 50px;
  height: 50px;
  background: url("../../images/edit.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  position: absolute;
  top: 0px;
  right: 0px;
}

.header .left.sort {
  width: 50px;
  height: 50px;
  background: url("../../images/sort_white.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  position: absolute;
  top: 0px;
  left: 0px;
}

.overlay {
  background: rgba(1, 3, 23, 0.6);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 55;
  width: 100%;
  height: 110%;
}

.sortPanel {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 20005;
  width: 75%;
  height: 100%;
  background-size: contain;
  background-color: #ffffff;
  border-radius: 0 6px 6px 0;
  background-color: #fff;
  box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.3);
  padding: 24px;
}

.sortPanel .title strong {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 20px;
  line-height: 140%;
  color: #212121;
  font-weight: 600;
  padding-bottom: 10px;
}

.sortPanel span {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 48px;
  color: #212121;
  font-weight: 400;
  border-bottom: 1px solid #b1b1b1;
}

.sortPanel span:last-child {
  border: none;
}

.sortPanel .crossIcon {
  width: 24px;
  height: 24px;
  display: block;
  background: url("../../images/cross_icon.svg");
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
}

/* remove bg loader */
.removeBgLoader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1%;
  z-index: 107;
}

/*
	================
	#Page:: Login
	================
*/
/* .formCenter form{margin-top:36px;} */
.formCenter form {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* .formCenter{padding:0px 28px; padding-top:82px;} */
.formCenter {
  padding: 0px 28px;
  padding-top: 82px;
  padding-bottom: 20px;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.form li {
  margin-bottom: 12px;
}

.form li label {
  font-family: "Poppins";
  font-weight: 500;
  line-height: 24px;
  color: #212121;
}

.mandatory {
  color: #f51e1e;
}

.form li .numberDiv {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-bottom: 1px solid #b1b1b1;
}

.form li .numberDiv select {
  /* width:72px; height:40px; */
  width: 100%;
  height: 40px;
  padding: 4px 0px 4px 9px;
  font-weight: 400;
  line-height: 34px;
  font-size: 14px;
  background: #f9f9f9;
  color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.form li .numberDiv select option {
  color: #000;
}

.country-select-container {
  position: relative;
  display: flex;
  align-items: center;
  /* width: 100px; */
  width: 100px;
  height: 40px;
  cursor: pointer;
}

.country-select-container::after {
  content: "";
  position: absolute;
  right: 4px;
  width: 12px;
  height: 12px;
  background: url("../../images/down-arrow.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 5;
}

.selected-country-code {
  position: absolute;
  left: 9px;
  pointer-events: none;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 100%;
  z-index: 10;
}

.form li .numberDiv input {
  border: none;
  width: 100%;
  height: 48px;
  padding: 8px 4px;
  background: #f9f9f9;
}

.form li input {
  border-bottom: 1px solid #b1b1b1;
  width: 100%;
  height: 48px;
  padding: 8px 0px;
  box-sizing: border-box;
}

/* .loginUsername, .loginUsername::placeholder { */
.loginUsername {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

.loginUsername::placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}

.grid4 {
  display: grid;
  grid-template-columns: 22% 22% 22% 22%;
  grid-column-gap: 4%;
  width: 90%;
  height: 48px;
}

.form li .grid4 input {
  border-bottom: 2px solid #262626;
}

.titleCenter h2 {
  text-align: center;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #212121;
  margin: auto;
  margin-bottom: 12px;
}

.titleCenter p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  line-height: 120%;
  font-weight: 400;
  color: #3e3e3e;
  margin-bottom: 12px;
}

.titleCenter span.countrycode {
  margin-right: 6px;
}

/*======
 otp page css 
 =====*/
.genrateOTP {
  text-align: center;
}

.genrateOTP .form li {
  width: 100%;
}

.genrateOTP .form li .grid4 input {
  border: 2px solid #262626;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  margin-top: 20px;
}

.genrateOTP .form li .otp-box {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.genrateOTP .form li .otp-box input {
  width: 48px;
  height: 48px;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  padding: 6px;
  border-radius: 4px;
}

.resendOtp {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  line-height: 48px;
}

.resendOtp a {
  margin-left: 6px;
}

.resendOtp span {
  margin-left: 5px;
  margin-bottom: 4px;
  width: 50px;
  display: inline-block;
  color: #1d4ed8;
}

.resendLink {
  justify-content: center;
}

.formCenter h3 {
  color: #3e3e3e;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-family: "Poppins", Roboto;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.formCenter h3.enterOtp {
  padding: 12px 0px;
}

/*=========*/
.button {
  text-align: center;
}

.submitBtn {
  position: relative;
  max-width: 400px;
  width: 190px;
  height: 44px;
  border-radius: 4px;
  background-color: #5e54f6;
  /*padding:0 20px;*/
  padding: 0;
  /* margin:0px auto 24px auto; */
  margin: 20px auto 24px auto;
  text-align: center;
}

.whatsAppBtn {
  position: relative;
  max-width: 200px;
  width: 190px;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 0px 0px;
  margin: 0px auto 0px auto;
  text-align: center;
}

.submitBtn .btnLoader {
  background-color: #5e54f6;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 4px;
  cursor: wait;
  display: flex;
}

.spinLoader {
  position: absolute;
  top: calc(50% - 12.5px);
  left: calc(50% - 12.5px);
  border: 4px solid #1d1495;
  border-top: 4px solid #ffffff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 0.5s linear infinite;
  animation: spin 0.5s linear infinite;
}

/* loader animation */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.submitBtn .btn {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 16px;
  line-height: 44px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  /* width:190px; */
}

.bottomLink {
  font-weight: 500;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  text-decoration-line: underline;
  color: #5e54f6;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.labelText {
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.card {
  background: #ffffff;
  box-shadow: -3px 2px 12px 3px rgba(200, 196, 196, 0.3);
  border-radius: 5px;
  padding: 15px 20px 15px;
  margin-bottom: 20px;
}

.grid2 {
  display: grid;
  grid-template-columns: 49% 49%;
  grid-column-gap: 2%;
}

/* .passwordIcon .eyeIcon{width:100%; text-align:right;} */
.passwordIcon {
  position: absolute;
  top: 24px;
  right: -12px;
}

.passwordIcon .eyeIcon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.passwordIcon .eyeIcon img {
  max-width: 22px;
}

/*
	==================
	#Page :: listing
	==================
*/

.tag-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  /* added by ansh */
  position: sticky;
  z-index: 90;
  top: 50px;
  background-color: #f9f9f9;
}

.tag-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  margin-top: 12px;
  margin-bottom: 5px;
  padding: 0px 16px;
  height: 32px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #121212;
  box-sizing: border-box;
}

.filled {
  background-color: #E9E1FF;
  border: none;
}

.bordered {
  border: 1px solid #C8B4FF;
  background-color: transparent;
}

.tag-container .tag a {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tag-container .tag a span img {
  width: 16px;
}

.tagOption {
  font-weight: 400;
}

.listing {
  -webkit-overflow-scrolling: touch;
  padding-top: 50px;
}

.listing ul {
  margin: 16px 14px;
  padding-bottom: 80px;
}

.listing ul li {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px 16px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
  list-style: none;
}

.listing ul li:last-child {
  border: none;
}

.listing ul li strong {
  display: inline-block;
  font-size: 15px;
  line-height: 26px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5e54f6;
}

.labeltag {
  font-size: 15px;
  color: #3e3e3e;
  margin-bottom: 4px;
  padding: 3px 10px;
  /*background-color:#ffeeee;*/
  background-color: #fde4e4;
  border: 1px solid #ffced7;
}

.listing ul li i.nextIcon {
  width: 28px;
  height: 28px;
  display: block;
  background: url("../../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: 26px;
  position: absolute;
  top: 1px;
  right: 0px;
}

.listing ul li p {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #212121;
  padding-bottom: 5px;
}

.listing ul li .grid2 label {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #212121;
  display: block;
}

.listing ul li .grid2 label:after {
  content: ":";
  width: 100%;
  height: 2px;
  display: block;
  text-align: right;
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 16px;
  font-weight: 500;
}

.listing ul li .grid2 span span {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #212121;
  display: block;
  font-family: 'Inter', sans-serif;
}

.addCicle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 12px;

  position: absolute;
  width: 42px;
  height: 28px;
  right: 24px;
  top: 0px;

  background-color: #EFEEFF;
  border-radius: 20px;

  color: #3e3e3e;
  /* or adjust to fit your theme */
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
}


/* verify page */
.otpbox {
  display: flex;
  padding: 24px 0px 0 0;
  justify-content: center;
  gap: 16px;
}

.box-otp {
  background: #f9f9f9;
  border: 2px solid #3e3e3e;
  border-radius: 4px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  width: 56px;
  height: 56px;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}

.wrong-enter {
  padding: 24px 0px 0px 0px;
}

.textTop {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  align-items: center;
  gap: 12px;
}

.textTop p {
  font-size: 15px;
  font-weight: 500;
  color: #3e3e3e;
}

/*============
 Language Page 
 =================*/

.checkbox-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 36px;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  color: #212121;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 22px;
  width: 22px;
  /* border: 2px solid #5E54F6; */
  border: 2px solid #c4c4c4;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
}

.checkbox-container:hover .checkmark {
  background-color: #f2f2ff;
}

.checkbox-container input:checked~.checkmark {
  background-color: #fff;
  border: 2px solid #5E54F6;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked~.checkmark::after {
  display: block;
}

/*
	=================
	#Page :: Add Fd
	=================
*/
.addFd {
  padding-top: 50px;
  padding-bottom: 30px;
}

.addFd ul {
  padding: 0 0 16px 0px;
}

.addFd ul li {
  padding: 0px 12px;
  margin-bottom: 4px;
}

.addFd ul li label.title {
  font-size: 12px;
  line-height: 20px;
  color: #212121;
}

.addFd ul li .grid2 {
  grid-template-columns: 46% 46%;
  grid-column-gap: 8%;
}

.addFd .form .downArrow option:checked {
  color: rgb(246, 250, 0);
  background-color: rgb(5, 26, 1);
}

.addFd .form .crossIcon {
  /* width:24px; height:24px; */
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../../images/cross_icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  /*top:0px;*/
  top: 27px;
  right: 13px;
}

.addFd .form .addIcon {
  width: 48px;
  height: 48px;
  display: inline-block;
  background: url("../../images/add_icon.svg");
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  top: 0px;
  right: 12px;
  z-index: 10;
}

.addFd .form .minusIcon {
  width: 48px;
  height: 48px;
  display: inline-block;
  background: url("../../images/minus_icon.svg");
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  top: 0px;
  right: 12px;
  z-index: 10;
}

.uploadImage {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-column-gap: 4%;
  margin: 0px 0px 0px 28px;
}

.uploadImage .image {
  width: 100%;
  height: 150px;
  border: 1px solid #b1b1b1;
  border-radius: 6px;
  background: url("../../images/camera_icon.svg");
  background-repeat: no-repeat;
  background-size: 44px;
  background-position: center;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uploadImage .image .cardOverlay {
  border-radius: 6px;
}

.uploadImage input[type="file"] {
  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid #b1b1b1;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.uploadImage .image a {
  max-height: 145px;
  max-width: 145px;
}

.uploadImage .image img {
  width: 100%;
  height: 100%;
  max-height: 145px;
  max-width: 145px;
  border-radius: 6px;
}

.uploadImage .image .remove {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 100;
}

.uploadImage .image .remove img {
  border: none;
}

.uploadImage .title {
  font-size: 12px;
  line-height: 20px;
  color: #212121;
}

.addFd .form .dateIcon {
  width: 100%;
  height: 40px;
  display: block;
  background: url("../../images/calendar_icon.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right;
}

.card .profiledropdown {
  position: static;
}

.dropdown {
  position: absolute;
  right: 0px;
  padding: 3px 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #d1d1d1;
  background-color: #ffffff;
  color: #212121;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 18px;
  font-family: 'Inter', sans-serif;
}

.amountWord {
  text-transform: capitalize;
  font-size: 12px;
}

div:has(> span#numToWord:empty),
div:has(> span#numToWordMaturity:empty) {
  display: none !important;
}

.currency-select-container {
  padding: 8px 28px 8px 12px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #d1d1d1;
  background-color: #ffffff;
  color: #212121;
  font-family: 'Inter', sans-serif;
  position: relative;
  cursor: pointer;
  min-width: 80px;
  display: inline-block;
}

.currency-select-container::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../../images/down-arrow.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 5;
}

.selected-currency-code {
  pointer-events: none;
}

/* ====== SEGMENT CONTROLL ======= */
.addFd ul li:first-child {
  text-align: center;
}

.addFd ul li .segment {
  height: 55px;
}

.addFd .button {
  width: 100%;
}

.segment {
  display: grid;
  grid-template-columns: 50% 50%;
  border: 2px solid #5e54f6;
  border-radius: 4px;
  font-size: 14px;
  overflow: hidden;
  padding: 3px;
}

.segment:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.segment label {
  border-right: 1px solid #e7e7e7;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.segment label:last-child .selection {
  border: none;
}

.segment label input {
  position: absolute;
  left: 5px;
  visibility: hidden;
  width: 15px !important;
  z-index: 1;
}

.segment label .selection {
  padding: 8px 4px;
  display: block;
  width: 100%;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.segment label .selection:hover {
  background: rgba(0, 0, 0, 0.05);
}

.segment label input:checked~.selection {
  background: #5e54f6;
  color: #ffffff;
  border-radius: 4px;
  margin: 1px;
}

.segment.grid3 label {
  width: calc(100% / 3);
}

.segment.grid4 label {
  width: calc(100% / 4);
}

.segment.grid5 label {
  width: calc(100% / 5);
}

.flexi {
  display: flex;

  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;

  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  align-items: center;
  max-width: 100%;
  width: auto !important;
}

.flexi:after {
  display: none;
}

.flexi label {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  align-self: auto;
  overflow: visible;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  border-right: 1px solid #c4c4c4;
  order: 0;
}

.segment label:last-child {
  border-right: none;
  /* Remove border on last label */
}

.monthVise.flexi label .selection {
  min-width: max-content;
}

.segment.monthVise label .selection {
  font-size: 13px;
  padding: 8px 2px;
}

.flexi label:last-child {
  border: none;
}

.flexi label:last-child {
  border: 0px solid #e7e7e7 !important;
}

.selectFdText i {
  text-align: left;
}

.selectText {
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  color: #535353;
  display: block;
}

.selectFdText i:nth-child(2) {
  margin-left: 85px;
}

.selectFdText i:nth-child(3) {
  margin-left: 155px;
}

.selectFdText i:nth-child(4) {
  text-align: right;
}

.selectFdText i:nth-child(5) {
  text-align: right;
  margin-right: 35px;
}

/* ============= Custom Radio */
.radioBtn {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.radioBtn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radioBtn .checkmark {
  position: absolute;
  top: 3px;
  left: 1px;
  height: 17px;
  width: 17px;
  background-color: #FFFCFC;
  border-radius: 50%;
}

.radioBtn input:checked~.checkmark {
  background-color: #5e54f6;
  border: 2px solid #5e54f6;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radioBtn input:checked~.checkmark:after {
  display: block;
}

.radioBtn .checkmark:after {
  top: 2px;
  left: 2px;
  width: 8.89px;
  height: 8.89px;
  border-radius: 50%;
  background: #FFFCFC;
  transform: none;
  border: none;
}

.verticalField {
  padding-top: 10px;
}

.horizontalField {
  padding-top: 14px;
  margin-bottom: -4px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

/* ==============Divider==============  */
.divider {
  width: 100%;
  height: 30px;
  background: #5e54f6;
  margin-top: 12px;
  margin-bottom: 24px;
}

.divider h2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  padding: 4px 0 4px 10px;
}

/*
	============
	#Page :: View Details
	============
*/

.detailtitle {
  color: #A6A184;
  font-size: 16px;
}

.viewDetails {
  padding-bottom: 40px;
  padding-top: 50px;
}

.viewDetails .threeRow {
  display: grid;
  grid-template-columns: 69% 30%;
  grid-column-gap: 1%;
}

.viewDetails .form ul li {
  border-bottom: 1px solid rgba(196, 196, 196, 0.5);
  margin: 16px 0px;
  padding-bottom: 12px;
}

.viewDetails .form ul li:last-child {
  border-bottom: none;
  margin-bottom: 60px;
}

.viewDetails .threeRow label.capitalize {
  height: 2em;
  width: 100%;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.viewDetails .threeRow span.shape.renew .text {
  width: 125px;
  height: 48px;
  background: url("../../images/renew-shape.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: -12px;
}

.viewDetails .threeRow span.shape.widthrawal .text {
  width: 125px;
  height: 48px;
  background: url("../../images/withdraw_shape.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: -12px;
  right: 0px;
}

.viewDetails .threeRow span .text {
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
  padding: 10px 40px;
}

.viewDetails .threeRow span {
  text-align: left;
}

/* Added by Ansh */
.viewDetails .threeRow span.shape {
  left: 15px
}


.threeRow .map {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
  align-items: center;
}

.threeRow .map span {
  /*display:inline-block;*/
  /*height:2em;*/
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.threeRow .map img {
  width: 20px;
  /*display:inline-block;
  height:20px;
  position: relative;
  top: 4px;
  left: 4px;*/
}

.viewDetails ul {
  margin: 16px 14px;
}

.viewDetails ul li .fdType label:first-child {
  margin-bottom: 18px;
}

.viewDetails ul li .fdType strong {
  margin-bottom: 16px;
}

.viewDetails ul li label {
  font-weight: 600;
  font-size: 14px;
  line-height: 34px;
  color: #212121;
  margin: 0px;
}

.viewDetails ul li span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  color: #212121;
}

.viewDetails ul li span.withdrawalReason {
  line-height: 24px !important;
}

/*
	============
	#Page :: My profile
	============
*/

.minibtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 74px;
  height: 30px;
  background: #5E54F6;
  border-radius: 15px;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF !important;
}

/*.myProfile{margin-top:68px;}*/
.myProfile .form .card label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #5e54f6;
}

.myProfile .form label:before {
  content: "";
  display: block;
  width: 30px;
  height: 60px;
  background-size: 24px;
  background-position: center;
  position: absolute;
  top: 0px;
  left: -49px;
}

.myProfile .form .name:before {
  background: url("../../images/user_icon.svg");
  background-repeat: no-repeat;
}

.myProfile .form .phoneNo:before {
  background: url("../../images/phone-call.svg");
  background-repeat: no-repeat;
}

.myProfile .form .card .changePin:before {
  background: url("../../images/lock.svg");
  background-repeat: no-repeat;
}

.myProfile .form .card .changeCurrecy:before {
  background: url("../../images/changecurrency.svg");
  background-repeat: no-repeat;
}

/* New */
/*.myProfile {
  justify-content: center;
  padding: 20px 16px;
  width: 100%;
}*/

.form .card {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  /* flex-wrap: wrap; */
}

.icon.left {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.icon.right {
  width: 24px;
  height: 24px;
  margin-left: auto;
}

.textContent {
  width: calc(100% - 1002px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.textContent .emailVerifyDiv {
  justify-content: space-between;
}

.textContent label {
  font-weight: 500;
  font-size: 15px;
  color: #5e54f6;
  margin-bottom: 2px;
}

.textContent span {
  font-size: 14px;
  color: #212121;
}

.textContent.single label {
  margin-bottom: 0;
}


.logout {
  text-align: center;
  margin-top: 30px;
}

.logout input {
  color: #5e54f6;
  text-decoration: underline;
  font-style: italic;
  font-size: 15px;
}

/*
	============
	#Page :: Dashboard
	============
*/
/* Dashboard Header */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5E54F6;
  /* Purple color */
  height: 120px;
  /* Set height to 150px */
  padding: 0;
  /* No padding */
  margin: 0;
  /* No margin */
  border-radius: 0 0 30px 30px;
  /* Bottom left and right border-radius of 60px */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Greeting Text */
.dashboard-header .greeting h1 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  padding: 0 16px 48px 16px;
}


.dashboard-container {
  padding: 16px;
  bottom: 72px;
  margin-top: 72px;

}

/* Total Savings */
.total-savings-card {
  background: #fff;
  padding: 24px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  margin-top: -80px;
  /* Negative margin to lift it above the header */
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 0;
  /* Keeps this behind the header */
}

/* Total Savings Header */
.total-savings-header {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}

.amount {
  color: #3e3e3e;
  font-family: 'Inter', sans-serif;
}

.donut-chart-placeholder {
  width: 65%;
  height: 65%;
  margin: 20px auto;
  border-radius: 50%;
  background: conic-gradient(#5E54F6 0% 35%, #FF5E96 35% 60%, #FFBB6A 60% 100%);
}

.legendsView {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 16px;
}

.chart-legends {
  justify-content: space-around;
  flex-direction: column;
  gap: 6px;
}

.legend-item {
  font-size: 12px;
  display: flex;
  width: 100%;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
}

.legendsView .links {
  font-weight: 600;
  line-height: 120%;
  font-size: 15px;
}

/* Section Title */
.section-title {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.sub-section-title {
  font-size: 16px;
}

.more-link {
  color: #5E54F6;
  font-size: 14px;
  text-decoration: none;
}

/* Overdue Card */

.more-link,
.view-all {
  color: #5E54F6;
  font-size: 14px;
  text-decoration: none;
}


.norenewal-card {
  background: #F9F1E3;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
}


.overdue-main {
  display: flex;
  justify-content: space-between;

}

.overdue-text {
  font-weight: 600;
  font-size: 15px;
  color: #212121;
  margin: 0;
  flex: 1;
}

.arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.arrow-icon {
  width: 24px;
  height: 24px;
}

/* Renewals Wrapper */
.renewal-wrapper {
  /*overflow-x:auto;
  scrollbar-width:none;*/
  /* padding:20px 0; */
  margin-bottom: 20px;
}

.renewal-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

/* Scroll Container */
.renewal-scroll-enhanced {
  gap: 24px;
  /* Set gap between cards 
  padding-left: 16px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 16px; */
}


.main-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: #fff;
  padding: 20px;
  transition: transform 0.3s ease;
  width: 320px;
  height: 200px;
  background: linear-gradient(135deg, #5E54F6, #4d44cf, #5E54F6);
  /* transform:scale(1.05); */
  margin-right: 24px
}

/* Text styles */
.renewal-card-glass h3,
.renewal-card-glass h4 {
  margin: 0 0 10px;
  font-weight: 500;
}

.renewal-card-glass .type {
  font-size: 14px;
}

.renewal-card-glass .amount-large {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin: 10px 0;
}

.date {
  font-size: 13px;
  color: #535353;
}

.detail-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-top: 10px;
}

.badge {
  background: #fff;
  color: #5E54F6;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.renewal-card-glass:hover {
  transform: scale(1.07);
}

/* Bank Section */

/* Card Container */
.bank-list {
  background: white;
  padding: 20px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Each Card */
.bank-card {
  margin-bottom: 24px;
}

/* Bank Name & Amount */
.bank-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bank-name {
  font-size: 13px;
  font-weight: 500;
  color: #212121;
}

.bank-amount {
  font-size: 15px;
  font-weight: 600;
  color: #212121;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

/* FD Type */
.deposit-type {
  font-size: 13px;
  color: #7c7c7c;
  margin-top: 4px;
}

/* Progress Bar */
.progress-container {
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  margin-top: 10px;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #e0e0e0;
}

.progress {
  display: inline-block;
  height: 6px;
  border-radius: 4px;
  transition: width 0.3s ease, background-color 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  background-color: pink;
}

/* SCAN popup */

.investment-section {
  margin-top: 10px;
}

.investment-section h4 {
  font-size: 16px;
  margin: 15px 0 10px;
  font-weight: 500;
}

.investment-taggs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}


.tagg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #F5F6FF;
  box-shadow: 1px 1px 2.6px rgba(150, 147, 200, 0.5);
  border-radius: 100px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tagg:hover {
  background-color: #eaeaea;
}

.tagg img {
  width: 16px;
  height: 16px;
}

.hint {
  font-size: 12px;
  opacity: 0.6;
  margin-left: 5px;
}






/* Scan Popup Styles */

.scan-popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  /* Push to bottom */
  z-index: 9;
  overflow: hidden;
}

.scan-popup {
  background: #fff;
  border-radius: 25px 25px 0 0;
  padding: 32px 20px;
  width: 100%;
  position: fixed;
  bottom: 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.scan-popup h3 {
  margin: 0 0 12px;
  font-size: 18px;
  text-align: center;
}

.scan-popup p {
  text-align: center;
  font-size: 14px;
  color: #3e3e3e;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.scancard {
  background: #ffffff;
  width: 120px;
  height: 120px;
  border-radius: 15px;
  perspective: 1000px;
  /* box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08); */
  overflow: hidden;
}

.scancard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  /* animation: flipCard 6s infinite ease-in-out;
  transition: transform 1s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;*/
}

.scancard-front,
.scancard-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* transition: all 0.5s ease-in-out; */
  transition: all 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.scancard-front {
  background: #e0e0ff;
}

.scancard-back {
  background: #5E54F6;
  transform: rotateY(180deg);
}

.scancard img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.scancard span {
  font-size: 14px;
  font-weight: 500;
  color: #3e3e3e;
}

.manual-entry {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
  color: #555;
}

.manual-entry a {
  color: #5E54F6;
  font-weight: bold;
  text-decoration: none;
}

/*@keyframes flipCard {
  0%, 25% {
    transform: rotateY(0deg);
  }
  50%, 75% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}*/

.manual-entry {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
}

.manual-entry a {
  color: #5E54F6;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 28px;
  right: 0;
  font-size: 24px;
  width: 48px;
  height: 48px;
  color: #212121;
  cursor: pointer;
}

/* Extracting Information */
.scan_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 70px;
}

.text-block {
  margin: 5;
  font-size: 16px;
  text-align: center;
  color: #333;
  margin-bottom: 32px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 90vw;
  max-height: 80vh;
  margin-bottom: 32px;
  margin-left: 10px;
  margin-top: 12px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
}

.corner {
  width: 20px;
  height: 20px;
  border: 4px solid #5a4fff;
  position: absolute;
}

.top-left {
  top: -10px;
  left: -5px;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: -10px;
  right: -25px;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: -10px;
  left: -5px;
  border-top: none;
  border-right: none;
}

.bottom-right {
  bottom: -10px;
  right: -25px;
  border-top: none;
  border-left: none;
}

.scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: limegreen;
  animation: scan 2s linear infinite;
  opacity: 0.7;
}

.scanner-line.stop-animation {
  animation: none !important;
  background: none;
}

@keyframes scan {
  0% {
    top: 0%;
  }

  100% {
    top: 100%;
  }
}


/* .OLD DASHBOARD  */
.dashboard {
  padding-bottom: 40px;
}

.dashboard ul {
  padding: 20px 14px;
}

.dashboard ul li.card {
  width: 100%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 26px 6px rgba(162, 156, 244, 0.5);
  border-radius: 20px;
  padding: 16px 20px;
}

.dashboard ul li:last-child {
  margin-bottom: 50px;
}

.dashboard h2 {
  font-family: "Lato";
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #3e3e3e;
  padding-bottom: 16px;
}

.dashboard ul li.fdDetails .grid2 {
  display: grid;
  grid-template-columns: 70% 30%;
}

.dashboard ul li.fdDetails canvas {
  height: auto !important;
  width: 90% !important;
}

.flexVerticle {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  width: 100%;
  height: 200px;
  margin-top: 20px;
}

.flexVerticle .col {
  flex: 1;
}

.flexHorizontal {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: 6px;
}

.flexHorizontal .row {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 94%;
  margin: auto;
}

.flexHorizontal .column {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  margin-left: 10px;
}

.dashboard ul li.fdDetails strong {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  display: block;
}

.dashboard ul li.fdDetails strong:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #8676ff;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: -15px;
}

.dashboard ul li.fdDetails .row strong:before {
  width: 9px;
  height: 9px;
}

.dashboard ul li.fdDetails .flexVerticle div:nth-child(2) strong:before {
  background: #ff708b;
}

.dashboard ul li.fdDetails .flexVerticle div:nth-child(3) strong:before {
  background: #04b7bc;
}

.dashboard ul li.fdDetails .flexHorizontal div:nth-child(1) strong:before {
  background: #31476a;
}

.dashboard ul li.fdDetails .flexHorizontal div:nth-child(2) strong:before {
  background: #ffba69;
}

.dashboard ul li.fdDetails .flexHorizontal div:nth-child(3) strong:before {
  background: #8676ff;
}

.dashboard ul li.fdDetails label {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: #212121;
}

.dashboard .flexVerticle .col {
  padding-bottom: 14px;
}

.totalAmt {
  border-top: 1px solid #b1b1b1;
  padding: 14px 0px 0px;
  margin-top: 14px;
}

.totalAmt span {
  width: 100%;
  text-align: right;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
}

.dashboard .grid3 {
  display: grid;
  grid-template-columns: 22% 28% 44%;
  border-bottom: 1px solid #dbd5d5;
  padding: 6px;
  width: 100%;
}

.dashboard .grid3:last-child {
  border: none;
  padding-bottom: 0px;
}

.rightArrow label {
  text-align: right;
}

.rightArrow span {
  text-align: right;
}

.rightArrow:after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background: url("../../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: center center;
  position: absolute;
  top: -4px;
  right: -15px;
}

.dashboard .renewals a {
  width: 30%;
  font-family: "Lato";
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #5E54F6;
  text-align: right;
}

.dashboard .renewals {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #212121;
}

.dashboard .renewals strong {
  font-weight: 500;
}

.dashboard .renewals h2 {
  width: 70%;
  float: left;
}

.banks .grid2 {
  grid-template-columns: 69% 30%;
  grid-column-gap: 1%;
}

.banks .grid2 label.bankName {
  height: 2em;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.banks span {
  text-align: right;
}

.banks .bankDetails {
  margin-bottom: 8px;
}

.banks .bankDetails:before {
  content: "";
  width: 100%;
  display: inline-block;
  border-bottom: 4px solid #dbdff1;
  border-radius: 8px;
  position: absolute;
  top: 30px;
  left: 0px;
}

.banks .border {
  display: block;
  border-bottom: 7px solid #ffba69;
  border-radius: 6px;
  position: relative;
  top: 1px;
  left: 0px;
  width: 25%;
}

.banks .border.purple {
  border-bottom: 7px solid #7a52e8;
}

.banks .border.yellow {
  border-bottom: 7px solid #ffba69;
}

.banks .border.red {
  border-bottom: 7px solid #ff708b;
}

/*
	=======================
	Fixed Bottom Panel
	=======================
*/
.footerMain {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 62px;
  background: white;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.communFooter {
  /*justify-content:space-around;
   padding:8px 0; */
  position: relative;
  height: 62px;
}

.communFooter div.active img {
  filter: brightness(1);
}

.col {
  text-align: center;
  flex: 1;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
}

.col a label {
  color: #3E3E3E;
  font-weight: 500;
}

.communFooter .active a label {
  color: #7557FF;
}

.col img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto 4px;
  filter: brightness(0.4);
}

.communFooter .addButtonWrapper {
  position: relative;
  background: #7557FF;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.37);
  padding: 12px;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  margin-top: -54px;
  /* width:55px;  */
  /* height:55px; */
  z-index: 1001;
}

.communFooter .addCenterBtn {
  /* background:#7557FF; */
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.communFooter a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.communFooter a span {
  width: 24px;
  height: 24px;
  justify-content: center;
}

.communFooter a.withdrawFd span {
  opacity: 0.6;
}

.communFooter a.withdrawFd label {
  color: #8F8F8F;
}

/* 
	===============================	
	FOR IPAD 980
	===============================	
*/
@media only screen and (max-width: 980px) {
  .listing .ulFd li p {
    font-size: 15px !important;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .addFd .yearMonth {
    justify-content: space-between;
    gap: 20px;
  }

  .addFd .yearMonth .input {
    width: 100%;
  }

  .selectFdText i:nth-child(2) {
    margin-left: 160px;
  }

  .selectFdText i:nth-child(3) {
    text-align: center;
    margin-left: -32px;
  }

  .selectFdText i:nth-child(4) {
    text-align: right;
    margin-right: 155px;
  }

  .selectFdText i:nth-child(5) {
    text-align: right;
    margin-right: 115px;
  }

  .uploadImage {
    margin: 0px 25px;
  }
}




/* .ulFd{
  top: 0px;
  bottom: 72px;
} */

/* 
	===============================	
	For Mobile 767
	===============================	
*/

@media only screen and (max-width: 767px) {
  .selectFdText i:nth-child(2) {
    margin-left: 80px !important;
  }

  .selectFdText i:nth-child(3) {
    text-align: center;
    margin-left: 32px;
  }

  .selectFdText i:nth-child(4) {
    text-align: right;
    margin-right: 0px !important;
  }

  .selectFdText i:nth-child(5) {
    text-align: right;
    margin-right: 35px !important;
  }



  .uploadImage {
    margin: 0px 25px;
  }
}

@media only screen and (max-width: 375px) {
  /* .monthVise.flexi label{max-width:26%;} */
}

.circleDisable {
  pointer-events: none;
}

/*
	=================
	image view slider
	=================
 */
.footerdot {
  display: inline-block;
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #000;
  border-radius: 50%;
  transition: background-color 0.5s ease;
}

.activeFotterDot,
.footerdot:hover {
  background-color: white;
}

.remove {
  background: red;
  border: 3px solid #fff;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: 10;
  text-align: center;
  color: #fff;
  line-height: 24px;
}

.staticBgOverlay {
  width: 100%;
  /*height:100vh;*/
  /* height: calc(100vh - 62px); */
  height: calc(100vh - 30px);
  background-image: url("../../images/dashboard.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  text-align: center;
}

.staticBgOverlay .img img {
  width: 75%;
}

.noListingData {
  text-align: center;
  width: 85%;
  height: 100vh;
  margin: auto;
  padding-top: 45px;
}

.noListingData a {
  font-size: 22px;
  height: auto;
}

.noListingData .img mg {
  width: 75%;
}

.noDataCard {
  width: 100%;
  border-radius: 14px;
  background-color: #fff;
  margin-top: 72px;
}

.noDataCard h4 {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 23px;
  line-height: 34px;
  letter-spacing: 0.02em;
  color: #212121;
  padding-top: 16px;
}

.noDataCard p {
  font-size: 16px;
}

.noDataCard a {
  font-weight: 600;
  font-size: 30px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #5e54f6;
}

.noDataCard .img {
  padding-bottom: 26px;
}

.addToCalendar {
  margin-bottom: 24px;
}

.reminder .card {
  text-align: center;
  margin: 110px 20px 40px;
}

.reminder .card:before {
  content: "";
  width: 200px;
  height: 150px;
  display: inline-block;
  background-image: url("../../images/watch.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100px;
  margin-top: -100px;
}

/*
	=======================
 	  app intro style css 
	=======================
*/
.slider {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  position: relative;
}

.slider .lightlSider {
  width: 100%;
  height: calc(100% - 110px);
  flex: 1;
  overflow: hidden;
}

/*
.slider .imageUl{
  list-style: none;
  padding-left: 0;
  margin: 0;
  max-width: 100%;
  height: auto;
}*/

.slider .lightSlider .imageUl li {
  text-align: center;
}

.slider .lightSlider .imageUl li div {
  width: 100%;
  display: block;
  text-align: center;
}

.slider .lightSlider .imageUl li img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Pager */
.slider .slick-dots li button:before {
  font-size: 16px;
}

.lSSlideOuter .lSPager.lSpg {
  margin-top: 10px;
  padding: 0;
  text-align: center;
}

.lSSlideOuter .lSPager.lSpg>li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
}

.lSSlideOuter .media {
  opacity: 0.8;
}

.lSSlideOuter .media.active {
  opacity: 1;
}

.lSSlideOuter .lSPager.lSpg>li a {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  text-indent: -9999px;
}

.lSSlideOuter .lSPager.lSpg>li.active a {
  background-color: #333;
}

/* Rtl */
.lSSlideOuter.lSrtl {
  direction: rtl;
}

.lSSlideOuter .lightSlider,
.lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider,
.lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}

.lSSlideOuter .lightSlider>*,
.lSSlideOuter .lSGallery li {
  float: left;
  height: auto;
}

.lSSlideOuter.lSrtl .lightSlider>*,
.lSSlideOuter.lSrtl .lSGallery li {
  float: right !important;
}

/* button*/
.fixedIntroButton {
  position: absolute;
  bottom: 0;
  left: calc(50% - 97.5px);
  height: 40px;
  text-align: center;
  display: none;
  z-index: 10;
  margin: auto;
}

.fixedIntroButton .btn {
  line-height: 40px;
}

/* ============= For VerifyEmailTag*/
.verifyemailtag {
  gap: 4px;
  height: 26px;
  padding: 0 10px;
  border: 1px dashed #5E54F6;
  border-radius: 15px;
  box-sizing: border-box;
}

.verifyemailtag .verify-text {
  color: #585858;
  font-weight: 400;
  font-size: 10px;
}

.verifyemailtag.verified .verify-text {
  color: #5E54F6;
  font-weight: 500;
}

.verifyemailtag img.icon {
  width: 15px;
  height: 16px;
}

/* verigy popup */
.verified-popup {
  width: 100%;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 38px 38px 0px 0px;
  /*padding:32px;*/
  padding: 32px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 60;
  /* Added by Ansh */
}

.cross-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  z-index: 60;
}

.verified-content {
  text-align: center;
  width: 100%;
}

.verified-content h3 {
  color: #4F4F4F;
  font-size: 20px;
  line-height: 23px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.verified-content p {
  color: #7C7C7C;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding: 24px 0px;
  max-width: 274px;
  margin: 0px auto;
}

.verified-content label {
  color: #4F4F4F;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.export-data h3 {
  text-align: left;
  padding-bottom: 32px;
}

.export-data .csv {
  width: 72px;
  height: 82px;
  display: block;
  text-align: center;
  margin: 0px auto;
}

.export-data p {
  padding: 29px 0px 10px 0px;
}

.export-data .mail-box {
  /*width:139px; height:32px;*/
  width: 100%;
  height: 48px;
  margin: 0px auto;
}

.export-data .mail-box .input {
  /*width:139px; height:32px;*/
  width: 100%;
  height: 100%;
  background: #EFF0FF;
  border-radius: 5px;
  /*padding:8px 17px 8px 10px;*/
  padding: 8px 14px;
  color: #3E3E3E;
  font-size: 13px;
  line-height: 120%;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.email-update-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0px 36px 0px;
}

.email-update-txt .mail-icon {
  width: 18px;
  height: 18px;
}

.email-update-txt .mail-txt {
  color: #676767;
  font-size: 12px;
  line-height: 21px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.export-submit {
  width: 157px;
  height: 45px;
  margin: 0px auto;
}

.export-submit .export-btn {
  width: 157px;
  height: 45px;
  background: #5E54F6;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 10px 35px 11px 35px;
  cursor: pointer;
}

.sucess-gif-image {
  padding: 24px 0px;
}

.wealth-data {
  padding: 70px 16px 20px 16px;
}

.wealth-data-content {
  width: 100%;
  text-align: center;
}

.wealth-data-content h2 {
  color: #212121;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  padding-bottom: 2px;
  font-family: "Poppins", sans-serif
}

.wealth-data-content p {
  color: #4F4F4F;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  max-width: 294px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif
}

.data-image {
  width: 100%;
  height: 100%;
  display: block;
  padding: 45px 0px;
}

.import-button {
  width: 154px;
  height: 40px;
  text-align: center;
  margin: 0px auto 22px auto;
}

.import-button .import-btn {
  background: #5E54F6;
  border-radius: 6px;
  width: 154px;
  height: 40px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif
}

.importing-button .importing-btn {
  color: #5E54F6;
  background: transparent;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-style: italic;
  text-decoration-line: underline;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif
}

.wealth-data-content .few {
  max-width: 270px;
}

.crypted {
  color: #4F4F4F;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif
}


/* extracting information */
.cardOverlay {
  background: rgba(1, 3, 23, 0.6);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 55;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.header .cross-docs {
  width: 24px;
  height: 24px;
  background: url("../../images/cross_docs.svg");
  background-repeat: repeat;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}

.headdocs {
  padding: 16px 30px;
}

.headdocs h1 {
  text-align: left;
  margin: 0px;
}

.headerregister h1 {
  text-align: center;
}

.headerregister span {
  margin-right: 25px;
}

.documentMain {
  padding-top: 50px;
}

.document-add {
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
}

/* .document-add .submitBtn{margin:45px auto 24px auto;} */
/* .document-add .submitBtn{margin:30px auto 24px auto;} */
.document-add .submitBtn {
    /* margin: 10px auto 24px auto; */
  margin: 4vh auto 24px auto;
}

.upload-docs-text {
  padding: 28px 30px 0px 30px;
}

.upload-docs-text h2 {
  font-size: 18px;
  line-height: 27px;
  color: #212121;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  max-width: 232px;
  margin: 0px auto;
  padding-bottom: 2px;
}

.upload-docs-text p {
  color: #4F4F4F;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  max-width: 283px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}

.side-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 38px 18.5px;
}

.side-box a.retakeLink {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #5E54F6;
  padding-top: 10px;
}

.side-box .fullWidthImage {
  width: 150px;
  height: 170px;
}

.sides {
  width: 100%;
  height: 100%;
  /*padding: 16px 32px; text-align: center;*/
  background: #FFFFFF;
  border: 2px dashed #5E54F6;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
}

.sides.uploadImage {
  padding: 0;
  margin: 0;
}

.sides span {
  /*width:61px; height:61px;*/
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.sides span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* or use "cover" if you want it to fill and crop */
  display: block;
  border-radius: 14px;
}

.sides.uploadImage img {
  object-fit: contain;
}

.sides label {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
  display: block;
  padding: 11px 0px;
}

.sides a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 23px;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: #5E54F6;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 77px;
  height: 27px;
  padding: 2px 13.5px;
}

.sides a img {
  width: 16px;
  height: 16px;
}

.manually-text {
  background: #F2F1FF;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.25);
  border-radius: 9px;
  width: 330px;
  /* margin:208px auto 0px auto; */
    /* margin: 80px auto 0px auto; */
  margin: auto auto 68px auto;
  padding: 20px 32px;
}

.manually-text p {
  color: #4F4F4F;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  max-width: 283px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}

.manually-text a {
  color: #5E54F6;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-style: italic;
  text-decoration-line: underline;
  font-family: "Poppins", sans-serif;
  padding-top: 4px;
}

/* popup enable smart reminder */
.enable-popup {
  width: 100%;
  background: #fff;
  box-shadow: 0px 16px 32px rgba(17, 24, 39, 0.08);
  position: relative;
  top: calc(50% - 177px);
  left: 0;
  border-radius: 24px;
  /* padding: 6px 16px 28px 16px; */
  padding: 32px 16px;
  text-align: center;
  z-index: 10001;
}

.cross-enable {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
}

.enabale-image {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0px auto;
}

.enable-popup h3 {
  color: #121212;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  padding: 4px 0px 4px 0px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

.enable-popup p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  max-width: 267px;
  margin: 0px auto;
  padding-bottom: 24px;
  font-family: "Poppins", sans-serif;
}

.enable-btn {
  width: 200px;
  height: 40px;
  background: #5E54F6;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  text-transform: uppercase;
}

/* wealth investment */
.investment-popup {
  width: 100%;
  height: 400px;
  background: #ffffff;
  margin: 0px auto;
  box-shadow: 0px 16px 32px rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  text-align: center;
  padding: 16px 0px 33px 0px;
  position: relative;
  top: calc(50% - 177px);
  left: 0;
}

.investment-popup .invest-image {
  width: 250px;
  height: 250px;
  display: block;
  margin: 0px auto;
}

.investment-popup p {
  color: #3E3E3E;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  max-width: 198px;
  margin: 0px auto;
  font-family: "Poppins", sans-serif;
}

.investment-popup .add-btn {
  width: 215px;
  height: 40px;
  background: #5E54F6;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12px auto 0px auto;
}

/* change pin page */
/* .pinPage .submitBtn{margin-top:48px;} */
.pinPage .submitBtn {
  margin-top: 20px;
}

/* all set ribbon */
#ribbon_fall {
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

#ribbon_fall>div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Ensure it stays in the background */
}

canvas.particles-js-canvas-el {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* tooltip design nominee details */
.tooltip-tag {
  cursor: pointer;
}

.tooltip-tag .tag-icons {
  width: 48px;
  height: 48px;
  display: inline-block;
  background: url("../../images/tooltip_icon.svg");
  background-repeat: no-repeat;
  background-position: top right;
  position: absolute;
  top: -36px;
  right: 17px;
  z-index: 10;
  transition: all 0.3s;
}

.tooltip-tag .tooltip-content {
  display: none;
  position: absolute;
  top: -136px;
  right: 0px;
  width: 328px;
  max-width: 328px;
  padding: 6px 16px;
  z-index: 5;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #CDCDCD;
  box-shadow: 0px 0px 12.6px rgba(17, 24, 39, 0.25);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
}

.tooltip-tag:hover .tooltip-content {
  display: block;
}

.tooltip-content .tag-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tooltip-content .tag-head label {
  color: #121212;
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
}

.tooltip-content .tag-head .tag-cross {
  width: 18px;
  height: 18px;
}

.tooltip-content p {
  color: #3E3E3E;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 15px;
  border: 13px solid;
  border-color: transparent transparent white transparent;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

/* document sucessfully screen popup */
.document-sucess {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  top: calc((100% - 602px)/2);
}

.document-sucessfully {
  /*width:100%;*/
  width: calc(100% - 36px);
  height: max-content;
  position: relative;
  /*top:calc(50% - 177px); left:0;*/
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0px 16px 32px rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  flex-direction: column;
  /*padding:0px 16px 27px 16px;*/
  padding: 24px;
}

/* .document-sucessfully h2 .check-sucess{width:22px; height:22px; padding-top:2px;} */
.document-sucessfully .enabale-image {
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
}

.document-sucessfully h2 {
  color: #121212;
  font-size: 18px;
  line-height: 120%;
  font-weight: 600;
  /* display: flex;align-items: flex-start; column-gap:4px; */
  text-align: center;
  /*max-width:190px;*/
  width: 100%;
  margin: 16px auto 0 auto;
  padding: 0;
}

.document-sucessfully h3 {
  color: #121212;
  font-size: 18px;
  line-height: 120%;
  font-weight: 600;
  width: 100%;
  margin: 0px auto;
  padding-bottom: 16px;
  text-align: center;
}

.document-sucessfully p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  max-width: 300px;
  margin: 0px auto;
  padding-bottom: 24px;
}

/* registerd error message */
.warning-box {
  background: rgba(255, 104, 104, 0.13);
  border-radius: 5px;
  padding: 12px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% - 32px);
  margin-top: 32px;
}

.warning-box .warning-icon {
  width: 32px;
  height: 32px;
}

.warning-box .warning-text {
  color: #DA251C;
  font-size: 14px;
  line-height: 18px;
  text-align: left;
}

/* registerd-bottom-text */
.termsText {
  width: 100%;
  display: inline-block;
  text-align: center;
  /* margin-top:104px;
  position: static; */
  /* position: fixed;
  bottom: 50px;
  left: 0;
  right: 0; */
  margin-top: auto;
  position: static;
  z-index: 10;
}

.termsText label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #6C6C6C;
}

.termsText label a {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  color: #7A72FF;
  padding-top: 6px;
  display: block;
}

/* logout-popup design */
.logoutMain {
  width: 100%;
  padding: 0px 24px;
  position: absolute;
  top: calc(45% - 229px);
  left: 0px;
  z-index: 100;
}

.logout-box {
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 16px 32px rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  padding: 40px 16px 20px 16px;
  text-align: center;
}

.logout-box .cross-logout {
  position: absolute;
  top: 14px;
  right: 0;
  width: 48px;
  height: 48px;
}

.logout-box .warning-logout {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0px auto;
}

.logout-box h3 {
  color: #121212;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  padding: 20px 0px 12px 0px;
  max-width: 227px;
  margin: 0px auto;
}

.logout-box p {
  color: #3E3E3E;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  max-width: 253px;
  margin: 0px auto;
}

.logging-out-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 32px;
}

.logging-out {
  width: fit-content;
  height: 45px;
  background: #F2F1FF;
  border-radius: 6px;
}

.btn-logout {
  width: fit-content;
  height: 45px;
  color: #3E3E3E;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  padding: 13px 30px;
  display: inline-block;
}

.logout-btn {
  background: #E24C4B;
}

.logout-btn .btn-logout {
  color: #FFFFFF;
}


/* Added by ansh */
.total-savings-card.driver-active-element {
  margin-top: 0px;
}

.communFooter .addButtonWrapper.driver-active-element {
  margin-top: 0px;
}

.tagify__input {
  padding: 0 !important;
  margin: 0 !important;
}

.tagify {
  border: none !important;
  border-bottom: 1px solid #b1b1b1 !important;
}

.profile-card-form {
  padding: 16px;
}

#termsContent {
  width: 100%;
  height: 100vh;
}

#termsContent iframe {
  width: 100%;
  height: 100%;
}

/* Custom Country Search Modal */
.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  flex: none;
}

.custom-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #212121;
}

.custom-modal-close {
  font-size: 24px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.custom-modal-close:hover {
  color: #333;
}

.custom-modal-search {
  padding: 8px 20px;
  border-bottom: 1px solid #eee;
  flex: none;
}

.custom-modal-search input {
  width: 100%;
  display: block;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

.custom-modal-search input:focus {
  outline: none;
  border-color: #5E54F6;
}

.country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  flex: 1 1 auto;
}

.country-list li {
  padding: 12px 20px;
  border-bottom: 1px solid #f9f9f9;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.country-list li:hover {
  background: #f1f0ff;
}

.country-list li .c-code {
  font-weight: 600;
  color: #5E54F6;
  min-width: 50px;
}

.country-list li .c-name {
  flex-grow: 1;
  margin-left: 10px;
  text-align: left;
}

/* Fix for excess white space caused by visibility: hidden elements */
.warning-box[style*="visibility: hidden"],
.warning-box[style*="visibility:hidden"],
#errorCardModel[style*="visibility: hidden"],
#errorCardModel[style*="visibility:hidden"],
#removeBgErrorModel[style*="visibility: hidden"],
#removeBgErrorModel[style*="visibility:hidden"],
#registerDiv[style*="visibility: hidden"],
#registerDiv[style*="visibility:hidden"],
span[id^="error"][style*="visibility: hidden"],
span[id^="error"][style*="visibility:hidden"],
#otpInputErr[style*="visibility: hidden"],
#otpInputErr[style*="visibility:hidden"],
#pinValidation[style*="visibility: hidden"],
#pinValidation[style*="visibility:hidden"] {
  display: none !important;
}

#otpInputErr, #errorPin {
  display: inline-block;
  margin-top: 5px;
  color: #DA251C;
  font-size: 12px;
}

/* Chatbot Styles */
.chatbot-page .footerMain {
    display: none !important;
}
.chatbot-page {
    background-color: #f4f6fb;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}
.chatbot-page main {
    display: block !important;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.chatbot-page .chatbot-section {
    padding: 0;
    padding-top: 3.125rem; /* 50px header */
    height: 100vh;
    height: 100dvh;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.chatbot-page .chat-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border: none;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}
.chatbot-page .chat-messages {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background: #fff;
}
.chatbot-page .bot-message, .chatbot-page .user-message {
    padding: 0.75rem 1.125rem;
    margin-bottom: 1rem;
    border-radius: 1.125rem;
    max-width: 75%;
    clear: both;
    font-family: "Poppins", sans-serif;
    font-size: 0.875rem;
    line-height: 1.4;
    word-wrap: break-word;
    box-shadow: 0 0.125rem 0.3125rem rgba(0,0,0,0.05);
}
.chatbot-page .bot-message {
    background: #f1f0ff;
    color: #212121;
    float: left;
    border-bottom-left-radius: 0.25rem;
}
.chatbot-page .user-message {
    background: #5E54F6;
    color: white;
    float: right;
    border-bottom-right-radius: 0.25rem;
}
.chatbot-page .chat-input-area {
    display: flex;
    padding: 0.9375rem;
    padding-bottom: calc(0.9375rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #f0f0f0;
    background: #fff;
    align-items: center;
    box-sizing: border-box;
}
.chatbot-page .chat-input-area input {
    flex-grow: 1;
    width: 0;
    min-width: 0;
    margin-right: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 1.5625rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.3s;
}
.chatbot-page .chat-input-area input:focus {
    border-color: #5E54F6;
}
.chatbot-page .chat-input-area .btn {
    padding: 0.75rem 1.5rem;
    background: #5e54f6;
    color: white;
    border: none;
    border-radius: 1.5625rem;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.chatbot-page .chat-input-area .btn:active {
    transform: scale(0.95);
}
.chatbot-page .btn-loader {
    display: none;
}
.chatbot-page .btn.loading .btn-text {
    visibility: hidden;
}
.chatbot-page .btn.loading .btn-loader {
    display: inline-flex;
    position: absolute;
}
.chatbot-page .spinner {
    width: 1.125rem;
    height: 1.125rem;
    animation: spin 0.8s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.chatbot-page .chat-options-wrapper {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
.chatbot-page .chat-card {
    background: #ffffff;
    border-radius: 1.125rem;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(94, 84, 246, 0.12);
    border: 1px solid #eaeaea;
    width: 100%;
    margin-left: 0;
    box-sizing: border-box;
}
.chatbot-page .chat-options-group {
    margin-bottom: 1.25rem;
}
.chatbot-page .chat-card .chat-options-group:last-child {
    margin-bottom: 0;
}
.chatbot-page .chat-options-label {
    font-size: 0.75rem;
    color: #7c7c7c;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    padding-left: 0.25rem;
}
.chatbot-page .chat-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.chatbot-page .chat-chip {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    padding: 0.6rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    font-family: "Inter", "Poppins", sans-serif;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    user-select: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.chatbot-page .chat-chip:hover, .chatbot-page .chat-chip.selected {
    background: #5e54f6;
    border-color: #5e54f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 84, 246, 0.25);
}
.chatbot-page .chat-chip:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(94, 84, 246, 0.15);
}

/* Chatbot custom structural classes to replace inline styles */
.chat-options-wrapper.chat-card { padding: 1.25rem; }
.chat-card .chat-investment-section { margin: 0; padding: 0; border: none; box-shadow: none; width: 100%; }
.chat-card .chat-investment-section h4 { margin-bottom: 0.75rem; margin-top: 1.5rem; }
.chat-card .chat-investment-section h4:first-child { margin-top: 0; }
.chat-card .chat-investment-taggs { margin-bottom: 0; }
.chat-chip-selection { cursor: pointer; background-color: #ffffff !important; border: 1px solid #e2e8f0; }
.chat-chip-selection.selected { background: #5e54f6 !important; color: #fff !important; }

/* Centered upload options wrapper */
.chatbot-page .chat-upload-options-wrapper { display: flex; justify-content: center; margin-bottom: 1.5rem; width: 100%; padding-left: 0; box-sizing: border-box; }
.chatbot-page .chat-upload-options-wrapper.flex-col { align-items: center; flex-direction: column; }
.chatbot-page .chat-upload-options-wrapper .card-container { margin-top: 1rem; }
.chatbot-page .chat-upload-options-wrapper .card-container.with-bottom-margin { margin-bottom: 1rem; }
.chatbot-page .chat-upload-options-wrapper .chat-chip { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
.chatbot-page .scancard.action-chip { cursor: pointer; }
.chatbot-page .chat-chip.skip-chip { border-radius: 8px; width: fit-content; border: 1px dashed #cbd5e1; color: #64748b; background: transparent; box-shadow: none; }

/* Verify options */
.chatbot-page .chat-verify-options { text-align: center; }
.chatbot-page .chat-verify-options .chat-options-container { justify-content: center; margin-bottom: 1.5rem; }
.chatbot-page .chat-verify-options .chat-chip { border-radius: 8px; }

/* Chatbot Custom Loader */
.chat-loader-icon {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}
.chat-loader-icon:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    box-sizing: border-box;
    border: 8px solid #5e54f6;
    border-color: #5e54f6 transparent #5e54f6 transparent;
    animation: chat-hourglass 2.4s infinite;
}
@keyframes chat-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    100% {
        transform: rotate(1800deg);
    }
}
/* Chatbot dynamic flow classes */
.chat-dynamic-investment-section {
    margin-top: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.chat-dynamic-investment-taggs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-summary-card {
    margin-top: 15px;
    text-align: left;
    font-size: 0.9rem;
}

.chat-summary-divider {
    margin-bottom: 10px;
    color: #ccc;
    margin-top: 10px;
}

.chat-summary-item {
    margin-bottom: 6px;
}

.chat-summary-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.chat-bubble-expanded {
    max-width: 90% !important;
    width: 100% !important;
}

/* Chatbot UI Cleanup */
.investment-section h4.chat-investment-group-title {
    margin-bottom: 8px; 
    margin-top: 12px; 
    font-size: 0.9rem; 
    font-weight: normal;
}

.chat-flex-wrap-gap8 {
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px;
}

.chat-upload-options-container {
    margin-top: 15px; 
    margin-bottom: 0; 
    justify-content: flex-start; 
    flex-wrap: wrap; 
    gap: 8px;
}

.chat-manual-fallback-container {
    text-align: center;
}

.chat-dashed-hr {
    border: 0; 
    border-top: 1px dashed #ccc; 
    margin: 10px 0;
}

.chat-trouble-text {
    font-size: 0.8rem; 
    color: #7c7c7c;
}

.chat-manual-link {
    font-size: 0.85rem; 
    color: #5e54f6; 
    text-decoration: underline; 
    font-weight: 500;
}

.chat-uploaded-img {
    max-width: 100%; 
    border-radius: 8px; 
    margin-top: 10px;
}

.chat-back-image-options {
    margin-top: 15px; 
    margin-bottom: 0; 
    align-items: flex-start; 
    gap: 8px;
}

.chat-highlight-value {
    display: inline-block;
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.chat-dynamic-investment-section {
    margin-top: 1rem !important;
}

.chat-amount-in-words {
    font-size: 0.85rem;
    color: #5E54F6;
    padding: 8px 15px;
    background: #F0F0FF;
    border-radius: 8px;
    margin: 0 1rem 10px 1rem;
    border: 1px solid #D5D5FF;
    font-weight: 500;
}

/* Chatbot OCR Cancel Button */
.chat-ocr-cancel-container {
    margin-top: 8px;
}
.chat-ocr-cancel-btn {
    color: var(--danger-color, #d9534f);
    font-size: 12px;
    text-decoration: underline;
}

/* Chatbot Summary Photos */
.chat-summary-photo {
    max-width: 100px;
    border-radius: 8px;
    margin-top: 5px;
}
.chat-summary-photo-front {
    margin-right: 5px;
}

/* Chatbot Undo Icon */
.undo-icon-svg {
    vertical-align: sub;
}
.undo-icon-container {
    cursor: pointer;
    margin-left: 10px;
    opacity: 0.8;
}

/* Rolldate Datepicker Mobile Fixes */
/* =========================
   Rolldate Mobile Styling
   ========================= */

/* Header */
.rolldate-container .rolldate-title {
    font-size: 20px !important;
}

.rolldate-container .rolldate-btn {
    font-size: 18px !important;
}

/* Date items */
.rolldate-container li {
    font-size: 18px !important;
}

/* Selected item */
.rolldate-container li.active,
.rolldate-container li.rolldate-active {
    font-size: 24px !important;
    font-weight: 600 !important;
}
/* .rolldate-container {
    font-family: 'Inter', sans-serif !important;
}
.rolldate-container .rolldate-panel {
    width: 100% !important;
    max-width: 100% !important;
}
.rolldate-container ul {
    padding: 0 !important;
    margin: 0 !important;
}
.rolldate-container ul li {
    font-size: 20px !important;
    height: 36px !important;
    line-height: 36px !important;
    color: #333 !important;
    text-align: center !important;
}
.rolldate-container .rolldate-header {
    font-size: 18px !important;
    padding: 15px 10px !important;
}
.rolldate-container .rolldate-btn {
    font-size: 16px !important;
    padding: 10px !important;
} */

/* Exit Confirmation Modal */
.exit-confirm-overlay {
    z-index: 9999;
}
.exit-confirm-model {
    z-index: 10000;
}
.exit-confirm-text {
    font-size: 16px;
    margin-bottom: 20px;
}
.exit-confirm-actions {
    margin-top: 15px;
}
.exit-btn-no {
    background-color: #b1b1b1;
    margin: 0 auto;
    width: 100%;
}
.exit-btn-yes {
    margin: 0 auto;
    width: 100%;
}
.exit-btn-input {
    color: #fff;
    background: transparent;
    cursor: pointer;
    width: 100%;
    border: none;
}

/* Terms & Conditions Iframe Loader */
.terms-loader-container {
    position: relative;
    width: 100%;
    height: 100vh;
}
.terms-loader-spinner {
    border: 4px solid #e0e0e0 !important;
    border-top: 4px solid #1d1495 !important;
}
.terms-iframe-content {
    border: none;
    width: 100%;
    height: 100vh;
    display: none;
}

.chat-unit-dropdown-wrapper {
  position: relative;
  margin-left: 5px;
  width: 80px;
}
.chat-unit-selected {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  user-select: none;
  font-weight: 500;
  text-align: center;
  padding: 0 5px;
}
.chat-unit-selected::after {
  content: ' ▼';
  font-size: 10px;
  margin-left: 5px;
}
.chat-unit-options {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 100;
  max-height: 150px;
  overflow-y: auto;
}
.chat-unit-options li {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.chat-unit-options li:last-child {
  border-bottom: none;
}
.chat-unit-options li:hover {
  background-color: #f5f5f5;
}
