.steps {
  background-color: var(--primary-color);
}
.steps .wizard {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: bth-wizard-steps;
  display: flex;
  flex-wrap: no-wrap;
  overflow: hidden;
  margin-bottom: 0px;
}
.steps .wizard .wizard__item-arrows:after, .steps .wizard .wizard__item-arrows:before {
  content: " ";
  display: block;
  position: absolute;
}
.steps .wizard .wizard__item-arrows:before {
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 20px solid white;
  top: -4px;
  left: -1px;
  z-index: 1;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item-arrows:before {
    border-top: 43px solid transparent;
    border-bottom: 44px solid transparent;
    border-left: 23px solid white;
    top: 5px;
    left: -1px;
  }
}
.steps .wizard .wizard__item-arrows:after {
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 18px solid var(--fourth-color);
  top: 0;
  right: -17px;
  left: auto;
  z-index: 2;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item-arrows:after {
    border-top: 38px solid transparent;
    border-bottom: 38px solid transparent;
    border-left: 16px solid var(--fourth-color);
    top: 10px;
  }
}
.steps .wizard .wizard__item {
  background-color: var(--fourth-color);
  color: var(--black);
  counter-increment: bth-wizard-steps;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  min-width: 30px;
  max-width: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  flex-wrap: no-wrap;
  padding-left: 34px;
  padding-right: 8px;
  position: relative;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item {
    display: block;
    text-align: center;
  }
}
.steps .wizard .wizard__item:before {
  content: counter(bth-wizard-steps);
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  min-width: 30px;
  display: flex;
  width: 40px;
  height: 40px;
  background-color: white;
  margin-right: 8px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .steps .wizard .wizard__item:before {
    margin: 8px auto;
  }
}
.steps .wizard .wizard__item:first-child {
  padding-left: 8px;
}
.steps .wizard .wizard__item:first-child .wizard__item-arrows:before {
  display: none;
}
.steps .wizard .wizard__item:last-child .wizard__item-arrows:after {
  display: none;
}
.steps .wizard .wizard__item-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.steps .wizard .wizard__item--active {
  background-color: var(--secondary-color);
  color: var(--white);
  min-width: auto;
}
.steps .wizard .wizard__item--active .wizard__item-arrows:after {
  border-left-color: var(--secondary-color);
}
.steps .wizard .wizard__item--active:before {
  color: var(--primary-color);
}
.steps .wizard .wizard__item--visited {
  background-color: #CFDFF2;
  color: #595959;
}
.steps .wizard .wizard__item--visited .wizard__item-arrows:after {
  border-left-color: #CFDFF2;
}
.steps .wizard .wizard__item--visited:before {
  color: var(--primary-color);
  content: "check";
  font-size: 18px;
  text-transform: none;
}
.steps .wizard .wizard__item--disabled,
.steps .wizard .wizard__item [disabled] {
  background-color: #F5F7FA;
  color: #c0c0c0;
  cursor: default;
}
.steps .wizard .wizard__item--disabled .wizard__item-arrows:after,
.steps .wizard .wizard__item [disabled] .wizard__item-arrows:after {
  border-left-color: #F5F7FA;
}
.steps .wizard .wizard__item--disabled:before,
.steps .wizard .wizard__item [disabled]:before {
  color: #c0c0c0;
  content: counter(bth-wizard-steps);
}

.steps-container {
  max-width: 461px;
  height: 114px;
  position: relative;
  margin: 1rem auto;
  margin-top: -37px;
}

.steps-line {
  position: absolute;
  top: 32px;
  left: -7px;
  z-index: 1;
}
@media (max-width: 991px) {
  .steps-line {
    left: 0;
    top: 22px;
  }
}
.steps-line svg {
  max-width: 100%;
}

.step-numbers {
  display: flex;
  gap: 50px;
  justify-content: space-around;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.step-numbers .step {
  width: 84px;
  height: 114px;
}
@media (max-width: 991px) {
  .step-numbers .step {
    width: 54px;
  }
}
.step-numbers .step .circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 7px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 900;
  color: var(--gray) !important;
}
@media (max-width: 991px) {
  .step-numbers .step .circle {
    font-size: 24px;
    width: 54px;
    height: 54px;
  }
}
.step-numbers .step .step-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 20px;
  font-family: Inter, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #231F20;
}
@media (max-width: 991px) {
  .step-numbers .step .step-label {
    position: relative;
    font-size: 14px;
    text-align: center;
  }
}
.step-numbers .step-1 {
  left: 14px;
}
.step-numbers .step-1 .checkmark {
  position: absolute;
  top: 0px;
  left: 20px;
}
.step-numbers .step-2 {
  left: 194px;
}
.step-numbers .step-2 .circle {
  border-color: #D03438;
}
.step-numbers .step-3 {
  left: 363px;
}
.step-numbers .step-3 .circle {
  border-color: #D03438;
}