.wizard-stepNumber {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-normal-500, #666d80);
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px; /* 125% */
  border-radius: 112px;
  background: #fff;
  box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
  position: relative;
  user-select: none;
}

.wizard-stepNumber::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  opacity: 0;
  border: 1px solid #00b7fd;
  border-radius: 112px;
  transition: 300ms;
}

.wizard-stepNumber.wizard-stepNumber--active {
  background: var(--primary-400-base, #00b7fd);
  color: #fff;
  box-shadow: none;
}

.wizard-stepNumber.wizard-stepNumber--active::after {
  left: -5px;
  top: -5px;
  bottom: -5px;
  right: -5px;
  opacity: 1;
}

.wizard-steps-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.wizard-steps-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.wizard-steps-bottom span:nth-child(2) {
  margin-right: -53px;
}

.wizard-steps-bottom span {
  color: var(--text-normal-500, #666d80);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; /* 150% */
  transition: 300ms;
}

.wizard-steps-bottom span.wizard-stepText--active {
  color: var(--background-loud-900, #0d0d12);
}

.wizard-step-progress {
  display: flex;
  flex: 1;
  height: 6px;
  background-color: var(--background-normal-25, #f6f8fa);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.wizard-step-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-400-base, #00b7fd);
  border-radius: 5px;
  transform: translateX(-100%);
  transition: 600ms;
}
.wizard-step-progress.wizard-step-progress--full::after {
  transform: translateX(0);
}

.wizard-nextBtn {
  width: 120px;
  margin-left: auto;
}

.wizard-prevBtn {
  width: 120px;
}

.wizard-step {
  margin-top: 48px;
}

.wizard-form-horizontalInputWrapper {
  display: flex;
  gap: var(--horizontal-input-wrapper-gap, 24px);
}

.grade-average-input-container {
  align-items: flex-end;
  gap: 9.5px;
}

.grade-average-input-container .comma {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.wizard-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-container {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 56px;
  padding: 0 24px;
}

.wizard-careerChoices {
  margin-top: 30px !important;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
}

.repeater-item {
  display: flex;
  flex-direction: column;
  border-radius: 46px;
  gap: 8px;
  background: var(--background-white, #fff);
  padding: 0 20px;
  box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08),
    0px 1px 2px 0px rgba(164, 172, 185, 0.24);
  padding-top: 16px;
  padding-bottom: 12px;
}



.repeater-item-infoContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  max-height: 0;
  border: none;
}

.repeater-item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.repeater-item-infoRow {
  display: flex;
  justify-content: space-between;
}

.repeater-item-infoRow span:first-of-type {
  color: var(--text-muted-600, #36394a);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.repeater-item-infoRow span:last-of-type {
  color: var(--text-loud-900, #0d0d12);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  text-align: end;
}

.repeater-item--expanded .repeater-item-infoContainer,
.repeater-item .repeater-item-infoContainer {
  border-top: 1px solid var(--border-normal-50, #eceff3);
  padding-top: 16px;
  max-height: unset;
  overflow: visible;
  padding-bottom: 12px;
}

.repeater-item .ri-arrow-down-s-line {
  transition: 300ms;
}

.repeater-item--expanded .ri-arrow-down-s-line {
  transform: rotate(-180deg);
}

.repeater-item .ri-arrow-down-s-line {
  display: none;
}

.repeater-item.repeater-item--expanded,
.repeater-item {
  border-radius: 12px;
}

.wizard-addedUniversitiesList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.edit-mode .repeater-item-info,
.repeater-item .repeater-item-info {
  display: none;
}

.edit-mode .wizard-editUniversityForm,
.repeater-item .wizard-editUniversityForm {
  display: flex;
}

.wizard-editUniversityForm {
  display: none;
}

.repeater-remove-btn {
  display: flex;
  width: fit-content;
  color: #fff;
  box-shadow: none;
  background-color: #e03061;
}

.repeater-remove-btn:hover {
  background-color: #e04c76;
}

.repeater-remove-btn::after {
  content: none;
}

.repeater-item-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.data-repeater-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}



.unsaved .repeater-item-infoContainer,
.repeater-item .repeater-item-infoContainer {
  border-top: none;
}

.unsaved.repeater-item {
}

.data-repeater > p:first-child {
  color: var(--text-loud-900, #0d0d12);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.wizard-finishedContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wizard-finishedContainer > img {
  max-width: 100%;
}

.wizard-finishedContainer h4 {
  color: var(--text-loud-900, #0d0d12);
  text-align: center;
  font-family: "ClashGrotesk-medium";
  font-size: 32px;
  font-weight: 500;
  line-height: 40px; /* 125% */
}

.wizard-finishedContainer p {
  color: var(--text-normal-500, #666d80);
  text-align: center;
  font-size: 18px;
  line-height: 28px; /* 155.556% */
}

.wizard-finalBtns{
  display: flex;
  gap: 12px;
  white-space: nowrap;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.wizard-finalBtns a{
  width: fit-content;
}

.repeater-item-content{
  display: flex;
  gap: 10px;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .wizard-finalBtns a{
    width: 100%;
  }
  .wizard-form-horizontalInputWrapper {
    flex-direction: column;
  }
  .wizard-stepNumber {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
  .wizard-stepNumber.wizard-stepNumber--active::after {
    left: -3px;
    top: -3px;
    bottom: -3px;
    right: -3px;
  }
  .wizard-steps-bottom span {
    font-size: 10px;
  }
  .wizard-steps-bottom span:nth-child(2) {
    margin-right: -28px;
  }
  .wizard-steps-bottom {
    margin-top: 8px;
  }
  .wizard-step-progress {
    height: 3px;
  }
  .wizard-finishedContainer h4 {
    font-size: 24px;
    line-height: 30px;
  }
  .wizard-finishedContainer p {
    font-size: 16px;
  }
  .wizard-finishedContainer .d-flex.flex-lg-row {
    width: 100%;
  }
}







@media only screen and (max-width: 991px) {
  .grade-average-input-container{
    flex-direction: row;
  }
  .wizard-steps-bottom span:nth-child(3) {
    margin-right: -20px;
  }
  .wizard-steps-bottom span {
    max-width: 33%;
  }
  .wizard-steps-bottom span:nth-child(2) {
    margin-right: -3px;
  }
}
