section.simple-faq-section {
	--item-padding: 2.5rem;
	--item-border-radius: 3rem;
	padding: 0;
	max-width: 60rem;
	width: 100%;
	margin: 2rem auto 0;
}

@media screen and (max-width: 768px) {
	section.simple-faq-section {
		--item-padding: 1.5rem;
		--item-border-radius: 1.5rem;
	}
}

body section.simple-faq-section ul.simple-faq-list {
	margin: auto;
	padding: 0;
	width: 100%;
}

body ul.simple-faq-list > li {
	padding: 0;
	margin: 0 0 2rem;
	list-style: none;
	background-color: var(--global-palette5);
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

body ul.simple-faq-list > li:last-child {
	margin-bottom: 0;
}

body ul.simple-faq-list > li:hover > p {
	color: #fff;
}

body ul.simple-faq-list > li:hover > p,
body ul.simple-faq-list > li.active > p,
body ul.simple-faq-list > li:hover > p::after,
body ul.simple-faq-list > li.active > p::after {
	color: #fff;
}

body ul.simple-faq-list > li:last-child {
	margin-bottom: 0;
}

body ul.simple-faq-list > li > p {
	font-family: var(--font-head);
	font-weight: bold;
	font-size: var(--text-size-200);
	padding: var(--item-padding);
	padding-right: 4rem;
	color: #fff;
	margin: 0;
	position: relative;
	transition: padding-left 0.3s ease-in-out;
}

body ul.simple-faq-list > li > p:after {
	content: attr(data-content);
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
	color: #fff;
	font-size: 2rem;
	font-weight: 400;
}

body ul.simple-faq-list > li > div {
	padding: 1.5rem;
	display: none;
	background-color: #fff;
	color: var(--global-palette3);
}

body ul.simple-faq-list > li > div p a {
	color: #fff;
	text-decoration: underline;
	transition: all 0.1s ease-in-out;
}

body ul.simple-faq-list > li > div p a:hover {
	text-decoration: none;
	color: #ddd;
}

body ul.simple-faq-list > li > div p:last-child {
	margin-bottom: 0;
}

body ul.simple-faq-list > li.active > div {
	display: block;
	padding: 1.5rem;
}

body ul.simple-faq-list > li div.simple-faq-answer p:first-child {
	margin-top: 0;
	padding-top: 0;
}

body ul.simple-faq-list > li:not(.active):hover > p {
	padding-left: 3rem;
}

@media screen and (max-width: 768px) {
	body ul.simple-faq-list > li {
		line-height: 1.25;
	}

	body ul.simple-faq-list > li:not(.active):hover > p {
		padding-left: 1rem;
	}

	body ul.simple-faq-list > li > p {
		padding-left: 1rem;
		padding-right: 3rem;
		line-height: 1.5;
	}

	body ul.simple-faq-list > li > p:after {
		right: 1rem;
	}

	body ul.simple-faq-list > li > div {
		padding: 0 1rem 1rem;
	}

	body ul.simple-faq-list > li.active > div {
		padding: 1.5rem;
	}
}
