.w4hs-expandable.initialized div.w4hs-expandable-content
{
	max-height: 2500px;
	opacity: 1;
	transform: scaleY(1);
	transition: .4s all;
	transform-origin: top;
}

.w4hs-expandable.initialized.collapsed div.w4hs-expandable-content
{
	max-height: 0;
	opacity: 0;
	transform: scaleY(0);
}

.w4hs-expandable.initialized div.w4hs-expandable-content *
{
	transition: .5s all, .2s color;
	max-height: 2500px;
}

.w4hs-expandable.initialized.collapsed div.w4hs-expandable-content *
{
	margin: 0;
	max-height: 0;
}

.w4hs-expandable .w4hs-expandable-heading .control
{
	/* background-color: #999; */
	text-decoration: none;
	text-align: center;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: .7em;
	height: .7em;
	font-weight: bold;
	font-size: 1.6em;
}

.w4hs-expandable .w4hs-expandable-heading
{
	position: relative;
	display: flex;
	align-items: center;
}

.w4hs-expandable .w4hs-expandable-heading .control:after
{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}


.w4hs-expandable h4.w4hs-expandable-heading .control
{
	width: 20px;
	height: 20px;
	font-size: 20px;

}


.w4hs-expandable p:first-child:empty,
.w4hs-expandable p:last-child:empty
{
	display: none;
}