.timeline {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  
}

.li {
  transition: all 200ms ease-in;
}

.timestamp {
  margin-bottom: 20px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}

.icon{
  margin-bottom: 21px;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}

.status {
  padding: 0px 40px;
  display: flex;
  justify-content: center;
  border-top: 2px solid #000000;
  position: relative;
}
.status h4 {
  font-weight: 600;
}
.status:before {
  content: "";
  width: 2px;
  height: 12px;
  background-color: white;
  border: 1px solid #ddd;
  position: absolute;
  top: -8px;
  left: 50%;
  transition: all 200ms ease-in;
}

.li.complete .status {
  border-top: 4px solid #115551;
}
.li.complete .status:before {
  background-color: #115551;
  border: none;
  transition: all 200ms ease-in;
}
.li.complete .status h4 {
	margin: 10px 0 0 0;
  color: #000000;
}

.start {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #115551;
  position: absolute;
  top: -9px;
  left: 0px;
}

.end {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #115551;
  position: absolute;
  top: -10px;
  left: 126px;
}

.bubblatom_top{
	content: "";
	height: 35px;
	width: 35px;	
	
}

.bubblatom {
	content: "";
	height: 47px;
	width: 35px;	
	
}

.timeline a.top {
	margin: 0px;
	height: 34px;
	
	
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
  .timeline {
    list-style-type: none;
    display: block;
  }

  .li {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }

  .timestamp {
    width: 100px;
  }

  .status:before {
    left: -8%;
    top: 30%;
    transition: all 200ms ease-in;
  }
}
