.session-timeline .timeline {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 80%;
  max-width: 800px;
  position: relative;
}
.session-timeline .timeline::before {
  content: "";
  position: absolute;
  background-color: #d0d6d6;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 5%;
}
.session-timeline .no-interaction {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  color: white !important;
}
.session-timeline .step {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 4px 6px 6px rgba(174, 187, 211, 0.77);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 50px;
  z-index: 1;
  width: 400px;
}
.session-timeline .step::before {
  content: attr(data-step);
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #1a1b1b;
  border-radius: 50%;
  transform: translateY(-50%);
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.session-timeline .step-left::before {
  left: 85%;
}
.session-timeline .step-right::before {
  left: 15px;
}
.session-timeline .timeline::after {
  content: "";
  position: absolute;
  top: 0;
  background-color: #d0d6d6;
  left: 50%;
  width: 0;
  height: 30px;
  transform: translateY(-50%);
  height: 30px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid white;
  z-index: -1;
  margin-left: -2px;
}
.session-timeline .pas-label-left {
  width: 45px;
}
.session-timeline .pas-label-right {
  width: 60px;
}
.session-timeline .step-right {
  right: -360px;
  border-radius: 30px 0 0 30px;
}
.session-timeline .step-left {
  margin-left: 35px;
  border-radius: 0 30px 30px 0;
}
.session-timeline .step h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.session-timeline .step p {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.session-timeline .step span {
  font-weight: 600;
}
.session-timeline .step .step-number {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}
.session-timeline .step .dates {
  font-size: 14px;
  color: #666;
  display: flex;
  justify-content: space-between;
  width: 300px;
  margin-top: 20px;
}
.session-timeline .content-top-left {
  padding: 0 10px 10px 0;
}
.session-timeline .step-number-left {
  float: right;
}
.session-timeline .content-top-right {
  display: flex;
  margin: 0 15px;
  text-align: end;
  justify-content: space-between;
}
.session-timeline .step-last-left::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 90%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #ccc;
  z-index: 0;
}
.session-timeline .step-last-right::after {
  content: "";
  position: absolute;
  bottom: -23px;
  right: 80%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #ccc;
  z-index: 0;
}