.feature_image + .search.compare {
	display: flex;
	background: white;
}

.feature_image + .search .inner {
	width: calc(100% - 315px);
	height: 100%;
	margin-right: 1.5rem;
}

.color_guide_img {
	width: 300px;
}

.color_guide_img img {
	width: 100%;
}

.cover_materials_container {
	display: flex;
	align-items: flex-start;
	margin-top: 2rem;
}

.cover_material_category,
.cover_material_image,
.cover_material_title,
.cover_materials_h2 { display: block; }

.cover_materials_grid {
	width: calc(100% - 200px);
	min-height: 100px;
	margin-right: 15px;
	position: relative;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;

	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;

	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.cover_materials_h2 {
	display: flex;
	justify-content: center;
	margin-bottom: 2.4rem;
}

.cover_materials_grid:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #AAA;
    position: absolute;
    left: 0;
    bottom: 2.4rem;
}

.viewer_contain.container.cover_materials_filter {
	text-align: center;
	width: 200px;
	background-color: #EAEDEF;
	margin-top: 0;
	padding: 1rem;
}

.cover_materials_filter .filter_header {
	display: flex;
	justify-content: space-between;
}

.cover_materials_filter h3 {
	font-size: 1.5rem;
	text-transform: uppercase;
	margin-top: 0;
}

.cover_materials_filter a {
	font-size: 1.3rem;
	color: black;
}

.cover_materials_filter .filter {
	display: flex;
	align-items: center;
}

.cover_materials_filter .filter label {
	margin-left: 1rem;
}

.cover_materials_filter input[type="checkbox"] {
	appearance: none;
	width: 15px;
	height: 15px;
	margin-top: 5px;
	z-index: 1;
	cursor: pointer;
}

.cover_materials_filter input[type="checkbox"],
.cover_materials_filter input[type="radio"] {
	appearance: none;
	background-color: transparent;
	border: 2px solid #007dc4;
	width: 15px;
	height: 15px;
	margin: 4px 0;
}

.cover_materials_filter input[type="checkbox"]:checked,
.cover_materials_filter input[type="radio"]:checked {
	background-color: #007dc4;
}

.cover_materials_filter .viewer {
	width: calc(100% - 30px);
	border: none;
	text-align: left;
	padding-left: 5px;
}

.cover_materials_filter .filter_group {
	border-bottom: 2px solid black;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}

.cover_materials_filter select {
	width: 100%;
	height: 35px;
	font-size: 1.5rem;
	color: #666;
	border: none;
	border-radius: 5px;
	padding: 5px;
	margin-bottom: 1rem;
	cursor: pointer;
}

.cover_material_category {
	float: left;
	width: 25%;
	color: #000;
	margin-bottom: 2.4rem;
	padding: 0 1rem 2rem 1rem;
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid #AAA;

	-webkit-box-flex: 1;
	-webkit-flex: 0 1 auto;
	    -ms-flex: 0 1 auto;
	        flex: 0 1 auto;
}

.cover_material_category a {
	position: relative;
	display: block;
}

.cover_material_category .description {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	color: white;
	padding: 1rem;
	display: none;
}

.cover_material_category .description .learn_more {
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	margin-top: 1rem;
}

.cover_material_category .description .learn_more:after {
	border-color: white;
	border-width: 2px;
}

.cover_material_category a:hover .description {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
}

.cover_material_image {
	max-width: 100%;
	margin: 0 auto 1rem auto;
}

.cover_material_title {
	font-size: 1.4rem;
}

/* ==========================================================================
Mobile view (less than 1020 pixels)
========================================================================== */
@media all and (max-width: 1020px) {
	.cover_materials_container {
		padding-right: 2rem;
	}
}

 /* ==========================================================================
 Mobile view (less than 800 pixels)
 ========================================================================== */
 @media all and (max-width: 800px) {
	 .feature_image + .search.compare {
		 display: block;
	 }

	 .feature_image + .search .inner {
		 width: 100%;
	 }

	 .color_guide_img {
		 width: auto;
		 max-width: 300px;
		 margin: auto;
		 margin-top: 2rem;
	 }

	 .cover_material_category {
		 width: 33.3333%;
	 }
 }

 /* ==========================================================================
 Mobile view (less than 650 pixels)
 ========================================================================== */
 @media all and (max-width: 650px) {
 	.cover_material_category {
		width: 50%;
	}
 }

 /* ==========================================================================
 Mobile view (less than 550 pixels)
 ========================================================================== */
@media all and (max-width: 550px) {
	.cover_materials_container {
		display: block;
		padding: 0;
		margin: 0 2rem;
	}

	.cover_materials_grid {
		width: 100%;
	}
	
	.viewer_contain.container.cover_materials_filter {
		width: 100%;
	}

	.cover_material_category {
		width: 50%;
	}

	.cover_material_image {
		width: 100%;
	}
}

/* ==========================================================================
Mobile view (less than 450 pixels)
========================================================================== */
@media all and (max-width: 450px) {
	.cover_material_category {
		width: 100%;
	}
}