.faqList {
  width: 100%;
}
.faqList > li {
  margin-bottom: 15px;
  padding: 5px;
  border-bottom: 1px solid #ccc;
}
.faqList h3 {
  position: relative;
  padding: 10px 30px 5px 5px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.faqList h3 b {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-style: italic;
  font-size: 16px;
  color: #e17b20;
}

.toggleOpen {
  position: absolute;
  right: 5px;
  top: 10px;
  display: block;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 13px;
  color: #fff;
  background-color: #a2a2a2;
  cursor: pointer;
  width: 22px;
  text-align: center;
}
.toggleOpen:hover {
  background: #e17b20;
  color: #fff;
}

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