.faqList {
  width: 100%;
}
.faqList > li {
  margin-bottom: 15px;
  padding: 5px 10px 5px 5px;
  border-bottom: solid 1px #ddd;
}
/*
.faqList > li:nth-child(2n+1) {
  background: #fdfdfd;
}
*/
.faqList h3 {
  position: relative;
  padding: 10px 5px;
  font-weight: 400;
  font-size: 18px;
  color: #2e2e2e;
  cursor: pointer;
  display: flex;
}
.faqList h3 b {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-style: italic;
  font-size: 16px;
  color: #000;
}

.toggleOpen {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: block;
  margin-top: -13px;
  border-radius: 2px;
  font-size: 15px;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  text-align: center;
}
.toggleOpen:hover {
  color: #7b7b7b;
}

.definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  font-size: 15px;
  color: #222;
  line-height: 1.8;
  background-color: #ddd;
}

@media (max-width: 640px) {
  .toggleOpen {
    /*margin-top: 8px;
    position: static;*/
  }
}