/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 12 2025 | 12:29:11 */
.solucao-filtro {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.solucao-filtro__button {
	cursor: pointer;
	padding: 6px;
	background-color: #154D52;
	border-radius: 4px;
	transition: all 300ms;
	color: #fff;
	font-size: 12px;
	text-transform: uppercase;
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 600;
	padding-right: 1rem;
} 

.solucao-filtro__button.active {
	background-color: #00D8DD;
	color: #154D52;
}

.solucao-filtro__icon {
	background: #00D8DD;
	border-radius: 2px;
	width: 28px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solucao-filtro__button:hover {
	transform: translatey(-1px);
}