/*** faq block ***/
.faq-block .faq-navigation{
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    line-height: 24px;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    color: var(--black);
    padding:8px 14px;
    margin:20px 10px 0 10px;
}
.faq-block .faq-navigation a.button.tag.grey-light_background {
    margin-top: 3px;
    margin-bottom: 3px;
}
.faq-block .click-element{
    cursor: pointer;
}
.faq-block .question-answer-wrap{
    border-radius: 6px;
}
.faq-block .question-answer-wrap .click-element:hover + .click-element div.button.arrow,
.faq-block .question-answer-wrap .click-element:hover div.button.arrow{
    transform: rotate(90deg) scale(1.15);
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.faq-block .question-answer-wrap.open .click-element:hover + .click-element div.button.arrow,
.faq-block .question-answer-wrap.open .click-element:hover div.button.arrow{
    transform: rotate(-90deg) scale(1.15);
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.faq-block .question-answer-wrap .button.arrow{
    transform: rotate(90deg);
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.faq-block .question-answer-wrap.open .button.arrow{
    transform: rotate(-90deg);
    -webkit-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
}
.faq-block .question h4{
    margin-bottom: 0;
}
.faq-block .faq-section-title{
    margin-bottom: 0;
}
.faq-block .main_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    flex: 0 0 auto;
}
.faq-block .main_button .button {
    margin: 0;
}

.faq-block .animate {
    animation-delay: 0.5s !important;
}

@media(max-width: 450px) {
    .faq-block .question-answer-wrap div.button.arrow{
        height: 20px;
        width: 20px;
    }
}
