.onboarding-progress {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.onboarding-progress li {
  height: 3em;
  width: 3em;
  border-radius: 50%;
  border: 2px solid #DDD;
  color: #DDD;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.onboarding-progress li.current {
  color: var(--bs-dark);
  border: 2px solid var(--bs-dark);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.25);
}
.onboarding-progress li.active {
  background-color: var(--bs-dark);
  color: var(--bs-light);
  border: 2px solid var(--bs-dark);
}
.onboarding-progress .line {
  height: 1px;
  flex-grow: 1;
  border-bottom: 2px solid #DDD;
}
.onboarding-progress .line.active {
  border-bottom-color: var(--bs-dark);
}
.timeline {
  --timeline-bg: #d3d3d4;
  border-left: 3px solid var(--bs-dark);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background: #ededed;
  margin: 0 0 0 80px;
  letter-spacing: 0.2px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px;
  list-style: none;
  text-align: left;
}
@media (max-width: 767px) {
  .timeline {
    padding: 25px;
    margin-left: 1.5em;
  }
}
.timeline h1 {
  font-weight: 300;
  font-size: 1.4em;
}
.timeline h2,
.timeline h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}
.timeline .event {
  border-bottom: 1px dashed #e8ebf1;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
.timeline .dish-images {
  display: flex;
  margin-top: 1rem;
  gap: 0.8em;
}
.timeline .dish-images img {
  height: 100px;
  border-radius: 0.75rem;
}
@media (max-width: 767px) {
  .timeline .event {
    padding-top: 30px;
  }
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -150px;
  content: attr(data-date);
  text-align: right;
  font-weight: 300;
  font-size: 0.8em;
  min-width: 75px;
}
@media (max-width: 767px) {
  .timeline .event:before {
    left: 0px;
    text-align: left;
  }
}
.timeline .event:after {
  -webkit-box-shadow: 0 0 0 3px var(--bs-dark);
  box-shadow: 0 0 0 3px var(--bs-dark);
  left: -55.8px;
  background: #fff;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  content: "";
  top: 5px;
}
.timeline .event .content {
  font-weight: 300;
  font-size: 0.9em;
}
.timeline .event .content strong {
  font-weight: 600;
}
.timeline .event .content ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.timeline .event span.badge {
  font-size: 0.7em;
}
.timeline p {
  font-size: 0.9em;
}
.timeline h3 small {
  font-weight: 300;
}
@media (max-width: 767px) {
  .timeline .event:after {
    left: -31.8px;
  }
}
.sub-menu a.nav-link {
  color: var(--bs-dark);
}
.sub-menu a.nav-link.active {
  color: var(--bs-light);
  background-color: var(--bs-dark);
}
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
.course-item {
  cursor: pointer;
}
