.toggle-toc {
	position: relative;
	display: none;
	float: right;
	padding: 5px 10px;
	background-color: var(--main-color);
	border-width: 0;
	border-radius: 20px;
	color: #fff;
	cursor: pointer;
	outline: 0;
}

@media (max-width: 466px) {
	.toggle-toc { display: unset; }
	main:not(.year) nav.toc ul {
		max-height: 0px;
		overflow: hidden;
		transition: all 1.5s ease;
	}
	main:not(.year) nav.toc.open ul {
		clear: both;
		max-height: 10000px;
		transition: all 5s ease;
	}
}
