.btn-dropdown {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 3px solid #004067;
	background-color: transparent;
}

.btn-inactivo {
	border-radius: 8px 8px 0 0;
	font-weight: bold;
	color: #004067;
	background-color: #E6EDF3;
}

.btn-activo {
	border-radius: 8px 8px 0 0;
	font-weight: bold;
	color: white;
	background-color: #004067;
}

.btn-activo:focus {
	color: white;
}

.flecha {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transform-origin: center;
	font-weight: bold;
  transition: transform 0.2s ease;
}

.btn-dropdown:not(.collapsed) .flecha {
	transform: rotate(180deg);
}

.views-element-container {
	padding: 24px;
}

@media screen and (max-width: 768px) {
	h2 {
		font-size: 16px;
	}
}