.ic-faq-accordion {
    padding: 20px 0;
}

.ic-faq-accordion .tab {
    padding: 20px 0;
    border-top: 1px solid #00000033;
}

.ic-faq-accordion .tab:last-child {
    border-bottom: 1px solid #00000033;
}

.ic-faq-accordion .tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}

.ic-faq-accordion .tab__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.35s;
}

.ic-faq-accordion .tab input:checked~.tab__content {
    max-height: 10rem;
}

.ic-faq-accordion .tab__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.ic-faq-accordion .tab__label::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("../img/plus.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
}

.ic-faq-accordion .tab input:checked+.tab__label:after {
    /* filter: brightness(100); */
    transform: rotate(90deg);
}

.ic-faq-accordion .tab__content p {
    margin: 0;
    padding-top: 25px;
    font-size: .85em;
    color: #00000080;
}