.system-filter-wrap {
	background-color: #444;
	padding: 5px 20px 10px 60px;
	margin: 20px auto 30px auto;
}
.system-filters {
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	gap: 5px 20px;
}
.system-filters-group {
	border-top: 5px solid #444;
	background-color: #eee;
}
.system-filters-title {
	min-width: 120px;
	min-height: 30px;
	display: flex;
	align-items: center;
}
.system-filters-title h5 {
	margin: 0;
	padding: 0 0 0 10px;
	font-family: lato, tahoma, sans-serif;
	font-size: 12px;
	font-weight: 900;
	color: #555;
}
.system-filters-title h5 span {
	display: block;
	padding-right: 5px;
}
.system-filters-group.filtered h5 {
	color: #fe5907;
	font-size: 11px;
	font-weight: normal;
}
.system-filters-group.filtered {
	border-color: #fe5907;
	background-color: #000000;
}
.system-filters-list {
	display: none;
	position: absolute;
	z-index: 900;
	background-color: #eee;
	padding: 10px;
	font-size: 11px;
	min-width: 100px;
	line-height: 20px;
	border-top: 5px solid #444;
	border-bottom: 5px solid #fe5907;
	box-shadow: 2px 2px 2px rgba(0,0,0,.25);
}
.system-filters-list > div {
	display: flex;
	align-items: center;
	gap: 3px;
}
.system-filters-list label {
	display: block;
	flex-grow: 1;
	cursor: pointer;
}
.system-filters-list input:hover + label,.system-filters-list label:hover {
	color: black;
}
.system-filters-list input:disabled + label,.system-filters-list label:disabled {
	color: #aaa !important;
	cursor: auto;
}
.system-filters-group:hover {
  border-color: #fe5907;
}
.system-filters-group:hover .system-filters-list {
	display: block;
}

.filtered-out {
	display: none;
}





.system-finder-wrap {
	background-color: #444;
	padding: 5px 20px 10px 20px;
	margin: 20px auto 30px auto;
	box-sizing: border-box;
}
.system-finder {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	gap: 30px;
}
.system-finder-title {
	color: white;
	text-align: justify;
	text-transform: uppercase;
	font-size: 12px;
	display: grid;
	padding-left: 35px;
	background: url(https://www.thinkmate.com/images/system-finder.svg) left center no-repeat;
	background-size: 25px;
}
.system-finder-title h4 {
	font-size: 17px;
	margin: 0;
	padding: 0;
}

.system-finder-submit { justify-self: end; }
.system-finder-group h4 {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-family: Lato, Tahoma, Sans-Serif;
	font-weight: 900;
	line-height: 24px;
	border-radius: 5px 5px 0 0;
	color: #aaa;
}
.system-finder-list-line {
	display: flex;
	align-items: center;
	gap: 3px;
}
.system-finder-list-line label {
	flex-grow: 1;
	color: #eee;
	font-size: 11px;
}
.system-finder-list-line .count {
	display: inline-block;
}

.system-finder-list-line input:disabled + label {
	color: #888 !important;
}
.system-finder-list-line input:hover + label
,.system-finder-list-line label:hover {
	color: white;
}

.system-finder-filters {
	display: none;
	grid-auto-flow: column;
	height: 220px;
	gap: 20px 40px;
}

.system-finder-cta {
	text-align: center;
	color: white;
	font-weight: bold;
	justify-self: center;
	margin-bottom: 0;
}



@media (min-width : 320px) and (max-width : 667px) {

	.system-finder-wrap {
		max-width: 100vw;
	}

	.system-finder {
		grid-auto-flow: row;
		padding: 5px;
	}

	.system-finder-title {
		justify-self: center;
		transform: scale(1.15);
		margin-left: -17px;
	}

	#system-finder-cta {
		max-width: 65vw;
		justify-self: center;
	}

	.system-finder-submit {
		justify-self: center;
	}

	.system-finder-filters { gap: 1rem; }

 }