.inquiry-screen {
  background: #fff;
  padding-bottom: 12px;
  height: 100vh;
}

.inquiry-modal {
  top: 0 !important;
  z-index: 2000 !important;
}

.inquiry-modal-heading {
  display: flex;
  justify-content: space-between;
  /* flex-direction: column; */
  gap: 40px;
}

.inquiry-modal .modal-content {
  background: rgba(32, 80, 245, 1);
}

.inquiry-divider {
  height: 10px;
  background: #fff;
}

.logo-wrapper {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 50px;
  /* margin-top: 40px; */
}

.exit-btn {
  display: none;
}

.inquiry-header-title {
  display: block;
  font-family: Gabarito;
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.inquiry-header-title.info {
  margin-bottom: 10px;
}

.inquiry-header-desc {
  display: block;
  font-family: Gabarito;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: center;
  color: rgba(0, 5, 51, 1);
  margin-bottom: 20px;
}

.inquiry-modal-body {
  display: flex;
  /* margin-top: 60px; */
  flex-direction: column;
  gap: 20px;
}

.inquiry-modal-body .iq-title {
  font-family: Gabarito;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
}

.inquiry-modal-body .iq-desc {
  font-family: Gabarito;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #ffffff;
}

.inquiry-modal-body .iq-btn-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.inquiry-modal-body .iq-btn-wrapper .iq-btn {
  padding: 10px 15px;
  border-radius: 15px;
  background: #fff;
  color: rgba(32, 80, 245, 1);
  border: none;
}

.inquiry-modal-body .iq-btn-wrapper .iq-btn.primary {
  background: rgba(32, 80, 245, 1);
  color: #fff;
  border: 1px solid #fff;
}

.iq-logo {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}

.keep-searching {
  display: flex;
  gap: 8px;
  border: none;
  background: transparent;
  padding: none;
  align-items: center;
}

.keep-searching span {
  font-family: Gabarito;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #fff;
}

.prev-btn {
  display: flex;
  cursor: pointer;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
}

.prev-btn span {
  font-family: Gabarito;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: rgba(105, 105, 105, 1);
}

.inquiry-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  flex-wrap: wrap;
}

#inquiry-progress {
  margin-top: 15px;
  margin-bottom: 15px;
  height: 10px;
  border-radius: 0px;
  border: none;
}

#inquiry-progress::-webkit-progress-bar {
  background-color: rgba(245, 247, 252, 1);
  border-radius: 0;
}

#inquiry-progress::-webkit-progress-value {
  background-color: rgba(32, 80, 245, 1);
  border-radius: 0;
}

.inquiry-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 191, 199, 1);
  border-radius: 3px;
  width: 100%;
  aspect-ratio: 5/2;
  cursor: pointer;
  margin: 0 auto;
  /* max-width:280px; */
}

/* last card should occupy 2 columns */

.inquiry-card.last {
  grid-column: span 2;
  width: 50%;
  margin: auto;
}

.inquiry-card:hover {
  border: 1px solid rgba(0, 5, 51, 1);
}

/* .inquiry-card-title {
  font-family: Gabarito;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: rgba(0, 5, 51, 1);
} */

.requirements-form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 15px;
}

.r-form-field {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 2px 0;
}

.r-form-field.text-area .ta-actions {
  display: flex;
  justify-content: space-between;
}

.r-form-field.text-area .ta-actions span {
  font-family: Gabarito;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  text-align: left;
  color: rgba(193, 191, 199, 1);
  cursor: pointer;
}

.r-form-field.text-area textarea {
  resize: none;
  padding: 10px;
  background: rgba(246, 248, 249, 1);
  border: 1px solid rgba(193, 191, 199, 1);
  border-radius: 3px;
  font-family: Gabarito;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.r-form-field.with-icon {
  display: flex;
  flex-direction: row;
  gap: 0px;
}

.r-form-field.with-icon .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F8F9;
  border: 1px solid rgba(193, 191, 199, 1);
  border-radius: 3px 0px 0px 3px;
  border-right: none;
  padding: 0 8px;
}

.r-form-field.with-icon .select-wrapper select {
  width: 71px;
  font-family: Gabarito;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  background-color: transparent;
  border: none;
  color: rgba(105, 105, 105, 1);
}

.r-form-link {
  cursor: pointer;
  color: rgba(32, 80, 245, 1) !important;
}

.r-form-field.with-icon .icon-wrapper img {
  width: 30px;
  height: 30px;
}

.r-form-field.with-icon input {
  border-radius: 0px 3px 3px 0px;
}

.r-form-label {
  font-family: Gabarito;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.r-form-field.inline {
  display: flex;
  gap: 60px;
  flex-direction: row;
}

/* .r-form-field input {} */
.r-form-field input {
  width: 100%;
  border-radius: 3px;
  padding: 6px 12px;
  border: 1px solid rgba(193, 191, 199, 1);
  font-family: Gabarito;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  height: 68px;
}

.r-form-button {
  top: 767px;
  left: 802px;
  width: fit-content;
  gap: 10px;
  margin: auto;
  border-radius: 3px;
  height: auto;
  line-height: normal;
  /* margin: 0 0 0 20px; */
  color: #fff !important;
  background: #2050f5;
  border: none;
  padding: 12px 20px;
  /* text-transform: uppercase; */
  letter-spacing: 0;
}
#requirements_form_submit {
  height: 60px;
  width: 327px;
  margin-top: 50px;
}
#information_form_submit {
  height: 60px;
  width: 260px;
}
#complete_profile_submit {
  width: 293px;
  height: 60px; 
}
.builder_search
{
  position: sticky;
  top: 0;
  background: white;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
  margin: 0 !important;
}

.profile-box {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
}

.profile-box:last-child {
  margin-bottom: 50px;
}

.profile-box-header {
  font-family: Gabarito;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  color: rgba(0, 5, 51, 1);
}

.profile-box-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  cursor: pointer;
}

.profile-box-options-select {
  display: none;
  font-family: Gabarito;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  width: calc(100% - 60px);
  padding: 20px 35px;
  background-position-x: 95%;
  color: rgba(105, 105, 105, 1);
}

.profile-box-option {
  width: 314px;
  height: 80px;
  font-family: Gabarito;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: rgba(0, 0, 0, 1);
  border: 1px solid rgba(193, 191, 199, 1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3rd row span 2 cols */
.profile-box-option:nth-child(5) {
  grid-column: span 2;
  margin: auto;
}

/* odd child margin-left: auto */
.profile-box-option:nth-child(odd) {
  margin-left: auto;
}

.profile-box-option:hover {
  border: 1px solid rgba(0, 5, 51, 1);
}

.profile-box-option:nth-child(even) {
  margin-right: auto;
}

.profile-box-option.active {
  background: rgba(32, 80, 245, 1);
  color: #fff;
  border: 1px solid rgba(32, 80, 245, 1);
}

.inquiry-final-modal-body{
  width: 843px;
}


@media (min-width: 786px) {
  .requirements-form {
    max-width: 660px;
    margin: 0 auto;
  }
}

@media (max-width: 786px) {
  .profile-box-options {
    display: none;
  }

  .profile-box-options-select {
    display: block;
  }
  
  .inquiry-modal-body .iq-title {
    font-family: Gabarito;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
  }
  
  .inquiry-modal-body .iq-desc {
    font-family: Gabarito;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: #ffffff;
  }
}

@media (max-width: 576px) {
  .requirements-form {
    gap: 20px;
  }

  .inquiry-cards {
    display: flex;
    flex-direction: column;
  }

  .r-form-field.inline {
    flex-direction: column;
    gap: 20px;
  }

  .inquiry-card.last {
    width: 100%;
  }

  .r-form-label {
    font-family: Gabarito;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
  }

  .r-form-field.with-icon .icon-wrapper {
    padding: 8px;
  }

  .r-form-field input {
    padding: 20px;
    font-family: Gabarito;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;
    text-align: left;
  }

  .r-form-button {
    width: 100% ;
    margin-top: 26px;
  }

  #requirements_form_submit {
    width: 88% !important;
    height: auto !important;
    margin-top: 26px !important;
  }
 
  #information_form_submit {
    width: 100% !important;
    height: auto !important;
  }
  #complete_profile_submit {
    width: 100% !important;
    height: auto !important;
  }

  .iq-title {
    font-size: 40px;
    line-height: 48px;
  }

  .iq-desc {
    font-size: 24px;
    line-height: 28.8px;
  }

  .inquiry-modal-body .iq-btn-wrapper {
    flex-direction: column;
  }
}

#user-main-enquiry-modal {
  height: 100vh;
  top: 0;
  max-height: 100vh;
  background-color: #fff;
  z-index: 9999;
}

#requirements_form_region,
#requirements_form_budget {
  max-width: 450px;
  margin: 0 auto;
  height: 60px;
  background-position: 95%;
}

.inquiry-header.row {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 99;
}

.sticky-header-progress {
  position: sticky;
  top: 65px;
  background: #fff;
  z-index: 99;
}

#user-main-enquiry-modal .otp-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 600px;
  /* margin: 20px auto; */
}

#user-main-enquiry-modal .otp-wrapper .otp-input-new {
  height: 70px;
  width: auto;
  border: 2px solid #0000001A;
  border-radius: 8px;
  display: flex;
  background: #D9D9D933;
}

#user-main-enquiry-modal .otp-wrapper .otp-input-new.filled {
  border-color: var(--color-global-blue);
  background: transparent;
}

#user-main-enquiry-modal .otp-wrapper .otp-input-new.error {
  border-color: var(--color-global-pink);
  background: var(--color-global-pink-light);
}

#user-main-enquiry-modal .otp-wrapper .otp-input-new input {
  border: none;
  font-family: Gabarito;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  background: transparent;
  max-width: 70px;
  text-indent: 0px;
  padding: 0;
}

#user-main-enquiry-modal .otp-wrapper .otp-input-new .filled {
  border-color: #2050F5 !important;
}

@media (min-width: 401px and max-width: 576px) {

  #user-main-enquiry-modal .otp-input-new {
    width: 50px;
    height: 50px;
  }

  #user-main-enquiry-modal .otp-input-new input {
    max-width: 50px;
  }

}

@media (max-width: 400px) {
  #user-main-enquiry-modal .otp-input-new {
    width: 40px;
    height: 40px;
  }

  #user-main-enquiry-modal .otp-input-new input {
    max-width: 40px;
    font-family: Gabarito;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;

  }
}

@media (max-width: 315px) {
  #user-main-enquiry-modal .otp-input-new {
    width: 30px;
    height: 30px;
  }

  #user-main-enquiry-modal .otp-input-new input {
    max-width: 30px;
    font-family: Gabarito;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;

  }
}

/* .card-item-main {
  max-width: 500px !important;
  margin: 0 auto
}

.card-item-main .inquiry-card {
  max-width: 220px;
} */

.r-form-button:disabled {
  background: #2050f5bf;
}

.first-inner-row {
  display: flex;
  max-width: 944px;
  margin: 44px auto 0;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

.first-inner-row input[type="radio"] {
  visibility: hidden;
  height: 0;
  width: 0;
}

.first-inner-col img {
  position: absolute;
  left: 20px;
  height: 50px;
  width: 50px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.first-inner-row .inquiry-card-title {
  display: flex;
  transition: all 0.3s ease-out;
  width: 100%;
  height: 75px;
  padding: 12px 26px 12px 76px;
  font-size: 25px;
  align-items: center;
  color: #000533;
  transition: all 0.3s ease-out;
  cursor: pointer;
}

@media (max-width: 500px) {
  .first-inner-row .inquiry-card-title {
    font-size: 16px;
    padding: 12px 26px 12px 65px;
    height: 50px;
  }

  .first-inner-col img {
    height: 30px;
    width: 30px;
  }

  .first-inner-row {
    gap: 20px;
  }
}

.first-inner-col {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #c1bfc7;
  justify-content: center;
  transition: all 0.3s ease-out;
  width: 80%;
  max-width: 370px;
  border-radius: .25rem;
}

.first-inner-row input[type="radio"]:checked+label {
  background-color: #c1bfc7;
}

.inquery-otp-screen {
  max-width: 505px;
  margin: 0 auto;
}

.inquery-otp-screen .inquiry-header-desc {
  font-size: 20px;
  color: #696969;

}

.inquery-otp-screen .mobile-div {
  width: 100%;
  height: 60px;
  margin-top: 30px;
  gap: 10px;
  border-radius: 10px;
  border: 1.5px 0px 0px 0px;
  opacity: 0px;
  border: 1.5px solid #C1BFC7;
  display: flex;
}

.inquery-otp-screen .mobile-div svg {
  margin: auto 18px;
}

.inquery-otp-screen .mobile-div span {
  margin: auto 22px;
  color: #2050F5;
  cursor: pointer;
}

.inquery-otp-screen .mobile-div input {
  border: none;
  background: transparent;
  font-family: Gabarito;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  text-align: left;
  flex: 1;
  text-indent: 0px;
  width: 100%;
}

.inquery-otp-screen .otp-bottom-link {
  color: #696969;
  margin-top: 5px;
  font-size: 16px;


}

.inquery-otp-screen .otp-bottom-link span {
  color: #2050F5;
  cursor: pointer;
}

.progress-text{
  font-size: 20px;
  font-weight: 400;
  color: #2050F5;
  margin-left: 13%;
}

@media only screen and (min-width: 279px) and (max-width: 480px)  {
/* @media (max-width: 319px) { */

  .logo-wrapper{
    display: none;
  }
  .exit-btn {
    display: block;
  }
  .sticky-header-progress{
    top:0;
  }
  .progress-text{
   display: none;
  }
  .first-inner-row .inquiry-card-title {
    font-size: 15px;
    padding: 11px 22px 11px 62px;
    height: 50px;
    text-align: left;
    line-height:20px;
  }

  .inquiry-header-title {
    font-size: 24px;
    margin: 0px !important;
    /* padding: 0 50px; */
  }
  .first-inner-row {
    margin-top: 20px;
  }
  .r-form-label{
    font-size: 18px;
  }

  #requirements_form_region, #requirements_form_budget{
    max-width: 260px;
    height: 40px;
  }
  
  .r-form-field input, .inquery-otp-screen .mobile-div{
    height: 40px;

  }
  .r-form-field.with-icon .icon-wrapper{
    padding: 4px;
    width: auto !important;
  }

  .inquery-otp-screen .inquiry-header-desc, .inquery-otp-screen .mobile-div input{
    font-size: 15px;
  }
  .inquery-otp-screen .mobile-div span{
    font-size: 13px;
  }
  #user-main-enquiry-modal .otp-wrapper .otp-input-new{
    height: 44px;
  }
}
