@font-face {
  font-family: "lato-700";
  src: url("../fonts/lato-latin-700.woff2");
}

@font-face {
  font-family: "lato-regular";
  src: url("../fonts/lato-regular.woff2");
}

#tracking {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  margin: auto
}

#statusWrapper h2 {
  font-size: 24px !important;
}

#tracking #stepOne {
  margin-bottom: 50px;
}

#statusWrapper {
  font-family: lato-regular;
  background-color: #ddd;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
}

.status-wrapper div {
  margin-bottom: 10px;
}

.stepper-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
  width: 100%;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px dashed #212d45;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px dashed #212d45;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  background: #212d45;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
  background-color: #F15808;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #F15808;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

.step-icon {
  width: 80px;
  height: 80px;
}

#tracking a {
  background-color: #212d45;
  margin-top: 20px;
  margin-bottom: 50px;
  width: 200px;
}


#trackingNumber {
  width: 100%;
  display: block;
  border-radius: 10px;
  padding: 15px 20px !important;
  margin: 0 auto;
  background-color: #eee;
}

#tracking .error {
  color: red;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}

#tracking .input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#tracking .loading {
  width: 200px;
}

#tracking .delivery-date {
  color: #F15808;
}

.status-wrapper {
  margin-bottom: 70px;
}

.status-wrapper > div {
  font-weight: 700;
}


#tracking .accordion .panel-head {
  background-color: #212d45;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

#tracking .accordion .panel {
  border: 1px solid #212d45;
  padding: 10px 10px 0 10px;
  background-color: #fff;
}

#tracking .accordion .flex-row {
  margin-bottom: -20px;
}

.font-bold {
  font-weight: 700;
}

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}