.progress {
  --placeholder-color: rgba(172, 204, 232, 1);
  --indicator-color: var(--color-navy-200);

  width: 100%;
  overflow: hidden;
  background-color: var(--placeholder-color);
  height: 20px;
  border-radius: 8px;
}

.indicator {
  top: 0;
  left: 0;
  bottom: 0;
  width: 25%;
  background-color: var(--indicator-color);
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  border-radius: 100vmax;
  transition: width 400ms linear;
}

.tabs [aria-current="true"] {
  background-color: var(--color-navy-200);
  color: white;
  z-index: 1;
}

.tabs button {
  color: var(--color-navy-200);
  background-color: white;
  border-radius: 8px !important;
}

.wizard-wrapper {
  width: min(100%, 618px);
}

.wizard-item:not(:last-child) {
  flex: 1;
}

.wizard-item .wizard-indicator .wizard-circle {
  --border-color: #6C757D;
  --background-color: #DEE2E6;
  --aspect: 20px;
  width: var(--aspect);
  height: var(--aspect);
  border-radius: 50%;
  background-color: var(--background-color);
  border: 5px solid var(--border-color);
  flex-shrink: 0;
}

.wizard-item .wizard-indicator .wizard-line {
  width: 100%;
  height: 3px;
  background-color: rgba(224, 224, 231, 1);
}

.wizard-item span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(137, 143, 143, 1);
  --offset: 0px;
  transform: translateX(var(--offset));
}

@media (min-width: 1000px){
  .wizard-item span {
    --offset: -20px;
  }
}

.wizard-item.active .wizard-indicator .wizard-circle {
  --border-color: var(--color-navy-200);
  --background-color: white;
}

.wizard-item.active.done .wizard-indicator .wizard-circle {
  position: relative;
  background-color: var(--color-navy-200);
}

.wizard-item.active.done .wizard-indicator .wizard-circle::before {
  position: absolute;
  content: "";
  background: 'public/images/done.png';
  width: 12px;
  height: 9px;
  left: -2px;
  top: 1px;
  background-repeat: no-repeat;
}

.wizard-item.active .wizard-indicator .wizard-line {
  background-color: var(--color-navy-200);
}

.wizard-item.active span {
  color: var(--color-dark);
}

.form-item {
  display: none;
}

.form-item.active {
  display: flex;
  gap: 1rem;
}

.form-item form {
  display: none;
}

.form-item form.active {
  display: flex;
  gap: 0.5rem;
}

.list {
  max-height: 350px;
  overflow-y: auto;
}
.list2 {
  max-height: var(--height, 400px);
  overflow-y: auto;
}

.card.text-dark {
  list-style-image: url(assets/img/index/done-icon-black.svg);
}

.card.text-light {
  list-style-image: url(assets/img/index/done-icon-white.svg);
}

@media (max-width: 1000px){
  .tabs {
    overflow-x: auto;
  }
  .tabs button {
    flex-shrink: 0;
  }
}



