.steps {
  --si-steps-padding-y: 1.5rem;
  --si-steps-padding-x: 1.5rem;
  --si-steps-number-size: 7.625rem;
  --si-steps-number-inner-size: 5.625rem;
  --si-steps-number-size-sm: 5rem;
  --si-steps-number-inner-size-sm: 3.5rem;
  --si-steps-number-border-radius: 50%;
  --si-steps-number-bg: var(--bs-secondary-light);
  --si-steps-number-inner-bg: #fff;
  --si-steps-number-inner-box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11, 15, 25, 0.06), 0 0.125rem 0.4rem -0.0625rem rgba(11, 15, 25, 0.03);
  --si-steps-number-font-size: 2rem;
  --si-steps-number-font-size-sm: 1.5rem;
  --si-steps-number-color: var(--si-heading-color);
  --si-steps-connect-width: 1px;
  --si-steps-connect-color: #999999;
  display: flex;
  flex-direction: column;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  padding: var(--si-steps-padding-y) 0;
}

.step:first-child {
  padding-top: 0 !important;
}

.step:last-child {
  padding-bottom: 0 !important;
}

.step::before, .step::after {
  position: absolute;
  left: calc(var(--si-steps-number-size)*.5);
  width: var(--si-steps-connect-width);
  height: 50%;
  content: "";
}

.step::before {
  top: 0;
}

.step::after {
  top: 50%;
}

.step:not(:first-child)::before {
  background-color: var(--si-steps-connect-color);
}

.step:not(:last-child)::after {
  background-color: var(--si-steps-connect-color);
}

.step-number {
  position: relative;
  z-index: 2;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: var(--si-steps-number-size);
  height: var(--si-steps-number-size);
  border-radius: var(--si-steps-number-border-radius);
  color: var(--si-steps-number-color);
  background-color: var(--si-steps-number-bg);
  font-size: var(--si-steps-number-font-size);
  font-weight: 800;
}

.step-number .step-number-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--si-steps-number-inner-size);
  height: var(--si-steps-number-inner-size);
  border-radius: var(--si-steps-number-border-radius);
  background-color: var(--si-steps-number-inner-bg);
  box-shadow: var(--si-steps-number-inner-box-shadow);
}

.step-body {
  padding-left: var(--si-steps-padding-x);
}

.steps-sm .step::before, .steps-sm .step::after {
  left: calc(var(--si-steps-number-size-sm)*.5);
}

.steps-sm .step-number {
  width: var(--si-steps-number-size-sm);
  height: var(--si-steps-number-size-sm);
  font-size: var(--si-steps-number-font-size-sm);
}

.steps-sm .step-number .step-number-inner {
  width: var(--si-steps-number-inner-size-sm);
  height: var(--si-steps-number-inner-size-sm);
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps {
    flex-direction: row;
    margin-right: calc(var(--si-steps-padding-x)*-1);
    margin-left: calc(var(--si-steps-padding-x)*-1);
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm .step {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 var(--si-steps-padding-x);
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm .step::before, .steps-horizontal-sm .step::after {
    top: calc(var(--si-steps-number-size)*.5);
    height: var(--si-steps-connect-width);
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm .step::before {
    left: 0;
    display: none;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm .step::after {
    left: var(--si-steps-padding-x);
    width: 100%;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-sm .step::before, .steps-horizontal-sm.steps-sm .step::after {
    top: calc(var(--si-steps-number-size-sm)*.5);
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm .step-number {
    margin-bottom: var(--si-steps-padding-y);
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm .step-body {
    padding-left: 0;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-center {
    text-align: center;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-center .step::after {
    left: 50%;
    width: 50%;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-center .step:not(:first-child)::before {
    display: block;
    width: 50%;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-center .step-number {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-end {
    text-align: right;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-end .step:not(:first-child)::before {
    display: block;
    width: calc(100% - var(--si-steps-padding-x));
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-end .step::after {
    right: 0;
    left: auto;
    width: var(--si-steps-padding-x);
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-end .step:last-child::after {
    display: none;
  }
}

@media (min-width: 500px) {
  .steps-horizontal-sm.steps-end .step-number {
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps {
    flex-direction: row;
    margin-right: calc(var(--si-steps-padding-x)*-1);
    margin-left: calc(var(--si-steps-padding-x)*-1);
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md .step {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 var(--si-steps-padding-x);
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md .step::before, .steps-horizontal-md .step::after {
    top: calc(var(--si-steps-number-size)*.5);
    height: var(--si-steps-connect-width);
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md .step::before {
    left: 0;
    display: none;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md .step::after {
    left: var(--si-steps-padding-x);
    width: 100%;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-sm .step::before, .steps-horizontal-md.steps-sm .step::after {
    top: calc(var(--si-steps-number-size-sm)*.5);
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md .step-number {
    margin-bottom: var(--si-steps-padding-y);
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md .step-body {
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-center {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-center .step::after {
    left: 50%;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-center .step:not(:first-child)::before {
    display: block;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-center .step-number {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-end {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-end .step:not(:first-child)::before {
    display: block;
    width: calc(100% - var(--si-steps-padding-x));
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-end .step::after {
    right: 0;
    left: auto;
    width: var(--si-steps-padding-x);
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-end .step:last-child::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .steps-horizontal-md.steps-end .step-number {
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps {
    flex-direction: row;
    margin-right: calc(var(--si-steps-padding-x)*-1);
    margin-left: calc(var(--si-steps-padding-x)*-1);
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg .step {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 var(--si-steps-padding-x);
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg .step::before, .steps-horizontal-lg .step::after {
    top: calc(var(--si-steps-number-size)*.5);
    height: var(--si-steps-connect-width);
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg .step::before {
    left: 0;
    display: none;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg .step::after {
    left: var(--si-steps-padding-x);
    width: 100%;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-sm .step::before, .steps-horizontal-lg.steps-sm .step::after {
    top: calc(var(--si-steps-number-size-sm)*.5);
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg .step-number {
    margin-bottom: var(--si-steps-padding-y);
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg .step-body {
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-center {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-center .step::after {
    left: 50%;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-center .step:not(:first-child)::before {
    display: block;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-center .step-number {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-end {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-end .step:not(:first-child)::before {
    display: block;
    width: calc(100% - var(--si-steps-padding-x));
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-end .step::after {
    right: 0;
    left: auto;
    width: var(--si-steps-padding-x);
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-end .step:last-child::after {
    display: none;
  }
}

@media (min-width: 992px) {
  .steps-horizontal-lg.steps-end .step-number {
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps {
    flex-direction: row;
    margin-right: calc(var(--si-steps-padding-x)*-1);
    margin-left: calc(var(--si-steps-padding-x)*-1);
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl .step {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 var(--si-steps-padding-x);
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl .step::before, .steps-horizontal-xl .step::after {
    top: calc(var(--si-steps-number-size)*.5);
    height: var(--si-steps-connect-width);
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl .step::before {
    left: 0;
    display: none;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl .step::after {
    left: var(--si-steps-padding-x);
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-sm .step::before, .steps-horizontal-xl.steps-sm .step::after {
    top: calc(var(--si-steps-number-size-sm)*.5);
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl .step-number {
    margin-bottom: var(--si-steps-padding-y);
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl .step-body {
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-center {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-center .step::after {
    left: 50%;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-center .step:not(:first-child)::before {
    display: block;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-center .step-number {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-end {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-end .step:not(:first-child)::before {
    display: block;
    width: calc(100% - var(--si-steps-padding-x));
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-end .step::after {
    right: 0;
    left: auto;
    width: var(--si-steps-padding-x);
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-end .step:last-child::after {
    display: none;
  }
}

@media (min-width: 1200px) {
  .steps-horizontal-xl.steps-end .step-number {
    margin-left: auto;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps {
    flex-direction: row;
    margin-right: calc(var(--si-steps-padding-x)*-1);
    margin-left: calc(var(--si-steps-padding-x)*-1);
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl .step {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    padding: 0 var(--si-steps-padding-x);
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl .step::before, .steps-horizontal-xxl .step::after {
    top: calc(var(--si-steps-number-size)*.5);
    height: var(--si-steps-connect-width);
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl .step::before {
    left: 0;
    display: none;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl .step::after {
    left: var(--si-steps-padding-x);
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-sm .step::before, .steps-horizontal-xxl.steps-sm .step::after {
    top: calc(var(--si-steps-number-size-sm)*.5);
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl .step-number {
    margin-bottom: var(--si-steps-padding-y);
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl .step-body {
    padding-left: 0;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-center {
    text-align: center;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-center .step::after {
    left: 50%;
    width: 50%;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-center .step:not(:first-child)::before {
    display: block;
    width: 50%;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-center .step-number {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-end {
    text-align: right;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-end .step:not(:first-child)::before {
    display: block;
    width: calc(100% - var(--si-steps-padding-x));
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-end .step::after {
    right: 0;
    left: auto;
    width: var(--si-steps-padding-x);
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-end .step:last-child::after {
    display: none;
  }
}

@media (min-width: 1400px) {
  .steps-horizontal-xxl.steps-end .step-number {
    margin-left: auto;
  }
}

.steps-horizontal.steps {
  flex-direction: row;
  margin-right: calc(var(--si-steps-padding-x)*-1);
  margin-left: calc(var(--si-steps-padding-x)*-1);
}

.steps-horizontal .step {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  padding: 0 var(--si-steps-padding-x);
}

.steps-horizontal .step::before, .steps-horizontal .step::after {
  top: calc(var(--si-steps-number-size)*.5);
  height: var(--si-steps-connect-width);
}

.steps-horizontal .step::before {
  left: 0;
  display: none;
}

.steps-horizontal .step::after {
  left: var(--si-steps-padding-x);
  width: 100%;
}

.steps-horizontal.steps-sm .step::before, .steps-horizontal.steps-sm .step::after {
  top: calc(var(--si-steps-number-size-sm)*.5);
}

.steps-horizontal .step-number {
  margin-bottom: var(--si-steps-padding-y);
}

.steps-horizontal .step-body {
  padding-left: 0;
}

.steps-horizontal.steps-center {
  text-align: center;
}

.steps-horizontal.steps-center .step::after {
  left: 50%;
  width: 50%;
}

.steps-horizontal.steps-center .step:not(:first-child)::before {
  display: block;
  width: 50%;
}

.steps-horizontal.steps-center .step-number {
  margin-right: auto;
  margin-left: auto;
}

.steps-horizontal.steps-end {
  text-align: right;
}

.steps-horizontal.steps-end .step:not(:first-child)::before {
  display: block;
  width: calc(100% - var(--si-steps-padding-x));
}

.steps-horizontal.steps-end .step::after {
  right: 0;
  left: auto;
  width: var(--si-steps-padding-x);
}

.steps-horizontal.steps-end .step:last-child::after {
  display: none;
}

.steps-horizontal.steps-end .step-number {
  margin-left: auto;
}

@media (max-width: 499.98px) {
  .steps:not(.steps-sm) .step {
    padding: calc(var(--si-steps-padding-y)*.625) 0;
  }
}

@media (max-width: 499.98px) {
  .steps:not(.steps-sm) .step::before, .steps:not(.steps-sm) .step::after {
    left: calc(var(--si-steps-number-size)*.625*.5);
  }
}

@media (max-width: 499.98px) {
  .step-number {
    font-size: calc(var(--si-steps-number-font-size)*.625) !important;
  }
}

@media (max-width: 499.98px) {
  .steps:not(.steps-sm) .step-number {
    width: calc(var(--si-steps-number-size)*.625);
    height: calc(var(--si-steps-number-size)*.625);
  }
}

@media (max-width: 499.98px) {
  .steps:not(.steps-sm) .step-number .step-number-inner {
    width: calc(var(--si-steps-number-inner-size)*.625);
    height: calc(var(--si-steps-number-inner-size)*.625);
  }
}

@media (max-width: 499.98px) {
  .step-body {
    padding-left: calc(var(--si-steps-padding-x)*.875);
  }
}

