.accordion,
.accordion * {
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	box-sizing: border-box;
}
.accordion {
	overflow: hidden;
	/* box-shadow: 0px 1px 3px rgba(0,0,0,0.25); */
	/* border-radius: 3px; */
	background: #f7f7f7;
	margin-bottom: 30px;
}
.accordion-section-title {
	width: 100%;
	/* padding: 10px 15px; */
	padding: 0 15px;
	display: inline-block;
	/* border-bottom: 1px solid #1a1a1a; */
	background: #eeeeee;
	transition: all linear 0.15s;
	/* Type */
	/* font-size: 1.200em; */
	/* text-shadow: 0px 1px 0px #1a1a1a; */
	color: #000033;
	font-size: 16px;
	font-weight: 700;
	position: relative;
	padding-left: 55px;
	margin-bottom: 10px;
	height: 40px;
	line-height: 40px;
}

.accordion-section-title:before {
	display: block;
	/* content: 'Pytanie:'; */
	content: '\f27b';
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	
	position: absolute;
	left: 0;
	top: 0;
	color: #ffffff;
	background-color: #8e0d00;
	/* height: 100%; */
	/* padding: 11px 10px; */
	padding: 0 10px;
	/* font-size: 16px; */
	font-size: 20px;
	font-weight: 700;
	height: 40px;
	line-height: 40px;
	transition: all linear 0.15s;
}
.regulaminy .accordion-section-title:before {
	content: '\f114';
}
.accordion-section-title.active,
.accordion-section-title:hover {
	color: #ffffff;
	background: #999999;
	text-decoration: none;
}
/* .accordion-section-title.active:before, */
/* .accordion-section-title:hover:before { */
	/* color: #000033; */
	/* background: #eeeeee;	 */
/* } */
	
.accordion-section:last-child .accordion-section-title {
	border-bottom: none;
}
.accordion-section-content {
	color: #000033;
	font-size: 16px;
	background-color: #ffffff;
	
	padding: 5px 2px 15px;
	display: none;
}
.accordion-section-content p {
	margin-bottom: 10px;
}