@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");
body:has(.request-form-steps) {
  background-color: #f6f7f9;
}
body:has(.request-form-steps) .breadcrumb-wrapper {
  padding: 24px 16px 0;
}
@media (min-width: 768px) {
  body:has(.request-form-steps) .breadcrumb-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  body:has(.request-form-steps) .breadcrumb-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1600px) {
  body:has(.request-form-steps) .breadcrumb-wrapper {
    padding-left: 64px;
    padding-right: 64px;
  }
}

.request-form-steps {
  width: 100%;
  background-color: #f6f7f9;
}
.request-form-steps__wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .request-form-steps__wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .request-form-steps__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.request-form-steps__title {
  flex-basis: 100%;
  color: #434447;
  line-height: 125%;
  letter-spacing: 3%;
  font-weight: 500;
  font-size: 36px;
  padding: 32px 0;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .request-form-steps__title {
    font-size: 44px;
  }
}
@media (min-width: 1200px) {
  .request-form-steps__title {
    font-size: 48px;
  }
}
.request-form-steps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.request-form-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background-color: #b6bfc1;
  z-index: 1;
}
.request-form-steps__item .step-number {
  width: 32px;
  height: 32px;
  border: 2px solid #b6bfc1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6bfc1;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  z-index: 2;
}
.request-form-steps__item .step-number .done-icon {
  display: none;
}
.request-form-steps__item .step-name {
  color: #b6bfc1;
  font-size: 12px;
  margin: 0;
  text-align: center;
  font-weight: 400;
  line-height: 125%;
}
@media (min-width: 1024px) {
  .request-form-steps__item .step-name {
    font-size: 16px;
  }
}
.request-form-steps__item.is-active .step-number, .request-form-steps__item.is-done .step-number {
  border-color: #e57b03;
  color: #e57b03;
}
.request-form-steps__item.is-active .step-name, .request-form-steps__item.is-done .step-name {
  color: #e57b03;
  font-weight: 500;
}
.request-form-steps__item.is-done .step-number {
  background-color: #e57b03;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.request-form-steps__item.is-done .step-number .done-icon {
  display: block;
  width: 19px;
  height: 19px;
}
.request-form-steps__item.is-done .step-number span {
  display: none;
}
.request-form-steps__item.is-done:after {
  background-color: #e57b03;
}

/*# sourceMappingURL=requestFormSteps.css.map */
