/*----------------------------------------------------------------------------------- */
/*  Progress Bars */
/*----------------------------------------------------------------------------------- */

.timeline {
    list-style: none;
    position: relative;
    max-width: 800px;
    padding: 20px;
    margin: 0 auto;
    overflow: hidden;
}

.timeline:after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    margin-left: -2px;
    background-color: rgba(0, 0, 0, 0.2);
    height: 100%;
    width: 1px;
    border-radius: 2px;
    display: block;
}

.timeline .timeline-row {
    padding-left: 0;
    position: relative;
    z-index: 10;
}

.timeline .timeline-row .timeline-time {
    position: absolute;
    right: 50%;
    top: 31px;
    text-align: right;
    margin-right: 40px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
}

.timeline .timeline-row .timeline-time small {
    display: block;
    color: white;
    text-transform: uppercase;
    opacity: 0.75;
    font-size: 11px;
    font-weight: 400;
}

.timeline .timeline-row .timeline-icon {
    position: absolute;
    top: 40px;
    left: 0;
    margin-left: -20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    z-index: 100;
}

.timeline .timeline-row .timeline-icon>div {
    border-radius: 50%;
    line-height: 20px;
    font-size: 16px;
}

.timeline .timeline-row .timeline-content {
    margin-left: 40px;
    position: relative;
    color: #333333;
}

.timeline .timeline-row .timeline-content:after {
    content: "";
    position: absolute;
    top: 48px;
    left: -41px;
    height: 1px;
    width: 40px;
    background-color: #eee;
    z-index: -1;
}

.timeline .timeline-row .timeline-content .panel-body {
    padding: 15px 15px 2px;
    position: relative;
    z-index: 10;
    margin-bottom: 25px;
    display: table;
}

.timeline .timeline-row .timeline-content .panel-body .lt{
    display: table-cell;
    vertical-align: middle;
    width: 120px;
}

.timeline .timeline-row .timeline-content .panel-body .rt{
    display: table-cell;
    vertical-align: middle;
}

.timeline .timeline-row .timeline-content .panel-body .step{
    font-size: 1.4em;
    color: #565552;
}

.timeline .timeline-row .timeline-content .panel-body .step .num{
  font-size: 1.5em;
  padding-left: 19px;
}

.timeline .timeline-row .timeline-content h2, .timeline .timeline-row .timeline-content .h2 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 0;
    line-height: 1.2;
    color: #565552;
}

.timeline .timeline-row .timeline-content p {
    margin-bottom: 0px;
    font-size: 1.1em;
}

.timeline .timeline-row .timeline-content img {
    margin-bottom: 15px;
}

.timeline .timeline-row .timeline-content blockquote {
    border-color: #eeeeee;
}

.timeline .timeline-row .timeline-content blockquote footer,
.timeline .timeline-row .timeline-content blockquote small,
.timeline .timeline-row .timeline-content blockquote .small,
.timeline .timeline-row .timeline-content blockquote.blockquote-reverse footer,
.timeline .timeline-row .timeline-content blockquote.blockquote-reverse small,
.timeline .timeline-row .timeline-content blockquote.blockquote-reverse .small {
    color: #999999;
}

.timeline .timeline-row .timeline-content .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    margin-bottom: 15px;
    overflow: hidden;
}

.timeline .timeline-row .timeline-content .video-container iframe,
.timeline .timeline-row .timeline-content .video-container object,
.timeline .timeline-row .timeline-content .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timeline.animated .timeline-row .timeline-content {
    opacity: 0;
    left: 20px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    transition: all 0.8s;
}

.timeline.animated .timeline-row.active .timeline-content {
    transition-delay: 0.5s;
    opacity: 1;
    left: 0;
}

@media (max-width: 991px) {
  .timeline {
      max-width: 500px;
  }

  .timeline .timeline-row .timeline-content .panel-body{display: block;}
  .timeline .timeline-row .timeline-content .panel-body .lt,
  .timeline .timeline-row .timeline-content .panel-body .rt{
      display: block;
      width: 100%;
  }
  .timeline .timeline-row .timeline-content .panel-body .step .num {
      font-size: 1.2em;
      padding-left: 5px;
  }
  .timeline .timeline-row .timeline-content h2{font-size: 20px;}
  .timeline .timeline-row .timeline-content p{font-size: 1.05em;}
}


@media (max-width: 767px){
  .timeline .timeline-row .timeline-content {
      margin-left: 15px;
      position: relative;
      color: #333333;
  }
}