.faq__block {
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px
}

.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: 2px solid #ff7a00;
    border-left: 2px solid #ff7a00;
    transition: all ease .3s;
    transform: rotateZ(-45deg)
}

.fag-checkbox:checked ~ .faq__question:before {
    transform: rotate(135deg)
}

.faq__question {
    padding: 20px 24px;
    cursor: pointer;
    position: relative;
    display: block
}

.faq__answer {
    display: none;
    padding: 20px 24px;
    background-color: #f7f7f7;
    color: #777;
    border-radius: 0 0 8px 8px
}

.faq__answer a {
    text-decoration: underline
}

.faq__answer a:hover {
    text-decoration: none
}

.faq__answer p {
    margin: 0
}

.fag-checkbox {
    position: absolute;
    left: -100vw
}

.fag-checkbox:checked ~ .faq__answer {
    display: block
}
