.accordion body {
    color: #2c3e50;
    background: #ecf0f1;
    padding: 0 0em 0em;
}
.accordion h1 {
    margin: 0;
    line-height: 2;
    text-align: center;
}
.accordion h2 {
    margin: 0 0 0.5em;
    font-weight: normal;
}
.accordion input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.accordion .row {
    display: flex;
}
.accordion .row .accordion .col {
    flex: 1;
}
.accordion .row .accordion col:last-child {
    margin-left: 1em;
}
/* Accordion styles */
.accordion .tabs {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}
.accordion .tab {
    width: 100%;
    color: white;
    overflow: hidden;
}
.accordion .tab-label {
    display: flex;
    justify-content: space-between;
    padding: 1em;
    background: #9b4999;
    font-weight: bold;
    cursor: pointer;
    /* Icon */
}
.accordion .tab-label:hover {
    background: #d619e0;
}
.accordion .tab-label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
}
.accordion .tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #4e2c50;
    background: white;
    transition: all 0.35s;
}
.accordion .tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}
.accordion .tab-close:hover {
    background: #c113de;
}
.accordion input:checked + .tab-label {
    background: #c91a8f;
}
.accordion input:checked + .tab-label::after {
    transform: rotate(90deg);
}
.accordion input:checked ~ .tab-content {
    max-height: 100vh;
    padding: 1em;
}
