.faqList h3, .faqList h3::before, .faqList .definition::before, .questionNumber {
  -webkit-transition: all .8s ease-out;
  -o-transition: all .8s ease-out;
  transition: all .8s ease-out; }

/*
	Authors: Alvin, Randy, Rex
    Version: 2.0
	Latest Update: 2020/03/13
*/
.contentWrap {
  padding-top: 90px;
  padding-bottom: 150px; }
  @media (max-width: 1180px) {
    .contentWrap {
      padding-top: 50px;
      padding-bottom: 50px; } }

.faqList {
  counter-reset: item; }
  .faqList > li {
    counter-increment: item;
    position: relative;
    padding-bottom: 35px;
    border-top: 1px solid #ccc; }
    .faqList > li.current h3, .faqList > li.current .questionNumber {
      color: #c6a289; }
    .faqList > li.current h3::before {
      -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
      transform: rotate(-180deg); }
    .faqList > li.current .definition::before {
      -webkit-animation: 1s showBar linear both;
      animation: 1s showBar linear both; }
  .faqList h3 {
    position: relative;
    padding: 20px 40px 20px 60px;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    cursor: pointer; }
    .faqList h3::before {
      content: '\f107';
      position: absolute;
      top: 25px;
      right: 10px;
      z-index: 1;
      font-family: FontAwesome; }
  .faqList .definition {
    display: none;
    position: relative;
    margin-left: 60px;
    margin-bottom: 20px;
    padding: 35px 45px;
    background-color: #fefaf9; }
    @media (max-width: 480px) {
      .faqList .definition {
        margin-left: 0;
        margin-bottom: 10px;
        padding: 20px 30px; } }
    @media (min-width: 481px) {
      .faqList .definition::before {
        content: '';
        position: absolute;
        top: 0;
        left: -43px;
        z-index: 1;
        width: 4px;
        height: 0;
        background-color: #f4eae3; } }

@-webkit-keyframes showBar {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

@keyframes showBar {
  0% {
    height: 0; }
  100% {
    height: 100%; } }

.questionNumber {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 1;
  font-family: "Cardo", "Noto Sans TC", sans-serif;
  font-size: 18px; }
  .questionNumber::before {
    content: 'Q';
    font-size: 25px; }
  .questionNumber::after {
    content: '.'; }
