body {
  font-family: "Outfit", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Outfit", sans-serif;
}
header {
  border-bottom: 1px solid #edeff1;
  width: 100%;
  height: 68px;
}
.logoBox {
  padding: 10px 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}
.logoBox a {
  width: 200px;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.logoBox img {
  width: 100%;
}
.helpBox {
  padding: 20px 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.helpIcon {
  content: "";
  background: url(../images/help_new_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 42px;
  height: 36px;
}
.vyaparForm {
  height: calc(100vh - 68px);
}
.stepBox {
  height: 100%;
}
.bodyContent {
  height: 100%;
  padding: 85px 10px 20px;
  overflow: auto;
  position: relative;
}
.bodyContent::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 382px;
  height: 348px;
  background: url(../images/bodyBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.bodyContent.bodyContentuploadAccount::after {
  display: none;
}
.bodyText {
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.bodyText h1 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin-top: 0px;
}
.bodyText p {
  color: #7d7d7d;
  font-size: 16px;
  font-weight: 400;
}
.formSection .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 420px;
  margin: 0 auto;
}
.formSection .form-group label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #21272f;
  margin-bottom: 16px;
}
.formPhoneIcon {
  content: "";
  background: url(../images/phoneiIcon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-right: 10px;
}
.formSection .form-group input {
  padding: 6px 12px;
  border: 1px solid #c8cdd3;
  height: 32px;
  border-radius: 6px;
  color: #21272f;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 5px;
  /* margin-bottom: 35px; */
}
.numberError {
  color: #b93f3f;
  font-size: 12px;
  margin-bottom: 0;
  height: 16px;
}
.formSection .form-group input.inputError {
  border: 1px solid #b93f3f;
  color: #b93f3f;
  background: #feeeee;
}
.formSection .form-group input:focus {
  box-shadow: none;
  outline: none;
}
.formSection .form-group input::placeholder {
  color: #aeb5be;
}
.footerButton {
  width: 165px;
  height: 50px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.footerNextButton {
  width: 165px;
  height: 45px;
  border-radius: 6px;
  padding: 14px 24px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
}
.footerNextButton:hover {
  cursor: pointer;
}
.disableNextButton {
  border: 1px solid #d0d3d9;
  color: #d0d3d9;
  background: #edeff1;
}
.enableNextButton {
  border: 1px solid #0050ab;
  color: #fff;
  background: #0050ab;
}
.bodyContentuploadAccount .enableNextButton {
  margin-top: 60px;
  font-weight: 400;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.accountstatementBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  min-height: 250px;
  padding: 0 10px;
  margin-bottom: 30px;
}
.khataIcon {
  content: "";
  background: url(../images/vayparicon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 495px;
  height: 38px;
  margin-bottom: 20px;
}
.uploadList {
  width: 100%;
}
.uploadList li {
  width: 100%;
  position: relative;
}
.uploadList li span {
  width: 33%;
  color: #aeb5be;
  font-size: 16px;
}
.uploadList li.active span {
  color: #4f5e71;
}
.uploadList li.active::before {
  content: "";
  background: url(../images/tickIcon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: -35px;
}
.uploadList li.inactive::after {
  content: "";
  background: url(../images/closeIcon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 17px;
  height: 17px;
  position: absolute;
  left: -35px;
}
.uploadList li > span:nth-child(1) {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 12px;
}
.uploadList li:nth-child(1) span:nth-child(1) {
  padding-left: 0;
}
.uploadList li span:nth-child(2) {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 25%;
}
.uploadList li > span:nth-child(3) {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
}
/* .imageIcon span{
  width: 33%;
  border: 1px solid;
} */
.vpIcon {
  content: "";
  background: url(../images/vyaparLogo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 85px;
  height: 19px;
}
.emptyBox {
  margin: 0 30px;
}
.ubIcon {
  content: "";
  background: url(../images/ubLogo.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 108px;
  height: 19px;
}
/* .loaderIcon {
  content: "";
  background: url(../images/loader.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 76px;
  height: 7px;
  position: relative;
  left: -30px;
  display: none;
} */
.runLoader .loaderIcon {
  display: flex;
}

/* HTML: <div class="loader"></div> */

/* HTML: <div class="loader"></div> */

.loaderIcon {
  display: none;
  gap: 8px;
  align-items: center;
  width: 100%;
  position: relative;
  left: -35px;
}

.loaderIcon span {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #f65454;
  animation: blink 1.5s infinite ease-in-out;
}

.loaderIcon span:nth-child(2) {
  animation-delay: 0.2s;
  background-color: #fccaca;
}
.loaderIcon span:nth-child(3) {
  animation-delay: 0.4s;
  background-color: #feeeee;
}
.loaderIcon span:nth-child(4) {
  animation-delay: 0.6s;
  background-color: #d9e5f2;
}
.loaderIcon span:nth-child(5) {
  animation-delay: 0.8s;
  background-color: #f65454;
}
.loaderIcon span:nth-child(6) {
  animation-delay: 1s;
  background-color: #fccaca;
}
.loaderIcon span:nth-child(7) {
  animation-delay: 1.2s;
  background-color: #feeeee;
}
.loaderIcon span:nth-child(8) {
  animation-delay: 1.4s;
  background-color: #d9e5f2;
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.3;
    /* transform: scale(0.8); */
  }
  50% {
    opacity: 1;
    /* transform: scale(1.2); */
  }
}

/* .loaderIcon {
  display: flex;
  width: 90px;
  height: 14px;
  background: 
    radial-gradient(circle closest-side, #F65454 92%, #0000),
    radial-gradient(circle closest-side, #FCCACA 92%, #0000),
    radial-gradient(circle closest-side, #FEEEEE 92%, #0000),
    radial-gradient(circle closest-side, #FEEEEE 92%, #0000),
    radial-gradient(circle closest-side, #D9E5F2 92%, #0000),
    radial-gradient(circle closest-side, #D9E5F2 92%, #0000),
    radial-gradient(circle closest-side, #D9E5F2 92%, #0000),
    radial-gradient(circle closest-side, orange 92%, #0000);
  background-size: 12.5% 100%;
  background-repeat: repeat-x;
  animation: l2 2s linear infinite;
}

@keyframes l2 {
  0%   { background-position: 0 0; }
  100% { background-position: -100% 0; }
} */

/* .loaderIcon {
  display: none;
  width: 90px;
  height: 14px;
  --c:red 92%,#0000;
  background: 
    radial-gradient(circle closest-side,var(--c)) calc(100%/-4) 0,
    radial-gradient(circle closest-side,var(--c)) calc(100%/4)  0;
  background-size:calc(100%/2) 100%;
  animation: l14 1.5s infinite;
}
@keyframes l14 {
    0%   {background-position: calc(100%/-4) 0    ,calc(100%/4) 0}
    50%  {background-position: calc(100%/-4) -14px,calc(100%/4) 14px}
    100% {background-position: calc(100%/4)  -14px,calc(3*100%/4) 14px}
} */

/* #party.active i,
#item.active i,
#sale.active i,
#purchase.active i{
  display: none;
}

#party i {
  display: flex !important;
}

#party.active #itm */

.uploadIcon {
  content: "";
  background: url(../images/uploadIcon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.file.footerNextButton {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10;
  font-size: 14px;
  font-weight: 400;
  width: 204px;
  margin-top: 60px;
}
.accountstatementBox ul {
  margin: 0;
  padding: 0;
}
.accountstatementBox ul li {
  list-style: none;
  color: #727e8d;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 25px;
}
.accountstatementBox ul li b {
  width: 27px;
  height: 27px;
  color: #0050ab;
  margin-right: 5px;
  font-weight: 500;
  text-align: center;
}
.accountstatementBox p {
  text-align: center;
  color: #5c5c5c;
  font-size: 18px;
  margin-bottom: 40px;
}
.videoDekheinButton {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 40px;
}
.videoDekheinButton a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #f5f5f7;
  border: 1px solid #efefef;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  width: 165px;
  height: 37px;
  font-size: 14px;
  color: #414143;
}
.videoDekheinButton a:hover {
  text-decoration: none;
}
.youtubeIcon {
  content: "";
  background: url(../images/YTButton.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 17px;
  height: 12px;
  margin-right: 12px;
}
.lastScreen {
  height: calc(98vh - 80px);
  padding: 30px 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.lastScreenPara {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.lastScreenPara span {
  font-size: 14px;
  color: #7d7d7d;
  text-align: center;
}
.lastScreenParaTwo {
  font-size: 20px !important;
  color: #565656 !important;
  font-weight: 400;
  text-align: center;
  margin: 60px 0 !important;
}
.googlePlayIcon {
  content: "";
  background: url(../images/googleplay.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 215px;
  height: 53px;
  margin-bottom: 25px;
}
.appstoreIcon {
  content: "";
  background: url(../images/appstore.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 215px;
  height: 53px;
  margin-bottom: 25px;
}
.tickIcon {
  content: "";
  background: url(../images/tickIcon.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  position: relative;
  top: -4px;
}
.lastScreenoactionBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.file {
  position: relative;
  overflow: hidden;
}
.uploadInput {
  position: absolute;
  font-size: 50px;
  opacity: 0;
  right: 0;
  top: 0;
}
.footerNextButton input:hover {
  cursor: pointer;
}
.filenameBox {
  color: #727e8d;
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
#fileName {
  color: #727e8d;
  font-weight: 500;
  font-size: 12px;
  margin: 0 0 10px;
  width: 90%;
}
.filesizeBox {
}
#fileSize {
  color: #8c8c8c;
  font-size: 14px;
  margin: 5px 0 0px;
}
#progressMain .progress-bar {
  background-color: #0050ab;
  height: 4px;
}
#progressMain.progress {
  border-radius: 30px !important;
  height: 4px;
  overflow: hidden;
  font-size: 0px;
  background-color: #cfcfcf;
}
.filesizeBox {
  margin-bottom: 30px;
}
.filenameBox {
  position: relative;
}
.closeIcon {
  content: "";
  background: url(../images/cloaseIconBlack.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  position: absolute;
  right: 0px;
  top: -4px;
  cursor: pointer;
}
.footerNextButton.widtCust {
  min-width: fit-content;
  width: auto;
}
.stepFirstSpace {
  margin-top: 20px;
}
.errorMessage {
  min-height: 24px;
  border-radius: 4px;
  background: #feeeee;
  color: #b93f3f;
  font-size: 12px;
  font-weight: 400;
  padding: 6px;
}
.fileUploadErrorMessage {
  min-height: 24px;
  border-radius: 4px;
  background: #feeeee;
  color: #b93f3f;
  font-size: 12px;
  font-weight: 400;
  padding: 6px;
}
.backIconWrapper {
}
.backIcon {
  content: "";
  background: url(../images/backIcon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-right: 10px;
}
.displayDesktop{
  display: flex !important;
}
.displayMobile{
  display: none !important;
}
#openUdhaarBook,
#openUdhaarBookMobile {
  display: none;
}
@media (min-width: 320px) and (max-width: 768px) {
  .bodyContent::after {
    display: none;
  }
  .formSection .form-group {
    width: 100%;
  }
  .footerNextButton {
    width: 100%;
  }
  .khataIcon {
    background: url(../images/vaypariconMobile.svg);
    width: 278px;
    height: 19px;
  }
  .file.footerNextButton {
    width: 100%;
  }
  .footerNextButton.widtCust {
    width: 100%;
  }
  .uploadList li.active::before {
    left: -14px;
    top: 4px;
  }
  .uploadList li span:nth-child(3) {
    padding-left: 0;
  }
  .loaderIcon {
    left: -15px;
    top: 10px;
  }
  .loaderIcon span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
  }
    .loaderIcon span:nth-child(7),
    .loaderIcon span:nth-child(6),
    .loaderIcon span:nth-child(5){
      display: none;
    }
    .displayDesktop{
      display: none !important;
    }
    .displayMobile{
      display: flex !important;
    }
    .uploadList li.inactive::after {
      left: -14px;
      top: 4px;
    }
    .accountstatementBox ul li{
      align-items: flex-start;
    }
    .uploadList li span{
      width: 35%;
    }
    .listListCell{
      position: relative;
      left: -13px;
    }
}
@media (min-width: 320px) and (max-width: 340px) {
  .uploadList li span{
    font-size: 12px;
  }
  .listListCell{
    left: -22px;
  }
}