.faqs-list input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.faqs-list.tabs {
    overflow: hidden;
}

.faqs-list .tab {
    width: 100%;
    overflow: hidden;
    background: transparent;
    border:1px dashed gray;
    padding: 0 0;
    border-radius: 8px;
    margin-bottom: 15px;
} 
.faqs-list .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    color: var(--brand-color-black)
    /* Icon */
}
.faqs-list .tab-label:hover {

}
.faqs-list .tab-label::after {
    content: "❯";
    width: 40px;
    height: 40px;
    text-align: center;
    transition: all 0.35s;
}
.faqs-list .tab-content {
    max-height: 0;
    padding: 0 20px;
    transition: all 0.35s;
    background: white;
    /*margin-bottom: 2px;*/
    border-radius: 0 0 8px 8px;
    font-size: 1.1rem;
    line-height: 1.7rem;
}
.faqs-list .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    cursor: pointer;
}
.faqs-list .tab-close:hover {

}

.faqs-list input:checked + .tab-label {
    background-color: #0c0c0c;
    color: white;
}
.faqs-list input:checked + .tab-label::after {
    transform: rotate(90deg);
}
.faqs-list input:checked ~ .tab-content {
    max-height: 100vh;
    background-color: #0c0c0c;
    color: white;
    padding: 0 20px 20px;
}