.accordion .item .content {
	opacity: 0;
	transform: scaleY(0);
	transform-origin: center top;
	height: 0px;
}

.accordion .item.active .content {
	opacity: 1;
	height: auto;
	transform: scaleY(1);
}

.accordion .item .toggle {
	position: relative;
	cursor: pointer;
}

/*
.accordion .item .toggle::after {
	content: '';
	position: absolute;
	right: 1.5rem;
	width: .7rem;
	height: .7rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 284.84 166.1'%3E%3Cpath d='M149,163.31l133-133a9,9,0,0,0,.41-12.72l-.41-.41L267.8,2.85a9,9,0,0,0-12.72-.41c-.14.13-.28.27-.41.41L142.47,115.06,30.26,2.85a9,9,0,0,0-12.72-.41c-.14.13-.28.27-.41.41L2.85,17.13a9,9,0,0,0-.41,12.72l.41.41,133.05,133a9,9,0,0,0,12.72.42l.42-.42Z' transform='translate(-0.01 -0.01)'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}


.accordion .item.active .toggle::after {
	transform: scaleY(-1);
}
*/