.faq-item {
	border-bottom: 1px solid #cccccc;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-question {
	cursor: pointer;
	margin: 0;
	user-select: none;
	position: relative;
	padding: 14px 30px 14px 10px;
}
.faq-item.active .faq-question {
	background: floralwhite;
	outline: 2px solid;
	transform: translate(0, 10px);
}
.faq-question:hover {
	background: #eeeeee;
    z-index: 1;
}
.faq-item .faq-question:after {
	content: " ";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-10px, -50%) rotate(45deg);
	border: solid #cccccc;
    border-width: 0 2px 2px 0;
    height: .5rem;
    width: .5rem;
}
.faq-item.active .faq-question:after {
	border: none;
}
