html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.w-5{
  width:1.5rem;
}

.h-5{
  height:1.5rem;
}

.flex{
  display:flex;
}

.multi-step-indicator * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.multi-step-indicator {
  margin-top:40px;
  width: 100%;
  /*height:25vh;*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.multi-step-indicator ul {
  display: flex;
  align-items: center;
}

.multi-step-indicator ul li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  position: relative;
}

.multi-step-indicator .icons {
  font-size: 25px;
  color: #0d6efd;
  margin-bottom: 8px;
}

.multi-step-indicator .label {
  font-family: sans-serif;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: bold;
  color: #0d6efd;
  margin-top: 6px;
}

.multi-step-indicator .step {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #c3ced7;
  display: grid;
  place-items: center;
  color: #f8fcff;
  position: relative;
  cursor: pointer;
}

.multi-step-indicator .step p {
  font-size: 18px;
}

.multi-step-indicator .step .awesome {
  display: none;
}

.multi-step-indicator .active {
  background-color: #0d6efd;
}

.multi-step-indicator .active p {
  display: none;
}

.multi-step-indicator .active .awesome {
  display: flex;
}

.multi-step-indicator .step-track {
  padding-left: 75px;
  padding-right: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width:100%
}

.step-track-grid,
.label-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Match number of steps */
  text-align: center;
  gap: 30px;
}


.multi-step-indicator .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.multi-step-indicator .progress-wrapper {
  flex-grow: 1;
  /*max-width: 120px;*/
  margin: 33px 0px 0px 0px;
}

.multi-step-indicator .progress {
  height: 6px;
  background-color: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
  width: 100%; 
}

.multi-step-indicator .progress-bar {
  background-color: #0d6efd;
  height: 5vh;
  transition: width 0.3s ease;
  width: 0%;
}