.wrap {
  //max-width: 1020px;
//background-color:#fff;
//display:block;
  //width:90%;
  margin: 0 auto;
  padding: 0 10px;
}

.toggle_title {
  position: relative;
  padding: 5 25 5 0 ;
  //border-bottom: 1px solid #000;
  cursor: pointer; 
}

.toggle_title:hover {
  opacity: 0.7;
  transition: 0.5s;
}

.toggle_ans {
  margin: 0;
  //padding: 20px;
  padding: 10px;
  //padding:0 10;
  display: none;
}

.plus {
  position: absolute;
  right: 20px;
  top: 0;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}

.plus:before,
.plus:after {
  display: block;
  content: "";
  background-color: #6b3906;
  position: absolute;
  width: 15px;
  height: 1px;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
  transition: 0.5s;
}

.plus:before {
  width: 1px;
  height: 15px;
}

.toggle_title.selected .plus:before {
  transform: translate(50%, 50%)
