.tw-stepper {
  padding-bottom: 24px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .tw-stepper {
    padding-bottom: 0;
  }
}
.tw-stepper__step {
  position: absolute;
  top: 0;
  list-style-type: none;
}
.tw-stepper__step--active .tw-stepper__step-label {
  cursor: default;
  color: #37517e;
  color: var(--color-content-primary);
}
.tw-stepper__step--clickable .tw-stepper__step-label {
  color: #0097c7;
  color: var(--color-content-accent);
  transition: color 0.15s ease-in-out;
  line-height: 0;
  border-radius: 2px;
}
.np-theme-personal .tw-stepper__step--clickable .tw-stepper__step-label {
  color: #5d7079;
  color: var(--color-content-secondary);
  top: 0;
}
.tw-stepper__step--has-tooltip {
  cursor: pointer;
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .tw-stepper__step:first-child .tooltip-inner {
    transform: translateX(calc(50% - 32px));
  }
  .tw-stepper__step:last-child .tooltip-inner {
    transform: translateX(calc(-50% + 32px));
  }
}
.tw-stepper__step-label {
  position: absolute;
  top: 0;
  color: #5d7079;
  color: var(--color-content-secondary);
  transition: color 0.6s ease-in-out;
  white-space: nowrap;
  transform: translateX(-50%)  ;
}
[dir="rtl"] .tw-stepper__step-label {
  transform: translateX(50%)  ;
}
.tw-stepper .tooltip {
  top: 24px !important;
  white-space: nowrap;
}
.tw-stepper .tooltip .tooltip-inner {
  max-width: 100%;
}
.tw-stepper .tw-tooltip-container {
  display: inline-block;
}
.tw-stepper-steps {
  position: relative;
  padding: 0   ;
}
[dir="rtl"] .tw-stepper-steps {
  padding: 0   ;
}
.progress-bar {
  -webkit-backface-visibility: hidden;
  background-color: var(--color-interactive-primary);
  transition: width 0.6s ease-in-out;
  will-change: width;
}
