
.FaqSection_questionWrap {
    /* width: 100%; */
    margin-top: 2rem ;
    /* background: #e1e1e1; */
    background-color: #e6e1dc;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    transition: all 0.5s;
}
.FaqSection_questionWrap:hover{
    background: #d9d3cd;
    transition: all 0.5s;
}

.FaqSection_questionWrap:first-child {
    margin-top: 0;
}

.FaqSection_checkbox {
    display: none;
}


.FaqSection_label {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
}


.FaqSection_questionText {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.FaqSection_icon{
    width: 15px;
    min-width: 15px;
    -webkit-transition: .4s ease;
    -moz-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease;
}

.FaqSection_answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: .7s ease;
    -moz-transition: .7s ease;
    -o-transition: .7s ease;
    transition: .7s ease;
    line-height: 1.7;
    font-size: 0.9rem;
    padding-left: 15px;
}

.FaqSection_checkbox:checked ~ .FaqSection_answer{
    height: auto;
    opacity: 1;
    padding-top: 15px;
    padding-left: 15px;
    padding-bottom: 20px;
    }

.FaqSection_checkbox:checked ~* .FaqSection_icon{
    rotate: 180deg;
}
