How can I make the filter menu sticky on a Warehouse theme webshop?

I am working on a new webshop for one of my clients, which has a huge product feed. Therefore, we have chosen to build it in the Warehouse theme.
However, we have a small issue; the filter menu is not sticky. I can’t really seem to find out how to do this :disappointed_face:

It is really important that it will follow you when scrolling trough a huge collection page.

Hi @anders_ah ,

Go to Assets > theme.css and paste this at the bottom of the file:

@media screen and (min-width: 641px) {
	.template-collection .layout .layout__section.layout__section--secondary .card {
		position: sticky;
		top: 160px;
	}
}

Hope it helps!