
.mtapp-steps-root {
  width: 100%;
  margin: 0 0 28px 0;
  box-sizing: border-box;
}
.mtapp-steps-root,
.mtapp-steps-root * {
  box-sizing: border-box;
}
.mtapp-steps-card {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 28px 24px 28px;
  border: 1px solid rgba(190, 207, 217, 0.86);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.96));
  box-shadow: 0 12px 30px rgba(18, 48, 71, 0.08);
}
.mtapp-steps-list {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}
.mtapp-steps-list[data-total-steps="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mtapp-steps-list[data-total-steps="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.mtapp-steps-list[data-total-steps="5"] {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.mtapp-steps-list:before {
  content: "";
  position: absolute;
  top: 31px;
  height: 4px;
  border-radius: 999px;
  background: #d8e3ea;
  z-index: 0;
}
.mtapp-steps-list[data-total-steps="3"]:before {
  left: 16.666%;
  right: 16.666%;
}
.mtapp-steps-list[data-total-steps="4"]:before {
  left: 12.5%;
  right: 12.5%;
}
.mtapp-steps-list[data-total-steps="5"]:before {
  left: 10%;
  right: 10%;
}
.mtapp-step {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.mtapp-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  color: #637483;
  text-align: center;
  text-decoration: none !important;
  line-height: 1.3;
}
.mtapp-step-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  border: 2px solid #d2dee7;
  border-radius: 50%;
  background: #f7fbfd;
  color: #607383;
  font-size: 125%;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(18, 48, 71, 0.08);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.mtapp-step-label {
  display: block;
  min-width: 0;
  max-width: 220px;
  margin-top: 10px;
  color: #30485c;
  font-size: 104%;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.mtapp-step.is-complete .mtapp-step-badge {
  border-color: #617687;
  background: #617687;
  color: #ffffff;
}
.mtapp-step.is-active .mtapp-step-badge {
  border-color: #123047;
  background: #123047;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 48, 71, 0.22);
  transform: translateY(-1px);
}
.mtapp-step.is-active .mtapp-step-label {
  color: #123047;
}
.mtapp-step.is-upcoming .mtapp-step-label {
  color: #6f8090;
}
.mtapp-step-link:hover .mtapp-step-badge {
  border-color: #123047;
  background: #123047;
  color: #ffffff;
}
.mtapp-step-link:hover .mtapp-step-label {
  color: #123047;
}
.mtapp-step-link:focus {
  outline: none;
}
.mtapp-step-link:focus-visible .mtapp-step-badge {
  outline: 3px solid rgba(18, 48, 71, 0.24);
  outline-offset: 3px;
}
html[dir="rtl"] .mtapp-steps-card,
.mtapp-steps-root[dir="rtl"] .mtapp-steps-card {
  direction: rtl;
}
@media screen and (max-width: 1024px) {
  .mtapp-steps-root {
    margin: 0 0 24px 0;
    padding: 0 12px;
  }
  .mtapp-steps-card {
    padding: 20px 18px;
    border-radius: 18px;
  }
  .mtapp-steps-list {
    display: block;
  }
  .mtapp-steps-list:before {
    top: 26px;
    bottom: 26px;
    left: 26px;
    right: auto;
    width: 4px;
    height: auto;
  }
  .mtapp-steps-list[data-total-steps="3"]:before,
  .mtapp-steps-list[data-total-steps="4"]:before,
  .mtapp-steps-list[data-total-steps="5"]:before {
    left: 26px;
    right: auto;
  }
  .mtapp-steps-root[dir="rtl"] .mtapp-steps-list:before,
  html[dir="rtl"] .mtapp-steps-list:before {
    left: auto;
    right: 26px;
  }
  .mtapp-step + .mtapp-step {
    margin-top: 18px;
  }
  .mtapp-step-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
  }
  .mtapp-steps-root[dir="rtl"] .mtapp-step-item,
  html[dir="rtl"] .mtapp-step-item {
    text-align: right;
  }
  .mtapp-step-badge {
    width: 52px;
    min-width: 52px;
    height: 52px;
    font-size: 112%;
  }
  .mtapp-step-label {
    max-width: none;
    margin-top: 0;
    font-size: 102%;
  }
}
@media screen and (max-width: 480px) {
  .mtapp-steps-root {
    padding: 0 10px;
  }
  .mtapp-steps-card {
    padding: 18px 16px;
  }
  .mtapp-step-label {
    font-size: 98%;
  }
}
