h1 {
	text-align: center;
}

.produtosPesquisa {
	float: right;
	margin: 0 auto;
	border-spacing: 10px;
	width: 50%;
	text-align: center;

	.listaPesquisa {
		cursor: pointer;
	}

	.nomePesquisaArtigo {
		margin-top: 35px
	}

	td {
		border: 1px solid var(--font-color);
	}

	td:hover {
		background-color: var(--hover);
	}

	.imagem {
		width: 100px;
		float: left;

		img {
			width: 100%;
		}
	}

	.preco {
		float: right;
		margin-right: 60px;
		min-height: 100%;
		max-height: 100%;

		p {
			font-size: 28px;
			font-weight: bold;
			text-decoration: underline;
		}
	}
}

.produtos {
	margin: 0 auto;
	float: right;
	border-spacing: 10px;
	width: 85%;
	text-align: center;

	tr {
		font-size: 14px;
	}

	td {
		border: 1px solid var(--font-color);
	}

	td:hover {
		cursor: pointer;
		background-color: var(--hover);
	}

	.imagem {
		width: 100px;
		float: left;

		img {
			width: 100%;
		}
	}

	.preco {
		float: right;
		margin-right: 60px;

		p {
			font-size: 28px;
			font-weight: bold;
			text-decoration: underline;
		}
	}

	.nomeArtigo {
		clear: both;
		padding: 10px 5px 5px 5px;
		max-width: 95%;
		min-height: 60px;
		text-align: center;

		p {
			vertical-align: bottom;
		}
	}
}

#filtros-container {
	position: relative;
	float: left;
}

#toggle-filtros {
	position: fixed;
	top: 165;
	margin-left: 5px;
}

#filtros-sidebar {
	max-width: 200px;
	min-height: 200px;
	background: var(--tabela);
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 8px #0001;
	position: fixed;
	left: 20px;
	top: 200px;
	z-index: 1000;
	button {
		background: var(--button);
		color: var(--font-color);
		border: none;
		padding: 5px 10px;
		margin-top: 10px;
		border-radius: 4px;
		cursor: pointer;
	}
	button:hover {
		background: var(--hover);
	}
}