/* @author Tim himself */

.ziehharmonika h3 {
	background: #153a59;
    color: #b4e13c;
    text-align: left;
    border-radius: 0px;
    padding: 0px 0px 15px 15px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 15px;
    padding-right: 0px;
    transition: 0.25s all;
    position: relative;
    height: 55px;
    line-height: 49px;
    font-size: 22px;
}
.ziehharmonika h3.active {
	margin-bottom: 0px;
    background: #153a59;
}
.ziehharmonika h3::before {
	content: attr(data-prefix);
	font-size: 18px;
	margin-right: 9px;
}
.ziehharmonika h3.alignLeft {
	padding-left: 35px;
}
.ziehharmonika > div {
	display: none;
	background: #fff;
	border-radius: 0px;
	text-align: left;
	margin-bottom: 9px;
	border: 1px solid #fff;
    padding: 20px 30px;
    box-shadow: 0px 1px 3px 1px #153a5914;
	
}
.ziehharmonika .arrowDown {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13.0px 7.5px 0 7.5px;
	border-color: #272e35 transparent transparent transparent;
	position: absolute;
	bottom: 0;
	left: 40px;
	transition: 0.25s all;
	opacity: 0;
}
.ziehharmonika .active .arrowDown {
	bottom: -13px;
	border-color: #009641 transparent transparent transparent;
	opacity: 1;display: none;
}
.ziehharmonika .collapseIcon {
	position: absolute;
	right: 20px;
	top: 45%;    display: none;
	font-size: 25px;
	font-weight: 300;
	-ms-transform: translate(0, -50%);
	    transform: translate(0, -50%);
}
.ziehharmonika .collapseIcon.alignLeft {
	right: initial;
	left: 20px;
}
.ziehharmonika h3:before {    content: "";
    background: url(../images/accordiandown.png);
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    top: 0px;
    float: right;
    margin-right: 0px;
    width: 76px;
    height: 55px;
    background-color: #b4e13c;
    background-position: center bottom; }
.ziehharmonika h3.active:before {
    content: "";
    background: url(../images/accordianup.png);
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    top: 0px;
    float: right;
    margin-right: 0px;
    width: 76px;
    height: 55px;
    background-color: #b4e13c;
    background-position: center bottom; }