<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
	margin: 0px;
	padding: 0px;
}
.clear-element{
	clear: both;
}
@media screen and (max-width: 1024px){
	.all-products h2{
		text-align: center;
		padding: 20px 0 10px 0;
		font-weight: bold;
	}
	.all-products span{
		font-size: 20px;
		font-weight: bold;
	}
	.product-combinations{
		display: block;
		margin: 5px 0px;
	}
}
@media screen and (min-width: 1025px){
	.all-products h2{
		text-align: center;
		padding: 20px 0 10px 0;
		font-weight: bold;
	}
	.all-products span{
		font-size: 15px;
		font-weight: bold;
	}
	.product-combinations{
		display: inline-block;
	}
}
img{
	margin-top: 20px;
}
.product-info-label{
    color: white;
    background-color: red;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 6px;
    border-radius: 5px;
    position: absolute;
    left: 22px;
    top: 25px;
}
.product-combinations{
	border: 3px solid red;
	padding: 5px 15px;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 5px;
	font-weight: bold;
}
.product-combinations.active{
	background-color: red;
	color: white;
}</pre></body></html>