<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('/plugin/site/variables.css');

.timeline {
	position: relative;
	overflow: hidden;
}
.timeline:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -1px;
	border-right: 2px solid var(--color-vert);
	height: 100%;
	display: block;
}

.timeline-row {
	position: relative;
	margin-bottom: 30px;
	display: flex;
	flex-direction: row !important;
	justify-content: center !important;
}
@media (min-width: 992px) {
	.timeline-row:nth-child(even) {
		flex-direction: row-reverse !important;
	}
}
.timeline-row:after {
	content: "";
	position: absolute;
	top: 28px;
	left: 50%;
	margin-left: -10px;
	width: 20px;
	height: 20px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	z-index: 10;
	background: var(--color-vert);
}
.timeline-row .timeline-image {
	position: relative;
	width: 45%;
	margin: 0 2.5%;
	padding-top: 15px;
}
.timeline-row .timeline-content {
	position: relative;
	width: 45%;
	margin: 0 2.5%;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.timeline-row .timeline-content &gt; h3 {
	text-align: left;
	display: block !important;
	width: 100%;
}
@media (min-width: 992px) {
	.timeline-row:nth-child(odd) .timeline-content &gt; h3 {
		text-align: right;
	}
}

@media (max-width: 991.98px) {

	.timeline:after {
		left: 10px;
		margin-left: -1px;
	}

	.timeline-row {
		margin-bottom: 0;
	}
	.timeline-row::after {
		left: 0;
		margin-left: 0;
		top: 25px;
	}

	.timeline-row .timeline-content {
		width: 95%;
		margin: 0 0 0 2.5%;
		padding: 20px 0 20px 20px;
		text-align: left;
		align-items: start;
	}
	.timeline-row .timeline-content * {
		text-align: left !important;
	}
	.timeline-row .timeline-image {
		display: none;
	}
}</pre></body></html>