section.timeline-section div.item {
  display: flex;
  flex: auto;
  padding: 0rem 1rem 0rem 1rem;
  height: 480px;
  margin: 0 auto;
  overflow: hidden;
  overflow-y: scroll;
}

@media (min-width: 62em) {
    section.timeline-section div.item {
        width: max-content;
    }
}

#timeline {
  position: relative;
  display: table;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
#timeline div:after {
  content: '';
  width: 2px;
  position: absolute;
  top: .5rem;
  bottom: 0rem;
  left: 60px;
  z-index: 1;
  background: #C5C5C5;
}
#timeline h3 {
  position: -webkit-sticky;
  position: sticky;
  top: 5rem;
  color: #888;
  margin: 0;
  font-size: 1.5em;
  font-weight: 400;
}
@media (min-width: 62em) {
  #timeline h3 {
    font-size: 1.1em;
  }
}
#timeline section.year {
  position: relative;
}
#timeline section.year:first-child section {
  margin-top: -1.3em;
  padding-bottom: 0px;
} #timeline section.year section {
  position: relative;
  padding-bottom: 1.25em;
  margin-bottom: 2.2em;
}
#timeline section.year section h4 {
  position: absolute;
  bottom: 0;
  font-size: .9em;
  font-weight: 400;
  line-height: 1.2em;
  margin: 0;
  padding: 0 0 0 89px;
  color: #C5C5C5;
}
@media (min-width: 62em) {
  #timeline section.year section h4 {
    font-size: 1em;
  }
}
#timeline section.year section ul {
  list-style-type: none;
  padding: 0 0 0 75px;
  margin: -1.35rem 0 1em;
  max-width: 32rem;
  font-size: 1em;
}
@media (min-width: 62em) {
  #timeline section.year section ul {
    font-size: 1.1em;
    padding: 0 0 0 81px;
  }
}
#timeline section.year section ul:last-child {
  margin-bottom: 0;
}
#timeline section.year section ul:first-of-type:after {
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #FF4D53 5%, #EBB76A 73%, #5FCC3D 88.05%);
  border: 2px solid #FFFFFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 56px;
  top: 5px;
  z-index: 2;
}
#timeline section.year section ul li {
  margin-left: .5rem;
}
#timeline section.year section ul li:not(:first-child) {
  margin-top: .4rem;
}
#timeline section.year section ul li span.price {
  color: mediumturquoise;
  font-weight: 500;
}

#btcwidget {
  display: inline;
}
#btcwidget img {
  display: none;
}

svg {
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}


/* Thin the scrollbar */
section.timeline-section div.item::-webkit-scrollbar {
    width: 4px; /* Width of the vertical scrollbar */
    height: 6px; /* Height of the horizontal scrollbar (if any) */
}

/* Style the track (background) */
section.timeline-section div.item::-webkit-scrollbar-track {
    background: #d5d5d5; /* Light gray background */
}

/* Style the scrollbar thumb (the draggable part) */
section.timeline-section div.item::-webkit-scrollbar-thumb {
    background: #a2a2a2; /* Dark gray thumb */
    border-radius: 3px; /* Round edges */
}

/* Hover effect on the thumb */
section.timeline-section div.item::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker gray on hover */
}