.collapsible {
	margin-bottom: 1em;
}

.collapsible h3 {
	margin: 0;
	padding: .5em;
	display: flex;
	font-weight: 700;
	justify-content: flex-start;
	width: 100%;
	position: relative;
	color: #000;
	background-color: #e2e2e2;
}

.collapsible h3.true {
	background-color: #ffde05;
}

.collapsible h3 [aria-expanded] {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	text-align: left;
}

.collapsible button {
	padding: 0;
	color: #050626;
	background: transparent;
	border: none;
	font-weight: 700;
}

.collapsible h3 [aria-expanded]::before {
	content: '\002b';
	width: 1em;
	height: 1.5em;
	transition: all 0.1s ease-in-out;
}

.collapsible h3 [aria-expanded="true"]::before {
	content: '\002d';
	width: 1em;
	height: 2em;
	transition: all 0.1s ease-in-out;
}

.collapsible h3 + [aria-hidden] {
	display: none;
  -webkit-animation: fadeIn ease-in 1;
          animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: .4s;
          animation-duration: .4s;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.collapsible h3 + [aria-hidden="false"] {
	display: block;
    -webkit-animation: fadeIn 1s ease;
            animation: fadeIn 1s ease;
}

.collapsible .details {
	padding: 0 1em 1em;
	overflow: hidden;
}

.collapsible .details > * {
	margin-top: 0;
	padding-top: 1em;
}