.wrap { max-width: 400px; margin: 1em auto;}
.accordion {
    margin: auto;
    height: 480px;
    display: contents;
}
.accordion .element {
    margin-bottom: 1em;
}
.accordion .panel {
    width: 98%;
    width: calc(100% - 20px);
    margin: 0 auto;
    height: 0;
    overflow:hidden;
    color: rgba(0, 0, 0, 0);
    background-color: hsla(0,0%,100%,0);
    line-height: 28px;
    padding: 0 20px;
    box-sizing: border-box;
}

.accordion label {
    cursor: pointer;
    background-color: #f8f9fa;
    display: block;
    padding: 15px;
    width: 100%;
    color: #666;
    font-weight: 400;
    box-sizing: border-box;
    z-index: 100;
}

.accordion input{
    display: none;
}

.accordion input:checked+label {
    background-color: #f8f9fa;
}

.accordion input:checked+label:before {
}

.accordion input:checked~.panel {
    height: auto;
    color: #333;
    font-size: 14px;
    padding: 20px;
}
.accordion label:after { content: " + "; color: #333; float: right; font-size: 1em}
.accordion input:checked+label:after { content: " – "; color: #333; float: right;font-size: 1em }

.myFAQ p{
    line-height: 28px;
    font-size: 14px;
    color: #666;
}