.c-accordion-item {
    width: 100%;
    border-bottom: 1px solid #ddd
}

.c-accordion-item:last-child {
    border-bottom: none
}

.c-accordion-title {
    display: block;
    position: relative;
    box-sizing: border-box;
    padding: .72em 3em .72em 0;
    font-size: 1.26em;
    font-weight: 400;
    transition: all .3s;
    border-bottom: 1px solid transparent
}

.c-accordion-title:hover {
    cursor: pointer
}

.c-accordion-title::after,
.c-accordion-title::before {
    top: 1.26em;
    position: absolute;
    content: '';
    background: #666;
    transition: all .3s
}

.c-accordion-title::before {
    height: 0.9em;
    width: 2px;
    right: 0.45em;
    margin-right: -1px;
    margin-top: -0.45em
}

.c-accordion-title::after {
    width: 0.9em;
    height: 2px;
    right: 0;
    margin-top: -1px
}

.c-accordion-item.act .c-accordion-title::before {
    transition: all .3s ease;
    height: 0;
    margin-top: 0
}

.c-accordion-content {
    transition: all .3s ease;
    overflow: hidden;
    max-height: 0
}

.c-accordion-item.act .c-accordion-content {
    max-height: var(--max-height);
    margin-bottom: 1em
}

.c-accordion-content div:first-child header {
    display: none
}
