.catalog {
	display: block;
	margin: 0px;
	border: 1px solid #b0120a;
}

.catalog .item {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 0px;
	max-width: 800px;
	background: #fff;
}

.catalog .item:nth-child(2n) {
	background: #ddd;
}

.catalog .item span.heading {
	display: block;
	padding: 10px;
	text-align: left;
	font-size: 1rem;
	color: #444;
}

.catalog .item .image-container {
	margin: 10px;
	text-align: center;
	display: none;
}

.catalog .item .image-container img {
	margin: 10px auto;
	max-width: 100%;
}

.catalog .item .image-container img.round {
	border-radius: 100%;
}

.catalog .item .price-list {
	display: inline-block;
	color: #fff;
	background: #e94005;
	box-shadow: 0px 0px 1px #b0120a;
	min-width: 200px;
	max-width: 100%;
}

.catalog .item:nth-child(2n) .price-list {
	background: #b0120a;
}

.catalog .item dl {
	margin: 0px;
	padding: 10px;
	font-size: 0.9rem;
}

.catalog .item dl dt {
	width: auto;
	font-weight: normal;
	font-size: 0.8rem;
}

.catalog .item dl dd {
	margin: 0px 0px 0px 80px;
	font-weight: bold;
}

.catalog .item dl dd::after {
	content: "Kč";
	margin-left: 5px;
}

.catalog .item .price-list span.discount {
	display: block;
	padding: 5px 10px;
	text-align: center;
	font-size: 0.8rem;
	font-weight: bold;
	float: right;
}

.catalog .item .price-list span.price {
	display: inline-block;
	padding: 5px 10px;
	text-align: center;
	font-size: 0.9rem;
	font-weight: bold;
	color: #fff;
}

.catalog .item .price-list span.price::after {
	content: " Kč (bez DPH)";
}

@media only screen and (max-width: 60em) {
	.catalog .item {
		display: block;
		max-width: none;
		width: auto;
	}
	
	.catalog .item .price-list {
		display: block;
	}
}

@media only screen and (max-width: 40em) {
	.catalog .item {
		width: 100%;
	}
}

.toolbar {
	padding-bottom: 10px;
}

.toolbar .button {
	display: inline-block;
	padding: 5px 10px;
	color: #fff;
	background: #b0120a;
	cursor: pointer;
}

.toolbar .button.active {
	font-weight: bold;
}

.toolbar .button.active::after {
	content: "▲ (vzestupně)";
	margin-left: 10px;
	font-weight: normal;
}

.toolbar .button.active.reverse::after {
	content: "▼ (sestupně)";
}
