.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-timeline {
  position: relative;
  /*padding: 2em 0;*/
  /*margin-top: 2em;*/
  /*margin-bottom: 2em;*/
}
.cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 20px;
  left: 13px;
  height: 59%;
  width: 2px;
  background: #839AC5;
  z-index: 0;
}

.cd-timeline-result1 {
  /*position: relative;*/
  z-index: 0;
}
.cd-timeline-result1::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 15px;
  left: 13px;
  height: 30%;
  width: 2px;
  background: #049992;
  z-index: 0;
}

.cd-timeline-result1-withdraw {
  /*position: relative;*/
  z-index: 0;
}
.cd-timeline-result1-withdraw::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 15px;
  left: 13px;
  height: 35%;
  width: 4px;
  background: #839AC5;
  z-index: 0;
}

.cd-timeline-result2 {
  /*position: relative;*/
  z-index: 0;
}
.cd-timeline-result2::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 15px;
  left: 13px;
  height: 60%;
  width: 2px;
  background: #049992;
  z-index: 0;
}

.cd-timeline-result3 {
  /*position: relative;*/
  z-index: 0;
}
.cd-timeline-result3::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 15px;
  left: 13px;
  height: 35%;
  width: 2px;
  background: #839AC5;
  z-index: 0;
}

.cd-timeline-result4 {
  /*position: relative;*/
  z-index: 0;
}
.cd-timeline-result4::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 73px;
  left: 13px;
  height: 26%;
  width: 2px;
  background: #839AC5;
  z-index: 0;
}

.cd-timeline-result1-rollin {
  /*position: relative;*/
  z-index: 0;
}
.cd-timeline-result1-rollin::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 21px;
  left: 13px;
  height: 30%;
  width: 2px;
  background: #839AC5;
  z-index: 0;
}

.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}

.cd-timeline-icon {
  position: absolute;
  top: 1px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /*box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);*/
}
.cd-timeline-icon i {
  color: white;
  display: block;
  width: 24px;
  height: 24px;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
.cd-timeline-icon.cd-info {
  background: #75ce66;
}
.cd-timeline-icon.cd-error {
  background: #c03b44;
}
.cd-timeline-icon.cd-warning {
  background: #839AC5;
}

.cd-timeline-icon.cd-info-blue {
  background: #049992;
}

.cd-timeline-content {
  position: relative;
  margin-left: 43px;
  /*background: #ebebeb;*/
  /*border-radius: 0.25em;*/
  padding: 0px 5px 5px 0px;
  /*box-shadow: 0 3px 0 #c3d0d9;*/
}
.cd-timeline-content:after {
  /*content: "";*/
  display: table;
  clear: both;
}
.cd-timeline-content h2 {
  color: #303e49;
}

.cd-timeline-content .cd-title {
  font-size: 12px;
  color: #EEEEEE;
}

.cd-timeline-content .cd-info {
  color: #509b50;
}

.cd-timeline-content .cd-info-blue {
  color: #EEEEEE;
}

.cd-timeline-content .cd-error {
  color: #c03b44;
}

.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;  
}
a.cd-read-more:hover{text-decoration:none; background-color: #424242;  }
.cd-timeline-content .cd-date {
  float: left;
  padding: 1px 0;
  opacity: .7;
  color: rgba(255,255,255,1);
  font-size: 10px;
}
.cd-timeline-content::before {
  /*content: '';*/
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-right: 7px solid white;
}

