.viatorwp-itinerary-outer {
  border-left: 2px solid #333;
}

/* Card container */
.viatorwp-itinerary-card {
  position: relative;
  margin: 0 0 20px 20px;
  padding: 10px;
  color: gray;
  border-radius: 8px;
  max-width: 400px;
}

/* Information about the timeline */
.viatorwp-itinerary-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Title of the card */
.viatorwp-itinerary-title {
  color: orangered;
  position: relative;
}

/* Timeline dot  */
.viatorwp-itinerary-title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 999px;
  left: -39px;
  border: 3px solid orangered;
}