.accordion-head {
display: flex;
align-items: center; /* vertically aligns header to expand */
justify-content: space-between; /* change to flex-start if you want expand icon next to text */
padding: .8em .5em;
}

.accordion-head:hover {
/*background-color: #ddd; /* grey on hover - optional but good to show change of state */

cursor: pointer;
}

.sub-x h3.accordion-title {
    margin: 0 auto;
    padding: 10px;

}

.accordion-head h3 span::before	{
	content: '\2003'; /*emspace*/
}	

.accordion-head h3:hover {
color: blue;
}

.accordion-expand {
	font-size: 150%;
	font-weight: 300;
	padding: 0px 8px;
	border-radius: 50%;
}

.minus {
font-size: 220%;
}

.accordion-title {
font-size: 120%;
margin: 0px 5px;
}

.accordion-body {
max-height: 0;
visibility: hidden;
overflow: hidden;
transition-duration: 800ms;
transition-property: max-height, visibility;
}

.accordion-body.open {
visibility: visible;
transition-duration: 800ms;
transition-property: max-height, visibility;
}

.accordion-container {
border-bottom: 1px solid #d9d9d9;
}

.accordion-container:last-child {
border-bottom: none;
}

.accordion-ul {
	width: 52rem;
	max-width: 92% !important;
	padding-left: 0px!important;
	margin: 1em auto 0!important;
	list-style-type: none;
}

/*OVERIDE ANY OTHER DEFAULT WIDTH*/
span.accordion-name h3 {
width: 100%;
margin: 0px;
}

section.post-id-525 .accordion-head	{
	background-color: rgba(162,185,221,0.5);
}