.faq-item {
    border-radius: 5px;
    padding: 0.5em 1.5em;
    position: relative;
    margin-bottom: 20px;
    transition: background 500ms linear;
    background: #FFE9A2;
    box-shadow: 0 8px 16px #002a2b26;
}

.faq-arrow {
    position: absolute;
    right: 20px;
    width: 14px;
    top: 17px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 500ms ease;
}

.faq-answer {
    opacity: 0;
    transition: all 250ms ease-in-out;
    overflow: hidden;
    width: 100%;
}

.faq-item:not(.open) .faq-answer {
    height: 0px !important;
}


.faq-item-content {
    padding-right: 0;
}

.faq-question {
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    padding: 10px 50px 10px 0;
}

.faq-answer-inner {
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #0b4043;
}

.faq-answer-inner p:last-of-type {
    margin-bottom:0;
}


.faq-item.open .faq-answer {
    opacity: 1;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    top: 20px;
}

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

    .faq-arrow {
        top: 14px;
    }
}

@media screen and (max-width: 450px) {
    .faq-question {
    }
}