:root {
  --aunt-steps-vertical-top: calc(var(--aunt-font-size-md) * 1.5 / 2);
  --aunt-steps-vertical-content-padding-bottom: var(--aunt-padding-lg);
  --aunt-steps-dot-size: var(--aunt-padding-xs);
  --aunt-steps-dot-border-radius: var(--aunt-border-radius-max);
  --aunt-steps-content-title-font-size: var(--aunt-font-size-md);
  --aunt-steps-content-description-font-size: var(--aunt-font-size-sm);
  --aunt-steps-content-description-color: var(--aunt-gray-5);
}
.aunt-steps {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.aunt-steps--horizontal {
  justify-content: space-between;
}
.aunt-steps--horizontal .aunt-steps-item {
  flex: 1;
}
.aunt-steps--horizontal .aunt-steps-item__indicator {
  width: 100%;
  padding: var(--aunt-padding-sm) 0;
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.aunt-steps--horizontal .aunt-steps-item__indicator::before {
  position: absolute;
  content: '';
  left: 50%;
  top: 50%;
  height: var(--aunt-hd);
  transform: translateY(-50%);
  width: 100%;
  background-color: currentColor;
}
.aunt-steps--horizontal .aunt-steps-item__indicator--icon {
  text-align: center;
  z-index: 1;
}
.aunt-steps--horizontal .aunt-steps-item__content {
  text-align: center;
  padding: 0 var(--aunt-adding-xs) 0;
}
.aunt-steps--vertical {
  flex-direction: column;
}
.aunt-steps--vertical .aunt-steps-item {
  display: flex;
  align-items: stretch;
}
.aunt-steps--vertical .aunt-steps-item__indicator {
  flex: none;
  position: relative;
  margin-right: var(--aunt-padding-sm);
}
.aunt-steps--vertical .aunt-steps-item__indicator::before {
  content: '';
  position: absolute;
  left: 50%;
  top: var(--aunt-steps-vertical-top);
  bottom: 0;
  width: var(--aunt-hd);
  height: 100%;
  transform: translateX(-50%);
  background-color: currentColor;
}
.aunt-steps--vertical .aunt-steps-item__indicator--icon {
  position: relative;
  top: var(--aunt-steps-vertical-top);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: currentColor;
}
.aunt-steps--vertical .aunt-steps-item__content {
  padding-bottom: var(--aunt-steps-vertical-content-padding-bottom);
}
.aunt-steps-item__dot {
  display: block;
  width: var(--aunt-steps-dot-size);
  height: var(--aunt-steps-dot-size);
  background: currentColor;
  border-radius: var(--aunt-steps-dot-border-radius);
}
.aunt-steps-item__content {
  flex: auto;
  font-size: var(--aunt-steps-content-title-font-size);
}
.aunt-steps-item__content--title {
  font-size: var(--aunt-steps-content-title-font-size);
}
.aunt-steps-item__content--description {
  font-size: var(--aunt-steps-content-description-font-size);
  color: var(--aunt-steps-content-description-color);
}
.aunt-steps-item:last-of-type .aunt-steps-item__indicator::before {
  width: 0;
  background: transparent;
}
