<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * SUMOshop Brands v1.10
 * Copyright 2018 SUMOshop http://www.sumoshop.dk
 * All rights reserved
 */
#brands-list.list-image li a {
	display: block;
	width: calc(1200px * 1/4 - 10px * 2);
	width: calc(var(--basic-full) * var(--basic-columnwidth) - var(--basic-margin) * 2);
	height: calc(1200px * 1/4 - 10px * 2);
	height: calc(var(--basic-full) * var(--basic-columnwidth) - var(--basic-margin) * 2);
}

#brands-list.list-image li img, #brands-list.list-image li svg {
	position: relative;
	top: 50%;
	transform: translate(0%, -50%);
	-webkit-transform: translate(0%, -50%);
	max-width: 100%;
	max-height: 100%;
}

#brands-list.list-unordered, #brands-list.list-initialletter {
	column-count: 4;
	column-gap: 0;
}

#brands-list.list-unordered li, #brands-list.list-initialletter li {
	float: none;
	display: inline-block;
}

@media only screen and (max-width: 600px) {
	#brands-list.list-unordered, #brands-list.list-initialletter {
		column-count: 2;
	}
}</pre></body></html>