body {
  height: 100dvh;
  overflow-y: hidden;
}

.progress-container {
  /* background-color: red; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.5rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.progress-container .progress-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  /* background-color: black; */
}

.progress-container .progress-step .step-label {
  font-size: 0.65rem;
  color: #333;
  font-family: "Satoshi-Bold";
}

.step-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  height: 1.8rem;
  width: 1.8rem;
  border-radius: 50%;
  border: 1px solid #dedede;
  background-color: #f7f7f7;
  position: relative;
  z-index: 2;
}

.step-icon .indicatorIcon {
  height: 0.9rem;
}

.step-icon .indicatorIcon path {
  fill: rgba(51, 51, 51, 0.2);
}
.progress-container .progress-line {
  position: absolute;
}

.progress-line {
  position: absolute;
  top: 25%;
  /* transform: translateY(-50%); */
  left: 3rem;
  width: calc(90vw - 20rem);
  height: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.progress-line-fill {
  width: 0%;
  height: 100%;
  background-color: #f09000;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

div.progress-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0px;
  position: relative;
}

div.progress-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 40px 0px 1rem 0rem;
  position: relative;
  /* background-color: red; */
  width: calc(90vw - 15rem);
}
.progress-indicator {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin-bottom: 20px;
}

.progress-indicator li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid #ddd;
  position: relative;
}

.progress-indicator li.active {
  color: #007bff;
  border-color: #007bff;
}

.progress-indicator li.active::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #007bff;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.progress-container .active .step-icon {
  background-color: #f09000;
}

.progress-container .active .indicatorIcon path {
  fill: #fff;
}

div.progress-line-fill {
  background-color: #f09000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}
.formWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100dvh - 4rem);
  overflow: auto;
  /* or overflow: scroll; */
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
  /* For Chrome, Safari, and other WebKit-based browsers */
  min-width: calc(100vw - 20rem) !important;
}

.formWrapper ::-webkit-input-placeholder {
  font-size: .7rem !important;
  text-transform: unset !important;
}

.formWrapper :-ms-input-placeholder {
  font-size: .7rem !important;
  text-transform: unset !important;
}

.formWrapper ::-ms-input-placeholder {
  font-size: .7rem !important;
  text-transform: unset !important;
}

.formWrapper ::placeholder {
  font-size: .7rem !important;
  text-transform: unset !important;
}

.formWrapper .inputsContained {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem !important;
}

.formWrapper::-webkit-scrollbar {
  display: none;
}

.formWrapper .topWrapper .mainHeading {
  width: 30rem !important;
}

.navigationIndicator {
  display: none !important;
}

.uploadDocumentsWrapper {
  /* background-color: red; */
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.uploadDocumentsWrapper .file-ite {
  background-color: #f7f7f7;
  height: 2.5rem;
  /* width: fit-content; */
  gap: 2rem;
  padding: 0 1rem;
  /* display: flex; */
  border-radius: 10rem;
  /* justify-content: center; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.uploadDocumentsWrapper .file-ite .inputDisplayName {
  font-size: .75rem;
  font-family: 'Satoshi-Bold';
  color: #333;
  text-transform: capitalize;
}

.custom-file-uploadBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10rem;
  outline: none;
  border: none;
  font-family: 'Satoshi-Bold';
  background-color: #296EB4;
  font-size: .8rem;
  color: #fff;
}

.uploadDocumentsWrapper {
  /* background-color: red; */
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.uploadDocumentsWrapper .file-ite {
  background-color: #f7f7f7;
  height: 2.5rem;
  /* width: fit-content; */
  gap: 2rem;
  padding: 0 1rem;
  /* display: flex; */
  border-radius: 10rem;
  /* justify-content: center; */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.uploadDocumentsWrapper .file-ite .inputDisplayName {
  font-size: .75rem;
  font-family: 'Satoshi-Bold';
  color: #333;
  text-transform: capitalize;
}

.custom-file-uploadBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10rem;
  outline: none;
  border: none;
  font-family: 'Satoshi-Bold';
  background-color: #296EB4;
  font-size: .8rem;
  color: #fff;
}

.investmentObjectivesWrapper, .investmentFocusContainer, .investmentStrategyContainer, .expertiseContainer, .investmentPortfolioContainer, .overallAssessmentContainer {
  /* background-color: red; */
  margin-top: -2rem;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas, .investmentFocusContainer .bottomWrapperTextAreas, .investmentStrategyContainer .bottomWrapperTextAreas, .expertiseContainer .bottomWrapperTextAreas, .investmentPortfolioContainer .bottomWrapperTextAreas, .overallAssessmentContainer .bottomWrapperTextAreas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped, .expertiseContainer .bottomWrapperTextAreas .inputWrapped, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* background-color: red; */
  width: calc(100% - 20rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped .inputDisplayName, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped .inputDisplayName, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped .inputDisplayName, .expertiseContainer .bottomWrapperTextAreas .inputWrapped .inputDisplayName, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped .inputDisplayName, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped .inputDisplayName {
  font-size: 1rem;
  font-family: 'Satoshi-Bold';
  color: #1a1a1a;
  margin-bottom: .5rem;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped .coindustryBusiness, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped .coindustryBusiness, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped .coindustryBusiness, .expertiseContainer .bottomWrapperTextAreas .inputWrapped .coindustryBusiness, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped .coindustryBusiness, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped .coindustryBusiness {
  /* background-color: red; */
  height: 12rem;
  border: 1.2px solid #dedede;
  border-radius: 4px;
  outline: none;
  font-size: .75rem;
  margin-bottom: 1rem;
  padding: .5rem;
  font-family: 'Satoshi-Medium';
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped ::-webkit-input-placeholder, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped ::-webkit-input-placeholder, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped ::-webkit-input-placeholder, .expertiseContainer .bottomWrapperTextAreas .inputWrapped ::-webkit-input-placeholder, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped ::-webkit-input-placeholder, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped ::-webkit-input-placeholder {
  font-size: .75rem;
  text-transform: capitalize;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped :-ms-input-placeholder, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped :-ms-input-placeholder, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped :-ms-input-placeholder, .expertiseContainer .bottomWrapperTextAreas .inputWrapped :-ms-input-placeholder, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped :-ms-input-placeholder, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped :-ms-input-placeholder {
  font-size: .75rem;
  text-transform: capitalize;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped ::-ms-input-placeholder, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped ::-ms-input-placeholder, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped ::-ms-input-placeholder, .expertiseContainer .bottomWrapperTextAreas .inputWrapped ::-ms-input-placeholder, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped ::-ms-input-placeholder, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped ::-ms-input-placeholder {
  font-size: .75rem;
  text-transform: capitalize;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped ::placeholder, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped ::placeholder, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped ::placeholder, .expertiseContainer .bottomWrapperTextAreas .inputWrapped ::placeholder, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped ::placeholder, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped ::placeholder {
  font-size: .75rem;
  text-transform: capitalize;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped .uploadBtn, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn, .expertiseContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn {
  margin-top: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0 1rem;
  font-family: 'Satoshi-Bold';
  font-size: .75rem;
  border-radius: 4px;
  color: #fff;
  background-color: #296EB4;
  gap: .5rem;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped .uploadBtn span, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span, .expertiseContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  width: 1rem;
}

.investmentObjectivesWrapper .bottomWrapperTextAreas .inputWrapped .uploadBtn span .uploadIcon path, .investmentFocusContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span .uploadIcon path, .investmentStrategyContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span .uploadIcon path, .expertiseContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span .uploadIcon path, .investmentPortfolioContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span .uploadIcon path, .overallAssessmentContainer .bottomWrapperTextAreas .inputWrapped .uploadBtn span .uploadIcon path {
  fill: #fff;
}

.matchingPreferencesContainer {
  /* background-color: black; */
  margin-top: -2rem;
}

.matchingPreferencesContainer .suheading {
  /* width: fit-content; */
  /* background-color: red; */
  font-size: 1rem;
  width: 15rem;
  margin-bottom: 3rem;
  color: #333;
  font-family: 'Satoshi-Bold';
  /* text-transform: capitalize; */
}

.matchingPreferencesContainer .inputWrapped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* background-color: red; */
  margin-top: 1rem;
  height: 2.2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.matchingPreferencesContainer .inputWrapped input {
  height: 100%;
  min-width: 20rem;
  border: 1.2px solid #dedede;
  outline: none;
  border-radius: 4px;
  padding: 0 .5rem;
  font-family: 'Satoshi-Medium';
}

.matchingPreferencesContainer .inputWrapped input:focus {
  border: 1.2px solid #296EB4;
}

.matchingPreferencesContainer .inputWrapped .inputDisplayName {
  font-size: .75rem;
  font-family: 'Satoshi-Medium';
  color: #333;
}

.completeFormContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}

.completeFormContainer .previousBtn {
  /* background-color: red; */
  padding: 0 1rem;
  color: #296EB4;
  font-family: 'Satoshi-Bold';
  font-size: .8rem;
  border-radius: 4px;
  border: 1.2px solid #296EB4;
  height: 2.2rem;
}

button#investnowCall.submitButton {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: #296EB4;
  border: none;
  border-radius: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Satoshi-Bold';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: .8rem;
  color: #fff;
  /* font-family: Arial; */
  /* font-size: 13.3333px; */
  margin: 0px 0px 0px;
  text-align: center;
}

.navigationButtonsContainer {
  /* background-color: red; */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3rem;
  gap: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigationButtonsContainer button {
  height: 2.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: .8rem;
  font-family: 'Satoshi-Bold';
  /* font-size: .8rem; */
}

.navigationButtonsContainer .nextBtnOpp {
  background-color: #f09000;
  color: #fff;
}

.navigationButtonsContainer .previousBtn {
  border: 1.2px solid #296EB4;
  color: #296EB4;
  background-color: #fff;
}

.investmentObjectivesList, .investmentFocusList, .investmentStrategyList, .expertiseList, .investmentPortfolioList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: .5rem;
  margin-top: 1rem;
}

.investmentObjectivesList li, .investmentFocusList li, .investmentStrategyList li, .expertiseList li, .investmentPortfolioList li {
  font-size: .75rem;
  font-family: 'Satoshi-Medium';
  color: #333;
}

.investmentObjectivesList li .investmentObjectivesListTitle, .investmentObjectivesList li .investmentFocusListTitle, .investmentObjectivesList li .investmentStrategyListTitle, .investmentObjectivesList li .expertiseListTitle, .investmentObjectivesList li .investmentPortfolioListTitle, .investmentFocusList li .investmentObjectivesListTitle, .investmentFocusList li .investmentFocusListTitle, .investmentFocusList li .investmentStrategyListTitle, .investmentFocusList li .expertiseListTitle, .investmentFocusList li .investmentPortfolioListTitle, .investmentStrategyList li .investmentObjectivesListTitle, .investmentStrategyList li .investmentFocusListTitle, .investmentStrategyList li .investmentStrategyListTitle, .investmentStrategyList li .expertiseListTitle, .investmentStrategyList li .investmentPortfolioListTitle, .expertiseList li .investmentObjectivesListTitle, .expertiseList li .investmentFocusListTitle, .expertiseList li .investmentStrategyListTitle, .expertiseList li .expertiseListTitle, .expertiseList li .investmentPortfolioListTitle, .investmentPortfolioList li .investmentObjectivesListTitle, .investmentPortfolioList li .investmentFocusListTitle, .investmentPortfolioList li .investmentStrategyListTitle, .investmentPortfolioList li .expertiseListTitle, .investmentPortfolioList li .investmentPortfolioListTitle {
  font-family: 'Satoshi-Bold' !important;
  color: #1a1a1a;
}

.overallAssessmentText {
  font-size: .75rem;
  font-family: 'Satoshi-Medium';
  color: #333;
  width: 50%;
  margin-bottom: 1rem;
}
/*# sourceMappingURL=investorCompanyNew.css.map */