.afa-accordion {
	display: grid;
	gap: 16px;
/* 	overflow: hidden; */
}

.afa-item {
	background: #FFFFFF;
	border: solid 1px #335C8833;
	border-radius: 18px;
	overflow: hidden;
	padding: 20px;
	display: grid;
	gap: 0;
	transition: gap 0.3s ease, padding 0.3s ease;
}

.afa-item.active {
	box-shadow: 0px 4px 12px 0px #335C8833;
	gap: 20px;
}

.afa-question {
	font-weight: bold;
	font-size: 20px;
	line-height: 1.2em;
	color: #335c88;
	cursor: pointer;
	display: flex;
    align-items: center;
	
/* 	gap: 16px; */
	justify-content: space-between;
	flex-direction: row-reverse;
}

.afa-answer {
	max-height: 0;
    overflow: hidden;
	color: #6f6c90;
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.afa-item.active .afa-answer {
/* 	display: block; */
/* 	 max-height: 500px; */
}


/* ICON BASE */
.afa-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.afa-icon img {
    width: 100%;
    height: 100%;
}

/* SINGLE ICON ROTATION */
.afa-item.active .afa-icon {
    transform: rotate(45deg);
}

/* DUAL ICON */
/* .afa-icon-active {
    display: none;
}

.afa-item.active .afa-icon-default {
    display: none;
}

.afa-item.active .afa-icon-active {
    display: block;
} */


@media only screen and (max-width: 768px) {
	.afa-question {
		font-size: 18px;
	}
	.afa-icon {
		width: 12px;
		height: 12px;
	}
}