.al-questions {
	margin-bottom: 24px;
}
.al-questions h2 {
	text-align: left;
}
.al-questionsbox {}
.al-question-item {
	border-top: 1px solid #ccc;
	padding-top: 12px;
	padding-bottom: 12px;
}
.al-question-item:last-child {
	border-bottom: 1px solid #ccc;
}
.al-question {
	display: flex;
	align-items: flex-start;
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.15px;
	cursor: pointer;
	text-decoration: none;
	color: #333;
}
.al-question:after {
	content: url("../img/icon/arr-down.svg");
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-left: auto;
}
.al-answer {
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.25px;
	color: #333;
	/*height: 0;
	opacity: 0;
	visibility: hidden;	
	transition: .2s;*/
	display: none;
}
.al-answer-active {
	/*height: auto;
	opacity: 1;
	visibility: visible;*/
	padding-top: 16px;
	display: block;
}
.al-question-active:after {
	content: url("../img/icon/arr-up.svg");
}
@media (min-width: 769px) {
	.al-questions {
		margin-bottom: 72px;
	}
	.al-question {
		font-weight: 700;
		font-size: 18px;
		line-height: 140%;
	}
}