.faq-container {
	max-width: 800px !important;
	margin-left: auto;
	margin-right: auto;
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	margin-bottom: 12px;
	margin-top: 16px;
}

.faq-containerir:not(:last-of-type) {
	margin-bottom: 20px;
	margin-top: 0px;
}

.faq-container .faq-title-wrapper {
	display: flex;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	border-radius: 3px;
}
.faq-container .active {
	border-radius: 3px 3px 0px 0px;
}

.faq-container .faq-title-wrapper span {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #333333;
}

.faq-container .faq-content-wrapper {
	overflow: hidden;
	transition: max-height 0.3s cubic-bezier(0.26, 0, 0.24, 0.99);
}

.faq-toggle-icon {
	transition: fill 300ms ease-in-out;
}

.faq-container .active .image-wrapper .horizontal-line {
	opacity: 0;
}
.faq-container .active .image-wrapper .vertical-line {
	transform: rotate(90deg) translate(1px, 1px);
	transition: transform 250ms ease-in-out;
	transform-origin: center;
}

.faq-container .image-wrapper .vertical-line {
	transition: transform 200ms ease-in-out;
	transform-origin: center;
}

.faq-container .faq-content-wrapper p {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: #4f4f4f;
	padding: 16px;
}
