<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* override public_revised */
.mh--page-container {
	max-width: 1800px;
}

/* search page */
.page-search {
	font-family: 'Roboto', sans-serif;
	display:grid;
	grid-template-columns: 1fr;
	grid-column-gap: 20px;
}

@media (min-width: 1200px) {
	.page-search.page-search-side {
		grid-template-columns: 1fr 360px;
	}
}

.page-search .page-search-title h1 {
	font-weight: 900;
	line-height: 1.4;
	font-family: 'Montserrat', sans-serif;
	color: #959595;
	font-size: 18px;
	margin:0;
	padding-top: 5px;
	padding-bottom: 10px;
}

.page-search .page-search-title {
	border-bottom: 1px solid #eee;
	margin:15px 0 20px;
}

.page-search .search-empty {
	font-family: 'Roboto', sans-serif;
}

.page-search ul {
	font-size:14px;
}

.page-search .search-highlight {
	background: rgba(255, 255, 85, 0.4);
	padding: 3px 7px;
	border-radius: 3px;
	margin: 0 3px;
	font-weight:bold;
	text-transform: none;
	color: #424242;
}

/* SKU results ordering */

.products-container .product-single {
	order:50;
}

.products-container .product-single[data-tag='BestSellers'] {
	order:1;
}

.products-container .product-single[data-product-status='out-of-stock']:not(.product-single[data-tag='BestSellers']):not(.product-single[data-tag='StaffPicks']) {
	-webkit-box-ordinal-group: 100;
	-moz-box-ordinal-group: 100;
	-ms-flex-order: 100;
	-webkit-order: 100;
	order:100;
}

.products-container .product-single[data-product-status='retired'] {
	-webkit-box-ordinal-group: 500;
	-moz-box-ordinal-group: 500;
	-ms-flex-order: 500;
	-webkit-order: 500;
	order:500;
}

/* box css */

.page-search .box {
	border-radius: 5px;
	width: 100%;
	color: #2C3D4F;
	font-size: 13px;
	border: 1px solid #e2e9e9;
	padding: 0;
	margin: 20px 0 0;

	display: block;
	background-color: #F7F9F9;
	width:100%;
}

.page-search .box--body {
	padding:20px;
}

.page-search .box--title {  /* maybe do things here */
	padding: 8px 20px;
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}

.page-search .box--title h4 {
	margin:3px 0;
}

.page-search .box--content a.widget-article {
	display: grid;
	grid-template-columns: 50px 1fr;
	grid-column-gap: 20px;
	margin-top:20px;
	text-decoration:none;
}

.page-search .box--content a.widget-article:hover .title {
	text-decoration:underline;
	color: #2980B9;
}

.page-search .box--content .article-single .desc {
	font-size: 13px;
	text-wrap: pretty;
	color: #828282;
	line-height: 1.42857143;
	display: block;
	width: 100%;
}

.page-search .box--content .article-single .title {
	text-wrap:balance;
	font-size: 14px;
	max-width: 100%;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 4px 0;
	color: #333;
	letter-spacing: -0.03px;
	line-height: 1.3;
	font-weight: bold;
}

.page-search .box--content .widget-image img {
	width: 50px;
	height: 50px;
	max-width:100%;
	border-radius:5px;
	aspect-ratio: 1 / 1;
}

.page-search .product-group-explore {
	max-width:800px;
}</pre></body></html>