.accordion {
  margin: .4em auto;
  max-width: 80vw;
}




h4{
	text-align:center;
	margin-bottom:10px;
}


@media screen and (max-width: 768px) {
.accordion {
  width: 96%;
  max-width: 96%;
	}}

.toggle {
  display: none;
}
.option {
  position: relative;
  margin-bottom: 1em;
}
.title,
.content {
  -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    transform: translateZ(0);
    transition: all .7s;
    cursor:pointer;
}
.title {
	border: solid 1px #eee;
	padding: 1em;
	display: block;
	font-size: 1.0em;
	color: #333;
	font-weight: 600;
	padding-left: 2.2em;
}
.title:after, .title:before {
  content: "";
  position: absolute;
  left: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #ccc;
  transition: all .7s;
}
.title:after {
  transform: rotate(90deg);
}
.content {
  max-height: 0;
  overflow: hidden;
}
.content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}
.toggle:checked + .title + .content {
	max-height: 12000px;
	transition: all 3.8s;
	background:#e8e8e8;
	margin-bottom: 5px;
}
.toggle:checked + .title:before {
	transform: rotate(90deg) !important;
}