.dropdown .btn, .input-group-btn .search-btn {
  margin-bottom: 0;
}
.dropdown-menu {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media (min-width: 40.0625em) {
  .dropdown-menu {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.31579;
  }
}
.row-error {
  font-weight: 700;
  border-left: 5px solid #d4351c;
  color: #d4351c;
}
.stage-counter {
  display: flex;
  gap: 1%;
  list-style-type: none;
  color: #0b0c0c;
  padding: 0;
}
.stage-counter__card {
  font-family: "GDS Transport",arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  border: 1px solid #b1b4b6;
  flex-basis: 25%;
}
.stage-counter__card-title {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  padding: 15px 15px;
  background-color: #f3f2f1;
}
@media (min-width: 40.0625em) {
  .stage-counter__card-title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
    padding: 15px 20px;
  }
}
.stage-counter__card-content {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  padding: 15px 15px;
}
@media (min-width: 40.0625em) {
  .stage-counter__card-content {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
    padding: 15px 20px;
  }
}
.status-tracker {
  display: flex;
  overflow-x: auto;
  gap: 1%;
  min-height: 95px;
  padding: 0 28px 0 0;
  margin-bottom: 30px;
  list-style-type: none;
}
.status-tracker::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.status-tracker::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}
.status-tracker::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}
.status-tracker::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}
.status-tracker::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.9);
}
.status-tracker__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "GDS Transport",arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  padding: 10px 0 10px 40px;
  text-decoration: none;
  flex-basis: 25%;
}
@media (min-width: 40.0625em) {
  .status-tracker__stage {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}
.status-tracker__stage::before, .status-tracker__stage::after {
  content: "";
  position: absolute;
  left: 0;
  height: 50%;
  width: 100%;
  background: #eeefef;
  border: 1px solid #eeefef;
  z-index: -2;
}
.status-tracker__stage::before {
  top: 3px;
  transform: skew(30deg);
  transform-origin: top left;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.status-tracker__stage::after {
  bottom: 3px;
  transform: skew(-30deg);
  transform-origin: bottom left;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.status-tracker__stage--complete {
  color: #ffffff;
}
.status-tracker__stage--complete::before, .status-tracker__stage--complete::after {
  background: #006853;
  border-color: #006853;
}
.status-tracker__stage--active{
  color: #ffffff;
}
.status-tracker__stage--active::before, .status-tracker__stage--active::after {
  background: #008531;
  border-color: #008531;
}
.status-tracker__stage-name {
  font-weight: 700;
  margin: 0;
}
.status-tracker__stage-status {
  margin: 0;
}