#containerEvolucion {
	min-width: 310px;
	height: 500px;
	margin: 0 auto
}

.highcharts-credits {
	display: none;
}

#change-chart-button-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	height: 200px;
}

.chart-button-container {
	padding: 5px 10px;
	border-radius: 4px;
	border: 2px solid var(--rojo-ssreyes);
	background: white;
	color: var(--rojo-ssreyes);
	font-weight: bold;
	font-size: .9rem;
	cursor: pointer;
	transition: background .25s ease, color .25s ease, transform .15s ease, box-shadow .25s ease;
}

.chart-button-container:hover {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
	transform: translateY(-1px);
}

.chart-button-container.selected {
	background: var(--rojo-ssreyes);
	color: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}