/* laiv.accordion v1.25.1 | last modifications: 2025-02-13.0 */

.accordion {
	background-color: #287DA8; 	/* (*1) #e7f7fd; */
	color: #fff; 				/* (*1) #6e6e6e; */
	cursor: pointer;
	padding: 4px 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.2s;
}

.active, .accordion:hover {
	background-color: #287da8;
	color: #fff;
	border-bottom: none;
}

.accordion:after {
	content: '\25BC';
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.active:after {
	content: '\25BA';
}

.panel {
	padding: 2px 8px;
	background-color: #ffffff;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

/*
	(*1)
		changed on 2024-03-12
		in the interest of 4LWL
*/