/**
 * @version		1.1.0
 * @package		Simple Accordeon content plugin
 * @author		ConseilGouz
 * @copyright	Copyright (C) 2019 ConseilGouz. All rights reserved.
 * @license		GNU/GPL v2
 **/
button.accordeon {
	color: #444;	
	cursor: pointer;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	/* font-size: 15px; Removed on 18-10-2021*/
	border-bottom: solid 1px #fff;/*added on 18-10-2021*/
	border-radius:7px;/*added on 18-10-2021*/
	padding: 0.4rem .75rem; /*added on 18-10-2021*/
	transition: 0.4s;
	
}
button.accordeon:focus {
	outline: none;
}
button.accordeon.active, button.accordeon:hover {
	background-color: #c3c2c2;
}
button.accordeon:after {
	font-family: FontAwesome;
	content: '\f055';
	color: #fff;
	font-weight:400;
	float: right;
	margin-left: 5px;
}
button.accordeon.active:after {
	content: '\f056';
}
div.acc_panel {
	padding: .75rem;
	overflow: hidden;
	display: none;
}