summary {
	font-size: 1.25rem;
	font-weight: 600;
	background: linear-gradient(to bottom, #FF7F50 0%, #FF6750 100%);
	color: #FFF;
	padding: 10px 10px 10px 20px;
	margin-bottom: 15px;
	outline: none;
	border-radius: 0.25rem;
	text-align: left;
	cursor: pointer;
	position: relative;
	width: 700px;
}

h2.faq_title {
	margin: 20px 10px 15px 0;
	font-size: 24px;
}

details ul {
	margin-left: 25px;
}

details li {
	display: block;
	margin: 10px;
	font-size: 14px;
}




details li::before {
  content:"\2022";
  margin-inline-end: 1ch;
}


details > summary::after {
  position: absolute;
  content: "+";
  right: 20px;
}
details[open] > summary::after {
  position: absolute;
  content: "-";
  right: 20px;
}
details > summary::-webkit-details-marker {
  display: none;
}

details[open] summary ~ * {
  animation: sweep .3s ease-in-out;
}
@keyframes sweep {
  0%    {opacity: 0; margin-top: -10px}
  100%  {opacity: 1; margin-top: 0px}
}