.collapsible {
	margin-bottom: 1em;
}

.collapsible h2 {
	margin: 0;
	padding: .5em;
	display: flex;
	font-size: 1.1rem;
	justify-content: flex-start;
	width: 100%;
	position: relative;
	background-color: #e9f3eb;
	border: 1px solid #e9f3eb;
}

.collapsible h2.true {
	color: #fff;
	background-color: #1f5026;
	border: 1px solid #1f5026;
}

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

.collapsible button {
	color: #000;
	background: transparent;
	border: none;
	padding: 0;
}

.collapsible .true button {
	color: #fff;
}

.collapsible h2 [aria-expanded]::before {
	content: '';
	background: url(arrow.svg) left center no-repeat;
	width: 1em;
	height: 1.5em;
	transition: all 0.1s ease-in-out;
}

.collapsible h2 [aria-expanded="true"]::before {
	content: '';
	background: url(arrow_down.svg) left center no-repeat;
	width: 1em;
	height: 2em;
	transform: rotate(90deg);
	transition: all 0.1s ease-in-out;
}

.collapsible h2 + [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 h2 + [aria-hidden="false"] {
	display: block;
	border: 1px solid #2e7144;
	border-top: none;
    -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;
}