.status-step {
  text-align: center;
  position: relative;
  flex: 1;
}
.status-step .step-active {
  font-weight: bold;
  color: green;
}
.status-step .step-inactive {
  color: gray;
}
.status-step .circle,
.custom-step .circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: gray;
  display: inline-block;
  line-height: 40px;
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  font-size: 20px;
}
.status-step .circle-active,
.custom-step .circle-active {
  background: green;
}
.connector {
  position: absolute;
  top: 20px;
  left: 60px;
  height: 2px;
  background-color: gray;
  z-index: 0;
}
.connector:after {
  content: "";
  background-color: green;
  height: 2px;
  width: var(--connector-after-width, 0);
  display: block;
}
#tracking-result .status-step i {
  font-family: "FontAwesome" !important;
  font-style: normal;
  padding-top: 10px;
}
@media (max-width: 1170px) {
  #tracking-result .status-step {
    display: flex;
    align-items: center;
  }
  #tracking-result .status-step .circle {
    margin-right: 10px;
  }
  #tracking-result .tracking-container {
    flex-direction: column;
  }
  .connector:after {
    content: "";
    background-color: green;
    width: 2px;
    height: var(--connector-after-height, 0);
    display: block;
  }
  #tracking-result .connector {
    position: absolute;
    top: auto;
    left: auto;
    width: 3px;
    margin-left: 20px;
  }
  .step-inactive,
  .step-active {
    text-align: left;
    margin-left: 20px;
    padding-bottom: 8px;
  }
}
#tracking-result .h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 26px;
  color: #1f78d1;
}
.status-step.custom-step {
  flex: initial;
}
