#productTimeLine {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  height: 500px;
}
#productTimeLine:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  width: 4px;
  background-color: #FF8C47;
}
#productTimeLine .entries {
  max-width: 1000px;
  margin: auto;
  position: relative;
  left: -5px;
}
#productTimeLine .entries .entry {
  width: calc(50% - 80px);
  float: left;
  padding: 20px;
  clear: both;
  text-align: right;
}
#productTimeLine .entries .entry:not(:first-child) {
  margin-top: -60px;
}
#productTimeLine .entries .entry .title {
  font-size: 32px;
  margin-bottom: 12px;
  position: relative;
  color: #fff;
}
#productTimeLine .entries .entry .title:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 4px solid #FF8C47;
  background-color: #1D1D1D;
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  right: -109px;
  /* z-index: 1000; */
}
#productTimeLine .entries .entry .title.big:before {
  width: 24px;
  height: 24px;
  transform: translate(8px, -50%);
}
#productTimeLine .entries .entry .body {
  color: #aaa;
}
#productTimeLine .entries .entry .body p {
  line-height: 1.4em;
}
#productTimeLine .entries .entry:nth-child(2n) {
  text-align: left;
  float: right;
}
#productTimeLine .entries .entry:nth-child(2n) .title:before {
  left: -99px;
}
#productTimeLine .entries .entry:nth-child(2n) .title.big:before {
  transform: translate(-8px, -50%);
}


