input {
    display: none;
}

label {
    display: block;    
    padding: 8px 22px;
    margin: 0 0 1px 0;
    cursor: pointer;
    background: #6AAB95;
    border-radius: 3px;
    color: #FFF;
    transition: ease .5s;
}

label:hover {
    background: #4E8774;
}

.faq-content {
    background: #E2E5F6;
    padding: 10px 25px;
    border: 1px solid #A7A7A7;
    margin: 0 0 1px 0;
    border-radius: 3px;
}

input + label + .faq-content {
    display: none;
}

input:checked + label + .faq-content {
    display: block;
}

label::after {
    content: '+';
}

input:checked + label::after {
    content: '-';
}
label {
    position: relative;
}

label::after {
    content: '+';
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 10px;
    top: 6px;
}

input:checked + label::after {
    content: '-';
    right: 14px;
    top: 3px;
}
