body {
	background-color: var(--color-3);
	min-height: 100vh;
}

/*----------------------------------------------------------
PRODUCT DESCRIPTION
----------------------------------------------------------*/
.description {
	display: flex;
	margin: 4rem var(--padding-general-left) 0;
	color: var(--color-1);
	overflow: hidden;
}

.description .content .text {
	color: var(--color-black);
}

.text a {
	color: var(--color-black);
}

.description .content {
	width: 70%;
}

.description img {
	margin-top: 2rem;
	width: 20%;
}

/*----------------------------------------------------------
PRODUCT FILTER
----------------------------------------------------------*/
.accessories-page-wrapper {
	display: flex;
	justify-content: stretch;
	align-items: flex-start;
	margin: 2rem var(--padding-general-left);
}

/* Filter side */
.accessories-page-wrapper form {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	border-radius: 15px;
	width: 20%;
	background-color: white;
}

.filter-category h2 {
	/* text-align: center; */
	margin-left: 0.5rem;
	margin-bottom: 0.5rem;
	text-decoration: underline;
	color: var(--color-1);
	font-size: 20px;
}

label.checkbox-tile {
	position: relative;
	display: block;
	margin: 0.3rem;
	height: 5rem;
	border: 1px solid var(--color-2);
	border-radius: 15px;
	background-color: transparent;
	cursor: pointer;
}

label.checkbox-tile input {
	opacity: 0;
}

label.checkbox-tile .content {
	position: absolute;
	top: 0;
	border: 2px solid white;
	border-radius: 15px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: stretch;
	align-items: center;
}

label.checkbox-tile input:checked ~ .content {
	background-color: var(--color-2);
}

label.checkbox-tile input:checked ~ .content span {
	font-weight: 400;
	color: var(--color-3);
}

label.checkbox-tile .content img {
	width: 30%;
	max-height: 50px;
}

label.checkbox-tile .content span {
	flex: 1;
	text-align: center;
	font-family: var(--main-font);
	font-size: 20px;
	color: var(--color-2);
}

/* Results side */
section.results {
	margin: 0;
	padding: 0;
	flex: 1;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

/*----------------------------------------------------------
FOOTER
----------------------------------------------------------*/
/* footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
} */

/*----------------------------------------------------------
------------------------------------------------------------
------------------------------------------------------------
MEDIA QUERIES
------------------------------------------------------------
------------------------------------------------------------
----------------------------------------------------------*/
@media screen and (max-width: 767px) {
	/*----------------------------------------------------------
PRODUCT DESCRIPTION
----------------------------------------------------------*/
	.description {
		margin: 3rem auto 1rem;
		width: 90%;
		flex-direction: column-reverse;
	}

	.description .content {
		width: 100%;
		text-align: justify;
	}

	.description .content h1 {
		text-align: left;
	}

	.description img {
		margin-top: 3rem;
		width: 100%;
	}

	/*----------------------------------------------------------
PRODUCT FILTER
----------------------------------------------------------*/
	.accessories-page-wrapper {
		margin: 1rem auto;
		width: 95%;
		flex-direction: column;
	}

	/* Filter side */
	.accessories-page-wrapper form {
		width: 100%;
	}
}
