/* similar-route-section */
.similar-route-content > * {
  flex: 1 1 45%;
}
.route-list-container {
  justify-content: center;
  align-items: center;
}
.border-left {
  border-left: dashed 2px #e4e6e8;
}
.route-list {
  /* justify-content: center; */
  align-items: center;
}
.route-list > * {
  flex: 1 1 40%;
}
/* List */
.route-list-container ul {
  counter-reset: index;
  padding: 0;
  /* max-width: 300px; */
}
/* List element */
.route-list-container li {
  counter-increment: index;
  display: flex;
  margin-left: 5%;
  /* justify-content: center; */
  align-items: center;
  padding: 12px 0;
  box-sizing: border-box;
}
/* Element counter */
.route-list-container li::before {
  content: counters(index, ".", decimal-leading-zero);
  font-size: 1.5rem;
  text-align: right;
  font-weight: bold;
  min-width: 50px;
  padding-right: 12px;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  align-self: flex-start;
  background-image: linear-gradient(to bottom, aquamarine, orangered);
  background-attachment: fixed;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Element separation */
.route-list-container li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .similar-route-content > * {
    flex-basis: 100%;
  }
  .border-left {
    border-left: none;
  }
}
