/* CONTROL steps CSS */
/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
   
  /* Container around content */
  .tlcontainer {
    padding: 0px 40px 10px 40px;
    position: relative;
    background-color: inherit;
    width: 80%;
  }
  
  .tlcontainer h2 {
    font-size: 1.6rem;
  }

  /* The circles on the timeline */
  .tlcontainer::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -12px;
    background-color: #FF9F55;
    border: 4px solid #FF9F55;
    top: 0px;
    border-radius: 50%;
    z-index: 1;
  }

  div.timeline > div.tlcontainer:not(:last-child) {
    border-left:2px solid #FF9F55;
  }

  
  /* Place the container to the left */
  .tlleft {
    left: 0;
  }
  
  /* Place the container to the right */
  .tlright {
    left: 10%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .tlleft::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
  }
  
  /* Add arrows to the right container (pointing left) */
  .tlright::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .tlright::after {
    left: -10px;
  }
  
  /* The actual content */
  .tlcontent {
    padding: 0px 0px 20px 20px;
    background-color: white;
    position: relative;
    border-radius: 6px;
  }

  .tlcontent h2 {
    color:#333;
  }
  
  