.faq-section {
  background: #efefef;
}
.faq-section .qa-click {
  background: #efefef;
  height: auto;
  cursor: pointer;
  padding: 16px;
}
.faq-section .qa-click img {
  color: #b7acac;
  font-size: 12px;
  margin-top: -32px;
  float: right;
}
.faq-section .arrow {
  position: relative;
}
.faq-section .qa-answer {
  display: none;
  padding: 10px 20px 50px 20px;
  margin: 5px 0;
}
@media (min-width: 992px) {
  .faq-section .qa-answer {
    padding: 10px 36px 30px 36px;
  }
}
.faq-section .qa-answer li {
  line-height: 1.5;
  text-align: justify;
  word-wrap: break-word;
  text-justify: inter-ideograph;
  word-break: normal;
}
.faq-section .rotate {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  /*transform: rotate(180deg);*/
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.faq-section .rotate-reset {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.faq-section .qa-click-half {
  padding: 20px 21px;
}
@media (min-width: 992px) {
  .faq-section .qa-click-half {
    padding: 16px;
  }
}

.qa-answer-half {
  padding: 10px 20px 50px 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  max-height: 3000px;
}
@media (min-width: 992px) {
  .qa-answer-half {
    padding: 10px 36px 50px 36px;
  }
}
.qa-answer-half li {
  line-height: 1.5;
  text-align: justify;
}
.qa-answer-half > .see-more {
  position: absolute;
  text-indent: -9999px;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}
.qa-answer-half > .see-more:after {
  content: "";
  position: absolute;
  background: url(../images/right.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  bottom: 20px;
  left: 50%;
  width: 0.625rem;
  height: 1.25rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  cursor: pointer;
}
.qa-answer-half .highlight {
  color: #ef7800;
}

.collapsed {
  max-height: 300px;
}
.collapsed li {
  line-height: 1.5;
  text-align: justify;
}
.collapsed > .see-more {
  position: absolute;
  text-indent: -9999px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  min-height: 60px;
  cursor: pointer;
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(75%, #efefef), to(#efefef));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #efefef 75%, #efefef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0);
  /* IE6-9 */
}
.collapsed > .see-more:after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  background: url(../images/right.svg) no-repeat;
  background-size: 100% auto;
  background-position: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  cursor: pointer;
}