.stepper-stepper {

  position: relative;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  height: 45px;
  max-width: 647px;
  width: 100%;
}

.stepper-stepper-line {

  position: absolute;
  width: 80%;
  top: 12px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 1px;
  background: #00283c3c;
  z-index: -1;
}

.stepper-stepper-step {

  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stepper-stepper-step:hover {
  cursor: pointer;
}

.stepper-stepper-step:hover .stepper-stepper-step-icons {
  border: 1px solid #53aec2;
}

.stepper-stepper-step-icons {

  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.stepper-stepper-step-icon {

  display: none;
}

.stepper-stepper-step-icons .stepper-stepper-step-icon:first-child {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #79cbdb;
}

.stepper-stepper-title {

  margin-top: auto;
  color: #00283c7a;
}

/* Active state styling */
.stepper-active .stepper-stepper-step-icons {
  background: linear-gradient(to bottom, #52b8cd, #79cbdb);
}

.stepper-active .stepper-stepper-title {
  color: #00283c;
}

.stepper-active .stepper-stepper-step-icons .stepper-stepper-step-icon:first-child {
  background: white;
}

/* Completed state styling */
.stepper-completed .stepper-stepper-step-icons {
  background: linear-gradient(to bottom, #52b8cd, #79cbdb);
}

.stepper-completed .stepper-stepper-title {
  color: #00283c;
}

.stepper-completed .stepper-stepper-step-icons .stepper-stepper-step-icon:first-child {
  display: none;
}

.stepper-completed .stepper-stepper-step-icons .stepper-stepper-step-icon:last-child {
  display: block;
}

/* Disabled state styling */
.stepper-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.stepper-disabled .stepper-stepper-step {
  cursor: not-allowed;
}

.stepper-disabled .stepper-stepper-step:hover .stepper-stepper-step-icons {
  border: none;
}

@media screen and (max-width: 1024px) {
  .stepper-stepper {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .stepper-stepper-step {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .stepper-stepper-step {
    font-size: 10px;
  }
}
