/* css for success timeline view tb */
/* The actual timeline (the vertical ruler) */
.main-timeline-5 {
  position: relative;
  max-width: 85%;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.main-timeline-5::after {
  content: "";
  position: absolute;
  width: 5px;
  background-color: #939597;
  top: 0;
  bottom: 0;
  left: auto;
  margin-left: -6px;
}

/* Container around content */
.timeline-5 {
  position: relative;
  background-color: inherit;
  width: 100%;
}

/* The circles on the timeline 
.timeline-5::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #939597;
  border: 5px solid #800080;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}*/

.timeline-circle {
  position: absolute;
  top: 0px;
  left: -78px; /* Same as your original */
  width: 65px;
  height: 65px;
  background-color: #939597;
  border: 2px solid #939597;
  border-radius: 50%;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

/* Place the container to the right */
.right-5 {
  padding: 0px 0px 20px 40px;
  left: auto;
}

/* Add arrows to the right container (pointing left) */
.right-5::before {
  content: " ";
  position: absolute;
  top: 20px;
  z-index: 1;
  left: 30px;
  border: medium solid #fff;
  border-width: 10px 10px 10px 0;
  border-color: transparent #fff transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-5::after {
  left: -13px;
}

@media (max-width: 991px) {
  .main-timeline-5 {
    max-width: 100%;
  }
}

.gradient-custom-5 {
  /* fallback for old browsers */
  background: #cfe2ff;
  
   /* Add rounded corners */
  border-radius: 15px;

  /* Add shadow */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);

  /* Chrome 10-25, Safari 5.1-6 */
  background: -webkit-linear-gradient(
    to right,
	(blue,indigo,violet),
	(blue,indigo,violet)
    /* rgba(235, 187, 167, 1),
    rgba(207, 199, 248, 1) */
  );

  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  background: linear-gradient(
    to right,
	(blue,indigo,violet),
	(blue,indigo,violet)
    /*rgba(235, 187, 167, 1),
    rgba(207, 199, 248, 1) */
  );
}