.block-faq .faq-title {
    margin-bottom: 1.2rem;
    padding-top: 1.2rem;
}

.accordion-header {
    font-size: 16px;
    padding: 5px 20px;
    cursor: pointer;
}

.active-header::after, .inactive-header::after {
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\E90A";
    font-family: me-icon !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-animation: transform .5s;
    animation: transform .5s
}

.active-header {
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    position: relative;
}

.active-header::after {
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.active-header:hover {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.inactive-header {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.inactive-header::after {
    margin-top:5px;
    right: 30px;
}

.inactive-header:hover {
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
}

.accordion-content {
    display: none;
    padding: 20px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    border-top: 0;
}