.maxbill--faq-accordion {
    margin-top: 40px;
}
.maxbill--faq-accordion .maxbill--faq-item:not(:last-child) {
    margin-block-end: 20px;
}
.maxbill--faq-question {
    display: flex;
    outline: none !important;
    align-items: center;
    border-radius: 0;
    color: black;
    cursor: pointer !important;
    flex-direction: row;
    gap: 0 10px;
    justify-content: space-between;
    padding: 0px 0px 20px 0px;
    border-style: solid;
    border-width: 0px 0px 1px;
    border-color: rgb(248, 245, 249);
    background: none;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}
.maxbill--faq-question.active,
.maxbill--faq-question:hover{
    color: #008BD2;
}
.maxbill--faq-question svg {
    min-width: 18px;
    transition: .3s linear;
}
.maxbill--faq-question.active svg {
    transform: rotate(180deg);
}
.maxbill--faq-answer {
    padding: 12px;
    font-size: 16px;
    line-height: 22px;
}
.maxbill--faq-answer p {
    padding: 0 !important;
}
.maxbill--faq-answer li {
    margin: 6px 0 0 0 !important;
}
.maxbill--faq-answer li::before {
    color: black !important;
}

@media (max-width: 500px) {
    .maxbill--faq-answer {
        font-size: 14px;
        line-height: 1.1em;
    }
    .maxbill--faq-answer li::before {
       height: 3px !important;
    }
}