.faq__block {
    background: #12211b;
    border: 1px solid rgba(240,214,138,0.25);
    border-radius: 8px;
    color: #eee;
}

.faq .faq__block .faq__answer p {
  color: #fff;
}
.faq__block + .faq__block {
    margin-top: 8px;
}
.faq__question:before {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    right: 13px;
    width: 10px;
    height: 10px;
    border-bottom: 3px solid #f0d68a;
    border-left: 3px solid #f0d68a;
    transform: rotateZ(-45deg);
    transition: all ease .3s;
}
.faq__question.open:before {
    transform: rotate(135deg);
}
label.faq__question {
    padding: 15px!important;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    display: block;
    color: #f0d68a;
    font-size: 15px;
    letter-spacing: 0.5px;
}
.faq__answer {
    display: none;
    padding: 15px 15px 10px;
    border-top: 1px solid rgba(240,214,138,0.2);
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}
.faq__answer a {
    text-decoration: underline;
    color: #00c853;
    font-weight: 600;
}

.faq__answer a:hover {
    text-decoration: none;
    color: #1aff7c;
}
.fag-checkbox {
    position: absolute;
    left: -100vw;
}
.fag-checkbox:checked ~ .faq__answer {
    display: block;
}
