.mgFAQ {
    max-width: 640px;
    border: 1px solid #9c9686;
    border-radius: 8px;
    margin: 0 auto 20px auto;
}

.mgFAQ .question {
    position: relative;
}

.mgFAQ .question hr {
    border: none;
    margin: 0;
    position: absolute;
    width: 7px;
    height: 1px;
    background-color: #54534A;
    transition: width .5s ease, transform .5s ease;
    top: 20px;
}

.mgFAQ .question hr:nth-child(1) {
    right: 23px;
    transform: rotate(45deg);
}

.mgFAQ .question hr:nth-child(2) {
    right: 18px;
    transform: rotate(-45deg);
}

.mgFAQ .question.show hr {
    width: 5px;
    transform: rotate(0deg);
}

.mgFAQ .question:not(:last-child) { border-bottom: 1px solid #9c9686; }

.mgFAQ .question>h4 {
    font-weight: normal;
    margin: 0;
    padding: 12px 36px 12px 16px;
    cursor: pointer;
}

.mgFAQ .question .answer {
    overflow: hidden;
    height: 0;
}

.mgFAQ .question .answer .content {
    padding: 0 16px 12px 16px;
}