.accordion-wrap {
    position: relative;
}
.accordion-title {
    padding: 14px 10px 14px 35px; 
    font-weight: 400; 
    background: #CC184B; 
    color: #fff; 
    cursor: pointer; 
    margin-bottom: 5px; 
    line-height: 1em;
    text-transform: uppercase;
}
.accordion-title:before{
	position: absolute;
	content: "+";
	left: 10px;
	margin-top: 0px;
	padding: 0 6px;
	width: 20px;
	font-size: 18px;
	font-weight: 700;
}
.accordion-open{
	background: #941036;
}
.accordion-open:before{
	position: absolute;
	content: "-";
	left: 12px;
	margin-top: -1px;
	padding: 0 6px;
	width: 20px;
	font-size: 18px;
	font-weight: 700;
}
.accordion-content {
    padding-bottom: 15px; 
    width: 100%; 
    line-height: 1.8em;
}