<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header {
	position: sticky;
	top: 0px;
	background: #007765;
	padding: 20px 0;
}

.header__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__nav-list {
	display: flex;
	justify-content: space-between;
	color: white;
	font-size: 24px;
	font-weight: 500;
}

.header__nav-item:not(:last-child) {
	position: relative;
	margin-right: 23px;
}

.header__nav-item:not(:last-child)::after {
	position: absolute;
	right: -10%;
	content: '|';
}
</pre></body></html>