.accordion {
	padding: 1.5rem 0;
	background-color: #eee;
}

.collapsible {
	margin-bottom: 1rem;
}

.collapsible h3 {
	margin: 0;
	padding: .5rem;
	display: flex;
	justify-content: flex-start;
	width: 100%;
	position: relative;
	color: #da291c;
	background-color: #fff;
}

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

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

.collapsible button {
	position: relative;
	padding: 0;
	color: inherit;
	background: transparent;
	border: none;
	font-weight: 500;
}

.collapsible h3.true [aria-expanded] {
	color: #fff;
	background-color: #da291c;
}

.collapsible h3 [aria-expanded]::before {
	content: '\002b';
	margin: .25rem;
	width: 1rem;
	height: 1rem;
	line-height: 1;
	background-color: #ddd;
	border-radius: 50%;
	text-align: center;
	transition: all 0.1s ease-in-out;
}

.collapsible h3 [aria-expanded="true"]::before {
	content: '\002d';
	color: #da291c;
	background-color: #fff;
	transition: all 0.1s ease-in-out;
}

.collapsible h3 [aria-expanded="true"]::after {
	content: '';
	display: inline-block;
	position: absolute;
	right: 1rem;
	width: 1.17rem;
	height: 1.17rem;
	background: url(heart.png) center center no-repeat;
	background-size: contain;
	align-self: center;
}

.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 1rem 1rem;
	background-color: #eee;
	overflow: hidden;
}

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

@media screen and (min-width: 52em){
	.accordion {
		margin: 0 calc(50% - 50vw);
		max-width: 100vw;
		width: 100vw;
	}

	.main_wrapper .accordion,
	.is-admin.accordion {
		margin: 0 auto;
		max-width: 100%;
		width: 100%;
	}
}