
.step-container {
  position: relative;
  text-align: center;
  transform: translateY(-43%);
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--bs-success);
  line-height: 30px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  cursor: pointer; /* Added cursor pointer */
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50px;
  width: calc(100% - 100px);
  height: 2px;
  background-color: var(--bs-success);
  z-index: -1;
}

#multi-step-form{
  overflow-x: hidden;
}

.animate-fadeOutLeft {
    animation: fadeOutLeft .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.animate-fadeOutRight {
    animation: fadeOutRight .2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.progress-bar{
  background-color: var(--bs-success);
}