.faq-list {
    max-width: 845px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    position: relative;
}

.faq-question,
.faq-answer {
    position: relative;
}

.faq-question {
    cursor: pointer;
    color: #725233;
    font-size: 15px;
    line-height: 1.65;
    padding: 20px;
    box-sizing: border-box;
    border: solid 4px #fdd9a2;
    border-radius: 15px;
    position: relative;
}
.faq-question span{
    display: block;
    font-size: 17px;
    font-weight: bold;
    padding: 0 50px 0 5px;

    box-sizing: border-box;
}
.faq-question:hover,
.faq-item.active .faq-question {
    background: #fcf5e0;
}
.faq-item.active .faq-question{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  background: transparent;
}
.faq-question:after {
    content: " ";
    background: url(../images/faq/accordion.png) no-repeat;
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 20px;
    right:40px;
}


.faq-item.active .faq-question:after {
    background-position: 0 100%;
}


.faq-question .icon {
    background-image: url(../images/faq/icon_q.png);
    width: 41px;
    height: 37px;
    display: inline-block;
    float: left;
    margin-right: 10px;
    position: relative;
    top:-2px;
}
.faq-answer .icon {
    background-image: url(../images/faq/icon_a.png);
    width: 42px;
    height: 32px;
    position: absolute;
    left: 25px;
    bottom: 25px;
	    top: 10px;
}

.faq-answer {
    display: none;
    border: solid 4px #fdd9a2;
    border-top: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
}
.faq-answer:before{
  content: '';
  display: block;
  width: calc(100% - 40px);
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
  border-top: dashed 2px #b08246;
}
.faq-answer .editor{
    color: #a6784a;
    margin: 0 60px;
    padding: 15px 30px;
}

@media screen and (max-width:768px) {
    .faq-question {
        padding:10px;
    }

    .faq-question .icon {
        left: 8px;
        top: -4px;
    }

    .faq-question:after {
        display: none;
    }
    .faq-question span{
        padding: 0px 5px;
        padding-left: 60px;
    }
    .faq-answer .editor{
    margin: 0 10px;
    padding: 15px 20px;
    padding-left: 60px;
}
.faq-answer .icon {
  left: 18px;
  bottom: inherit;
  /*top:25px;*/
}

}
