.faq {
    display: flex;
    flex-direction: column;
}

.faq_item {
    border: none;
    border-bottom: 2px solid #000000;
}

.faq_item:first-child {
    border-top: 2px solid #000000;
}

.faq_question {
    background-color: rgba(0, 0, 0, 0);
    color: #000000;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    position: relative;
    -webkit-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
}

.faq_question:hover { background-color: rgba(0, 0, 0, 1); color: #FFFFFF; }

.faq_question:hover .faq_name { -webkit-transform: translateX(2rem);  transform: translateX(2rem); }
.faq_question:hover .faq_icon { -webkit-transform: translateX(-2rem); transform: translateX(-2rem); }

.faq_question.active { background-color: rgba(0, 0, 0, 0); color: #000000; }

.faq_question.active .faq_name { -webkit-transform: translateX(0rem); transform: translateX(0rem); }
.faq_question.active .faq_icon { -webkit-transform: translateX(0rem); transform: translateX(0rem); }
.faq_question.active .faq_icon::after { -webkit-transform: scaleY(0); transform: scaleY(0); }

.faq_name {
    font-size: 1.5rem;
    width: 100%;
    max-width: calc(100% - 7rem);
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.faq_icon {
    width: 1.5rem;
    min-width: 1.5rem;
    height: 1.5rem;
    margin: auto 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.faq_icon::before, .faq_icon::after {
    background-color: #000000;
    background-color: currentColor;
    content: '';
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

.faq_icon::before { width: 100%; height: 2px; }
.faq_icon::after  { width: 2px;  height: 100%; }

.faq_answer-content {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.faq_answer-content a {
    text-decoration: underline;
}

.faq_answer-content > p { margin: 0; }
.faq_answer-content > p + p { margin-top: 0.5rem; }

.faq_answer-content ul {
    margin: 0.5rem 0rem 0rem 0rem;
    padding: 0rem 0rem 0rem 2rem;
}

.faq_answer-content li {
    margin: 0;
    padding: 0;
}

.faq_answer-content li + li { margin-top: 0.5rem; }
.faq_answer-content ul + p { margin-top: 0.5rem; }
.faq_answer-content p + ul { margin-top: 0.5rem; }