/* FAQ */

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

}


label.faq__question {
    padding: 15px 15px!important;
    cursor: pointer;
    font-weight: bold;
    position: relative;
	display:block;
}
.faq__answer {
    display: none;
    padding:  15px 15px 1px;
    border-top:1px solid rgba(255,255,255,0.07);
  
}
.faq__answer a{
    text-decoration: underline;
}
.faq__answer a:hover{
    text-decoration: none;
}
.fag-checkbox {
    position: absolute;
    left: -100vw;
}
.fag-checkbox:checked~.faq__answer {
    display: block;
}
.faq__answer {
    display: none;
}