.aqu-checkout_steps {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .aqu-checkout_steps {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .aqu-checkout_steps img {
    margin-bottom: 1.5rem;
  }
}
.aqu-checkout_steps__step {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 0.7rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .aqu-checkout_steps__step {
    flex: unset;
    flex-direction: row;
  }
}
.aqu-checkout_steps__number {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.9;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  background: var(--color-background-secondary-dark);
  color: var(--color-text-light);
}
.aqu-checkout_steps__step--active .aqu-checkout_steps__number {
  color: var(--color-background);
  background: var(--color-secondary);
}

.aqu-checkout_steps__text {
  font-size: var(--font-size-s);
  color: var(--color-text-light);
  text-align: center;
}
@media (min-width: 768px) {
  .aqu-checkout_steps__text {
    font-size: var(--font-size-l);
    text-align: left;
  }
}
.aqu-checkout_steps__step--active .aqu-checkout_steps__text {
  color: var(--color-text);
}
@media (max-width: 767px) {
  .aqu-checkout_steps__text--desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .aqu-checkout_steps__text--mobile {
    display: none;
  }
}