/* accordion setup */
.accordion-wrapper {
border-bottom: 1px solid #000;
margin-bottom: -1px;
padding-bottom: 0;
}

.accordion-wrapper.sb {
margin-bottom: 4.8em;
}

.accordion-header,
.accordion-content {
position: relative;
width: 100%;
float: left;
}

/* accordion header */
.accordion-header {
padding: 1em  5.5em 1em 0;
border-top: 1px solid #000;
}

.accordion-subtitle {
font-size: 2.4em;
line-height: 130%;
font-weight: normal;
}

.accordion-header:after {
content: "";
position: absolute;
top: 50%;
right: 2em;
transform: rotate(45deg);
margin-top: -1.5em;
width: 20px;
height: 20px;
border-right: 2px solid #000;
border-bottom: 2px solid #000;
}

.open .accordion-header:after {
transform: rotate(-135deg);
margin-top: -0.75em;
}

/* accordion content */
.edit-mode .accordion-content {
display: block;
}

.accordion-content {
padding-bottom: 1.6em;
}
