@charset "UTF-8";

.qa-question {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 30px;
  color: #fff;
  width: 100%;
  min-height: 40px;
  background-color: #db998c;
  padding: 5px 15px;
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.5s;
}

.qa-question.active{
  border-radius: 6px  6px 0 0;
}

.qa-question i {
  position: absolute;
  top: 7px;
  right: 10px;
  color: #db998c;
  font-size: 14px;
  line-height: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  text-align: center;
}

.qa-question.active i.fa-plus {
  display: none;
}

.qa-question i.fa-minus {
  display: none;
}

.qa-question.active i.fa-minus {
  display: block;
}

.qa-answer {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 30px;
  color: #444;
  width: 100%;
  background-color: #fffaf9;
  padding:15px 20px;
  border-radius: 0 0 6px 6px;
  font-weight: 500;
  border:1px #f2d2cb solid;
}

.qa-question-box {
  margin-bottom: 20px;
}