.faq-answer-header {
    height: 50px;
    background-color: #f6f7fb;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 19px;
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-answer-header h3 {
    font-size: 16px;
    font-weight: bold;
    color: #1f1c35;
    margin: 0;
}

@media (max-width: 46.24em) {
    .faq-answer-header {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        min-height: 50px;
    }
    .faq-answer-header h3 {
        width: 75%;
    }
}

.faq-answer-arrow-circle {
    width: 30px;
    height: 30px;
    border: 1.5px solid #1f1c35;
    border-radius: 50%;
    position: relative;
}

.faq-answer-arrow {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 25%;
    left: 32%;
    border-left: 1.5px solid #1f1c35;
    border-top: 1.5px solid #1f1c35;
    -webkit-transform: rotateZ(225deg);
    -ms-transform: rotate(225deg);
    transform: rotateZ(225deg);
    -webkit-transition: 300ms all ease;
    -o-transition: 300ms all ease;
    transition: 300ms all ease;
}

.faq-answer-arrow--down {
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
    top: 40%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all ease 300ms;
    -o-transition: all ease 300ms;
    transition: all ease 300ms;
    padding: 0 19px;
    font-size: 14px;
}

.faq-answer--open {
    max-height: 200px;
}

@media (max-width: 46.24em) {
    .faq-answer--open {
        max-height: 500px;
    }
}

// WEBPACK FOOTER //
// ./src/styles/FAQAnswer.css