*,
*:before,
*:after {
	box-sizing: border-box;
}

.accordion {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 2px solid #8993B3;
}

.accordion > li {
	margin: 0;
}

/**
 * Add zero-width space. needed to ensure Safari + VO respect list semantics.
 * Set the before content to position absolute to negate any visible space
 * the before content could add to the document.
 */
.accordion > li:before {
	content: "\200B";
	position: absolute;
}

.accordion__heading {
	border: none;
	font-size: inherit;
	/*margin: -1px 0 0;*/

	background: #fff url(../images/icon-faq-plus.png) no-repeat 0 50% !important;
}

.accordion__trigger {
	-webkit-appearance: none;
	background-color: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 10px 15px 10px 63px;
	position: relative;
	text-align: left;
	width: 100%;
	font-family:'Source Sans 3',arial,sans-serif;
	font-size: .7em;
	font-weight: 500;
	line-height: 150%;
	color: #2A4194;
	border-bottom: 2px solid #8993B3;
	border-right: 2px solid #8993B3;
}

/**
 * This is needed to allow a double tap iOS 11
 * Safari + VO to function correctly, if there
 * are multiple elements (wrapper spans) to layout
 * text nodes within the accordion button.

	-- This is not needed if a button only contains text
	   and no other child nodes wrapping the text --

.accordion__trigger > * {
	pointer-events: none;
}
 */

.accordion__trigger:hover{
	background: #EDF2F8 url(../images/icon-faq-plus.png) no-repeat 0 calc(50% + 1px) !important;
}

.accordion__trigger:focus {
	background: #fff url(../images/icon-faq-plus.png) no-repeat 0 calc(50% + 1px) !important;
	color: #2A4194;
	outline: 2px solid #2A4194;
}

.accordion__trigger:focus {
	
}

.accordion__trigger[aria-disabled="true"]:hover {
	background-color: transparent;
	color: #2A4194;
	cursor: not-allowed;
}

.accordion__trigger[aria-disabled="true"]:focus {
	/*background-color: #00B6FF;*/
}

.accordion__panel {
	background-color: inherit;
	max-height: 0vh;
	overflow: hidden;
	padding: 0.001em 1.25em;
	position: relative;
	visibility: hidden;
	border-right: 2px solid #8993B3;
	border-left: 2px solid #8993B3;
}

.accordion__panel--transition {
	transition:
	max-height .2s ease-in-out,
	padding-top .2s ease-in-out,
	padding-bottom .2s ease-in-out;
}

.accordion__panel > :last-child {
	margin-bottom: 0;
}

.accordion__panel[aria-hidden="false"] {
	max-height: 100vh;
	overflow: auto;
	padding: 15px 15px 12px 63px;
	visibility: visible;
	background: #fff;
	border-bottom: 2px solid #8993B3;

}

.accordion__trigger[aria-expanded="true"] {
	color: #2A4194;
	background: #fff url(../images/icon-faq-minus.png) no-repeat 0 50% !important;
}
