/*------------------------
Accordion 
NOTE: Add class "accordion-icons-right" to change icon position
-------------------------*/ 
.accordion {
	border-top: var(--border-std);
}
.accordion-panel {
	list-style: none;
	border-bottom: var(--border-std);
}

.accordion-panel.is-active #content-spec{
	display: flex;
	flex-direction: row;
	@media screen and (max-width: 769px) {
		flex-direction: column;
	}
}
 
/* Reset Button style */
button.accordion-title {
	display: initial;
	border-radius: unset;
	width: 100%;
	background: none;
	border: none;
	text-align: left;
}
.accordion-title {
	font-size: 1.3em;
	font-weight: 300; 
	font-family: 'poppinslight', sans-serif;
	cursor: pointer;
	padding: 15px 0 15px 15px;
	position: relative;
	color: black;
	max-width: 98%;
}

/* Icon + */
.accordion-title:before/*,
.accordion-title:after */ {
	content: '\f078';
	font-family: "Font Awesome 5 Pro";
	right: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.8em;
	transition: transform 400ms ease;
}
.accordion-title:after {
	/* transform: translateY(-50%) rotate(-90deg); */
}
.accordion-title[aria-expanded="true"]:before {
	content: "\f077";
}

/* Focus */
.accordion-title:focus:after,
.accordion-title:focus:before {
	/* height: 2px; */
}
.accordion-content {
	display: none;
	padding-left: 25px;
	padding-bottom: 25px;
}

/* Move icons on the right - add class to accordion */
.accordion-icons-right .accordion-title:before,
.accordion-icons-right .accordion-title:after {
	right: 0;
	left: auto;
}
.accordion-icons-right .accordion-title {
	padding: 15px 25px 15px 0;
}
.accordion-icons-right .accordion-content {
	padding-left: 0;
	padding-right: 25px;
}

/*------------------------
	Tablet and up
-------------------------*/
@media screen and (min-width: 769px) {
	.accordion-panel {
		display: flex;
		flex-direction: column;
	}
	button.accordion-title,
	.accordion-title,
	.accordion-content {
		width: 80%;
		margin: 0 auto;
	}
	.accordion-title {
		font-size: 1.5em;
		padding: 20px 0 20px 30px;
	}
	.accordion-icons-right .accordion-title {
		padding: 20px 30px 20px 0;
	}
	.accordion-content {
		padding-left: 30px;
		font-size: 16px;
	}
	.accordion-icons-right .accordion-content {
		padding-left: 0;
		padding-right: 30px;
	}
}
