.mgFAQ {
    max-width: 640px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.mgFAQ .question { position: relative; }

.mgFAQ .question hr {
    border: none;
    margin: 0;
    position: absolute;
    width: 7px;
    height: 1px;
    background-color: var(--green);
    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 var(--border); }

.mgFAQ .question>h4 {
    font-weight: normal;
    font-size: 16px;
    margin: 0;
    padding: 12px 36px 12px 16px;
    cursor: pointer;
}

.mgFAQ .question .answer {
    overflow: hidden;
    height: 0;
    font-size: 15px;
    line-height: 22px;
}

.mgFAQ .question .answer .content { padding: 0 16px 12px 16px; }

.mgFAQ .question .answer .content p:first-child { margin-top: 0; }

.mgFAQ .question .answer .content p:last-child { margin-bottom: 0; }

@media (max-width: 659.999px) {
    .mgFAQ { margin: 0 10px 40px 10px; }
}

@media (min-width: 660px) {
    .mgFAQ { margin: 0 auto 40px auto; }
}