.progress-wrapper {
  z-index: 9;
  white-space: nowrap;
  background: var(--background-color);
  position: sticky;
  top: 0;
  --color-inactive: var(--accent-color);
}
.progress-wrapper > div {
  padding: 10px 12px;
}
@media (min-width: 992px) {
  .progress-wrapper > div {
    padding: 15px 25px;
  }
}
.progress-wrapper.disabled {
  pointer-events: none;
}
.progress-wrapper.buttons {
  display: grid;
  grid-template-columns: max-content repeat(5, 30vw);
  border-bottom: var(--main-border);
}
@media (min-width: 768px) {
  .progress-wrapper.buttons {
    grid-template-columns: max-content repeat(5, 1fr);
  }
}
@media (max-width: 767px) {
  .progress-wrapper.buttons {
    overflow-x: scroll;
  }
}
.progress-wrapper.buttons::-webkit-scrollbar {
  display: none;
}
.progress-wrapper .logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .progress-wrapper .logo-wrapper .logo {
    max-width: 100px;
  }
}
.progress-button {
  display: flex;
  gap: 0 15px;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: #FFF;
  border-left: var(--main-border);
  flex-wrap: wrap;
}
.progress-button.active:has(~ .highest-step) .number {
  background: var(--primary-color) !important;
  color: var(--accent-color) !important;
}
.progress-button.active {
  background: var(--accent-color);
}
.progress-button.active .text {
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .progress-button.active .text {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .progress-button.active .text {
    font-size: 16px;
  }
}
.progress-button.disabled {
  cursor: default;
  pointer-events: none;
}
.progress-button:has(~ .highest-step) .number {
  background: var(--accent-color);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  padding: 0.4em;
  font-size: 12px;
}
@media (min-width: 768px) {
  .progress-button:has(~ .highest-step) .number {
    font-size: min(16px, 2vw);
  }
}
.progress-button:has(~ .highest-step) .number:after {
  content: "\e919";
  font-family: 'icomoon-shop' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.progress-button .button-icon {
  height: 18px;
  width: auto;
}
@media (min-width: 992px) {
  .progress-button .button-icon {
    height: min(30px, 1.8vw);
  }
}
.progress-button .number {
  color: var(--color);
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-family: var(--font-family--primary-headline-bold);
  font-style: var(--font-style--primary-headline-bold);
  font-weight: var(--font-weight--primary-headline-bold);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .progress-button .number {
    font-size: min(34px, 2vw);
  }
}
.progress-button .number:after {
  content: attr(data-number);
}
.progress-button .text {
  line-height: 1;
  font-size: 12px;
  color: rgba(from var(--color) r g b / 0.6);
  flex: 0 0 100%;
  margin-top: 0.5em;
  order: 0;
  font-family: var(--font-family--primary-headline-bold);
  font-style: var(--font-style--primary-headline-bold);
  font-weight: var(--font-weight--primary-headline-bold);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .progress-button .text {
    margin-top: 4px;
  }
}
@media (min-width: 768px) {
  .progress-button .text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .progress-button .text {
    font-size: 18px;
  }
}
/*# sourceMappingURL=/xassets/uncompressed/source_map/148.css.css.map */