@charset "UTF-8";

.accordion {
margin: 0.5em auto;
max-width: 90vw;
}
.toggle {
display: none;
}
.option {
position: relative;
margin-bottom: 0.25em;
}
.title,
.content {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
transform: translateZ(0);
transition: all 0.3s;
}
.title {
border-bottom: solid 1px #cea232;
padding: 0.5em;
display: block;
font-size: 1.25rem;
font-weight: bold;
}
.title::after,
.title::before {
content: "";
position: absolute;
right: 1.25em;
top: 1.25em;
width: 2px;
height: 0.75em;
background-color: #fff;
transition: all 0.3s;
}
.title::after {
transform: rotate(90deg);
}
.subtitle {
	color: #cea232;
	margin-left: 1em;
	font-size: 1.0rem;
}
.content {
max-height: 0;
overflow: hidden;
}
.content p {
margin: 0;
padding: 0.25em 0em 0.5em 1.5em;
font-size: 1em;
line-height: 1.5;
}
.content li{
	list-style-type: disc;
	list-style-position: inside;
	color: #cea232;
	font-weight: bold;
}
.content li p{
	color: #fff;
	font-weight: normal;
}
.content li li{
	list-style-type:disc;
	list-style-position: inside;
	color: #fff;
	font-weight: normal;
}
.toggle:checked + .title + .content {
max-height: 5000px;
transition: all 1.5s;
}
.toggle:checked + .title::before {
transform: rotate(90deg) !important;
}
