/* FAQ */

.faq__block {
    background: #fafafa;
    border: solid 1px #e0e0e0;
}
.faq__block +.faq__block {
    margin-top: 15px;
}
.faq__question:before{
    content: '';
        position: absolute;
    top: calc(50% - 8px);
    right: 13px;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #4CAF50;
    border-left: 3px solid #4CAF50;
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotate(-45deg);
    transition: all ease .3s;
    transform: rotateZ(-45deg);
}
.faq__question.open:before{
    transform: rotate(135deg);

}

.faq__question {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}
.faq__answer {
    display: none;
    padding:  15px;
    background-color: #fff;
    border-top: solid 1px #e0e0e0;
}
.faq__answer a{
    text-decoration: underline;
}
.faq__answer a:hover{
    text-decoration: none;
}
