<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#ajax-filter-search .form-wrapper {
}

#ajax-filter-search .form-wrapper form {
	border: solid 1px #000000;
	padding: 20px;
}

#ajax-filter-search form input {
	padding: 7px 7px;
}

#ajax-filter-search form input::placeholder {
	color: #aaaaaa;
}

#ajax-filter-search form .textsearch input {
	margin-bottom: 10px;
	width: 100%;
}

#ajax-filter-search form .dim input {
	width: 100%;
}

#ajax-filter-search form h3 {
	text-transform: uppercase;
	font-size: 1.5rem;
	font-weight: 600;
	color: #cf1e1e;
	margin-bottom: 20px;
}

#ajax-filter-search form h4 {
	text-transform: uppercase;
	font-size: 1.0rem;
	font-weight: 600;
	color: #cf1e1e;
}

#ajax-filter-search form p {
	margin: 15px 0 3px;
}

#ajax-filter-search form input[type=checkbox] {
	margin-right: 5px;
}

#ajax-filter-search form hr {
	background-color: #aaaaaa;
	margin: 25px 0;
	height: 0.1px;
}




#ajax-filter-search .results ul {
	list-style: none;
	padding: 0;
}

#ajax-filter-search .results a {
}

#ajax-filter-search .results ul li:before {
	display: none;
}

#ajax-filter-search .results .product-family:not(:last-child) {
	margin-bottom: 40px;
}

#ajax-filter-search .results .product-family h3 {
	text-transform: uppercase;
	color: #cf1e1e;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 20px;
}

#ajax-filter-search .results .product-subcategory:not(:last-child) {
	margin-bottom: 30px;
}

#ajax-filter-search .results .product-subcategory h4 {
	text-transform: uppercase;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
}

#ajax-filter-search .results .product-subcategory table {
	width: 100%;
}

#ajax-filter-search .results .product-subcategory table tr:first-child {
	border: solid 1px #444444;
}

#ajax-filter-search .results .product-subcategory table th,
#ajax-filter-search .results .product-subcategory table td {
	padding: 8px 10px;
}

#ajax-filter-search .results .product-subcategory table th {
	text-transform: uppercase;
	font-size: 1.0rem;
	font-weight: 600;
	color: #cf1e1e;
}

#ajax-filter-search .results .product-subcategory table th:nth-child(2) {
	border-left: solid 1px #444444;
	border-right: solid 1px #444444;
	background-color: #f8f8f8;
}

#ajax-filter-search .results .product-subcategory table tr:not(:first-child):nth-child(odd) {
	background-color: #f8f8f8;
}


#ajax-filter-search .btn {
    cursor: pointer;
	background-color: #cf1e1e;
    border-radius: 0;
    border-color: #cf1e1e;
    color: #fff;
    margin: 10px 10px 10px 0;
}



body:not(.logged-in) #ajax-filter-search .product-select,
body:not(.logged-in) #ajax-filter-search .family-select {
	display: none;
}

.ajax-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.30);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Adjust the z-index to ensure it appears above other elements */
}

.ajax-loading-spinner {
    border: 10px solid rgba(255, 255, 255, 1.0); /* Light border for the spinner */
    border-top: 10px solid #ef3340; /* PMI red border for the spinner */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite; /* Rotate the spinner */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

</pre></body></html>