<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}
.cellphone {
	border: 0px solid red;
}

/* The actual timeline (the vertical ruler) */
.cellphone .timeline {
  display: flex;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5px;
  margin-bottom: 5px;
  border:0px solid grey;
}

.cellphone .timeline::after {
  content: '';
  position: absolute;
  width: 12px;
  background-color:#97C782; 
  top: 0;
  bottom: 0;
  left: 27%;
  margin-left: -3px;
}

.cellphone .timeline.t-gold::after {
  background-color:#F5C458; 
}

.cellphone .timeline.t-blue::after {
  background-color:#5677B6; 
}

.cellphone .timeline.t-orange::after {
  background-color:#EB954A; 
}



/* Container around content */
.cellphone .container {
  display: flex;
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.cellphone .container-left {
  padding-right: 10px;
  width: 30%;
}

.cellphone .container-right {
  padding-left:50px;
}


.cellphone ul li  {
  list-style-type:disc;
  padding:0;
  margin:0;
  margin-bottom:0.88rem;
}


.cellphone h3 {
margin: 0px;
color:#044499;
}

.cellphone .content-left {
  padding: 10px 0px;
  width: 100%;
  text-align: right;
}

/* Add arrows to the left container (pointing right) */
.cellphone .container-left::after {
  
  content: " ";
  position: absolute;
  top: 21px;
  right: -15px;
  height: 13px;
  width: 13px;
  background-color: #044499;
  border-radius: 50%;
  display: inline-block;
}
</pre></body></html>