<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* timeline-depe
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.timeline-depe {
  background: #003e83;
}

.timeline-depe h2{
  font-size: 15px;
}

.timeline-depe ol {
  font-size: 0;
  width: 100%;
  padding: 250px 0;
  transition: all 1s;
}

.timeline-depe ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 128px;
  height: 3px;
  background: #fff;
}

.timeline-depe ol li:last-child {
  width: 280px;
}

.timeline-depe ol li:not(:first-child) {
  margin-left: 14px;
}

.timeline-depe ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #f45b69;
}

.timeline-depe ol li div {
    position: absolute;
    left: calc(100% + 7px);
    width: 250px;
    padding: 15px;
    font-size: 1rem;
    white-space: normal;
    color: black;
    background: white;
    height: 150px;
}

.timeline-depe ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-depe ol li:nth-child(odd) div {
  top: -16px;
  transform: translateY(-100%);
}

.timeline-depe ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: white transparent transparent transparent;
}

.timeline-depe ol li:nth-child(even) div {
  top: calc(100% + 16px);
}

.timeline-depe ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent white;
}

.timeline-depe time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* timeline-depe ARROWS
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

.timeline-depe .arrows {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline-depe .arrows .arrow__prev {
  margin-right: 20px;
}

.timeline-depe .disabled {
  opacity: 0.5;
}

.timeline-depe .arrows img {
  width: 45px;
  height: 45px;
}

/* GENERAL MEDIA QUERIES
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */
@media screen and (max-width: 599px) {
  .timeline-depe ol,
  .timeline-depe ol li {
    width: auto;
  }

  .timeline-depe ol {
    padding: 0;
    transform: none !important;
  }

  .timeline-depe ol li {
    display: block;
    height: auto;
    background: transparent;
  }

  .timeline-depe ol li:first-child {
    margin-top: 25px;
  }

  .timeline-depe ol li:not(:first-child) {
    margin-left: auto;
  }

  .timeline-depe ol li div {
    position: static;
    width: 94%;
    height: auto !important;
    margin: 0 auto 25px;
  }

  .timeline-depe ol li:nth-child(odd) div {
    transform: none;
  }

  .timeline-depe ol li:nth-child(odd) div::before,
  .timeline-depe ol li:nth-child(even) div::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 1px solid white;
    height: 25px;
  }

  .timeline-depe ol li:last-child,
  .timeline-depe ol li:nth-last-child(2) div::before,
  .timeline-depe ol li:not(:last-child)::after,
  .timeline-depe .arrows {
    display: none;
  }
}</pre></body></html>