.jala-stepper-container.grey-dark .jala-stepper {
  --awb-custom_color_6: var(--color-grey-50);
}

.jala-stepper-container.grey-light {
  --bg-color: var(--color-grey-0);
}

.jala-stepper-container.grey-dark .jala-container__text-block {
  --eyebrow-bg-color: var(--color-celtic-700);
  --awb-custom_color_26: var(--color-indigo-100);

  --awb-color7: var(--color-grey-100);
  --awb-custom_color_2: var(--color-indigo-50);
  --awb-custom_color_6: var(--color-grey-50);
  --awb-color8: var(--color-grey-50);
}

.jala-stepper {
  position: relative;
  display: flex;
  flex-direction: row;
  width: fit-content;
  border-radius: 48px;
  border: 2px solid var(--color-grey-200);
  overflow: visible;
  color: var(--color-grey-200);
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  padding: var(--spacing-sm);
  width: 100%;
  gap: 64px;
}

.jala-stepper .item {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0;
}

.jala-stepper > .item.active:last-child .check-active-icon {
    --awb-circlecolor: var(--awb-custom_color_84) !important;
    --awb-circlecolor-hover: var(--awb-custom_color_84) !important;
    --awb-circlebordercolor: var(--awb-color1) !important;
    --awb-circlebordercolor-hover: var(--awb-color1) !important;
}
.jala-stepper .indicator {
  position: absolute;
  background: linear-gradient(359.6deg, #881420 0.38%, #EF293D 99.68%);
  border-radius: 999px;
  transition:
    all .5s cubic-bezier(.68,-.55,.265,1.55);
  z-index: 0;
}

.jala-stepper .icon-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.jala-stepper .icon {
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-grey-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.3s;
}

.jala-stepper .check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.3s;
  border-radius: var(--radius-lg);
}

.jala-stepper .text {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jala-stepper .active .text {
  color: var(--color-grey-50);
}

.jala-stepper .active .icon {
  color: var(--color-grey-50);
  border-color: var(--color-grey-200);
}

.jala-stepper .checked .check {
  opacity: 1;
  transform: scale(1);
}

.jala-stepper .checked .icon {
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  .jala-stepper .icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .jala-stepper  .check-active-icon {
    --awb-width:44px !important;
    --awb-height:44px !important;
    --awb-line-height: 40px !important;
  }
  .jala-stepper .item {
    flex-direction: column;
    gap: 0;
  }

  .jala-stepper { 
    gap: 56px;
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}

@media only screen and (max-width: 640px) {
  .jala-stepper {
    gap: var(--gap-lg);
    flex-direction: column;
    width: 100%;
  }
  .jala-stepper .item {
    flex-direction: row;
    gap: var(--gap-sm);
  }

  .jala-stepper .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .jala-stepper  .check-active-icon {
    --awb-width:40px !important;
    --awb-height:40px !important;
    --awb-line-height: 36px !important;
  }
}
