@media screen and (max-width: 768px) {
	.paragraph-folding:active {
		animation-name: btn-background;
		animation-duration: .5s;
		animation-iteration-count: 1;
		animation-timing-function: steps(1, end);
		animation-fill-mode: forwards;
	}
}
@keyframes btn-background {
	from {
		background: blue;
		background: rgba(0, 0, 255, .1);
	}
	to {
		background: none;
	}
}
#toc .folding-arrow {
	display: none!important;
}