/* Recipes Grid */

#recipes {
	margin: 0 auto;
	border: 0;
	padding: 0;
	width: 800px;
}

div.recipe {
	display: flex;
	margin-bottom: 5px;
}

div.recipe div {
	flex-basis: 50%;
}

div.recipe_image {
	border: 5px solid #cceeff;
	background: #cceeff;
}

div.recipe_image img {
	width: 360px;
}

div.recipe_info {
	padding: 5px 20px;
	background: #cceeff;
}

div.recipe_info h3 {
	text-align: left;
}

@media screen and (max-width: 800px) {
	#recipes {
		width: 100%;
	}
	#recipes_list {
		width: 370px;
	}
	div.recipe {
		flex-direction: column;
	}
}

/* Recipes Sort / Filter */

#recipes-form {
	margin: 0;
	border: 0;
	padding: 5px;
}

input[type="checkbox"] {
	display: none;
}

label {
	display: inline-block;
	margin: 0 5px 5px 0;
	border: 1px solid #224499;
	padding: 5px;
	border-radius: 5px;
	color: #224499;
	background-color: #ffffff;
	text-align: center;
	height: 18px;
}

label.tag {
	width: 54px;
}

input[type="checkbox"]:checked+label {
	color: #ffffff;
	background-color: #224499;
}

@media screen and (max-width: 800px) {
	#sort-and-filter-toggle {
		display: block;
	}
	#sort-and-filter {
	/*
		display: none;
	*/
	}
}

