#chart-filter-years {
	display: flex;
	align-items: flex-end;
	height: 100px;
	margin:1rem 0 0;
}

#chart-filter-years-container .bar {
	flex: 1;
	margin: 0 1px;
	background-color: steelblue;
	transition: opacity 0.3s;
	position: relative;
}

#chart-filter-years-container .bar::after {
	content: "";
	display: block;
	background: black;
	height: 2px;
	width: calc(100% + 4px);
	position: absolute;
	bottom: -1px;
	left: -2px;
}

#chart-filter-years-container .bar.inactive {
	opacity: 0.2;
}

#chart-filter-years-container .bar.inactive::after {
	display: none;
}

/* Slider duplo */
#chart-filter-years-container .slider-wrapper {
	position: relative;
	height: 12px;
	margin-top: -6px;
}

#chart-filter-years-container .slider-wrapper input[type=range] {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	pointer-events: none;
	/* evita conflito de clique */
	-webkit-appearance: none;
	appearance: none;
	background: none;
}

#chart-filter-years-container .slider-wrapper input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: auto;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: black;
	cursor: pointer;
}

#chart-filter-years-container .controls {
	display: flex;
	justify-content: center;
	gap: .5rem;
	margin-top: 10px;
}

#chart-filter-years-container .controls input {
	text-align: center;
	border: 1px solid #CCC;
	font-size: .875rem;
	padding: .25em;
	width: 100%;
}

#chart-filter-years-container .controls input:focus {
	outline: none;
	box-shadow: none;
	border-color: #666;
}