.faqList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.faqList li {
  width: 100%;
  margin-bottom: 20px;
}

.faqList li.open .toggleOpen:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faqList li.open .toggleOpen:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.faqList .item {
  position: relative;
}

.faqList .icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-style: normal;
  font-size: 18px;
  color: #fff;
  text-align: center;
  background-color: #2a3c4f;
}

.faqList .toggleOpen {
  position: absolute;
  right: 15px;
  top: 25px;
  width: 20px;
  height: 20px;
  background-color: #282322;
}

.faqList .toggleOpen:before, .faqList .toggleOpen:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.5px;
  margin-left: -4px;
  width: 8px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.faqList .toggleOpen:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.quBox,
.ansBox {
  padding: 15px;
}

.quBox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f3f3f3;
  cursor: pointer;
}

.quBox h3 {
  width: calc(100% - 100px);
  margin-top: 7px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #222;
  letter-spacing: .05em;
}

.ansBox {
  display: none;
  width: 100%;
  z-index: 1;
  background-color: #fff;
  border-bottom: 1px solid #f3f3f3;
}

.ansBox .icon {
  float: left;
  color: #282322;
  background-color: #fff;
  border: 1px solid #282322;
}

.ansBox .textEditor {
  clear: none;
  float: left;
  width: calc(100% - 40px);
  padding-left: 15px;
}
