.cd-timeline-block {
  margin-top: 2em;
}

.cd-timeline-img {
  left: 0px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid lightGray;
  background: SlateGray;
}
@media only screen and (min-width: 640px) {
  .cd-timeline-img {
    left: 50%;
    margin-left: -9px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
}

.cd-timeline-content {
  margin-left: 40px;
  padding-bottom: 2em;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: lightgray;
}
.cd-timeline-block:last-child .cd-timeline-content {
  padding-bottom: 0;
  border-bottom-width: 0;
  border-bottom-style: none;
  border-bottom-color: transparent;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content .cd-date {
  color: #5f7ab3;
  letter-spacing: -0.1em;
  font-size: 16px;
  font-weight: 700;
}
@media only screen and (min-width: 640px) {
  .cd-timeline-content {
    margin-left: 0;
    width: 45%;
    padding-bottom: 0;
    border-bottom-width: 0;
    border-bottom-style: none;
    border-bottom-color: transparent;
  }
  .cd-timeline-content .cd-date {
	display: inline-block;
    color: white;
    font-size: 15px;
    background-color: #5f7ab3;
    border-radius: 3px;
    padding: 3px 10px;
  }
}