.step-nav {
  max-width: 820px;
  margin: 80px auto;
  border: 1px solid #DDDDDD;
  border-radius: 20px;
  padding: 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

@media (max-width: 992px) {
  .step-nav {
      padding: 20px;
      gap: 10px;
      margin: 45px auto;
  }
}

.step-nav__line {
  width: 100%;
  height: 1px;
  background-color: #DDDDDD;
  flex: 1;
  min-width: 30px;
}

.step-nav__item {
  font-size: 18px;
  font-weight: 600;
  color: #BCBCBC;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .step-nav__item {
      font-size: 14px;
      text-align: center;
  }

  .step-nav__item svg {
      display: none;
  }
}

.step-nav__item.current,
.step-nav__item:hover {
  color: #343434;
}

.step-nav__item.current svg,
.step-nav__item:hover svg {
  color: #14A483;
}

.step-nav__item.disabled {
  cursor: not-allowed;
}

#cart,
#cart #wrapper {
  background: #fff;
}