/*** FAQs ***/

.tse-faq .tse-faq__item {
    padding: 20px 0;
    position: relative;
}
.tse-faq .tse-faq__q {
    margin: 0;
    font-size: 32px;
    display: flex;
    align-items: center;
}
.tse-faq .tse-faq__a {
    margin: 30px 0 0;
    display: none;
}
.tse-faq .tse-faq__line {
    position: absolute;
    width: 0;
    height: 1px;
    background-color: #000;
    bottom: 0;
    left: 0;
    right: 0;
}
.tse-faq .icon-plus {
    margin: 0 0 0 auto;
    transition: 0.2s ease-out all 0.1s;
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.tse-faq .icon-plus:before,
.tse-faq .icon-plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transition: all .3s ease-in .1s;
    transform: translate(-50%, -50%);
    border-bottom: 2px solid #000;
}
.tse-faq .icon-plus:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.tse-faq .tse-faq__item.active .icon-plus:before {
    transform: translate(-50%, -50%) rotate(180deg);
}
@media (max-width:576px) {
    .tse-faq .tse-faq__q {
        font-size: 26px;
    }
}