div.faq-widget {
	position: relative;
}


div.faq-widget ul.faq-list > li input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	max-height: 50px;
	z-index: 1;
	opacity: 0;
}


div.faq-widget .faq-divider {
	display: block;
	position: relative;
	width: 100%;
	margin-top: -20px;
	/*height: 0px;*/
}

div.faq-widget .faq-divider > div {
	display: inline-block;
	border-bottom: 1px solid black;
}


div.faq-widget h4 {
	width: 100%;
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 15px;
}

div.faq-widget div.content {
	display: inline-block;
	position: relative;
	color: rgba(48, 69, 92, 0.8);
	font-size: 17px;
	font-style: normal;
	line-height: 26px;
	letter-spacing: 1px;
	width: 100%;
	height: auto;
	margin-top: 20px;
	margin-bottom: 30px;
	z-index: 2;
}

div.faq-widget div.transition {
	max-height: 1000px;
	overflow: hidden;
	transition: max-height 800ms linear;
}

div.faq-widget ul.faq-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

div.faq-widget ul.faq-list > li i {
	position: absolute;
	right: 0;
}

div.faq-widget ul.faq-list > li input[type=checkbox]:checked ~ div.transition {
	max-height: 0;
	transition: max-height 600ms cubic-bezier(0, 1, 0, 1);
}

div.faq-widget ul.faq-list > li i:after {
	/*margin-top: 10px;*/
}

div.faq-widget ul.faq-list > li i {
	margin-right: 20px;
}

div.faq-widget ul.faq-list > li:has(input[type=checkbox]:checked) h4 i.active {
	max-width: 0;
	max-height: 0;
	overflow: hidden;

}

div.faq-widget ul.faq-list > li h4 i.active {
	max-width: 100px;
	max-height: 100px;
	overflow: hidden;
	transition: max-width 600ms ease-out 100ms;
}

div.faq-widget ul.faq-list > li h4 i.inactive {
	max-height: 0;
	max-width: 0;
	overflow: hidden;
}

div.faq-widget ul.faq-list > li:has(input[type=checkbox]:checked) h4 i.inactive {
	max-height: 100px;
	max-width: 100px;
	overflow: hidden;
	transition: max-height 600ms ease-in 100ms;
}


div.faq-widget div.content ul {
	display: inline-block;
	margin: 10px;
	min-width: 50%;
	width: auto;
}
