/* body {
  
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
} */
main {
  padding: 50px;
}
a {
  color: #00b7ff;
}

#service > .card {
  /* margin: 3px; */
  border-color: #f1f1f1;
}

.card {
  border-color: #f1f1f1;
}
.subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin: 0rem;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: auto;
}

/* Vertical line */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #ddd;
  top: 0;
  bottom: 0;
  left: 25px;
  margin-left: -1.5px;
}

.timeline-item {
  position: relative;
  background: #fff;
  border-radius: 8px;
  margin: 20px 0;
  padding: 15px 20px 15px 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Timeline circle */
.timeline-item::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: 17px;
  background-color: #007bff;
  border-radius: 50%;
  top: 22px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #007bff22;
}

.timeline-item.completed::before {
  background-color: #28a745;
  box-shadow: 0 0 0 2px #28a74522;
}

.timeline-item h3 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.timeline-item p {
  margin: 5px 0 0;
  color: #777;
  font-size: 0.9rem;
}

.timeline-item .date {
  font-weight: 600;
  color: #007bff;
  font-size: 0.85rem;
}

.timeline-item:last-child::before {
  background-color: #ffc107;
  box-shadow: 0 0 0 2px #ffc10722;
}

#trackInfo .dt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d1e7ff;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  background: linear-gradient(90deg, #000 50%, #0000 0) right/200% 100%;
  animation: l21 2s infinite linear;
}
.loader::before {
  content: 'Loading...';
  color: #0000;
  padding: 0 5px;
  background: inherit;
  background-image: linear-gradient(90deg, #fff 50%, #0074d9 0);
  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes l21 {
  100% {
    background-position: left;
  }
}
