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

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #007bff;
  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: #007bff;
  z-index: -1;
}

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



@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");


@media (min-width: 576px) {
  .custom-offcanvas-width {
    width: 95% !important;

  }
}

@media (min-width: 768px) {
  .custom-offcanvas-width {
    width: 75% !important;
  }
}

@media (min-width: 992px) {
  .custom-offcanvas-width {
    width: 50% !important;
  }
}

.offcanvas-body ol li {
  padding-bottom: 1rem;
}

ol {
  list-style: none;
  counter-reset: step;
}

li::before {
  content: counter(step);
  counter-increment: step;
  color: #cbbc8b;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  text-align: right;
  font-weight: 700;
}