/**
 * Accordion.js styles
 * @see https://github.com/awps/Accordion.JS
 */
.accordionjs,
.accordionjs .acc_section,
.accordionjs .acc_section .acc_head,
.accordionjs .acc_section .acc_content {
	position: relative;
}

.accordionjs {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: 10px;
	margin-bottom: 20px;
}

.accordionjs .acc_section {
	z-index: 10;
	overflow: hidden;

	border: 1px solid #dbcee2;
	border-width: 0 0 1px 0;		
}

.accordionjs .acc_section .acc_head {
	padding: 10px;
	display: block;
	cursor: pointer;

	z-index: 1;
}

.accordionjs .acc_section .acc_head h3 {
	line-height: 1;
	margin: 5px 0;
}

.accordionjs .acc_section .acc_content {
	padding: 10px;
	z-index: 2;
}

.accordionjs .acc_section.acc_active > .acc_content {
	display: block;
}

/**
 * Block styles
 */

.wp-block-tsf-dl {
	width: 100%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.accordionjs .acc_section .acc_head,
.accordionjs .acc_section .acc_content {
	padding-left: 60px;
}

.accordionjs .acc_section .acc_head {
	font: normal 500 22px/1.56em Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: relative;
	padding-top: 27px;
	padding-bottom: 25px;
}

.acc_head:before {
	content: '';
	position: absolute;
	width: 24px;
	height: 24px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: transparent url(../img/plus.svg) center center/24px 24px no-repeat;	
}

.acc_section.acc_active .acc_head:before {
	background: transparent url(../img/minus.svg) center center/24px 24px no-repeat;	
}

.accordionjs .acc_section .acc_content {
	font: normal 400 18px/1.4em Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;	
	padding-top: 0;
	padding-bottom: 0;
	margin-top: -12px;
}

.accordionjs p {
	margin-bottom: 23px;
}