/**
* Block: timeline
**/

.timeline-hr {
  position: relative;
  height: 2px; /* Increase this value as needed */
  overflow: visible; /* Make sure the dot is visible beyond the hr boundary */
}

.timeline-up::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px; /* Base of the arrow */
  height: 10px; /* Height of the arrow */
  background: #1a2742; /* Color of the arrow */
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}

.timeline-down::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 50%) rotate(180deg);
  transform-origin: 50% 66.67%;
  width: 15px; /* Base of the arrow */
  height: 10px; /* Height of the arrow */
  background: #1a2742; /* Color of the arrow */
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: 1;
}
