.timeline {
    position: relative;
  }
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 1rem;
    height: 100%;
    border-right: 2px solid #EFF2F7;
  }
  
  [data-timeline-axis-style=dashed]:before {
    border-right-style: dashed !important;
  }
  
  [data-timeline-axis-style=dotted]:before {
    border-right-style: dotted !important;
  }
  
  .timeline-block {
    position: relative;
    margin: 2em 0;
  }
  .timeline-block:after {
    content: "";
    display: table;
    clear: both;
  }
  .timeline-block:first-child {
    margin-top: 0;
  }
  .timeline-block:last-child {
    margin-bottom: 0;
  }
  
  .timeline-step {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 0;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: #FFF;
    border: 2px solid #EFF2F7;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    z-index: 1;
  }
  .timeline-step svg, .timeline-step i {
    line-height: 1.4;
  }
  
  .timeline-step-icon {
    background: #FFF;
    border: 2px solid #EFF2F7;
  }
  
  .timeline-step-xs {
    width: 17px;
    height: 17px;
    font-size: 0.75rem;
  }
  
  .timeline-step-sm {
    width: 23px;
    height: 23px;
    font-size: 0.75rem;
  }
  
  .timeline-step-lg {
    width: 47px;
    height: 47px;
    font-size: 1.75rem;
  }
  
  .timeline-content {
    position: relative;
    margin-left: 60px;
    margin-right: 30px;
    position: relative;
    top: -6px;
  }
  .timeline-content:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .timeline-body {
    padding: 1.5rem;
  }
  
  @media (min-width: 992px) {
    .timeline:before {
      left: 50%;
      margin-left: -2px;
    }
    .timeline-step {
      left: 50%;
      transform: translateX(-50%);
    }
    .timeline-content {
      width: 38%;
    }
    .timeline-body {
      padding: 1.5rem;
    }
    .timeline-block:nth-child(even) .timeline-content {
      float: right;
    }
    [data-timeline-axis-color=primary]:before {
      border-color: #27327b;
    }
    [data-timeline-axis-color=secondary]:before {
      border-color: #EFF2F7;
    }
    [data-timeline-axis-color=success]:before {
      border-color: #36B37E;
    }
    [data-timeline-axis-color=info]:before {
      border-color: #00B8D9;
    }
    [data-timeline-axis-color=warning]:before {
      border-color: #FFAB00;
    }
    [data-timeline-axis-color=danger]:before {
      border-color: #FF5630;
    }
    [data-timeline-axis-color=light]:before {
      border-color: #EFF2F7;
    }
    [data-timeline-axis-color=dark]:before {
      border-color: #273444;
    }
    [data-timeline-axis-color=neutral]:before {
      border-color: #FFF;
    }
    [data-timeline-axis-color=white]:before {
      border-color: #FFF;
    }
  }
  .timeline-one-side:before {
    left: 1rem;
  }
  .timeline-one-side .timeline-step {
    transform: translateX(-50%);
    left: 1rem;
  }
  .timeline-one-side .timeline-content {
    width: auto;
  }
  
  .timeline-one-side .timeline-block:nth-child(even) .timeline-content {
    float: none;
  }