.accordion {
  margin: 3em auto;
  max-width: 70vw;
}


@media screen and (max-width: 768px) {
.accordion {
  width: 90%;
  max-width: 90%;
	}}





.toggle {
  display: none;
}
.option {
  position: relative;
  margin-bottom: 1em;
}
.title,
.content {
  -webkit-backface-visibility: hidden;
	backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    cursor:pointer;
}
.title {
	border: solid 1px #ccc;
	padding: 1em;
	display: block;
	font-size: 1.0em;
	color: #333;
	font-weight: 300;
}
.title:after, .title:before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.3s;
}
.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: none;
	transition: all .8s;
}
.toggle:checked + .title:before {
	transform: rotate(90deg) !important;
}