﻿.faq
{
    --faq-expanded-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23111' d='m7.4 15.377-1.4-1.4 6-6 6 6-1.4 1.4-4.6-4.6z'/%3E%3C/svg%3E");
    margin: 24px 0;
}
.faq__title
{
    margin: 0 0 16px;
}
.faq__item
{
    border-top: 1px solid #dcdcdc;
    padding-bottom: 16px;
    padding-top: 24px;
}
.faq__item__question
{
    color: #212529;
    cursor: pointer;
    display: block;
    font-weight: 700;
    padding-right: 36px;
    position: relative;
    -webkit-text-decoration: none;
    text-decoration: none;
}
.faq__item__question.active:after
{
    transform: rotate(0);
}
.faq__item__question:after
{
    background-image: var(--faq-expanded-icon);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 24px;
    content: "";
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    transform: rotate(180deg);
    transition: all .3s ease-in-out;
    width: 24px;
}
.faq__item__answer
{
    padding-top: 24px;
}
.faq__item__answer-text
{
    color: #212529;
}
.faq__item__answer-text *
{
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.faq__item__answer-text :first-child
{
    margin-top: 0;
}
.faq__item__answer-text :last-child
{
    margin-bottom: 0;
}
@media screen and (min-width: 768px)
{
    .faq
    {
        margin: 32px 0;
    }
    .faq__title
    {
        margin: 0 0 32px;
    }
}