/*
 CSS for the main interaction
*/
.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

/*
 Styling
*/
.accordion {
  margin-bottom: 1em;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  padding: 15px;
  border: 1px solid #e8e8e8;
  border-top: 0;
}

.accordion .handle {
  margin: 0;
  font-size: 1.125em;
  line-height: 1.2em;
}

.accordion label {
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  padding: 15px;
  background: #2f1e49;
}

.accordion label:hover,
.accordion label:focus {
  background: #7f3f97;
}

.accordion .handle label:before {
  content: "\21D2";
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  line-height: 1.75em;
  vertical-align:middle;
}

.accordion > input[type="checkbox"]:checked ~ .handle label:before {
  content: "\21D3";
}

.question {
    font-weight: bold;
}

.answer {
    font-style: italic;
}

.accordion img{
    float: left;
    margin: 10px 30px 30px 10px !important;
    width: 180px;
    height: 240px;
}
@media only screen and (max-width: 600px) {
 .accordion img{
    float: none;
    margin: 0 0 20px 20px !important;
    width: 90%;
    height: 90%;
}   
}
