section.m17_akkordeon .m17_akkordeon_item_head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor:pointer;
	padding:20px;
	color: #2b333c;
	background-color:#fff;
	border-radius: 20px;
	position: relative;
	-webkit-transition: background-color 0.5s, color .5s;
    -moz-transition: background-color 0.5s, color .5s;
    -ms-transition: background-color 0.5s, color .5s;
    -o-transition: background-color 0.5s, color .5s;
    transition: background-color 0.5s, color .5s;
}

section.m17_akkordeon .m1_titel_container {
	margin-bottom: 30px;
}

section.m17_akkordeon .m1_titel_container .m1_titel {
	font-size: 1.8rem;
}

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head{
	background-color:#2b333c;
	color: #fff;
}

section.m17_akkordeon .m17_akkordeon_item_head_beschriftung {
	width: calc(100% - 30px);
}

section.m17_akkordeon .m17_akkordeon_item_head_icon_container {
	widows: 20px;
}

section.m17_akkordeon .m17_akkordeon_item {
	margin-bottom: 20px;
}

section.m17_akkordeon .m17_akkordeon_item_head p{
	margin:0;
	font-weight: 700;
}

section.m17_akkordeon .m17_akkordeon_item_content{
	display:none;
	overflow:hidden;
	padding: 0 20px;
	background: #fff;
	color: #2b333c;
	margin-top: -30px;
	border-radius: 0 0 20px 20px;
}

section.m17_akkordeon .m17_akkordeon_item_content_main{
	padding: 50px 0 20px;
}

section.m17_akkordeon .m17_akkordeon_item_head_icon{
	width:20px;
	fill: #2b333c;
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
	-ms-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	transform:rotate(90deg);
	-webkit-transition: -webkit-transform 0.5s, fill .5s;
	-moz-transition: -moz-transform 0.5s, fill .5s;
	-ms-transition: -ms-transform 0.5s, fill .5s;
	-o-transition: -o-transform 0.5s, fill .5s;
	transition: transform 0.5s, fill .5s;
}

section.m17_akkordeon .m17_akkordeon_item.active .m17_akkordeon_item_head_icon{
	fill: #fff;
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

section.m17_akkordeon .m17_akkordeon_item_content_main ul {
	margin-bottom: 0;
}

@media screen and (max-width: 450px) {
	section.m17_akkordeon .m17_akkordeon_item_content_main .m17_akkordeon_mobil_umbruch {
		display: inline-block;
		width: 100%;
	}
	
	section.m17_akkordeon .m17_akkordeon_item_content_main ul {
		padding-left: 1rem;
	}
}