#timeline-panel {display: none;}
@media(min-width: 769px) {
	#timeline-panel {display: block;}
}
.timeline-parent {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    width: 100%;
    height: 100%;
			padding-top: 4.5rem;
			min-height: 350px;
}
.timeline-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80vw;
    height: 100px;
    max-width: 1000px;
    position: relative;
    z-index: 0;
}
.timeline-entry {    
    position: relative;	
}
.timeline-entry::before, .timeline-entry::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    background-color: #44d62c;
    width: 4vw;
    height: 5px;
    max-width: 85px;
}
.timeline-entry::before {
    left: calc(-4vw + 12.5px);
}
.timeline-entry::after {
    right: calc(-10vw + 12.5px);
			width: 10vw;		
			max-width: 110px;
}
.timeline-entry span.timeline-pointer {
	width: 25px;
    height: 25px;
    border-radius: 50%;
	display: block;	
	cursor: pointer;
	background-color: #44d62c;
}
.timeline-entry span.timeline-pointer:hover {
	background-color: #44d62c!important;
}
.timeline-entry span.timeline-info {
    width: 1px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
	color: #fff;
	font-weight: 700;
}
.timeline-entry span.timeline-info::before, .timeline-entry span.timeline-info::after {
    visibility: visible;
    position: absolute;
    left: 50%;
}
.timeline-entry span.timeline-info::before {
    content: attr(data-info);
    top: -85px;
    width: 130px;
    transform: translateX(-5px) rotateZ(-45deg);
    font-size: 12px;
    text-indent: -10px;
}
.timeline-entry span.timeline-info::after {
    content: attr(data-year);
    top: 25px;
    transform: translateX(-50%);
    font-size: 14px;
			min-width: 120px;
			text-align: center;
}
.timeline-entry.active::before {
    background-color: #44d62c;
}
.timeline-entry.active::after {
    background-color: #373737;
}
.timeline-entry.active:last-child::after {
    background-color: #44d62c;
}
.timeline-entry.active ~ .timeline-entry span.timeline-pointer, .timeline-entry.active ~ .timeline-entry::before, .timeline-entry.active ~ .timeline-entry::after {
    background-color: #373737;
}
.timeline-description-container {
    width: 28vw;
			max-width: 500px;
    position: absolute;
			left: -70px;
			top: 70px;
			opacity: 0;
  		transform: translateY(10px);
  		transition: opacity 0.3s ease, 			 
    transform 0.3s ease;
			visibility: hidden;
}
 .timeline-entry.right .timeline-description-container {
			right: -70px;
    left: auto;
    direction: rtl;
 }
.timeline-entry.active .timeline-description-container {
  opacity: 1;
		visibility: visible;
  transform: translateY(0);
}
.timeline-entry.right .item-description .item-text {
		direction: ltr;
}
.item-description {
		box-sizing: border-box;
    display: grid;
    grid-auto-columns: auto;    
    grid-template-rows: auto;
    position: relative;
    text-align: center;
			grid-template-columns: 170px 1fr;
    grid-template-areas:
        "icon item-text";
    background-image: none;
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;	
			align-items: center;
			column-gap: 1rem;
}
.item-description .icon {
    grid-area: icon;
    margin: 0 auto;
    max-width: 100%;
}
.item-description .item-text {
	grid-area: item-text;
	text-align: left;
}
.item-description .item-text h3 {
		font: 600 1.5rem / 1 "Titillium Web", RazerF5, Arial, Helvetica, sans-serif;
    margin: 0;
    text-transform: uppercase;
			color: #44d62c;
			margin-bottom: 1rem;
}
.item-description .item-text .body-copy {
		color: rgb(136, 136, 136);
    margin: 0px;
    font: 1.125rem / 1.3 Roboto;
}
@media(min-width: 768px) and (max-width: 1024px) {
		.timeline-description-container {
    width: 50vw;   
	}
}
@media (min-width: 1250px) {
    .timeline-entry::before {
        left: -71.5px !important;
					 width: 6vw;
    }
			.timeline-entry::after {
        right: -71.5px !important;
					 width: 6vw;
						max-width: 85px;
    }
}
 @media screen and (max-width:767px){} @media screen and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1200px), screen and (min-width: 768px) and (max-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1) and (min-width: 1200px){} @media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1200px){}